Re: virtiofs uuid and file handles

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Sep 23, 2020 at 11:57 AM Amir Goldstein <amir73il@xxxxxxxxx> wrote:
>
> On Wed, Sep 23, 2020 at 10:44 AM Miklos Szeredi <miklos@xxxxxxxxxx> wrote:
> >
> > On Wed, Sep 23, 2020 at 4:49 AM Amir Goldstein <amir73il@xxxxxxxxx> wrote:
> >
> > > I think that the proper was to implement reliable persistent file
> > > handles in fuse/virtiofs would be to add ENCODE/DECODE to
> > > FUSE protocol and allow the server to handle this.
> >
> > Max Reitz (Cc-d) is currently looking into this.
> >
> > One proposal was to add  LOOKUP_HANDLE operation that is similar to
> > LOOKUP except it takes a {variable length handle, name} as input and
> > returns a variable length handle *and* a u64 node_id that can be used
> > normally for all other operations.
> >
> > The advantage of such a scheme for virtio-fs (and possibly other fuse
> > based fs) would be that userspace need not keep a refcounted object
> > around until the kernel sends a FORGET, but can prune its node ID
> > based cache at any time.   If that happens and a request from the
> > client (kernel) comes in with a stale node ID, the server will return
> > -ESTALE and the client can ask for a new node ID with a special
> > lookup_handle(fh, NULL).
> >
> > Disadvantages being:
> >
> >  - cost of generating a file handle on all lookups
>
> I never ran into a local fs implementation where this was expensive.
>
> >  - cost of storing file handle in kernel icache
> >
> > I don't think either of those are problematic in the virtiofs case.
> > The cost of having to keep fds open while the client has them in its
> > cache is much higher.
> >
>
> Sounds good.
> I suppose flock() does need to keep the open fd on server.

Open files are a separate issue and do need an active object in the server.

The issue this solves  is synchronizing "released" and "evicted"
states of objects between  server and client.  I.e. when a file is
closed (and no more open files exist referencing the same object) the
dentry refcount goes to zero but it remains in the cache.   In this
state the server could really evict it's own cached object, but can't
because the client can gain an active reference at any time  via
cached path lookup.

One other solution would be for the server to send a notification
(NOTIFY_EVICT) that would try to clean out the object from the server
cache and respond with a FORGET if successful.   But I sort of like
the file handle one better, since it solves multiple problems.

Thanks,
Miklos

>
> Are there any other states for an open fd that must be preserved?


>
> Thanks,
> Amir.



[Index of Archives]     [Linux Filesystems Devel]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux