diff options
author | Jeff Layton <jlayton@poochiereds.net> | 2014-06-21 20:52:17 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-07-12 18:41:25 -0400 |
commit | f11b2a1cfbf5dd783eb55cb470509d06e20d1c78 (patch) | |
tree | 3e7ecb73670953ef7067551582dd3c432736a86c /fs/nfs/client.c | |
parent | a0337d1ddb5a4bd609e3ff0955551cb240340340 (diff) | |
download | linux-f11b2a1cfbf5dd783eb55cb470509d06e20d1c78.tar.gz linux-f11b2a1cfbf5dd783eb55cb470509d06e20d1c78.tar.bz2 linux-f11b2a1cfbf5dd783eb55cb470509d06e20d1c78.zip |
nfs4: copy acceptor name from context to nfs_client
The current CB_COMPOUND handling code tries to compare the principal
name of the request with the cl_hostname in the client. This is not
guaranteed to ever work, particularly if the client happened to mount
a CNAME of the server or a non-fqdn.
Fix this by instead comparing the cr_principal string with the acceptor
name that we get from gssd. In the event that gssd didn't send one
down (i.e. it was too old), then we fall back to trying to use the
cl_hostname as we do today.
Signed-off-by: Jeff Layton <jlayton@poochiereds.net>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/client.c')
-rw-r--r-- | fs/nfs/client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c index b213ee8fb012..168aa0df2658 100644 --- a/fs/nfs/client.c +++ b/fs/nfs/client.c @@ -252,6 +252,7 @@ void nfs_free_client(struct nfs_client *clp) put_net(clp->cl_net); put_nfs_version(clp->cl_nfs_mod); kfree(clp->cl_hostname); + kfree(clp->cl_acceptor); kfree(clp); dprintk("<-- nfs_free_client()\n"); |