* [PATCH] SUNRPC: set desired file system root before connecting local transports
@ 2012-02-29 14:59 Stanislav Kinsbursky
[not found] ` <20120229145915.24030.31551.stgit-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Stanislav Kinsbursky @ 2012-02-29 14:59 UTC (permalink / raw)
To: Trond.Myklebust
Cc: linux-nfs, xemul, neilb, netdev, linux-kernel, jbottomley,
bfields, davem, devel
Today, there is a problem in connecting of local SUNRPC thansports. These
transports uses UNIX sockets and connection itself is done by rpciod workqueue.
But UNIX sockets lookup is done in context of process file system root. I.e.
all local thunsports are connecting in rpciod context.
This works nice until we will try to mount NFS from process with other root -
for example in container. This container can have it's own (nested) root and
rcpbind process, listening on it's own unix sockets. But NFS mount attempt in
this container will register new service (Lockd for example) in global rpcbind
- not containers's one.
This patch solves the problem by switching rpciod kernel thread's file system
root to right one (stored on transport) while connecting of local transports.
Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
---
fs/fs_struct.c | 1 +
net/sunrpc/xprtsock.c | 32 ++++++++++++++++++++++++++++++--
2 files changed, 31 insertions(+), 2 deletions(-)
diff --git a/fs/fs_struct.c b/fs/fs_struct.c
index 78b519c..0f984c3 100644
--- a/fs/fs_struct.c
+++ b/fs/fs_struct.c
@@ -36,6 +36,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path)
if (old_root.dentry)
path_put_longterm(&old_root);
}
+EXPORT_SYMBOL_GPL(set_fs_root);
/*
* Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index 4c8281d..c94c181 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -37,6 +37,7 @@
#include <linux/sunrpc/svcsock.h>
#include <linux/sunrpc/xprtsock.h>
#include <linux/file.h>
+#include <linux/fs_struct.h>
#ifdef CONFIG_SUNRPC_BACKCHANNEL
#include <linux/sunrpc/bc_xprt.h>
#endif
@@ -255,6 +256,11 @@ struct sock_xprt {
void (*old_state_change)(struct sock *);
void (*old_write_space)(struct sock *);
void (*old_error_report)(struct sock *);
+
+ /*
+ * Saved transport creator root. Required for local transports only.
+ */
+ struct path root;
};
/*
@@ -1891,6 +1897,7 @@ static void xs_local_setup_socket(struct work_struct *work)
struct rpc_xprt *xprt = &transport->xprt;
struct socket *sock;
int status = -EIO;
+ struct path root;
if (xprt->shutdown)
goto out;
@@ -1908,7 +1915,14 @@ static void xs_local_setup_socket(struct work_struct *work)
dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
+ get_fs_root(current->fs, &root);
+ set_fs_root(current->fs, &transport->root);
+
status = xs_local_finish_connecting(xprt, sock);
+
+ set_fs_root(current->fs, &root);
+ path_put(&root);
+
switch (status) {
case 0:
dprintk("RPC: xprt %p connected to %s\n",
@@ -2213,6 +2227,18 @@ static void xs_connect(struct rpc_task *task)
}
}
+static void xs_local_destroy(struct rpc_xprt *xprt)
+{
+ struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
+ struct path root = transport->root;
+
+ dprintk("RPC: xs_local_destroy xprt %p\n", xprt);
+
+ xs_destroy(xprt);
+
+ path_put(&root);
+}
+
/**
* xs_local_print_stats - display AF_LOCAL socket-specifc stats
* @xprt: rpc_xprt struct containing statistics
@@ -2431,7 +2457,7 @@ static struct rpc_xprt_ops xs_local_ops = {
.send_request = xs_local_send_request,
.set_retrans_timeout = xprt_set_retrans_timeout_def,
.close = xs_close,
- .destroy = xs_destroy,
+ .destroy = xs_local_destroy,
.print_stats = xs_local_print_stats,
};
@@ -2606,8 +2632,10 @@ static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
xprt->address_strings[RPC_DISPLAY_ADDR]);
- if (try_module_get(THIS_MODULE))
+ if (try_module_get(THIS_MODULE)) {
+ get_fs_root(current->fs, &transport->root);
return xprt;
+ }
ret = ERR_PTR(-EINVAL);
out_err:
xprt_free(xprt);
^ permalink raw reply related [flat|nested] 6+ messages in thread[parent not found: <20120229145915.24030.31551.stgit-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>]
* Re: [PATCH] SUNRPC: set desired file system root before connecting local transports [not found] ` <20120229145915.24030.31551.stgit-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org> @ 2012-03-07 0:19 ` Myklebust, Trond 2012-03-07 0:21 ` Myklebust, Trond 2012-03-07 8:34 ` Stanislav Kinsbursky 0 siblings, 2 replies; 6+ messages in thread From: Myklebust, Trond @ 2012-03-07 0:19 UTC (permalink / raw) To: Stanislav Kinsbursky Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, xemul-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org, neilb-l3A5Bk7waGM@public.gmane.org, netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, jbottomley-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org, bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org, davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org, devel-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset="utf-8", Size: 3390 bytes --] On Wed, 2012-02-29 at 18:59 +0400, Stanislav Kinsbursky wrote: > Today, there is a problem in connecting of local SUNRPC thansports. These > transports uses UNIX sockets and connection itself is done by rpciod workqueue. > But UNIX sockets lookup is done in context of process file system root. I.e. > all local thunsports are connecting in rpciod context. > This works nice until we will try to mount NFS from process with other root - > for example in container. This container can have it's own (nested) root and > rcpbind process, listening on it's own unix sockets. But NFS mount attempt in > this container will register new service (Lockd for example) in global rpcbind > - not containers's one. > This patch solves the problem by switching rpciod kernel thread's file system > root to right one (stored on transport) while connecting of local transports. > > Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> > > --- > fs/fs_struct.c | 1 + > net/sunrpc/xprtsock.c | 32 ++++++++++++++++++++++++++++++-- > 2 files changed, 31 insertions(+), 2 deletions(-) > > diff --git a/fs/fs_struct.c b/fs/fs_struct.c > index 78b519c..0f984c3 100644 > --- a/fs/fs_struct.c > +++ b/fs/fs_struct.c > @@ -36,6 +36,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path) > if (old_root.dentry) > path_put_longterm(&old_root); > } > +EXPORT_SYMBOL_GPL(set_fs_root); > > /* > * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. > diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c > index 4c8281d..c94c181 100644 > --- a/net/sunrpc/xprtsock.c > +++ b/net/sunrpc/xprtsock.c > @@ -37,6 +37,7 @@ > #include <linux/sunrpc/svcsock.h> > #include <linux/sunrpc/xprtsock.h> > #include <linux/file.h> > +#include <linux/fs_struct.h> > #ifdef CONFIG_SUNRPC_BACKCHANNEL > #include <linux/sunrpc/bc_xprt.h> > #endif > @@ -255,6 +256,11 @@ struct sock_xprt { > void (*old_state_change)(struct sock *); > void (*old_write_space)(struct sock *); > void (*old_error_report)(struct sock *); > + > + /* > + * Saved transport creator root. Required for local transports only. > + */ > + struct path root; > }; > > /* > @@ -1891,6 +1897,7 @@ static void xs_local_setup_socket(struct work_struct *work) > struct rpc_xprt *xprt = &transport->xprt; > struct socket *sock; > int status = -EIO; > + struct path root; > > if (xprt->shutdown) > goto out; > @@ -1908,7 +1915,14 @@ static void xs_local_setup_socket(struct work_struct *work) > dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n", > xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); > > + get_fs_root(current->fs, &root); > + set_fs_root(current->fs, &transport->root); > + > status = xs_local_finish_connecting(xprt, sock); > + > + set_fs_root(current->fs, &root); > + path_put(&root); > + > switch (status) { > case 0: Hi Stanislav, What happens here if the mount namespace of the process that originally created the sock_xprt no longer exists? Should we care about that case? Cheers Trond -- Trond Myklebust Linux NFS client maintainer NetApp Trond.Myklebust@netapp.com www.netapp.com N§²æìr¸yúèØb²X¬¶Ç§vØ^)Þº{.nÇ+·¥{±û"Ø^nr¡ö¦zË\x1aëh¨èÚ&¢îý»\x05ËÛÔØï¦v¬Îf\x1dp)¹¹br ê+Ê+zf£¢·h§~Ûiÿûàz¹\x1e®w¥¢¸?¨èÚ&¢)ߢ^[f ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] SUNRPC: set desired file system root before connecting local transports 2012-03-07 0:19 ` Myklebust, Trond @ 2012-03-07 0:21 ` Myklebust, Trond 2012-03-07 8:36 ` Stanislav Kinsbursky 2012-03-07 8:34 ` Stanislav Kinsbursky 1 sibling, 1 reply; 6+ messages in thread From: Myklebust, Trond @ 2012-03-07 0:21 UTC (permalink / raw) To: Stanislav Kinsbursky Cc: linux-nfs@vger.kernel.org, xemul@parallels.com, neilb@suse.de, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, jbottomley@parallels.com, bfields@fieldses.org, davem@davemloft.net, devel@openvz.org On Wed, 2012-03-07 at 00:19 +0000, Myklebust, Trond wrote: > On Wed, 2012-02-29 at 18:59 +0400, Stanislav Kinsbursky wrote: > > Today, there is a problem in connecting of local SUNRPC thansports. These > > transports uses UNIX sockets and connection itself is done by rpciod workqueue. > > But UNIX sockets lookup is done in context of process file system root. I.e. > > all local thunsports are connecting in rpciod context. > > This works nice until we will try to mount NFS from process with other root - > > for example in container. This container can have it's own (nested) root and > > rcpbind process, listening on it's own unix sockets. But NFS mount attempt in > > this container will register new service (Lockd for example) in global rpcbind > > - not containers's one. > > This patch solves the problem by switching rpciod kernel thread's file system > > root to right one (stored on transport) while connecting of local transports. > > > > Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> > > > > --- > > fs/fs_struct.c | 1 + > > net/sunrpc/xprtsock.c | 32 ++++++++++++++++++++++++++++++-- > > 2 files changed, 31 insertions(+), 2 deletions(-) > > > > diff --git a/fs/fs_struct.c b/fs/fs_struct.c > > index 78b519c..0f984c3 100644 > > --- a/fs/fs_struct.c > > +++ b/fs/fs_struct.c > > @@ -36,6 +36,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path) > > if (old_root.dentry) > > path_put_longterm(&old_root); > > } > > +EXPORT_SYMBOL_GPL(set_fs_root); > > > > /* > > * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. > > diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c > > index 4c8281d..c94c181 100644 > > --- a/net/sunrpc/xprtsock.c > > +++ b/net/sunrpc/xprtsock.c > > @@ -37,6 +37,7 @@ > > #include <linux/sunrpc/svcsock.h> > > #include <linux/sunrpc/xprtsock.h> > > #include <linux/file.h> > > +#include <linux/fs_struct.h> > > #ifdef CONFIG_SUNRPC_BACKCHANNEL > > #include <linux/sunrpc/bc_xprt.h> > > #endif > > @@ -255,6 +256,11 @@ struct sock_xprt { > > void (*old_state_change)(struct sock *); > > void (*old_write_space)(struct sock *); > > void (*old_error_report)(struct sock *); > > + > > + /* > > + * Saved transport creator root. Required for local transports only. > > + */ > > + struct path root; > > }; > > > > /* > > @@ -1891,6 +1897,7 @@ static void xs_local_setup_socket(struct work_struct *work) > > struct rpc_xprt *xprt = &transport->xprt; > > struct socket *sock; > > int status = -EIO; > > + struct path root; > > > > if (xprt->shutdown) > > goto out; > > @@ -1908,7 +1915,14 @@ static void xs_local_setup_socket(struct work_struct *work) > > dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n", > > xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); > > > > + get_fs_root(current->fs, &root); > > + set_fs_root(current->fs, &transport->root); > > + > > status = xs_local_finish_connecting(xprt, sock); > > + > > + set_fs_root(current->fs, &root); > > + path_put(&root); > > + > > switch (status) { > > case 0: > > Hi Stanislav, > > What happens here if the mount namespace of the process that originally > created the sock_xprt no longer exists? Should we care about that case? > > Cheers > Trond BTW: We will in any case need Al Viro and Christoph's ACK in order to export the set_fs_root() function. -- Trond Myklebust Linux NFS client maintainer NetApp Trond.Myklebust@netapp.com www.netapp.com ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] SUNRPC: set desired file system root before connecting local transports 2012-03-07 0:21 ` Myklebust, Trond @ 2012-03-07 8:36 ` Stanislav Kinsbursky 0 siblings, 0 replies; 6+ messages in thread From: Stanislav Kinsbursky @ 2012-03-07 8:36 UTC (permalink / raw) To: Myklebust, Trond Cc: linux-nfs@vger.kernel.org, Pavel Emelianov, neilb@suse.de, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, James Bottomley, bfields@fieldses.org, davem@davemloft.net, devel@openvz.org 07.03.2012 04:21, Myklebust, Trond пишет: > BTW: We will in any case need Al Viro and Christoph's ACK in order to > export the set_fs_root() function. Yep, you right. Is it better to add them into recipients on a reply to the patch or send the patch once more? -- Best regards, Stanislav Kinsbursky ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] SUNRPC: set desired file system root before connecting local transports 2012-03-07 0:19 ` Myklebust, Trond 2012-03-07 0:21 ` Myklebust, Trond @ 2012-03-07 8:34 ` Stanislav Kinsbursky [not found] ` <4F571D83.2010001-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org> 1 sibling, 1 reply; 6+ messages in thread From: Stanislav Kinsbursky @ 2012-03-07 8:34 UTC (permalink / raw) To: Myklebust, Trond Cc: linux-nfs@vger.kernel.org, Pavel Emelianov, neilb@suse.de, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, James Bottomley, bfields@fieldses.org, davem@davemloft.net, devel@openvz.org 07.03.2012 04:19, Myklebust, Trond пишет: > On Wed, 2012-02-29 at 18:59 +0400, Stanislav Kinsbursky wrote: >> Today, there is a problem in connecting of local SUNRPC thansports. These >> transports uses UNIX sockets and connection itself is done by rpciod workqueue. >> But UNIX sockets lookup is done in context of process file system root. I.e. >> all local thunsports are connecting in rpciod context. >> This works nice until we will try to mount NFS from process with other root - >> for example in container. This container can have it's own (nested) root and >> rcpbind process, listening on it's own unix sockets. But NFS mount attempt in >> this container will register new service (Lockd for example) in global rpcbind >> - not containers's one. >> This patch solves the problem by switching rpciod kernel thread's file system >> root to right one (stored on transport) while connecting of local transports. >> >> Signed-off-by: Stanislav Kinsbursky<skinsbursky@parallels.com> >> >> --- >> fs/fs_struct.c | 1 + >> net/sunrpc/xprtsock.c | 32 ++++++++++++++++++++++++++++++-- >> 2 files changed, 31 insertions(+), 2 deletions(-) >> >> diff --git a/fs/fs_struct.c b/fs/fs_struct.c >> index 78b519c..0f984c3 100644 >> --- a/fs/fs_struct.c >> +++ b/fs/fs_struct.c >> @@ -36,6 +36,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path) >> if (old_root.dentry) >> path_put_longterm(&old_root); >> } >> +EXPORT_SYMBOL_GPL(set_fs_root); >> >> /* >> * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. >> diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c >> index 4c8281d..c94c181 100644 >> --- a/net/sunrpc/xprtsock.c >> +++ b/net/sunrpc/xprtsock.c >> @@ -37,6 +37,7 @@ >> #include<linux/sunrpc/svcsock.h> >> #include<linux/sunrpc/xprtsock.h> >> #include<linux/file.h> >> +#include<linux/fs_struct.h> >> #ifdef CONFIG_SUNRPC_BACKCHANNEL >> #include<linux/sunrpc/bc_xprt.h> >> #endif >> @@ -255,6 +256,11 @@ struct sock_xprt { >> void (*old_state_change)(struct sock *); >> void (*old_write_space)(struct sock *); >> void (*old_error_report)(struct sock *); >> + >> + /* >> + * Saved transport creator root. Required for local transports only. >> + */ >> + struct path root; >> }; >> >> /* >> @@ -1891,6 +1897,7 @@ static void xs_local_setup_socket(struct work_struct *work) >> struct rpc_xprt *xprt =&transport->xprt; >> struct socket *sock; >> int status = -EIO; >> + struct path root; >> >> if (xprt->shutdown) >> goto out; >> @@ -1908,7 +1915,14 @@ static void xs_local_setup_socket(struct work_struct *work) >> dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n", >> xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); >> >> + get_fs_root(current->fs,&root); >> + set_fs_root(current->fs,&transport->root); >> + >> status = xs_local_finish_connecting(xprt, sock); >> + >> + set_fs_root(current->fs,&root); >> + path_put(&root); >> + >> switch (status) { >> case 0: > > Hi Stanislav, > > What happens here if the mount namespace of the process that originally > created the sock_xprt no longer exists? Should we care about that case? > Hi, Trond. Looks like this is not a problem, because process fs->root->mnt usage counter was increased on transport creation. IOW, transport holds current root and thus mount namespace can't disappear. -- Best regards, Stanislav Kinsbursky ^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <4F571D83.2010001-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>]
* Re: [PATCH] SUNRPC: set desired file system root before connecting local transports [not found] ` <4F571D83.2010001-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org> @ 2012-03-07 13:21 ` Myklebust, Trond 0 siblings, 0 replies; 6+ messages in thread From: Myklebust, Trond @ 2012-03-07 13:21 UTC (permalink / raw) To: Stanislav Kinsbursky Cc: linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Pavel Emelianov, neilb-l3A5Bk7waGM@public.gmane.org, netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, James Bottomley, bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org, davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org, devel-GEFAQzZX7r8dnm+yROfE0A@public.gmane.org On Wed, 2012-03-07 at 12:34 +0400, Stanislav Kinsbursky wrote: > 07.03.2012 04:19, Myklebust, Trond пишет: > > On Wed, 2012-02-29 at 18:59 +0400, Stanislav Kinsbursky wrote: > >> Today, there is a problem in connecting of local SUNRPC thansports. These > >> transports uses UNIX sockets and connection itself is done by rpciod workqueue. > >> But UNIX sockets lookup is done in context of process file system root. I.e. > >> all local thunsports are connecting in rpciod context. > >> This works nice until we will try to mount NFS from process with other root - > >> for example in container. This container can have it's own (nested) root and > >> rcpbind process, listening on it's own unix sockets. But NFS mount attempt in > >> this container will register new service (Lockd for example) in global rpcbind > >> - not containers's one. > >> This patch solves the problem by switching rpciod kernel thread's file system > >> root to right one (stored on transport) while connecting of local transports. > >> > >> Signed-off-by: Stanislav Kinsbursky<skinsbursky@parallels.com> > >> > >> --- > >> fs/fs_struct.c | 1 + > >> net/sunrpc/xprtsock.c | 32 ++++++++++++++++++++++++++++++-- > >> 2 files changed, 31 insertions(+), 2 deletions(-) > >> > >> diff --git a/fs/fs_struct.c b/fs/fs_struct.c > >> index 78b519c..0f984c3 100644 > >> --- a/fs/fs_struct.c > >> +++ b/fs/fs_struct.c > >> @@ -36,6 +36,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path) > >> if (old_root.dentry) > >> path_put_longterm(&old_root); > >> } > >> +EXPORT_SYMBOL_GPL(set_fs_root); > >> > >> /* > >> * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. > >> diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c > >> index 4c8281d..c94c181 100644 > >> --- a/net/sunrpc/xprtsock.c > >> +++ b/net/sunrpc/xprtsock.c > >> @@ -37,6 +37,7 @@ > >> #include<linux/sunrpc/svcsock.h> > >> #include<linux/sunrpc/xprtsock.h> > >> #include<linux/file.h> > >> +#include<linux/fs_struct.h> > >> #ifdef CONFIG_SUNRPC_BACKCHANNEL > >> #include<linux/sunrpc/bc_xprt.h> > >> #endif > >> @@ -255,6 +256,11 @@ struct sock_xprt { > >> void (*old_state_change)(struct sock *); > >> void (*old_write_space)(struct sock *); > >> void (*old_error_report)(struct sock *); > >> + > >> + /* > >> + * Saved transport creator root. Required for local transports only. > >> + */ > >> + struct path root; > >> }; > >> > >> /* > >> @@ -1891,6 +1897,7 @@ static void xs_local_setup_socket(struct work_struct *work) > >> struct rpc_xprt *xprt =&transport->xprt; > >> struct socket *sock; > >> int status = -EIO; > >> + struct path root; > >> > >> if (xprt->shutdown) > >> goto out; > >> @@ -1908,7 +1915,14 @@ static void xs_local_setup_socket(struct work_struct *work) > >> dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n", > >> xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); > >> > >> + get_fs_root(current->fs,&root); > >> + set_fs_root(current->fs,&transport->root); > >> + > >> status = xs_local_finish_connecting(xprt, sock); > >> + > >> + set_fs_root(current->fs,&root); > >> + path_put(&root); > >> + > >> switch (status) { > >> case 0: > > > > Hi Stanislav, > > > > What happens here if the mount namespace of the process that originally > > created the sock_xprt no longer exists? Should we care about that case? > > > > Hi, Trond. > Looks like this is not a problem, because process fs->root->mnt usage counter > was increased on transport creation. > IOW, transport holds current root and thus mount namespace can't disappear. > That pins the root struct vfsmount, but it doesn't pin the actual process mount namespace. If the process is dead, then it is quite possible that the struct mnt_namespace is gone, in which case while you are pinning the root (i.e. '/'), submounts such as '/var' may be gone. OTOH, I suppose that you can argue that if the mnt_namespace is gone, then rpcbind can't be listening on /var/run/rpcbind.sock and so you are screwed anyway... OK.... Please just resend the patch, Ccing Al Viro and Christoph so that we can get their opinion. -- Trond Myklebust Linux NFS client maintainer NetApp Trond.Myklebust@netapp.com www.netapp.com ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-03-07 13:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-29 14:59 [PATCH] SUNRPC: set desired file system root before connecting local transports Stanislav Kinsbursky
[not found] ` <20120229145915.24030.31551.stgit-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
2012-03-07 0:19 ` Myklebust, Trond
2012-03-07 0:21 ` Myklebust, Trond
2012-03-07 8:36 ` Stanislav Kinsbursky
2012-03-07 8:34 ` Stanislav Kinsbursky
[not found] ` <4F571D83.2010001-bzQdu9zFT3WakBO8gow8eQ@public.gmane.org>
2012-03-07 13:21 ` Myklebust, Trond
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).