From: ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org (Eric W. Biederman)
To: Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org>
Cc: John Linville <linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>,
Netdev <netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
linux-wireless
<linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
"Eric W. Biederman"
<ebiederm-BGArkANP9klv6pq1l3V1OdBPR1lH4CV8@public.gmane.org>,
Alexey Dobriyan
<adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH] wireless extensions: play with netns
Date: Wed, 17 Jun 2009 13:46:20 -0700 [thread overview]
Message-ID: <m1y6rqwpur.fsf@fess.ebiederm.org> (raw)
In-Reply-To: <1245263058.31588.38.camel-YfaajirXv2244ywRPIzf9A@public.gmane.org> (Johannes Berg's message of "Wed\, 17 Jun 2009 20\:24\:18 +0200")
Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org> writes:
> This makes wireless extensions netns aware.
>
> Signed-off-by: Johannes Berg <johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org>
> ---
> Is this ok, or is this racy? I guess what I'm asking is -- will
> for_each_net() stop iterating over a netns that is going away before the
> pernet exit op is called? If yes, this should be fine.
for_each_net requires the rtnl_lock or the net_mutex to be safe.
You aren't taking either so your code is racy.
A dying network namespace will be removed from the net_namespace_list
(aka for_each_net) before the per net exit methods are called.
Is grabbing the rtnl_lock safe in your workqueue and is that something
we want to do?
Eric
> include/net/net_namespace.h | 3 +++
> net/wireless/wext.c | 30 ++++++++++++++++++++++--------
> 2 files changed, 25 insertions(+), 8 deletions(-)
>
> --- wireless-testing.orig/include/net/net_namespace.h 2009-06-17 20:20:47.000000000 +0200
> +++ wireless-testing/include/net/net_namespace.h 2009-06-17 20:20:51.000000000 +0200
> @@ -78,6 +78,9 @@ struct net {
> #ifdef CONFIG_XFRM
> struct netns_xfrm xfrm;
> #endif
> +#ifdef CONFIG_WIRELESS_EXT
> + struct sk_buff_head wext_nlevents;
> +#endif
> struct net_generic *gen;
> };
>
> --- wireless-testing.orig/net/wireless/wext.c 2009-06-17 20:20:47.000000000 +0200
> +++ wireless-testing/net/wireless/wext.c 2009-06-17 20:20:51.000000000 +0200
> @@ -1273,11 +1273,25 @@ int compat_wext_handle_ioctl(struct net
> * Jean II
> */
>
> -static struct sk_buff_head wireless_nlevent_queue;
> +static int __net_init wext_pernet_init(struct net *net)
> +{
> + skb_queue_head_init(&net->wext_nlevents);
> + return 0;
> +}
> +
> +static void __net_exit wext_pernet_exit(struct net *net)
> +{
> + skb_queue_purge(&net->wext_nlevents);
> +}
> +
> +static struct pernet_operations wext_pernet_ops = {
> + .init = wext_pernet_init,
> + .exit = wext_pernet_exit,
> +};
>
> static int __init wireless_nlevent_init(void)
> {
> - skb_queue_head_init(&wireless_nlevent_queue);
> + return register_pernet_subsys(&wext_pernet_ops);
> return 0;
> }
>
> @@ -1286,9 +1300,12 @@ subsys_initcall(wireless_nlevent_init);
> static void wireless_nlevent_process(unsigned long data)
> {
> struct sk_buff *skb;
> + struct net *net;
>
> - while ((skb = skb_dequeue(&wireless_nlevent_queue)))
> - rtnl_notify(skb, &init_net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
> + for_each_net(net)
> + while ((skb = skb_dequeue(&net->wext_nlevents)))
> + rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL,
> + GFP_ATOMIC);
> }
>
> static DECLARE_TASKLET(wireless_nlevent_tasklet, wireless_nlevent_process, 0);
> @@ -1341,9 +1358,6 @@ static void rtmsg_iwinfo(struct net_devi
> struct sk_buff *skb;
> int err;
>
> - if (!net_eq(dev_net(dev), &init_net))
> - return;
> -
> skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
> if (!skb)
> return;
> @@ -1356,7 +1370,7 @@ static void rtmsg_iwinfo(struct net_devi
> }
>
> NETLINK_CB(skb).dst_group = RTNLGRP_LINK;
> - skb_queue_tail(&wireless_nlevent_queue, skb);
> + skb_queue_tail(&dev_net(dev)->wext_nlevents, skb);
> tasklet_schedule(&wireless_nlevent_tasklet);
> }
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2009-06-17 20:46 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 [this message]
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
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=m1y6rqwpur.fsf@fess.ebiederm.org \
--to=ebiederm-as9lmozglivwk0htik3j/w@public.gmane.org \
--cc=adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=ebiederm-BGArkANP9klv6pq1l3V1OdBPR1lH4CV8@public.gmane.org \
--cc=johannes-cdvu00un1VgdHxzADdlk8Q@public.gmane.org \
--cc=linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linville-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org \
--cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.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).