* [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open [not found] <alpine.LRH.2.00.1204242156380.28096@helium.esat.kuleuven.be> @ 2012-05-11 9:20 ` Jonathan Nieder 2012-05-12 9:20 ` Ben Hutchings 2012-05-18 19:31 ` Greg KH 0 siblings, 2 replies; 4+ messages in thread From: Jonathan Nieder @ 2012-05-11 9:20 UTC (permalink / raw) To: stable Cc: Rik Theys, Trond Myklebust, linux-nfs, David Flyn, Jeff Layton, 659111 This is a shorter (and more appropriate for stable kernels) analog to the following upstream commit: commit 6926afd1925a54a13684ebe05987868890665e2b Author: Trond Myklebust <Trond.Myklebust@netapp.com> Date: Sat Jan 7 13:22:46 2012 -0500 NFSv4: Save the owner/group name string when doing open ...so that we can do the uid/gid mapping outside the asynchronous RPC context. This fixes a bug in the current NFSv4 atomic open code where the client isn't able to determine what the true uid/gid fields of the file are, (because the asynchronous nature of the OPEN call denies it the ability to do an upcall) and so fills them with default values, marking the inode as needing revalidation. Unfortunately, in some cases, the VFS will do some additional sanity checks on the file, and may override the server's decision to allow the open because it sees the wrong owner/group fields. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Without this patch, logging into two different machines with home directories mounted over NFS4 and then running "vim" and typing ":q" in each reliably produces the following error on the second machine: E137: Viminfo file is not writable: /users/system/rtheys/.viminfo This regression was introduced by 80e52aced138 ("NFSv4: Don't do idmapper upcalls for asynchronous RPC calls", merged during the 2.6.32 cycle) --- after the OPEN call, .viminfo has the default values for st_uid and st_gid (0xfffffffe) cached because we do not want to let rpciod wait for an idmapper upcall to fill them in. The fix used in mainline is to save the owner and group as strings and perform the upcall in _nfs4_proc_open outside the rpciod context, which takes about 600 lines. For stable, we can do something similar with a one-liner: make open check for the stale fields and make a (synchronous) GETATTR call to fill them when needed. Trond dictated the patch, I typed it in, and Rik tested it. Addresses http://bugs.debian.org/659111 and https://bugzilla.redhat.com/789298 Reported-by: Rik Theys <Rik.Theys@esat.kuleuven.be> Explained-by: David Flyn <davidf@rd.bbc.co.uk> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Tested-by: Rik Theys <Rik.Theys@esat.kuleuven.be> --- Hi Ben and Greg, Please consider this patch for inclusion in 3.0.y and 3.2.y kernels. 3.3.y doesn't need it since 6926afd1925a was merged during the 3.3 merge window. Rik tested it against a 3.2.16-based kernel and found it to work. [1] has details. Thanks, Jonathan [1] http://bugs.debian.org/659111 fs/nfs/nfs4proc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 3d6730213f9d..30f6548f2b99 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -1771,6 +1771,7 @@ static int _nfs4_do_open(struct inode *dir, struct path *path, fmode_t fmode, in nfs_setattr_update_inode(state->inode, sattr); nfs_post_op_update_inode(state->inode, opendata->o_res.f_attr); } + nfs_revalidate_inode(server, state->inode); nfs4_opendata_put(opendata); nfs4_put_state_owner(sp); *res = state; -- 1.7.10.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open 2012-05-11 9:20 ` [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open Jonathan Nieder @ 2012-05-12 9:20 ` Ben Hutchings 2012-05-12 19:13 ` Jonathan Nieder 2012-05-18 19:31 ` Greg KH 1 sibling, 1 reply; 4+ messages in thread From: Ben Hutchings @ 2012-05-12 9:20 UTC (permalink / raw) To: Jonathan Nieder Cc: stable, Rik Theys, Trond Myklebust, linux-nfs, David Flyn, Jeff Layton, 659111 [-- Attachment #1: Type: text/plain, Size: 615 bytes --] On Fri, 2012-05-11 at 04:20 -0500, Jonathan Nieder wrote: > This is a shorter (and more appropriate for stable kernels) analog to > the following upstream commit: > > commit 6926afd1925a54a13684ebe05987868890665e2b > Author: Trond Myklebust <Trond.Myklebust@netapp.com> > Date: Sat Jan 7 13:22:46 2012 -0500 > > NFSv4: Save the owner/group name string when doing open [...] Added to the queue for 3.2.y, thanks. Ben. -- Ben Hutchings Experience is directly proportional to the value of equipment destroyed. - Carolyn Scheppner [-- Attachment #2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 828 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open 2012-05-12 9:20 ` Ben Hutchings @ 2012-05-12 19:13 ` Jonathan Nieder 0 siblings, 0 replies; 4+ messages in thread From: Jonathan Nieder @ 2012-05-12 19:13 UTC (permalink / raw) To: Ben Hutchings Cc: stable, Rik Theys, Trond Myklebust, linux-nfs, David Flyn, Jeff Layton, 659111 Ben Hutchings wrote: > On Fri, 2012-05-11 at 04:20 -0500, Jonathan Nieder wrote: >> This is a shorter (and more appropriate for stable kernels) analog to >> the following upstream commit: >> >> commit 6926afd1925a54a13684ebe05987868890665e2b [...] > Added to the queue for 3.2.y, thanks. Nice to see. Thanks for your help and patience. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open 2012-05-11 9:20 ` [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open Jonathan Nieder 2012-05-12 9:20 ` Ben Hutchings @ 2012-05-18 19:31 ` Greg KH 1 sibling, 0 replies; 4+ messages in thread From: Greg KH @ 2012-05-18 19:31 UTC (permalink / raw) To: Jonathan Nieder Cc: stable, Rik Theys, Trond Myklebust, linux-nfs, David Flyn, Jeff Layton, 659111 On Fri, May 11, 2012 at 04:20:20AM -0500, Jonathan Nieder wrote: > This is a shorter (and more appropriate for stable kernels) analog to > the following upstream commit: > > commit 6926afd1925a54a13684ebe05987868890665e2b > Author: Trond Myklebust <Trond.Myklebust@netapp.com> > Date: Sat Jan 7 13:22:46 2012 -0500 > > NFSv4: Save the owner/group name string when doing open > > ...so that we can do the uid/gid mapping outside the asynchronous RPC > context. > This fixes a bug in the current NFSv4 atomic open code where the client > isn't able to determine what the true uid/gid fields of the file are, > (because the asynchronous nature of the OPEN call denies it the ability > to do an upcall) and so fills them with default values, marking the > inode as needing revalidation. > Unfortunately, in some cases, the VFS will do some additional sanity > checks on the file, and may override the server's decision to allow > the open because it sees the wrong owner/group fields. > > Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> > > Without this patch, logging into two different machines with home > directories mounted over NFS4 and then running "vim" and typing ":q" > in each reliably produces the following error on the second machine: > > E137: Viminfo file is not writable: /users/system/rtheys/.viminfo > > This regression was introduced by 80e52aced138 ("NFSv4: Don't do > idmapper upcalls for asynchronous RPC calls", merged during the 2.6.32 > cycle) --- after the OPEN call, .viminfo has the default values for > st_uid and st_gid (0xfffffffe) cached because we do not want to let > rpciod wait for an idmapper upcall to fill them in. > > The fix used in mainline is to save the owner and group as strings and > perform the upcall in _nfs4_proc_open outside the rpciod context, > which takes about 600 lines. For stable, we can do something similar > with a one-liner: make open check for the stale fields and make a > (synchronous) GETATTR call to fill them when needed. > > Trond dictated the patch, I typed it in, and Rik tested it. > > Addresses http://bugs.debian.org/659111 and > https://bugzilla.redhat.com/789298 > > Reported-by: Rik Theys <Rik.Theys@esat.kuleuven.be> > Explained-by: David Flyn <davidf@rd.bbc.co.uk> > Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> > Tested-by: Rik Theys <Rik.Theys@esat.kuleuven.be> > --- > Hi Ben and Greg, > > Please consider this patch for inclusion in 3.0.y and 3.2.y kernels. > 3.3.y doesn't need it since 6926afd1925a was merged during the 3.3 > merge window. Wonderful work, now applied to the 3.0-stable tree, thanks for doing this. greg k-h ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-05-18 19:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <alpine.LRH.2.00.1204242156380.28096@helium.esat.kuleuven.be>
2012-05-11 9:20 ` [PATCH 3.0.y, 3.2.y] NFSv4: Revalidate uid/gid after open Jonathan Nieder
2012-05-12 9:20 ` Ben Hutchings
2012-05-12 19:13 ` Jonathan Nieder
2012-05-18 19:31 ` Greg KH
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).