2009-11-11 08:34:00

by Miklos Szeredi

[permalink] [raw]
Subject: Re: [PATCH 0/2] vfs: ensure that dentries are revalidated on open (try #2)

On Wed, 11 Nov 2009, Trond Myklebust wrote:
> > Having said that, doing revalidation for proc symlinks and bind mounts
> > (and not just for opens) might make sense. This is something similar
> > to FS_REVAL_DOT, so perhaps make it conditional on this flag (or a
> > new, appropriately named one).
>
> Aren't both proc symlinks and bind mounts pretty much guaranteed to
> point to a valid dentry?

It could for example happen that client bind mounts a regular file,
then the file is unlinked on the server. Then the bind mounted dentry
is no longer valid.

Thanks,
Miklos


2009-11-11 12:17:19

by Trond Myklebust

[permalink] [raw]
Subject: Re: [PATCH 0/2] vfs: ensure that dentries are revalidated on open (try #2)

On Wed, 2009-11-11 at 09:33 +0100, Miklos Szeredi wrote:
> On Wed, 11 Nov 2009, Trond Myklebust wrote:
> > Aren't both proc symlinks and bind mounts pretty much guaranteed to
> > point to a valid dentry?
>
> It could for example happen that client bind mounts a regular file,
> then the file is unlinked on the server. Then the bind mounted dentry
> is no longer valid.

The mountpoint dentry is still supposed to remain valid and accessible
on the client even if the object it points to on the server is invalid.
Otherwise you will not be able to unmount.

Cheers
Trond