lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 04 Oct 2022 05:53:20 -0400 From: Jeff Layton <jlayton@...nel.org> To: NeilBrown <neilb@...e.de> Cc: tytso@....edu, adilger.kernel@...ger.ca, djwong@...nel.org, david@...morbit.com, trondmy@...merspace.com, viro@...iv.linux.org.uk, zohar@...ux.ibm.com, xiubli@...hat.com, chuck.lever@...cle.com, lczerner@...hat.com, jack@...e.cz, bfields@...ldses.org, brauner@...nel.org, fweimer@...hat.com, linux-btrfs@...r.kernel.org, linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org, ceph-devel@...r.kernel.org, linux-ext4@...r.kernel.org, linux-nfs@...r.kernel.org, linux-xfs@...r.kernel.org, Colin Walters <walters@...bum.org> Subject: Re: [PATCH v6 2/9] iversion: clarify when the i_version counter must be updated On Tue, 2022-10-04 at 10:10 +1100, NeilBrown wrote: > On Fri, 30 Sep 2022, Jeff Layton wrote: > > The i_version field in the kernel has had different semantics over > > the decades, but NFSv4 has certain expectations. Update the comments > > in iversion.h to describe when the i_version must change. > > > > Cc: Colin Walters <walters@...bum.org> > > Cc: NeilBrown <neilb@...e.de> > > Cc: Trond Myklebust <trondmy@...merspace.com> > > Cc: Dave Chinner <david@...morbit.com> > > Link: https://lore.kernel.org/linux-xfs/166086932784.5425.17134712694961326033@noble.neil.brown.name/#t > > Signed-off-by: Jeff Layton <jlayton@...nel.org> > > --- > > include/linux/iversion.h | 10 ++++++++-- > > 1 file changed, 8 insertions(+), 2 deletions(-) > > > > diff --git a/include/linux/iversion.h b/include/linux/iversion.h > > index 6755d8b4f20b..9925cac1fa94 100644 > > --- a/include/linux/iversion.h > > +++ b/include/linux/iversion.h > > @@ -9,8 +9,14 @@ > > * --------------------------- > > * The change attribute (i_version) is mandated by NFSv4 and is mostly for > > * knfsd, but is also used for other purposes (e.g. IMA). The i_version must > > - * appear different to observers if there was a change to the inode's data or > > - * metadata since it was last queried. > > + * appear larger to observers if there was an explicit change to the inode's > > + * data or metadata since it was last queried. > > + * > > + * An explicit change is one that would ordinarily result in a change to the > > + * inode status change time (aka ctime). i_version must appear to change, even > > + * if the ctime does not (since the whole point is to avoid missing updates due > > + * to timestamp granularity). If POSIX mandates that the ctime must change due > > + * to an operation, then the i_version counter must be incremented as well. > > POSIX doesn't (that I can see) describe when the ctime changes w.r.t > when the file changes. For i_version we do want to specify that > i_version change is not visible before the file change is visible. > So this goes beyond the POSIX mandate. I might be worth making that > explicit. > But this patch is nonetheless an improvement, so: > > Reviewed-by: NeilBrown <neilb@...e.de> > > Thanks, Now that we're looking at setting the ctime and i_version separately, I'll plan to add something that makes this explict. > > * > > * Observers see the i_version as a 64-bit number that never decreases. If it > > * remains the same since it was last checked, then nothing has changed in the > > -- > > 2.37.3 > > > > -- Jeff Layton <jlayton@...nel.org>
Powered by blists - more mailing lists