From: ebiederm@xmission.com (Eric W. Biederman)
To: Johannes Berg <johannes@sipsolutions.net>
Cc: John Linville <linville@tuxdriver.com>,
Netdev <netdev@vger.kernel.org>,
linux-wireless <linux-wireless@vger.kernel.org>,
"Eric W. Biederman" <ebiederm@aristanetworks.com>,
Alexey Dobriyan <adobriyan@gmail.com>
Subject: Re: [PATCH] wireless extensions: play with netns
Date: Wed, 17 Jun 2009 18:12:29 -0700 [thread overview]
Message-ID: <m18wjqqr9e.fsf@fess.ebiederm.org> (raw)
In-Reply-To: <1245285541.31588.79.camel@johannes.local> (Johannes Berg's message of "Thu\, 18 Jun 2009 02\:39\:01 +0200")
Johannes Berg <johannes@sipsolutions.net> writes:
> On Wed, 2009-06-17 at 17:30 -0700, Eric W. Biederman wrote:
>
>> >> This of course gives you a network namespace that can be found by for_each_net rcu
>> >> while the per net exit functions are running. I think that opens up to races
>> >> that I don't want to think about.
>> >
>> > Indeed. Can we move the rcu_barrier() up? Or we could insert a
>> > synchronize_rcu() (which is sufficient for rcu_read_lock) before the
>> > exit functions are run?
>>
>> I don't think we can move the barrier. But adding an extra synchronize_rcu
>> should be fine. We are talking about the slowest of the slow paths here.
>> It is so slow it even gets it's own kernel thread.
>
> Ok :) New patch below.
>
> Yes, you're right, we can't move it, it might still be used from exit
> for net_assign_generic or so.
Except for the changelog which is wrong about not needing any rcu
primitives I can't spot any bugs.
> johannes
>
> Subject: net: make namespace iteration possible under RCU
>
> We already call rcu_barrier(), so all we need to take
> care of is using proper RCU list add/del primitives.
>
> Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
> ---
> include/net/net_namespace.h | 3 +++
> net/core/net_namespace.c | 10 +++++++---
> 2 files changed, 10 insertions(+), 3 deletions(-)
>
> --- wireless-testing.orig/include/net/net_namespace.h 2009-06-18 01:36:26.000000000 +0200
> +++ wireless-testing/include/net/net_namespace.h 2009-06-18 02:17:14.000000000 +0200
> @@ -211,6 +211,9 @@ static inline struct net *read_pnet(stru
> #define for_each_net(VAR) \
> list_for_each_entry(VAR, &net_namespace_list, list)
>
> +#define for_each_net_rcu(VAR) \
> + list_for_each_entry_rcu(VAR, &net_namespace_list, list)
> +
> #ifdef CONFIG_NET_NS
> #define __net_init
> #define __net_exit
> --- wireless-testing.orig/net/core/net_namespace.c 2009-06-18 01:36:39.000000000 +0200
> +++ wireless-testing/net/core/net_namespace.c 2009-06-18 02:03:06.000000000 +0200
> @@ -6,6 +6,7 @@
> #include <linux/delay.h>
> #include <linux/sched.h>
> #include <linux/idr.h>
> +#include <linux/rculist.h>
> #include <net/net_namespace.h>
> #include <net/netns/generic.h>
>
> @@ -134,7 +135,7 @@ struct net *copy_net_ns(unsigned long fl
> err = setup_net(new_net);
> if (!err) {
> rtnl_lock();
> - list_add_tail(&new_net->list, &net_namespace_list);
> + list_add_tail_rcu(&new_net->list, &net_namespace_list);
> rtnl_unlock();
> }
> mutex_unlock(&net_mutex);
> @@ -163,9 +164,12 @@ static void cleanup_net(struct work_stru
>
> /* Don't let anyone else find us. */
> rtnl_lock();
> - list_del(&net->list);
> + list_del_rcu(&net->list);
> rtnl_unlock();
>
> + /* if somebody is rcu-iterating the list, wait */
> + synchronize_rcu();
> +
> /* Run all of the network namespace exit methods */
> list_for_each_entry_reverse(ops, &pernet_list, list) {
> if (ops->exit)
> @@ -227,7 +231,7 @@ static int __init net_ns_init(void)
> err = setup_net(&init_net);
>
> rtnl_lock();
> - list_add_tail(&init_net.list, &net_namespace_list);
> + list_add_tail_rcu(&init_net.list, &net_namespace_list);
> rtnl_unlock();
>
> mutex_unlock(&net_mutex);
prev parent reply other threads:[~2009-06-18 1:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-17 18:24 [PATCH] wireless extensions: play with netns Johannes Berg
[not found] ` <1245263058.31588.38.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org>
2009-06-17 20:46 ` Eric W. Biederman
2009-06-17 20:50 ` Johannes Berg
[not found] ` <m1y6rqwpur.fsf-+imSwln9KH6u2/kzUuoCbdi2O/JbrIOy@public.gmane.org>
2009-06-17 21:40 ` [PATCH v2] wireless extensions: make netns aware Johannes Berg
2009-06-17 22:14 ` [PATCH] wireless extensions: play with netns Johannes Berg
[not found] ` <1245276899.31588.57.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org>
2009-06-17 23:24 ` Eric W. Biederman
[not found] ` <m1r5xitpdh.fsf-+imSwln9KH6u2/kzUuoCbdi2O/JbrIOy@public.gmane.org>
2009-06-17 23:41 ` Johannes Berg
2009-06-17 23:45 ` Johannes Berg
[not found] ` <1245282315.31588.71.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org>
2009-06-18 0:27 ` Eric W. Biederman
2009-06-18 0:35 ` Johannes Berg
[not found] ` <1245282099.31588.69.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org>
2009-06-17 23:54 ` Eric W. Biederman
[not found] ` <m17hzato0r.fsf-+imSwln9KH6u2/kzUuoCbdi2O/JbrIOy@public.gmane.org>
2009-06-18 0:02 ` Johannes Berg
[not found] ` <1245283327.31588.74.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org>
2009-06-18 0:30 ` Eric W. Biederman
[not found] ` <m1my86qt73.fsf-+imSwln9KH6u2/kzUuoCbdi2O/JbrIOy@public.gmane.org>
2009-06-18 0:39 ` Johannes Berg
2009-06-18 1:12 ` Eric W. Biederman [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m18wjqqr9e.fsf@fess.ebiederm.org \
--to=ebiederm@xmission.com \
--cc=adobriyan@gmail.com \
--cc=ebiederm@aristanetworks.com \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).