Return-Path: linux-nfs-owner@vger.kernel.org Received: from szxga03-in.huawei.com ([119.145.14.66]:5003 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751567Ab3LDFzQ (ORCPT ); Wed, 4 Dec 2013 00:55:16 -0500 From: Weng Meiling To: CC: , , , , Subject: [PATCH 3.4 9/9] nfsd: use the current net ns in write_threads() and write_ports() Date: Wed, 4 Dec 2013 13:53:35 +0800 Message-ID: <1386136415-30976-10-git-send-email-wengmeiling.weng@huawei.com> In-Reply-To: <1386136415-30976-1-git-send-email-wengmeiling.weng@huawei.com> References: <1386136415-30976-1-git-send-email-wengmeiling.weng@huawei.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-nfs-owner@vger.kernel.org List-ID: Upstream commit f7fb86c6e639360ad9c253cec534819ef928a674 (nfsd: use "init_net" for portmapper) introduced a bug. Starting NFSd in a non init_net network namespace will lead to NULL pointer deference. Because RPCBIND client will be NULL when register RPC service with the local portmapper in svc_addsock(). BUG: unable to handle kernel NULL pointer dereference at 0000000000000060 IP: [] call_start+0x10/0x30 [sunrpc] ... Pid: 27770, comm: rpc.nfsd ... RIP: 0010:[] [] call_start+0x10/0x30 [sunrpc] ... [] __rpc_execute+0x91/0x160 [sunrpc] [] rpc_execute+0x71/0x80 [sunrpc] [] rpc_run_task+0x89/0xa0 [sunrpc] [] rpc_call_sync+0x3d/0x70 [sunrpc] [] rpcb_register+0xa6/0xd0 [sunrpc] [] __svc_register+0x1ae/0x1c0 [sunrpc] [] ? cache_alloc_refill+0x85/0x290 [] svc_register+0x8f/0xc0 [sunrpc] [] ? kmem_cache_alloc_trace+0xc3/0x1d0 [] svc_setup_socket+0x1a8/0x2c0 [sunrpc] [] ? read_tsc+0x16/0x40 [] svc_addsock+0x118/0x1c0 [sunrpc] [] ? do_gettimeofday+0x15/0x50 [] ? nfsd_create_serv+0xdc/0x150 [nfsd] [] ? simple_strtoull+0x2c/0x50 [] __write_ports+0x1fe/0x230 [nfsd] [] write_ports+0x37/0x60 [nfsd] [] ? __write_ports+0x230/0x230 [nfsd] [] nfsctl_transaction_write+0x72/0x90 [nfsd] [] vfs_write+0xcb/0x130 [] sys_write+0x50/0x90 Fix it by using the current's network namespace so NFSd uses the consistent net ns all the time. Signed-off-by: Weng Meiling --- fs/nfsd/nfsctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index 1d74af2..4ff0db9 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c @@ -15,6 +15,7 @@ #include #include #include +#include #include "idmap.h" #include "nfsd.h" @@ -389,7 +390,7 @@ static ssize_t write_threads(struct file *file, char *buf, size_t size) { char *mesg = buf; int rv; - struct net *net = &init_net; + struct net *net = current->nsproxy->net_ns; if (size > 0) { int newthreads; @@ -857,7 +858,7 @@ static ssize_t __write_ports(struct file *file, char *buf, size_t size, static ssize_t write_ports(struct file *file, char *buf, size_t size) { ssize_t rv; - struct net *net = &init_net; + struct net *net = current->nsproxy->net_ns; mutex_lock(&nfsd_mutex); rv = __write_ports(file, buf, size, net); -- 1.8.2.2