sysctl_net.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. * Revision 1.2 1996/05/08 20:24:40 shaver
  8. * Added bits for NET_BRIDGE and the NET_IPV4_ARP stuff and
  9. * NET_IPV4_IP_FORWARD.
  10. *
  11. *
  12. */
  13. #include <linux/mm.h>
  14. #include <linux/export.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. static struct ctl_table_set *
  28. net_ctl_header_lookup(struct ctl_table_root *root, struct nsproxy *namespaces)
  29. {
  30. return &namespaces->net_ns->sysctls;
  31. }
  32. static int is_seen(struct ctl_table_set *set)
  33. {
  34. return &current->nsproxy->net_ns->sysctls == set;
  35. }
  36. /* Return standard mode bits for table entry. */
  37. static int net_ctl_permissions(struct ctl_table_root *root,
  38. struct nsproxy *nsproxy,
  39. struct ctl_table *table)
  40. {
  41. /* Allow network administrator to have same access as root. */
  42. if (capable(CAP_NET_ADMIN)) {
  43. int mode = (table->mode >> 6) & 7;
  44. return (mode << 6) | (mode << 3) | mode;
  45. }
  46. return table->mode;
  47. }
  48. static struct ctl_table_root net_sysctl_root = {
  49. .lookup = net_ctl_header_lookup,
  50. .permissions = net_ctl_permissions,
  51. };
  52. static int net_ctl_ro_header_perms(struct ctl_table_root *root,
  53. struct nsproxy *namespaces, struct ctl_table *table)
  54. {
  55. if (net_eq(namespaces->net_ns, &init_net))
  56. return table->mode;
  57. else
  58. return table->mode & ~0222;
  59. }
  60. static struct ctl_table_root net_sysctl_ro_root = {
  61. .permissions = net_ctl_ro_header_perms,
  62. };
  63. static int __net_init sysctl_net_init(struct net *net)
  64. {
  65. setup_sysctl_set(&net->sysctls, &net_sysctl_root, is_seen);
  66. return 0;
  67. }
  68. static void __net_exit sysctl_net_exit(struct net *net)
  69. {
  70. retire_sysctl_set(&net->sysctls);
  71. }
  72. static struct pernet_operations sysctl_pernet_ops = {
  73. .init = sysctl_net_init,
  74. .exit = sysctl_net_exit,
  75. };
  76. static __init int net_sysctl_init(void)
  77. {
  78. int ret;
  79. ret = register_pernet_subsys(&sysctl_pernet_ops);
  80. if (ret)
  81. goto out;
  82. setup_sysctl_set(&net_sysctl_ro_root.default_set, &net_sysctl_ro_root, NULL);
  83. register_sysctl_root(&net_sysctl_ro_root);
  84. register_sysctl_root(&net_sysctl_root);
  85. out:
  86. return ret;
  87. }
  88. subsys_initcall(net_sysctl_init);
  89. struct ctl_table_header *register_net_sysctl_table(struct net *net,
  90. const struct ctl_path *path, struct ctl_table *table)
  91. {
  92. return __register_sysctl_paths(&net->sysctls, path, table);
  93. }
  94. EXPORT_SYMBOL_GPL(register_net_sysctl_table);
  95. struct ctl_table_header *register_net_sysctl_rotable(const
  96. struct ctl_path *path, struct ctl_table *table)
  97. {
  98. return __register_sysctl_paths(&net_sysctl_ro_root.default_set,
  99. path, table);
  100. }
  101. EXPORT_SYMBOL_GPL(register_net_sysctl_rotable);
  102. void unregister_net_sysctl_table(struct ctl_table_header *header)
  103. {
  104. unregister_sysctl_table(header);
  105. }
  106. EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);