sysctl_net.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* -*- linux-c -*-
  2. * sysctl_net.c: sysctl interface to net subsystem.
  3. *
  4. * Begun April 1, 1996, Mike Shaver.
  5. * Added /proc/sys/net directories for each protocol family. [MS]
  6. *
  7. * $Log: sysctl_net.c,v $
  8. * Revision 1.2 1996/05/08 20:24:40 shaver
  9. * Added bits for NET_BRIDGE and the NET_IPV4_ARP stuff and
  10. * NET_IPV4_IP_FORWARD.
  11. *
  12. *
  13. */
  14. #include <linux/mm.h>
  15. #include <linux/sysctl.h>
  16. #include <linux/nsproxy.h>
  17. #include <net/sock.h>
  18. #ifdef CONFIG_INET
  19. #include <net/ip.h>
  20. #endif
  21. #ifdef CONFIG_NET
  22. #include <linux/if_ether.h>
  23. #endif
  24. #ifdef CONFIG_TR
  25. #include <linux/if_tr.h>
  26. #endif
  27. struct ctl_table net_table[] = {
  28. #ifdef CONFIG_INET
  29. {
  30. .ctl_name = NET_IPV4,
  31. .procname = "ipv4",
  32. .mode = 0555,
  33. .child = ipv4_table
  34. },
  35. #endif
  36. #ifdef CONFIG_TR
  37. {
  38. .ctl_name = NET_TR,
  39. .procname = "token-ring",
  40. .mode = 0555,
  41. .child = tr_table,
  42. },
  43. #endif
  44. { 0 },
  45. };
  46. static struct list_head *
  47. net_ctl_header_lookup(struct ctl_table_root *root, struct nsproxy *namespaces)
  48. {
  49. return &namespaces->net_ns->sysctl_table_headers;
  50. }
  51. static struct ctl_table_root net_sysctl_root = {
  52. .lookup = net_ctl_header_lookup,
  53. };
  54. static int sysctl_net_init(struct net *net)
  55. {
  56. INIT_LIST_HEAD(&net->sysctl_table_headers);
  57. return 0;
  58. }
  59. static void sysctl_net_exit(struct net *net)
  60. {
  61. WARN_ON(!list_empty(&net->sysctl_table_headers));
  62. return;
  63. }
  64. static struct pernet_operations sysctl_pernet_ops = {
  65. .init = sysctl_net_init,
  66. .exit = sysctl_net_exit,
  67. };
  68. static __init int sysctl_init(void)
  69. {
  70. int ret;
  71. ret = register_pernet_subsys(&sysctl_pernet_ops);
  72. if (ret)
  73. goto out;
  74. register_sysctl_root(&net_sysctl_root);
  75. out:
  76. return ret;
  77. }
  78. subsys_initcall(sysctl_init);
  79. struct ctl_table_header *register_net_sysctl_table(struct net *net,
  80. const struct ctl_path *path, struct ctl_table *table)
  81. {
  82. struct nsproxy namespaces;
  83. namespaces = *current->nsproxy;
  84. namespaces.net_ns = net;
  85. return __register_sysctl_paths(&net_sysctl_root,
  86. &namespaces, path, table);
  87. }
  88. EXPORT_SYMBOL_GPL(register_net_sysctl_table);
  89. void unregister_net_sysctl_table(struct ctl_table_header *header)
  90. {
  91. return unregister_sysctl_table(header);
  92. }
  93. EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);