Hi Alessio and Miklos, Some time has passed.. and I was thinking of picking up these patches. On Mon, Mar 1, 2021 at 7:05 PM Alessio Balsini <balsini@xxxxxxxxxxx> wrote: > > On Fri, Feb 19, 2021 at 09:40:21AM +0100, Miklos Szeredi wrote: > > On Fri, Feb 19, 2021 at 8:05 AM Peng Tao <bergwolf@xxxxxxxxx> wrote: > > > > > > On Wed, Feb 17, 2021 at 9:41 PM Miklos Szeredi <miklos@xxxxxxxxxx> wrote: > > > > > > What I think would be useful is to have an explicit > > > > FUSE_DEV_IOC_PASSTHROUGH_CLOSE ioctl, that would need to be called > > > > once the fuse server no longer needs this ID. If this turns out to > > > > be a performance problem, we could still add the auto-close behavior > > > > with an explicit FOPEN_PASSTHROUGH_AUTOCLOSE flag later. > > > Hi Miklos, > > > > > > W/o auto closing, what happens if user space daemon forgets to call > > > FUSE_DEV_IOC_PASSTHROUGH_CLOSE? Do we keep the ID alive somewhere? > > > > Kernel would keep the ID open until explicit close or fuse connection > > is released. > > > > There should be some limit on the max open files referenced through > > ID's, though. E.g. inherit RLIMIT_NOFILE from mounting task. > > > > Thanks, > > Miklos > > I like the idea of FUSE_DEV_IOC_PASSTHROUGH_CLOSE to revoke the > passthrough access, that is something I was already working on. What I > had in mind was simply to break that 1:1 connection between fuse_file > and lower filp setting a specific fuse_file::passthrough::filp to NULL, > but this is slightly different from what you mentioned. > I don't like the idea of switching between passthrough and server mid-life of an open file. There are consequences related to syncing the attribute cache of the kernel and the server that I don't even want to think about. > AFAIU you are suggesting to allocate one ID for each lower fs file > opened with passthrough within a connection, and maybe using idr_find at > every read/write/mmap operation to check if passthrough is enabled on > that file. Something similar to fuse2_map_get(). > This way the fuse server can pass the same ID to one or more > fuse_file(s). > FUSE_DEV_IOC_PASSTHROUGH_CLOSE would idr_remove the ID, so idr_find > would fail, preventing the use of passthrough on that ID. CMIIW. > I don't think that FUSE_DEV_IOC_PASSTHROUGH_CLOSE should remove the ID. We can use a refcount for the mapping and FUSE_DEV_IOC_PASSTHROUGH_CLOSE just drops the initial server's refcount. Implementing revoke for an existing mapping is something completely different. It can be done, not even so hard, but I don't think it should be part of this series and in any case revoke will not remove the ID. > After FUSE_DEV_IOC_PASSTHROUGH_CLOSE(ID) it may happen that if some > fuse_file(s) storing that ID are still open and the same ID is reclaimed > in a new idr_alloc, this would lead to mismatching lower fs filp being > used by our fuse_file(s). So also the ID stored in the fuse_file(s) > must be invalidated to prevent future uses of deallocated IDs. Obtaining a refcount on FOPEN_PASSTHROUGH will solve that. > > Would it make sense to have a list of fuse_files using the same ID, that > must be traversed at FUSE_DEV_IOC_PASSTHROUGH_CLOSE time? > Negative values (maybe -ENOENT) might be used to mark IDs as invalid, > and tested before idr_find at read/write/mmap to avoid the idr_find > complexity in case passthrough is disabled for that file. > > What do you think? > As I wrote above, this sounds unnecessarily complicated. Miklos, Do you agree with my interpretation of FUSE_DEV_IOC_PASSTHROUGH_CLOSE? Thanks, Amir.