diff options
| author | Takashi Iwai <tiwai@suse.de> | 2009-12-15 04:29:06 -0500 |
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2009-12-15 04:29:06 -0500 |
| commit | 709334c87dbdb44150ce436b3d13c814db0dcae9 (patch) | |
| tree | 5861a45f70c1f283720337abd864498f5afb3dbe /net/core/net_namespace.c | |
| parent | 0d64b568fcd48b133721c1d322e7c51d85eb12df (diff) | |
| parent | f74890277a196949e4004fe2955e1d4fb3930f98 (diff) | |
Merge branch 'fixes' of git://git.alsa-project.org/alsa-kernel into for-linus
Diffstat (limited to 'net/core/net_namespace.c')
| -rw-r--r-- | net/core/net_namespace.c | 272 |
1 files changed, 159 insertions, 113 deletions
diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c index 1c1af2756f38..bd8c4712ea24 100644 --- a/net/core/net_namespace.c +++ b/net/core/net_namespace.c | |||
| @@ -27,14 +27,64 @@ EXPORT_SYMBOL(init_net); | |||
| 27 | 27 | ||
| 28 | #define INITIAL_NET_GEN_PTRS 13 /* +1 for len +2 for rcu_head */ | 28 | #define INITIAL_NET_GEN_PTRS 13 /* +1 for len +2 for rcu_head */ |
| 29 | 29 | ||
| 30 | static int ops_init(const struct pernet_operations *ops, struct net *net) | ||
| 31 | { | ||
| 32 | int err; | ||
| 33 | if (ops->id && ops->size) { | ||
| 34 | void *data = kzalloc(ops->size, GFP_KERNEL); | ||
| 35 | if (!data) | ||
| 36 | return -ENOMEM; | ||
| 37 | |||
| 38 | err = net_assign_generic(net, *ops->id, data); | ||
| 39 | if (err) { | ||
| 40 | kfree(data); | ||
| 41 | return err; | ||
| 42 | } | ||
| 43 | } | ||
| 44 | if (ops->init) | ||
| 45 | return ops->init(net); | ||
| 46 | return 0; | ||
| 47 | } | ||
| 48 | |||
| 49 | static void ops_free(const struct pernet_operations *ops, struct net *net) | ||
| 50 | { | ||
| 51 | if (ops->id && ops->size) { | ||
| 52 | int id = *ops->id; | ||
| 53 | kfree(net_generic(net, id)); | ||
| 54 | } | ||
| 55 | } | ||
| 56 | |||
| 57 | static void ops_exit_list(const struct pernet_operations *ops, | ||
| 58 | struct list_head *net_exit_list) | ||
| 59 | { | ||
| 60 | struct net *net; | ||
| 61 | if (ops->exit) { | ||
| 62 | list_for_each_entry(net, net_exit_list, exit_list) | ||
| 63 | ops->exit(net); | ||
| 64 | } | ||
| 65 | if (ops->exit_batch) | ||
| 66 | ops->exit_batch(net_exit_list); | ||
| 67 | } | ||
| 68 | |||
| 69 | static void ops_free_list(const struct pernet_operations *ops, | ||
| 70 | struct list_head *net_exit_list) | ||
| 71 | { | ||
| 72 | struct net *net; | ||
| 73 | if (ops->size && ops->id) { | ||
| 74 | list_for_each_entry(net, net_exit_list, exit_list) | ||
| 75 | ops_free(ops, net); | ||
| 76 | } | ||
| 77 | } | ||
| 78 | |||
| 30 | /* | 79 | /* |
| 31 | * setup_net runs the initializers for the network namespace object. | 80 | * setup_net runs the initializers for the network namespace object. |
| 32 | */ | 81 | */ |
| 33 | static __net_init int setup_net(struct net *net) | 82 | static __net_init int setup_net(struct net *net) |
| 34 | { | 83 | { |
| 35 | /* Must be called with net_mutex held */ | 84 | /* Must be called with net_mutex held */ |
| 36 | struct pernet_operations *ops; | 85 | const struct pernet_operations *ops, *saved_ops; |
| 37 | int error = 0; | 86 | int error = 0; |
| 87 | LIST_HEAD(net_exit_list); | ||
| 38 | 88 | ||
| 39 | atomic_set(&net->count, 1); | 89 | atomic_set(&net->count, 1); |
| 40 | 90 | ||
| @@ -43,11 +93,9 @@ static __net_init int setup_net(struct net *net) | |||
| 43 | #endif | 93 | #endif |
| 44 | 94 | ||
| 45 | list_for_each_entry(ops, &pernet_list, list) { | 95 | list_for_each_entry(ops, &pernet_list, list) { |
| 46 | if (ops->init) { | 96 | error = ops_init(ops, net); |
| 47 | error = ops->init(net); | 97 | if (error < 0) |
| 48 | if (error < 0) | 98 | goto out_undo; |
| 49 | goto out_undo; | ||
| 50 | } | ||
| 51 | } | 99 | } |
| 52 | out: | 100 | out: |
| 53 | return error; | 101 | return error; |
| @@ -56,10 +104,14 @@ out_undo: | |||
| 56 | /* Walk through the list backwards calling the exit functions | 104 | /* Walk through the list backwards calling the exit functions |
| 57 | * for the pernet modules whose init functions did not fail. | 105 | * for the pernet modules whose init functions did not fail. |
| 58 | */ | 106 | */ |
| 59 | list_for_each_entry_continue_reverse(ops, &pernet_list, list) { | 107 | list_add(&net->exit_list, &net_exit_list); |
| 60 | if (ops->exit) | 108 | saved_ops = ops; |
| 61 | ops->exit(net); | 109 | list_for_each_entry_continue_reverse(ops, &pernet_list, list) |
| 62 | } | 110 | ops_exit_list(ops, &net_exit_list); |
| 111 | |||
| 112 | ops = saved_ops; | ||
| 113 | list_for_each_entry_continue_reverse(ops, &pernet_list, list) | ||
| 114 | ops_free_list(ops, &net_exit_list); | ||
| 63 | 115 | ||
| 64 | rcu_barrier(); | 116 | rcu_barrier(); |
| 65 | goto out; | 117 | goto out; |
| @@ -147,18 +199,29 @@ struct net *copy_net_ns(unsigned long flags, struct net *old_net) | |||
| 147 | return net_create(); | 199 | return net_create(); |
| 148 | } | 200 | } |
| 149 | 201 | ||
| 202 | static DEFINE_SPINLOCK(cleanup_list_lock); | ||
| 203 | static LIST_HEAD(cleanup_list); /* Must hold cleanup_list_lock to touch */ | ||
| 204 | |||
| 150 | static void cleanup_net(struct work_struct *work) | 205 | static void cleanup_net(struct work_struct *work) |
| 151 | { | 206 | { |
| 152 | struct pernet_operations *ops; | 207 | const struct pernet_operations *ops; |
| 153 | struct net *net; | 208 | struct net *net, *tmp; |
| 209 | LIST_HEAD(net_kill_list); | ||
| 210 | LIST_HEAD(net_exit_list); | ||
| 154 | 211 | ||
| 155 | net = container_of(work, struct net, work); | 212 | /* Atomically snapshot the list of namespaces to cleanup */ |
| 213 | spin_lock_irq(&cleanup_list_lock); | ||
| 214 | list_replace_init(&cleanup_list, &net_kill_list); | ||
| 215 | spin_unlock_irq(&cleanup_list_lock); | ||
| 156 | 216 | ||
| 157 | mutex_lock(&net_mutex); | 217 | mutex_lock(&net_mutex); |
| 158 | 218 | ||
| 159 | /* Don't let anyone else find us. */ | 219 | /* Don't let anyone else find us. */ |
| 160 | rtnl_lock(); | 220 | rtnl_lock(); |
| 161 | list_del_rcu(&net->list); | 221 | list_for_each_entry(net, &net_kill_list, cleanup_list) { |
| 222 | list_del_rcu(&net->list); | ||
| 223 | list_add_tail(&net->exit_list, &net_exit_list); | ||
| 224 | } | ||
| 162 | rtnl_unlock(); | 225 | rtnl_unlock(); |
| 163 | 226 | ||
| 164 | /* | 227 | /* |
| @@ -169,10 +232,12 @@ static void cleanup_net(struct work_struct *work) | |||
| 169 | synchronize_rcu(); | 232 | synchronize_rcu(); |
| 170 | 233 | ||
| 171 | /* Run all of the network namespace exit methods */ | 234 | /* Run all of the network namespace exit methods */ |
| 172 | list_for_each_entry_reverse(ops, &pernet_list, list) { | 235 | list_for_each_entry_reverse(ops, &pernet_list, list) |
| 173 | if (ops->exit) | 236 | ops_exit_list(ops, &net_exit_list); |
| 174 | ops->exit(net); | 237 | |
| 175 | } | 238 | /* Free the net generic variables */ |
| 239 | list_for_each_entry_reverse(ops, &pernet_list, list) | ||
| 240 | ops_free_list(ops, &net_exit_list); | ||
| 176 | 241 | ||
| 177 | mutex_unlock(&net_mutex); | 242 | mutex_unlock(&net_mutex); |
| 178 | 243 | ||
| @@ -182,14 +247,23 @@ static void cleanup_net(struct work_struct *work) | |||
| 182 | rcu_barrier(); | 247 | rcu_barrier(); |
| 183 | 248 | ||
| 184 | /* Finally it is safe to free my network namespace structure */ | 249 | /* Finally it is safe to free my network namespace structure */ |
| 185 | net_free(net); | 250 | list_for_each_entry_safe(net, tmp, &net_exit_list, exit_list) { |
| 251 | list_del_init(&net->exit_list); | ||
| 252 | net_free(net); | ||
| 253 | } | ||
| 186 | } | 254 | } |
| 255 | static DECLARE_WORK(net_cleanup_work, cleanup_net); | ||
| 187 | 256 | ||
| 188 | void __put_net(struct net *net) | 257 | void __put_net(struct net *net) |
| 189 | { | 258 | { |
| 190 | /* Cleanup the network namespace in process context */ | 259 | /* Cleanup the network namespace in process context */ |
| 191 | INIT_WORK(&net->work, cleanup_net); | 260 | unsigned long flags; |
| 192 | queue_work(netns_wq, &net->work); | 261 | |
| 262 | spin_lock_irqsave(&cleanup_list_lock, flags); | ||
| 263 | list_add(&net->cleanup_list, &cleanup_list); | ||
| 264 | spin_unlock_irqrestore(&cleanup_list_lock, flags); | ||
| 265 | |||
| 266 | queue_work(netns_wq, &net_cleanup_work); | ||
| 193 | } | 267 | } |
| 194 | EXPORT_SYMBOL_GPL(__put_net); | 268 | EXPORT_SYMBOL_GPL(__put_net); |
| 195 | 269 | ||
| @@ -259,18 +333,20 @@ static int __init net_ns_init(void) | |||
| 259 | pure_initcall(net_ns_init); | 333 | pure_initcall(net_ns_init); |
| 260 | 334 | ||
| 261 | #ifdef CONFIG_NET_NS | 335 | #ifdef CONFIG_NET_NS |
| 262 | static int register_pernet_operations(struct list_head *list, | 336 | static int __register_pernet_operations(struct list_head *list, |
| 263 | struct pernet_operations *ops) | 337 | struct pernet_operations *ops) |
| 264 | { | 338 | { |
| 265 | struct net *net, *undo_net; | 339 | struct net *net; |
| 266 | int error; | 340 | int error; |
| 341 | LIST_HEAD(net_exit_list); | ||
| 267 | 342 | ||
| 268 | list_add_tail(&ops->list, list); | 343 | list_add_tail(&ops->list, list); |
| 269 | if (ops->init) { | 344 | if (ops->init || (ops->id && ops->size)) { |
| 270 | for_each_net(net) { | 345 | for_each_net(net) { |
| 271 | error = ops->init(net); | 346 | error = ops_init(ops, net); |
| 272 | if (error) | 347 | if (error) |
| 273 | goto out_undo; | 348 | goto out_undo; |
| 349 | list_add_tail(&net->exit_list, &net_exit_list); | ||
| 274 | } | 350 | } |
| 275 | } | 351 | } |
| 276 | return 0; | 352 | return 0; |
| @@ -278,45 +354,82 @@ static int register_pernet_operations(struct list_head *list, | |||
| 278 | out_undo: | 354 | out_undo: |
| 279 | /* If I have an error cleanup all namespaces I initialized */ | 355 | /* If I have an error cleanup all namespaces I initialized */ |
| 280 | list_del(&ops->list); | 356 | list_del(&ops->list); |
| 281 | if (ops->exit) { | 357 | ops_exit_list(ops, &net_exit_list); |
| 282 | for_each_net(undo_net) { | 358 | ops_free_list(ops, &net_exit_list); |
| 283 | if (undo_net == net) | ||
| 284 | goto undone; | ||
| 285 | ops->exit(undo_net); | ||
| 286 | } | ||
| 287 | } | ||
| 288 | undone: | ||
| 289 | return error; | 359 | return error; |
| 290 | } | 360 | } |
| 291 | 361 | ||
| 292 | static void unregister_pernet_operations(struct pernet_operations *ops) | 362 | static void __unregister_pernet_operations(struct pernet_operations *ops) |
| 293 | { | 363 | { |
| 294 | struct net *net; | 364 | struct net *net; |
| 365 | LIST_HEAD(net_exit_list); | ||
| 295 | 366 | ||
| 296 | list_del(&ops->list); | 367 | list_del(&ops->list); |
| 297 | if (ops->exit) | 368 | for_each_net(net) |
| 298 | for_each_net(net) | 369 | list_add_tail(&net->exit_list, &net_exit_list); |
| 299 | ops->exit(net); | 370 | ops_exit_list(ops, &net_exit_list); |
| 371 | ops_free_list(ops, &net_exit_list); | ||
| 300 | } | 372 | } |
| 301 | 373 | ||
| 302 | #else | 374 | #else |
| 303 | 375 | ||
| 376 | static int __register_pernet_operations(struct list_head *list, | ||
| 377 | struct pernet_operations *ops) | ||
| 378 | { | ||
| 379 | int err = 0; | ||
| 380 | err = ops_init(ops, &init_net); | ||
| 381 | if (err) | ||
| 382 | ops_free(ops, &init_net); | ||
| 383 | return err; | ||
| 384 | |||
| 385 | } | ||
| 386 | |||
| 387 | static void __unregister_pernet_operations(struct pernet_operations *ops) | ||
| 388 | { | ||
| 389 | LIST_HEAD(net_exit_list); | ||
| 390 | list_add(&init_net.exit_list, &net_exit_list); | ||
| 391 | ops_exit_list(ops, &net_exit_list); | ||
| 392 | ops_free_list(ops, &net_exit_list); | ||
| 393 | } | ||
| 394 | |||
| 395 | #endif /* CONFIG_NET_NS */ | ||
| 396 | |||
| 397 | static DEFINE_IDA(net_generic_ids); | ||
| 398 | |||
| 304 | static int register_pernet_operations(struct list_head *list, | 399 | static int register_pernet_operations(struct list_head *list, |
| 305 | struct pernet_operations *ops) | 400 | struct pernet_operations *ops) |
| 306 | { | 401 | { |
| 307 | if (ops->init == NULL) | 402 | int error; |
| 308 | return 0; | 403 | |
| 309 | return ops->init(&init_net); | 404 | if (ops->id) { |
| 405 | again: | ||
| 406 | error = ida_get_new_above(&net_generic_ids, 1, ops->id); | ||
| 407 | if (error < 0) { | ||
| 408 | if (error == -EAGAIN) { | ||
| 409 | ida_pre_get(&net_generic_ids, GFP_KERNEL); | ||
| 410 | goto again; | ||
| 411 | } | ||
| 412 | return error; | ||
| 413 | } | ||
| 414 | } | ||
| 415 | error = __register_pernet_operations(list, ops); | ||
| 416 | if (error) { | ||
| 417 | rcu_barrier(); | ||
| 418 | if (ops->id) | ||
| 419 | ida_remove(&net_generic_ids, *ops->id); | ||
| 420 | } | ||
| 421 | |||
| 422 | return error; | ||
| 310 | } | 423 | } |
| 311 | 424 | ||
| 312 | static void unregister_pernet_operations(struct pernet_operations *ops) | 425 | static void unregister_pernet_operations(struct pernet_operations *ops) |
| 313 | { | 426 | { |
| 314 | if (ops->exit) | 427 | |
| 315 | ops->exit(&init_net); | 428 | __unregister_pernet_operations(ops); |
| 429 | rcu_barrier(); | ||
| 430 | if (ops->id) | ||
| 431 | ida_remove(&net_generic_ids, *ops->id); | ||
| 316 | } | 432 | } |
| 317 | #endif | ||
| 318 | |||
| 319 | static DEFINE_IDA(net_generic_ids); | ||
| 320 | 433 | ||
| 321 | /** | 434 | /** |
| 322 | * register_pernet_subsys - register a network namespace subsystem | 435 | * register_pernet_subsys - register a network namespace subsystem |
| @@ -364,38 +477,6 @@ void unregister_pernet_subsys(struct pernet_operations *module) | |||
| 364 | } | 477 | } |
| 365 | EXPORT_SYMBOL_GPL(unregister_pernet_subsys); | 478 | EXPORT_SYMBOL_GPL(unregister_pernet_subsys); |
| 366 | 479 | ||
| 367 | int register_pernet_gen_subsys(int *id, struct pernet_operations *ops) | ||
| 368 | { | ||
| 369 | int rv; | ||
| 370 | |||
| 371 | mutex_lock(&net_mutex); | ||
| 372 | again: | ||
| 373 | rv = ida_get_new_above(&net_generic_ids, 1, id); | ||
| 374 | if (rv < 0) { | ||
| 375 | if (rv == -EAGAIN) { | ||
| 376 | ida_pre_get(&net_generic_ids, GFP_KERNEL); | ||
| 377 | goto again; | ||
| 378 | } | ||
| 379 | goto out; | ||
| 380 | } | ||
| 381 | rv = register_pernet_operations(first_device, ops); | ||
| 382 | if (rv < 0) | ||
| 383 | ida_remove(&net_generic_ids, *id); | ||
| 384 | out: | ||
| 385 | mutex_unlock(&net_mutex); | ||
| 386 | return rv; | ||
| 387 | } | ||
| 388 | EXPORT_SYMBOL_GPL(register_pernet_gen_subsys); | ||
| 389 | |||
| 390 | void unregister_pernet_gen_subsys(int id, struct pernet_operations *ops) | ||
| 391 | { | ||
| 392 | mutex_lock(&net_mutex); | ||
| 393 | unregister_pernet_operations(ops); | ||
| 394 | ida_remove(&net_generic_ids, id); | ||
| 395 | mutex_unlock(&net_mutex); | ||
| 396 | } | ||
| 397 | EXPORT_SYMBOL_GPL(unregister_pernet_gen_subsys); | ||
| 398 | |||
| 399 | /** | 480 | /** |
| 400 | * register_pernet_device - register a network namespace device | 481 | * register_pernet_device - register a network namespace device |
| 401 | * @ops: pernet operations structure for the subsystem | 482 | * @ops: pernet operations structure for the subsystem |
| @@ -427,30 +508,6 @@ int register_pernet_device(struct pernet_operations *ops) | |||
| 427 | } | 508 | } |
| 428 | EXPORT_SYMBOL_GPL(register_pernet_device); | 509 | EXPORT_SYMBOL_GPL(register_pernet_device); |
| 429 | 510 | ||
| 430 | int register_pernet_gen_device(int *id, struct pernet_operations *ops) | ||
| 431 | { | ||
| 432 | int error; | ||
| 433 | mutex_lock(&net_mutex); | ||
| 434 | again: | ||
| 435 | error = ida_get_new_above(&net_generic_ids, 1, id); | ||
| 436 | if (error) { | ||
| 437 | if (error == -EAGAIN) { | ||
| 438 | ida_pre_get(&net_generic_ids, GFP_KERNEL); | ||
| 439 | goto again; | ||
| 440 | } | ||
| 441 | goto out; | ||
| 442 | } | ||
| 443 | error = register_pernet_operations(&pernet_list, ops); | ||
| 444 | if (error) | ||
| 445 | ida_remove(&net_generic_ids, *id); | ||
| 446 | else if (first_device == &pernet_list) | ||
| 447 | first_device = &ops->list; | ||
| 448 | out: | ||
| 449 | mutex_unlock(&net_mutex); | ||
| 450 | return error; | ||
| 451 | } | ||
| 452 | EXPORT_SYMBOL_GPL(register_pernet_gen_device); | ||
| 453 | |||
| 454 | /** | 511 | /** |
| 455 | * unregister_pernet_device - unregister a network namespace netdevice | 512 | * unregister_pernet_device - unregister a network namespace netdevice |
| 456 | * @ops: pernet operations structure to manipulate | 513 | * @ops: pernet operations structure to manipulate |
| @@ -470,17 +527,6 @@ void unregister_pernet_device(struct pernet_operations *ops) | |||
| 470 | } | 527 | } |
| 471 | EXPORT_SYMBOL_GPL(unregister_pernet_device); | 528 | EXPORT_SYMBOL_GPL(unregister_pernet_device); |
| 472 | 529 | ||
| 473 | void unregister_pernet_gen_device(int id, struct pernet_operations *ops) | ||
| 474 | { | ||
| 475 | mutex_lock(&net_mutex); | ||
| 476 | if (&ops->list == first_device) | ||
| 477 | first_device = first_device->next; | ||
| 478 | unregister_pernet_operations(ops); | ||
| 479 | ida_remove(&net_generic_ids, id); | ||
| 480 | mutex_unlock(&net_mutex); | ||
| 481 | } | ||
| 482 | EXPORT_SYMBOL_GPL(unregister_pernet_gen_device); | ||
| 483 | |||
| 484 | static void net_generic_release(struct rcu_head *rcu) | 530 | static void net_generic_release(struct rcu_head *rcu) |
| 485 | { | 531 | { |
| 486 | struct net_generic *ng; | 532 | struct net_generic *ng; |
