From: | Michael Paquier <michael(dot)paquier(at)gmail(dot)com> |
---|---|
To: | Adam Lee <ali(at)pivotal(dot)io> |
Cc: | Robert Haas <robertmhaas(at)gmail(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>, Heikki Linnakangas <hlinnakangas(at)pivotal(dot)io>, Daniel Gustafsson <dgustafsson(at)pivotal(dot)io>, Ming Li <mli(at)pivotal(dot)io> |
Subject: | Re: Should we nonblocking open FIFO files in COPY? |
Date: | 2017-12-27 03:51:47 |
Message-ID: | 20171227035147.GB5318@paquier.xyz |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Wed, Dec 27, 2017 at 10:18:03AM +0800, Adam Lee wrote:
> On Tue, Dec 26, 2017 at 11:48:58AM -0800, Robert Haas wrote:
> > On Thu, Dec 21, 2017 at 10:10 PM, Adam Lee <ali(at)pivotal(dot)io> wrote:
> > > I have an issue that COPY from a FIFO, which has no writers, could not be
> > > canceled, because COPY invokes AllocateFile() -> fopen() -> blocking open().
> >
> > Hmm. What about the case where we try to open a plain file that's on
> > an inaccessible filesystem, e.g. due to a disk failure? Allowing
> > cancel to work just for FIFOs would be OK, I guess, but allowing it
> > for other open() calls that hang would be better. I'm not sure if we
> > can make it work that way, but it would be nice if we could.
>
> That is doable, just stat() and check before open().
I think TOCTOU when I read such things.. The data folder is a trusted
environment but any patches doing things like that ought to be careful.
--
Michael
From | Date | Subject | |
---|---|---|---|
Next Message | Haribabu Kommi | 2017-12-27 03:54:04 | Re: [HACKERS] Pluggable storage |
Previous Message | Michael Paquier | 2017-12-27 03:50:01 | Re: [HACKERS] [PATCH] Tap test support for backup with tablespace mapping |