blob: 31a5ae51a45c8770136ac1b60b76da842d9803df [file] [log] [blame]
Eric W. Biederman5f256be2007-09-12 11:50:50 +02001#include <linux/workqueue.h>
2#include <linux/rtnetlink.h>
3#include <linux/cache.h>
4#include <linux/slab.h>
5#include <linux/list.h>
6#include <linux/delay.h>
Eric W. Biederman9dd776b2007-09-26 22:04:26 -07007#include <linux/sched.h>
Pavel Emelyanovc93cf612008-04-15 00:35:23 -07008#include <linux/idr.h>
Johannes Berg11a28d32009-07-10 09:51:33 +00009#include <linux/rculist.h>
Johannes Berg30ffee82009-07-10 09:51:35 +000010#include <linux/nsproxy.h>
Eric W. Biedermanf0630522011-05-04 17:51:50 -070011#include <linux/proc_fs.h>
12#include <linux/file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040013#include <linux/export.h>
Eric W. Biederman5f256be2007-09-12 11:50:50 +020014#include <net/net_namespace.h>
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070015#include <net/netns/generic.h>
Eric W. Biederman5f256be2007-09-12 11:50:50 +020016
17/*
18 * Our network namespace constructor/destructor lists
19 */
20
21static LIST_HEAD(pernet_list);
22static struct list_head *first_device = &pernet_list;
23static DEFINE_MUTEX(net_mutex);
24
Eric W. Biederman5f256be2007-09-12 11:50:50 +020025LIST_HEAD(net_namespace_list);
Alexey Dobriyanb76a4612008-10-08 11:35:06 +020026EXPORT_SYMBOL_GPL(net_namespace_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +020027
Eric W. Biederman5f256be2007-09-12 11:50:50 +020028struct net init_net;
Denis V. Lunevff4b9502008-01-22 22:05:33 -080029EXPORT_SYMBOL(init_net);
Eric W. Biederman5f256be2007-09-12 11:50:50 +020030
Pavel Emelyanovdec827d2008-04-15 00:36:08 -070031#define INITIAL_NET_GEN_PTRS 13 /* +1 for len +2 for rcu_head */
32
Eric Dumazet073862b2012-01-26 00:41:38 +000033static unsigned int max_gen_ptrs = INITIAL_NET_GEN_PTRS;
34
35static struct net_generic *net_alloc_generic(void)
36{
37 struct net_generic *ng;
38 size_t generic_size = offsetof(struct net_generic, ptr[max_gen_ptrs]);
39
40 ng = kzalloc(generic_size, GFP_KERNEL);
41 if (ng)
42 ng->len = max_gen_ptrs;
43
44 return ng;
45}
46
Jiri Pirko05fceb42010-04-23 01:40:47 +000047static int net_assign_generic(struct net *net, int id, void *data)
48{
49 struct net_generic *ng, *old_ng;
50
51 BUG_ON(!mutex_is_locked(&net_mutex));
52 BUG_ON(id == 0);
53
Eric Dumazet1c877332010-10-25 03:20:11 +000054 old_ng = rcu_dereference_protected(net->gen,
55 lockdep_is_held(&net_mutex));
56 ng = old_ng;
Jiri Pirko05fceb42010-04-23 01:40:47 +000057 if (old_ng->len >= id)
58 goto assign;
59
Eric Dumazet073862b2012-01-26 00:41:38 +000060 ng = net_alloc_generic();
Jiri Pirko05fceb42010-04-23 01:40:47 +000061 if (ng == NULL)
62 return -ENOMEM;
63
64 /*
65 * Some synchronisation notes:
66 *
67 * The net_generic explores the net->gen array inside rcu
68 * read section. Besides once set the net->gen->ptr[x]
69 * pointer never changes (see rules in netns/generic.h).
70 *
71 * That said, we simply duplicate this array and schedule
72 * the old copy for kfree after a grace period.
73 */
74
Jiri Pirko05fceb42010-04-23 01:40:47 +000075 memcpy(&ng->ptr, &old_ng->ptr, old_ng->len * sizeof(void*));
76
77 rcu_assign_pointer(net->gen, ng);
Lai Jiangshan04d4dfe2011-03-18 12:06:32 +080078 kfree_rcu(old_ng, rcu);
Jiri Pirko05fceb42010-04-23 01:40:47 +000079assign:
80 ng->ptr[id - 1] = data;
81 return 0;
82}
83
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000084static int ops_init(const struct pernet_operations *ops, struct net *net)
85{
Julian Anastasovb9229342012-04-16 04:43:15 +000086 int err = -ENOMEM;
87 void *data = NULL;
88
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000089 if (ops->id && ops->size) {
Julian Anastasovb9229342012-04-16 04:43:15 +000090 data = kzalloc(ops->size, GFP_KERNEL);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000091 if (!data)
Julian Anastasovb9229342012-04-16 04:43:15 +000092 goto out;
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000093
94 err = net_assign_generic(net, *ops->id, data);
Julian Anastasovb9229342012-04-16 04:43:15 +000095 if (err)
96 goto cleanup;
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000097 }
Julian Anastasovb9229342012-04-16 04:43:15 +000098 err = 0;
Eric W. Biedermanf875bae2009-11-29 22:25:28 +000099 if (ops->init)
Julian Anastasovb9229342012-04-16 04:43:15 +0000100 err = ops->init(net);
101 if (!err)
102 return 0;
103
104cleanup:
105 kfree(data);
106
107out:
108 return err;
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000109}
110
111static void ops_free(const struct pernet_operations *ops, struct net *net)
112{
113 if (ops->id && ops->size) {
114 int id = *ops->id;
115 kfree(net_generic(net, id));
116 }
117}
118
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000119static void ops_exit_list(const struct pernet_operations *ops,
120 struct list_head *net_exit_list)
121{
122 struct net *net;
123 if (ops->exit) {
124 list_for_each_entry(net, net_exit_list, exit_list)
125 ops->exit(net);
126 }
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000127 if (ops->exit_batch)
128 ops->exit_batch(net_exit_list);
129}
130
131static void ops_free_list(const struct pernet_operations *ops,
132 struct list_head *net_exit_list)
133{
134 struct net *net;
135 if (ops->size && ops->id) {
136 list_for_each_entry(net, net_exit_list, exit_list)
137 ops_free(ops, net);
138 }
139}
140
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700141/*
142 * setup_net runs the initializers for the network namespace object.
143 */
Pavel Emelyanov1a2ee932007-11-01 00:45:59 -0700144static __net_init int setup_net(struct net *net)
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700145{
146 /* Must be called with net_mutex held */
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000147 const struct pernet_operations *ops, *saved_ops;
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800148 int error = 0;
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000149 LIST_HEAD(net_exit_list);
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700150
151 atomic_set(&net->count, 1);
Al Viroa685e082011-06-08 21:13:01 -0400152 atomic_set(&net->passive, 1);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000153 net->dev_base_seq = 1;
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800154
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700155#ifdef NETNS_REFCNT_DEBUG
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700156 atomic_set(&net->use_count, 0);
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700157#endif
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700158
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700159 list_for_each_entry(ops, &pernet_list, list) {
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000160 error = ops_init(ops, net);
161 if (error < 0)
162 goto out_undo;
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700163 }
164out:
165 return error;
166
167out_undo:
168 /* Walk through the list backwards calling the exit functions
169 * for the pernet modules whose init functions did not fail.
170 */
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000171 list_add(&net->exit_list, &net_exit_list);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000172 saved_ops = ops;
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000173 list_for_each_entry_continue_reverse(ops, &pernet_list, list)
174 ops_exit_list(ops, &net_exit_list);
175
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000176 ops = saved_ops;
177 list_for_each_entry_continue_reverse(ops, &pernet_list, list)
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000178 ops_free_list(ops, &net_exit_list);
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700179
180 rcu_barrier();
181 goto out;
182}
183
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800184
Clemens Nossebe47d42009-02-23 15:37:35 -0800185#ifdef CONFIG_NET_NS
186static struct kmem_cache *net_cachep;
187static struct workqueue_struct *netns_wq;
188
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200189static struct net *net_alloc(void)
190{
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800191 struct net *net = NULL;
192 struct net_generic *ng;
193
194 ng = net_alloc_generic();
195 if (!ng)
196 goto out;
197
198 net = kmem_cache_zalloc(net_cachep, GFP_KERNEL);
199 if (!net)
200 goto out_free;
201
202 rcu_assign_pointer(net->gen, ng);
203out:
204 return net;
205
206out_free:
207 kfree(ng);
208 goto out;
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200209}
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200210
Johann Felix Soden45a19b02007-11-07 01:30:30 -0800211static void net_free(struct net *net)
212{
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700213#ifdef NETNS_REFCNT_DEBUG
Johann Felix Soden45a19b02007-11-07 01:30:30 -0800214 if (unlikely(atomic_read(&net->use_count) != 0)) {
215 printk(KERN_EMERG "network namespace not free! Usage: %d\n",
216 atomic_read(&net->use_count));
217 return;
218 }
Denis V. Lunev5d1e4462008-04-16 01:58:04 -0700219#endif
Alexey Dobriyan4ef079c2008-10-14 22:54:48 -0700220 kfree(net->gen);
Johann Felix Soden45a19b02007-11-07 01:30:30 -0800221 kmem_cache_free(net_cachep, net);
222}
223
Al Viroa685e082011-06-08 21:13:01 -0400224void net_drop_ns(void *p)
225{
226 struct net *ns = p;
227 if (ns && atomic_dec_and_test(&ns->passive))
228 net_free(ns);
229}
230
Rob Landley911cb192011-04-15 02:26:25 +0000231struct net *copy_net_ns(unsigned long flags, struct net *old_net)
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700232{
Alexey Dobriyan088eb2d2009-05-04 11:12:14 -0700233 struct net *net;
234 int rv;
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700235
Rob Landley911cb192011-04-15 02:26:25 +0000236 if (!(flags & CLONE_NEWNET))
237 return get_net(old_net);
238
Alexey Dobriyan088eb2d2009-05-04 11:12:14 -0700239 net = net_alloc();
240 if (!net)
241 return ERR_PTR(-ENOMEM);
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700242 mutex_lock(&net_mutex);
Alexey Dobriyan088eb2d2009-05-04 11:12:14 -0700243 rv = setup_net(net);
244 if (rv == 0) {
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800245 rtnl_lock();
Johannes Berg11a28d32009-07-10 09:51:33 +0000246 list_add_tail_rcu(&net->list, &net_namespace_list);
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800247 rtnl_unlock();
248 }
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700249 mutex_unlock(&net_mutex);
Alexey Dobriyan088eb2d2009-05-04 11:12:14 -0700250 if (rv < 0) {
Al Viroa685e082011-06-08 21:13:01 -0400251 net_drop_ns(net);
Alexey Dobriyan088eb2d2009-05-04 11:12:14 -0700252 return ERR_PTR(rv);
253 }
254 return net;
255}
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800256
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000257static DEFINE_SPINLOCK(cleanup_list_lock);
258static LIST_HEAD(cleanup_list); /* Must hold cleanup_list_lock to touch */
259
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200260static void cleanup_net(struct work_struct *work)
261{
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000262 const struct pernet_operations *ops;
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000263 struct net *net, *tmp;
264 LIST_HEAD(net_kill_list);
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000265 LIST_HEAD(net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200266
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000267 /* Atomically snapshot the list of namespaces to cleanup */
268 spin_lock_irq(&cleanup_list_lock);
269 list_replace_init(&cleanup_list, &net_kill_list);
270 spin_unlock_irq(&cleanup_list_lock);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200271
272 mutex_lock(&net_mutex);
273
274 /* Don't let anyone else find us. */
Eric W. Biedermanf4618d32007-09-26 22:40:08 -0700275 rtnl_lock();
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000276 list_for_each_entry(net, &net_kill_list, cleanup_list) {
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000277 list_del_rcu(&net->list);
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000278 list_add_tail(&net->exit_list, &net_exit_list);
279 }
Eric W. Biedermanf4618d32007-09-26 22:40:08 -0700280 rtnl_unlock();
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200281
Johannes Berg11a28d32009-07-10 09:51:33 +0000282 /*
283 * Another CPU might be rcu-iterating the list, wait for it.
284 * This needs to be before calling the exit() notifiers, so
285 * the rcu_barrier() below isn't sufficient alone.
286 */
287 synchronize_rcu();
288
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200289 /* Run all of the network namespace exit methods */
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000290 list_for_each_entry_reverse(ops, &pernet_list, list)
291 ops_exit_list(ops, &net_exit_list);
292
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000293 /* Free the net generic variables */
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000294 list_for_each_entry_reverse(ops, &pernet_list, list)
295 ops_free_list(ops, &net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200296
297 mutex_unlock(&net_mutex);
298
299 /* Ensure there are no outstanding rcu callbacks using this
300 * network namespace.
301 */
302 rcu_barrier();
303
304 /* Finally it is safe to free my network namespace structure */
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000305 list_for_each_entry_safe(net, tmp, &net_exit_list, exit_list) {
306 list_del_init(&net->exit_list);
Al Viroa685e082011-06-08 21:13:01 -0400307 net_drop_ns(net);
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000308 }
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200309}
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000310static DECLARE_WORK(net_cleanup_work, cleanup_net);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200311
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200312void __put_net(struct net *net)
313{
314 /* Cleanup the network namespace in process context */
Eric W. Biederman2b035b32009-11-29 22:25:27 +0000315 unsigned long flags;
316
317 spin_lock_irqsave(&cleanup_list_lock, flags);
318 list_add(&net->cleanup_list, &cleanup_list);
319 spin_unlock_irqrestore(&cleanup_list_lock, flags);
320
321 queue_work(netns_wq, &net_cleanup_work);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200322}
323EXPORT_SYMBOL_GPL(__put_net);
324
Stephen Rothwell956c9202011-05-12 13:51:13 +1000325struct net *get_net_ns_by_fd(int fd)
326{
327 struct proc_inode *ei;
328 struct file *file;
329 struct net *net;
330
Stephen Rothwell956c9202011-05-12 13:51:13 +1000331 file = proc_ns_fget(fd);
Al Viroc316e6a2011-06-05 00:37:35 +0000332 if (IS_ERR(file))
333 return ERR_CAST(file);
Stephen Rothwell956c9202011-05-12 13:51:13 +1000334
335 ei = PROC_I(file->f_dentry->d_inode);
Al Viroc316e6a2011-06-05 00:37:35 +0000336 if (ei->ns_ops == &netns_operations)
337 net = get_net(ei->ns);
338 else
339 net = ERR_PTR(-EINVAL);
Stephen Rothwell956c9202011-05-12 13:51:13 +1000340
Al Viroc316e6a2011-06-05 00:37:35 +0000341 fput(file);
Stephen Rothwell956c9202011-05-12 13:51:13 +1000342 return net;
343}
344
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700345#else
Eric W. Biederman9dd776b2007-09-26 22:04:26 -0700346struct net *copy_net_ns(unsigned long flags, struct net *old_net)
347{
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700348 if (flags & CLONE_NEWNET)
349 return ERR_PTR(-EINVAL);
350 return old_net;
Eric W. Biederman9dd776b2007-09-26 22:04:26 -0700351}
Stephen Rothwell956c9202011-05-12 13:51:13 +1000352
353struct net *get_net_ns_by_fd(int fd)
354{
355 return ERR_PTR(-EINVAL);
356}
Pavel Emelyanov6a1a3b92007-11-01 00:44:50 -0700357#endif
Eric W. Biederman9dd776b2007-09-26 22:04:26 -0700358
Johannes Berg30ffee82009-07-10 09:51:35 +0000359struct net *get_net_ns_by_pid(pid_t pid)
360{
361 struct task_struct *tsk;
362 struct net *net;
363
364 /* Lookup the network namespace */
365 net = ERR_PTR(-ESRCH);
366 rcu_read_lock();
367 tsk = find_task_by_vpid(pid);
368 if (tsk) {
369 struct nsproxy *nsproxy;
370 nsproxy = task_nsproxy(tsk);
371 if (nsproxy)
372 net = get_net(nsproxy->net_ns);
373 }
374 rcu_read_unlock();
375 return net;
376}
377EXPORT_SYMBOL_GPL(get_net_ns_by_pid);
378
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200379static int __init net_ns_init(void)
380{
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800381 struct net_generic *ng;
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200382
Pavel Emelyanovd57a9212007-11-01 00:46:50 -0700383#ifdef CONFIG_NET_NS
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200384 net_cachep = kmem_cache_create("net_namespace", sizeof(struct net),
385 SMP_CACHE_BYTES,
386 SLAB_PANIC, NULL);
Benjamin Thery3ef13552007-11-19 23:18:16 -0800387
388 /* Create workqueue for cleanup */
389 netns_wq = create_singlethread_workqueue("netns");
390 if (!netns_wq)
391 panic("Could not create netns workq");
Pavel Emelyanovd57a9212007-11-01 00:46:50 -0700392#endif
Benjamin Thery3ef13552007-11-19 23:18:16 -0800393
Daniel Lezcano486a87f2009-02-22 00:07:53 -0800394 ng = net_alloc_generic();
395 if (!ng)
396 panic("Could not allocate generic netns");
397
398 rcu_assign_pointer(init_net.gen, ng);
399
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200400 mutex_lock(&net_mutex);
Stephen Hemmingerca0f3112009-05-21 15:10:31 -0700401 if (setup_net(&init_net))
402 panic("Could not setup the initial network namespace");
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200403
Eric W. Biedermanf4618d32007-09-26 22:40:08 -0700404 rtnl_lock();
Johannes Berg11a28d32009-07-10 09:51:33 +0000405 list_add_tail_rcu(&init_net.list, &net_namespace_list);
Eric W. Biedermanf4618d32007-09-26 22:40:08 -0700406 rtnl_unlock();
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200407
408 mutex_unlock(&net_mutex);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200409
410 return 0;
411}
412
413pure_initcall(net_ns_init);
414
Denis V. Luneved160e82007-11-13 03:23:21 -0800415#ifdef CONFIG_NET_NS
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000416static int __register_pernet_operations(struct list_head *list,
417 struct pernet_operations *ops)
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200418{
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000419 struct net *net;
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200420 int error;
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000421 LIST_HEAD(net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200422
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200423 list_add_tail(&ops->list, list);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000424 if (ops->init || (ops->id && ops->size)) {
Pavel Emelyanov1dba3232007-11-01 00:42:43 -0700425 for_each_net(net) {
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000426 error = ops_init(ops, net);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200427 if (error)
428 goto out_undo;
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000429 list_add_tail(&net->exit_list, &net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200430 }
431 }
Pavel Emelyanov1dba3232007-11-01 00:42:43 -0700432 return 0;
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200433
434out_undo:
435 /* If I have an error cleanup all namespaces I initialized */
436 list_del(&ops->list);
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000437 ops_exit_list(ops, &net_exit_list);
438 ops_free_list(ops, &net_exit_list);
Pavel Emelyanov1dba3232007-11-01 00:42:43 -0700439 return error;
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200440}
441
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000442static void __unregister_pernet_operations(struct pernet_operations *ops)
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200443{
444 struct net *net;
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000445 LIST_HEAD(net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200446
447 list_del(&ops->list);
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000448 for_each_net(net)
449 list_add_tail(&net->exit_list, &net_exit_list);
450 ops_exit_list(ops, &net_exit_list);
451 ops_free_list(ops, &net_exit_list);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200452}
453
Denis V. Luneved160e82007-11-13 03:23:21 -0800454#else
455
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000456static int __register_pernet_operations(struct list_head *list,
457 struct pernet_operations *ops)
458{
Julian Anastasovb9229342012-04-16 04:43:15 +0000459 return ops_init(ops, &init_net);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000460}
461
462static void __unregister_pernet_operations(struct pernet_operations *ops)
463{
Eric W. Biederman72ad9372009-12-03 02:29:03 +0000464 LIST_HEAD(net_exit_list);
465 list_add(&init_net.exit_list, &net_exit_list);
466 ops_exit_list(ops, &net_exit_list);
467 ops_free_list(ops, &net_exit_list);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000468}
469
470#endif /* CONFIG_NET_NS */
471
472static DEFINE_IDA(net_generic_ids);
473
Denis V. Luneved160e82007-11-13 03:23:21 -0800474static int register_pernet_operations(struct list_head *list,
475 struct pernet_operations *ops)
476{
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000477 int error;
478
479 if (ops->id) {
480again:
481 error = ida_get_new_above(&net_generic_ids, 1, ops->id);
482 if (error < 0) {
483 if (error == -EAGAIN) {
484 ida_pre_get(&net_generic_ids, GFP_KERNEL);
485 goto again;
486 }
487 return error;
488 }
Eric Dumazet073862b2012-01-26 00:41:38 +0000489 max_gen_ptrs = max_t(unsigned int, max_gen_ptrs, *ops->id);
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000490 }
491 error = __register_pernet_operations(list, ops);
Eric W. Biederman3a765ed2009-12-03 02:29:06 +0000492 if (error) {
493 rcu_barrier();
494 if (ops->id)
495 ida_remove(&net_generic_ids, *ops->id);
496 }
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000497
498 return error;
Denis V. Luneved160e82007-11-13 03:23:21 -0800499}
500
501static void unregister_pernet_operations(struct pernet_operations *ops)
502{
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000503
504 __unregister_pernet_operations(ops);
Eric W. Biederman3a765ed2009-12-03 02:29:06 +0000505 rcu_barrier();
Eric W. Biedermanf875bae2009-11-29 22:25:28 +0000506 if (ops->id)
507 ida_remove(&net_generic_ids, *ops->id);
Denis V. Luneved160e82007-11-13 03:23:21 -0800508}
Pavel Emelyanovc93cf612008-04-15 00:35:23 -0700509
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200510/**
511 * register_pernet_subsys - register a network namespace subsystem
512 * @ops: pernet operations structure for the subsystem
513 *
514 * Register a subsystem which has init and exit functions
515 * that are called when network namespaces are created and
516 * destroyed respectively.
517 *
518 * When registered all network namespace init functions are
519 * called for every existing network namespace. Allowing kernel
520 * modules to have a race free view of the set of network namespaces.
521 *
522 * When a new network namespace is created all of the init
523 * methods are called in the order in which they were registered.
524 *
525 * When a network namespace is destroyed all of the exit methods
526 * are called in the reverse of the order with which they were
527 * registered.
528 */
529int register_pernet_subsys(struct pernet_operations *ops)
530{
531 int error;
532 mutex_lock(&net_mutex);
533 error = register_pernet_operations(first_device, ops);
534 mutex_unlock(&net_mutex);
535 return error;
536}
537EXPORT_SYMBOL_GPL(register_pernet_subsys);
538
539/**
540 * unregister_pernet_subsys - unregister a network namespace subsystem
541 * @ops: pernet operations structure to manipulate
542 *
543 * Remove the pernet operations structure from the list to be
Oliver Pinter53379e52008-02-03 17:56:48 +0200544 * used when network namespaces are created or destroyed. In
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200545 * addition run the exit method for all existing network
546 * namespaces.
547 */
Jiri Pirkob3c981d2010-04-25 00:49:56 -0700548void unregister_pernet_subsys(struct pernet_operations *ops)
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200549{
550 mutex_lock(&net_mutex);
Jiri Pirkob3c981d2010-04-25 00:49:56 -0700551 unregister_pernet_operations(ops);
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200552 mutex_unlock(&net_mutex);
553}
554EXPORT_SYMBOL_GPL(unregister_pernet_subsys);
555
556/**
557 * register_pernet_device - register a network namespace device
558 * @ops: pernet operations structure for the subsystem
559 *
560 * Register a device which has init and exit functions
561 * that are called when network namespaces are created and
562 * destroyed respectively.
563 *
564 * When registered all network namespace init functions are
565 * called for every existing network namespace. Allowing kernel
566 * modules to have a race free view of the set of network namespaces.
567 *
568 * When a new network namespace is created all of the init
569 * methods are called in the order in which they were registered.
570 *
571 * When a network namespace is destroyed all of the exit methods
572 * are called in the reverse of the order with which they were
573 * registered.
574 */
575int register_pernet_device(struct pernet_operations *ops)
576{
577 int error;
578 mutex_lock(&net_mutex);
579 error = register_pernet_operations(&pernet_list, ops);
580 if (!error && (first_device == &pernet_list))
581 first_device = &ops->list;
582 mutex_unlock(&net_mutex);
583 return error;
584}
585EXPORT_SYMBOL_GPL(register_pernet_device);
586
587/**
588 * unregister_pernet_device - unregister a network namespace netdevice
589 * @ops: pernet operations structure to manipulate
590 *
591 * Remove the pernet operations structure from the list to be
Oliver Pinter53379e52008-02-03 17:56:48 +0200592 * used when network namespaces are created or destroyed. In
Eric W. Biederman5f256be2007-09-12 11:50:50 +0200593 * addition run the exit method for all existing network
594 * namespaces.
595 */
596void unregister_pernet_device(struct pernet_operations *ops)
597{
598 mutex_lock(&net_mutex);
599 if (&ops->list == first_device)
600 first_device = first_device->next;
601 unregister_pernet_operations(ops);
602 mutex_unlock(&net_mutex);
603}
604EXPORT_SYMBOL_GPL(unregister_pernet_device);
Eric W. Biederman13b6f572010-03-07 18:14:23 -0800605
606#ifdef CONFIG_NET_NS
607static void *netns_get(struct task_struct *task)
608{
Eric W. Biedermanf0630522011-05-04 17:51:50 -0700609 struct net *net = NULL;
610 struct nsproxy *nsproxy;
611
Eric W. Biederman13b6f572010-03-07 18:14:23 -0800612 rcu_read_lock();
Eric W. Biedermanf0630522011-05-04 17:51:50 -0700613 nsproxy = task_nsproxy(task);
614 if (nsproxy)
615 net = get_net(nsproxy->net_ns);
Eric W. Biederman13b6f572010-03-07 18:14:23 -0800616 rcu_read_unlock();
Eric W. Biedermanf0630522011-05-04 17:51:50 -0700617
Eric W. Biederman13b6f572010-03-07 18:14:23 -0800618 return net;
619}
620
621static void netns_put(void *ns)
622{
623 put_net(ns);
624}
625
626static int netns_install(struct nsproxy *nsproxy, void *ns)
627{
628 put_net(nsproxy->net_ns);
629 nsproxy->net_ns = get_net(ns);
630 return 0;
631}
632
633const struct proc_ns_operations netns_operations = {
634 .name = "net",
635 .type = CLONE_NEWNET,
636 .get = netns_get,
637 .put = netns_put,
638 .install = netns_install,
639};
640#endif