nfsd: knfsd must use the container user namespace
Convert knfsd to use the user namespace of the container that started the server processes. Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:

committed by
J. Bruce Fields

parent
e6667c73a2
commit
e45d1a1835
@@ -17,6 +17,7 @@
|
||||
#include <linux/nfs3.h>
|
||||
#include <linux/nfs4.h>
|
||||
#include <linux/sunrpc/svc.h>
|
||||
#include <linux/sunrpc/svc_xprt.h>
|
||||
#include <linux/sunrpc/msg_prot.h>
|
||||
|
||||
#include <uapi/linux/nfsd/debug.h>
|
||||
@@ -112,6 +113,12 @@ static inline int nfsd_v4client(struct svc_rqst *rq)
|
||||
{
|
||||
return rq->rq_prog == NFS_PROGRAM && rq->rq_vers == 4;
|
||||
}
|
||||
static inline struct user_namespace *
|
||||
nfsd_user_namespace(const struct svc_rqst *rqstp)
|
||||
{
|
||||
const struct cred *cred = rqstp->rq_xprt->xpt_cred;
|
||||
return cred ? cred->user_ns : &init_user_ns;
|
||||
}
|
||||
|
||||
/*
|
||||
* NFSv4 State
|
||||
|
Reference in New Issue
Block a user