2021-09-28 03:17:23

by Wang Hai

[permalink] [raw]
Subject: [PATCH net 2/2] auth_gss: Fix deadlock that blocks rpcsec_gss_exit_net when use-gss-proxy==1

When use-gss-proxy is set to 1, write_gssp() creates a rpc client in
gssp_rpc_create(), this increases the netns refcount by 2, these
refcounts are supposed to be released in rpcsec_gss_exit_net(), but it
will never happen because rpcsec_gss_exit_net() is triggered only when
the netns refcount gets to 0, specifically:
refcount=0 -> cleanup_net() -> ops_exit_list -> rpcsec_gss_exit_net
It is a deadlock situation here, refcount will never get to 0 unless
rpcsec_gss_exit_net() is called. So, in this case, the netns refcount
should not be increased.

In this case, xprt will take a netns refcount which is not supposed
to be taken. Add a new flag to rpc_create_args called
RPC_CLNT_CREATE_NO_NET_REF for not increasing the netns refcount.

It is safe not to hold the netns refcount, because when cleanup_net(), it
will hold the gssp_lock and then shut down the rpc client synchronously.

Signed-off-by: Wang Hai <[email protected]>
---
include/linux/sunrpc/clnt.h | 1 +
include/linux/sunrpc/xprt.h | 6 ++++--
net/sunrpc/auth_gss/gss_rpc_upcall.c | 3 ++-
net/sunrpc/clnt.c | 2 ++
net/sunrpc/xprt.c | 13 +++++++++----
net/sunrpc/xprtrdma/svc_rdma_backchannel.c | 2 +-
net/sunrpc/xprtrdma/transport.c | 2 +-
net/sunrpc/xprtsock.c | 4 +++-
8 files changed, 23 insertions(+), 10 deletions(-)

diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h
index a4661646adc9..6323518e7b1c 100644
--- a/include/linux/sunrpc/clnt.h
+++ b/include/linux/sunrpc/clnt.h
@@ -159,6 +159,7 @@ struct rpc_add_xprt_test {
#define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (1UL << 9)
#define RPC_CLNT_CREATE_SOFTERR (1UL << 10)
#define RPC_CLNT_CREATE_REUSEPORT (1UL << 11)
+#define RPC_CLNT_CREATE_NO_NET_REF (1UL << 12)

struct rpc_clnt *rpc_create(struct rpc_create_args *args);
struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *,
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h
index 955ea4d7af0b..cc518a58b93c 100644
--- a/include/linux/sunrpc/xprt.h
+++ b/include/linux/sunrpc/xprt.h
@@ -284,6 +284,7 @@ struct rpc_xprt {
} stat;

struct net *xprt_net;
+ bool xprt_net_refcnt;
const char *servername;
const char *address_strings[RPC_DISPLAY_MAX];
#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
@@ -317,6 +318,7 @@ static inline int bc_prealloc(struct rpc_rqst *req)

#define XPRT_CREATE_INFINITE_SLOTS (1U)
#define XPRT_CREATE_NO_IDLE_TIMEOUT (1U << 1)
+#define XPRT_CREATE_NO_NET_REF (1U << 2)

struct xprt_create {
int ident; /* XPRT_TRANSPORT identifier */
@@ -370,8 +372,8 @@ void xprt_release(struct rpc_task *task);
struct rpc_xprt * xprt_get(struct rpc_xprt *xprt);
void xprt_put(struct rpc_xprt *xprt);
struct rpc_xprt * xprt_alloc(struct net *net, size_t size,
- unsigned int num_prealloc,
- unsigned int max_req);
+ unsigned int num_prealloc,
+ unsigned int max_req, bool xprt_net_refcnt);
void xprt_free(struct rpc_xprt *);
void xprt_add_backlog(struct rpc_xprt *xprt, struct rpc_task *task);
bool xprt_wake_up_backlog(struct rpc_xprt *xprt, struct rpc_rqst *req);
diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.c b/net/sunrpc/auth_gss/gss_rpc_upcall.c
index 61c276bddaf2..8c35805470d5 100644
--- a/net/sunrpc/auth_gss/gss_rpc_upcall.c
+++ b/net/sunrpc/auth_gss/gss_rpc_upcall.c
@@ -98,7 +98,8 @@ static int gssp_rpc_create(struct net *net, struct rpc_clnt **_clnt)
* done without the correct namespace:
*/
.flags = RPC_CLNT_CREATE_NOPING |
- RPC_CLNT_CREATE_NO_IDLE_TIMEOUT
+ RPC_CLNT_CREATE_NO_IDLE_TIMEOUT |
+ RPC_CLNT_CREATE_NO_NET_REF
};
struct rpc_clnt *clnt;
int result = 0;
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index f056ff931444..672bebae50ca 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -543,6 +543,8 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *args)
xprtargs.flags |= XPRT_CREATE_INFINITE_SLOTS;
if (args->flags & RPC_CLNT_CREATE_NO_IDLE_TIMEOUT)
xprtargs.flags |= XPRT_CREATE_NO_IDLE_TIMEOUT;
+ if (args->flags & RPC_CLNT_CREATE_NO_NET_REF)
+ xprtargs.flags |= XPRT_CREATE_NO_NET_REF;
/*
* If the caller chooses not to specify a hostname, whip
* up a string representation of the passed-in address.
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
index cfd681700d1a..ffa6de06f21b 100644
--- a/net/sunrpc/xprt.c
+++ b/net/sunrpc/xprt.c
@@ -1794,8 +1794,8 @@ static void xprt_free_id(struct rpc_xprt *xprt)
}

struct rpc_xprt *xprt_alloc(struct net *net, size_t size,
- unsigned int num_prealloc,
- unsigned int max_alloc)
+ unsigned int num_prealloc,
+ unsigned int max_alloc, bool xprt_net_refcnt)
{
struct rpc_xprt *xprt;
struct rpc_rqst *req;
@@ -1806,6 +1806,7 @@ struct rpc_xprt *xprt_alloc(struct net *net, size_t size,
goto out;

xprt_alloc_id(xprt);
+ xprt->xprt_net_refcnt = xprt_net_refcnt;
xprt_init(xprt, net);

for (i = 0; i < num_prealloc; i++) {
@@ -1832,7 +1833,8 @@ EXPORT_SYMBOL_GPL(xprt_alloc);

void xprt_free(struct rpc_xprt *xprt)
{
- put_net(xprt->xprt_net);
+ if (xprt->xprt_net_refcnt)
+ put_net(xprt->xprt_net);
xprt_free_all_slots(xprt);
xprt_free_id(xprt);
rpc_sysfs_xprt_destroy(xprt);
@@ -2024,7 +2026,10 @@ static void xprt_init(struct rpc_xprt *xprt, struct net *net)

xprt_init_xid(xprt);

- xprt->xprt_net = get_net(net);
+ if (xprt->xprt_net_refcnt)
+ xprt->xprt_net = get_net(net);
+ else
+ xprt->xprt_net = net;
}

/**
diff --git a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
index 16897fcb659c..8cd7a38da0f0 100644
--- a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
+++ b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c
@@ -251,7 +251,7 @@ xprt_setup_rdma_bc(struct xprt_create *args)

xprt = xprt_alloc(args->net, sizeof(*new_xprt),
RPCRDMA_MAX_BC_REQUESTS,
- RPCRDMA_MAX_BC_REQUESTS);
+ RPCRDMA_MAX_BC_REQUESTS, true);
if (!xprt)
return ERR_PTR(-ENOMEM);

diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c
index 16e5696314a4..f0f7faa571f6 100644
--- a/net/sunrpc/xprtrdma/transport.c
+++ b/net/sunrpc/xprtrdma/transport.c
@@ -323,7 +323,7 @@ xprt_setup_rdma(struct xprt_create *args)
return ERR_PTR(-EIO);

xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt), 0,
- xprt_rdma_slot_table_entries);
+ xprt_rdma_slot_table_entries, true);
if (!xprt) {
module_put(THIS_MODULE);
return ERR_PTR(-ENOMEM);
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index 04f1b78bcbca..b6c15159992a 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -2740,6 +2740,8 @@ static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
{
struct rpc_xprt *xprt;
struct sock_xprt *new;
+ bool xprt_net_refcnt = args->flags & XPRT_CREATE_NO_NET_REF ?
+ false : true;

if (args->addrlen > sizeof(xprt->addr)) {
dprintk("RPC: xs_setup_xprt: address too large\n");
@@ -2747,7 +2749,7 @@ static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
}

xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
- max_slot_table_size);
+ max_slot_table_size, xprt_net_refcnt);
if (xprt == NULL) {
dprintk("RPC: xs_setup_xprt: couldn't allocate "
"rpc_xprt\n");
--
2.17.1


2021-11-09 17:21:17

by J. Bruce Fields

[permalink] [raw]
Subject: Re: [PATCH net 2/2] auth_gss: Fix deadlock that blocks rpcsec_gss_exit_net when use-gss-proxy==1

On Thu, Sep 30, 2021 at 09:56:03AM +0800, wanghai (M) wrote:
>
> 在 2021/9/30 5:12, [email protected] 写道:
> >On Tue, Sep 28, 2021 at 11:43:00AM -0400, [email protected] wrote:
> >>On Tue, Sep 28, 2021 at 03:36:58PM +0000, Trond Myklebust wrote:
> >>>What is the use case here? Starting the gssd daemon or knfsd in
> >>>separate chrooted environments? We already know that they have to be
> >>>started in the same net namespace, which pretty much ensures it has to
> >>>be the same container.
> >>Somehow I forgot that knfsd startup is happening in some real process's
> >>context too (not just a kthread).
> >>
> >>OK, great, I agree, that sounds like it should work.

Ugh, took me a while to get back to this and I went down a couple dead
ends.

The result from selinux's point of view is that rpc.nfsd is doing things
it previously only expected gssproxy to do. Fixable with an update to
selinux policy. And easily fixed in the meantime by cut-and-pasting the
suggestions from the logs.

Still, the result's that mounts fail when you update the kernel, which
seems a violation of our usual rules about regressions. I'd like to do
better.

--b.

2021-11-17 19:19:11

by J. Bruce Fields

[permalink] [raw]
Subject: Re: [PATCH net 2/2] auth_gss: Fix deadlock that blocks rpcsec_gss_exit_net when use-gss-proxy==1

On Tue, Nov 09, 2021 at 12:21:11PM -0500, [email protected] wrote:
> On Thu, Sep 30, 2021 at 09:56:03AM +0800, wanghai (M) wrote:
> >
> > 在 2021/9/30 5:12, [email protected] 写道:
> > >On Tue, Sep 28, 2021 at 11:43:00AM -0400, [email protected] wrote:
> > >>On Tue, Sep 28, 2021 at 03:36:58PM +0000, Trond Myklebust wrote:
> > >>>What is the use case here? Starting the gssd daemon or knfsd in
> > >>>separate chrooted environments? We already know that they have to be
> > >>>started in the same net namespace, which pretty much ensures it has to
> > >>>be the same container.
> > >>Somehow I forgot that knfsd startup is happening in some real process's
> > >>context too (not just a kthread).
> > >>
> > >>OK, great, I agree, that sounds like it should work.
>
> Ugh, took me a while to get back to this and I went down a couple dead
> ends.
>
> The result from selinux's point of view is that rpc.nfsd is doing things
> it previously only expected gssproxy to do. Fixable with an update to
> selinux policy. And easily fixed in the meantime by cut-and-pasting the
> suggestions from the logs.
>
> Still, the result's that mounts fail when you update the kernel, which
> seems a violation of our usual rules about regressions. I'd like to do
> better.

So, I'm not applying this, but here's the patch, for what it's worth.

I'm not sure what the alternative is. Do we get a chance to do
something when gssproxy closes the connection, maybe?

--b.

commit 9fc4ae28ec95
Author: J. Bruce Fields <[email protected]>
Date: Thu Nov 4 16:55:28 2021 -0400

nfsd: connect to gssp-proxy on nfsd start

We communicate with gss-proxy using by rpc over a local unix socket.
The rpc client is set up in the context of the process that writes to
/proc/net/rpc/use-gss-proxy. Unfortunately that leaves us with no clear
place to shut down that client; we've been trying to shut it down when
the network namespace is destroyed, but the rpc client holds a reference
on the network namespace, so that never happens.

We do need to create the client in the context of a process that's
likely to be in the correct namespace. We can use rpc.nfsd instead. In
particular, we use create the rpc client when sockets are added to an
rpc server.

Signed-off-by: J. Bruce Fields <[email protected]>

diff --git a/include/linux/sunrpc/svcauth.h b/include/linux/sunrpc/svcauth.h
index 6d9cc9080aca..b60ecb51511d 100644
--- a/include/linux/sunrpc/svcauth.h
+++ b/include/linux/sunrpc/svcauth.h
@@ -183,4 +183,12 @@ static inline unsigned long hash_mem(char const *buf, int length, int bits)
return full_name_hash(NULL, buf, length) >> (32 - bits);
}

+struct gssp_clnt_ops {
+ struct module *owner;
+ int (*constructor)(struct net*);
+ void (*destructor)(struct net*);
+};
+
+extern struct gssp_clnt_ops gpops;
+
#endif /* _LINUX_SUNRPC_SVCAUTH_H_ */
diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.c b/net/sunrpc/auth_gss/gss_rpc_upcall.c
index 61c276bddaf2..04a311305b26 100644
--- a/net/sunrpc/auth_gss/gss_rpc_upcall.c
+++ b/net/sunrpc/auth_gss/gss_rpc_upcall.c
@@ -122,7 +122,6 @@ static int gssp_rpc_create(struct net *net, struct rpc_clnt **_clnt)

void init_gssp_clnt(struct sunrpc_net *sn)
{
- mutex_init(&sn->gssp_lock);
sn->gssp_clnt = NULL;
}

@@ -132,25 +131,23 @@ int set_gssp_clnt(struct net *net)
struct rpc_clnt *clnt;
int ret;

- mutex_lock(&sn->gssp_lock);
- ret = gssp_rpc_create(net, &clnt);
- if (!ret) {
- if (sn->gssp_clnt)
- rpc_shutdown_client(sn->gssp_clnt);
+ if (!sn->gssp_clnt) {
+ ret = gssp_rpc_create(net, &clnt);
+ if (ret)
+ return ret;
sn->gssp_clnt = clnt;
}
- mutex_unlock(&sn->gssp_lock);
- return ret;
+ return 0;
}

-void clear_gssp_clnt(struct sunrpc_net *sn)
+void clear_gssp_clnt(struct net *net)
{
- mutex_lock(&sn->gssp_lock);
+ struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
+
if (sn->gssp_clnt) {
rpc_shutdown_client(sn->gssp_clnt);
sn->gssp_clnt = NULL;
}
- mutex_unlock(&sn->gssp_lock);
}

static struct rpc_clnt *get_gssp_clnt(struct sunrpc_net *sn)
diff --git a/net/sunrpc/auth_gss/gss_rpc_upcall.h b/net/sunrpc/auth_gss/gss_rpc_upcall.h
index 31e96344167e..fd70f4fb56a9 100644
--- a/net/sunrpc/auth_gss/gss_rpc_upcall.h
+++ b/net/sunrpc/auth_gss/gss_rpc_upcall.h
@@ -31,6 +31,6 @@ void gssp_free_upcall_data(struct gssp_upcall_data *data);

void init_gssp_clnt(struct sunrpc_net *);
int set_gssp_clnt(struct net *);
-void clear_gssp_clnt(struct sunrpc_net *);
+void clear_gssp_clnt(struct net *);

#endif /* _GSS_RPC_UPCALL_H */
diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
index 7dba6a9c213a..79212437558f 100644
--- a/net/sunrpc/auth_gss/svcauth_gss.c
+++ b/net/sunrpc/auth_gss/svcauth_gss.c
@@ -1449,9 +1449,6 @@ static ssize_t write_gssp(struct file *file, const char __user *buf,
return res;
if (i != 1)
return -EINVAL;
- res = set_gssp_clnt(net);
- if (res)
- return res;
res = set_gss_proxy(net, 1);
if (res)
return res;
@@ -1505,10 +1502,8 @@ static void destroy_use_gss_proxy_proc_entry(struct net *net)
{
struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);

- if (sn->use_gssp_proc) {
+ if (sn->use_gssp_proc)
remove_proc_entry("use-gss-proxy", sn->proc_net_rpc);
- clear_gssp_clnt(sn);
- }
}
#else /* CONFIG_PROC_FS */

@@ -1999,9 +1994,16 @@ gss_svc_shutdown_net(struct net *net)
rsc_cache_destroy_net(net);
}

+struct gssp_clnt_ops mygpops = {
+ .owner = THIS_MODULE,
+ .constructor = set_gssp_clnt,
+ .destructor = clear_gssp_clnt,
+};
+
int
gss_svc_init(void)
{
+ gpops = mygpops;
return svc_auth_register(RPC_AUTH_GSS, &svcauthops_gss);
}

@@ -2009,4 +2011,5 @@ void
gss_svc_shutdown(void)
{
svc_auth_unregister(RPC_AUTH_GSS);
+ gpops = mygpops;
}
diff --git a/net/sunrpc/netns.h b/net/sunrpc/netns.h
index 7ec10b92bea1..7d8653b3d81b 100644
--- a/net/sunrpc/netns.h
+++ b/net/sunrpc/netns.h
@@ -28,6 +28,7 @@ struct sunrpc_net {
unsigned int rpcb_is_af_local : 1;

struct mutex gssp_lock;
+ int gssp_users;
struct rpc_clnt *gssp_clnt;
int use_gss_proxy;
int pipe_version;
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c
index 691c0000e9ea..463c975151d7 100644
--- a/net/sunrpc/sunrpc_syms.c
+++ b/net/sunrpc/sunrpc_syms.c
@@ -54,6 +54,8 @@ static __net_init int sunrpc_init_net(struct net *net)
INIT_LIST_HEAD(&sn->all_clients);
spin_lock_init(&sn->rpc_client_lock);
spin_lock_init(&sn->rpcb_clnt_lock);
+ mutex_init(&sn->gssp_lock);
+ sn->gssp_users = 0;
return 0;

err_pipefs:
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index 1e99ba1b9d72..30d9a9779093 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -19,6 +19,7 @@
#include <linux/module.h>
#include <linux/netdevice.h>
#include <trace/events/sunrpc.h>
+#include "netns.h"

#define RPCDBG_FACILITY RPCDBG_SVCXPRT

@@ -322,6 +323,37 @@ static int _svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
return -EPROTONOSUPPORT;
}

+struct gssp_clnt_ops gpops = {};
+EXPORT_SYMBOL_GPL(gpops);
+
+int get_gssp_clnt(struct net *net)
+{
+ struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
+ int ret;
+
+ mutex_lock(&sn->gssp_lock);
+
+ if (try_module_get(gpops.owner) && gpops.constructor(net)) {
+ ret = gpops.constructor(net);
+ module_put(gpops.owner);
+ }
+ sn->gssp_users++;
+ mutex_unlock(&sn->gssp_lock);
+
+ return ret;
+}
+
+void put_gssp_clnt(struct net *net)
+{
+ struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
+
+ mutex_lock(&sn->gssp_lock);
+ sn->gssp_users--;
+ if (!sn->gssp_users && sn->gssp_clnt)
+ gpops.destructor(net);
+ mutex_unlock(&sn->gssp_lock);
+}
+
int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
struct net *net, const int family,
const unsigned short port, int flags,
@@ -329,11 +361,15 @@ int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
{
int err;

+ get_gssp_clnt(net);
+
err = _svc_create_xprt(serv, xprt_name, net, family, port, flags, cred);
if (err == -EPROTONOSUPPORT) {
request_module("svc%s", xprt_name);
err = _svc_create_xprt(serv, xprt_name, net, family, port, flags, cred);
}
+ if (err < 0)
+ put_gssp_clnt(net);
return err;
}
EXPORT_SYMBOL_GPL(svc_create_xprt);
@@ -1038,6 +1074,7 @@ static void svc_delete_xprt(struct svc_xprt *xprt)
{
struct svc_serv *serv = xprt->xpt_server;
struct svc_deferred_req *dr;
+ struct net *net = xprt->xpt_net;

if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
return;
@@ -1058,6 +1095,8 @@ static void svc_delete_xprt(struct svc_xprt *xprt)
kfree(dr);

call_xpt_users(xprt);
+ if (!test_bit(XPT_TEMP, &xprt->xpt_flags))
+ put_gssp_clnt(net);
svc_xprt_put(xprt);
}