blob: a4f0ed8d0e791ba3a63df38c7676f2c8446461a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mm.h>
16#include <linux/sysctl.h>
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110017#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Russell King496a22b2005-10-03 14:16:34 -070019#include <net/sock.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#ifdef CONFIG_INET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030022#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#endif
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#ifdef CONFIG_NET
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030026#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif
28
29#ifdef CONFIG_TR
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030030#include <linux/if_tr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#endif
32
33struct ctl_table net_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#ifdef CONFIG_TR
35 {
36 .ctl_name = NET_TR,
37 .procname = "token-ring",
38 .mode = 0555,
39 .child = tr_table,
40 },
41#endif
42 { 0 },
43};
Eric W. Biederman95bdfcc2007-11-30 23:55:42 +110044
45static struct list_head *
46net_ctl_header_lookup(struct ctl_table_root *root, struct nsproxy *namespaces)
47{
48 return &namespaces->net_ns->sysctl_table_headers;
49}
50
51static struct ctl_table_root net_sysctl_root = {
52 .lookup = net_ctl_header_lookup,
53};
54
55static int sysctl_net_init(struct net *net)
56{
57 INIT_LIST_HEAD(&net->sysctl_table_headers);
58 return 0;
59}
60
61static void sysctl_net_exit(struct net *net)
62{
63 WARN_ON(!list_empty(&net->sysctl_table_headers));
64 return;
65}
66
67static struct pernet_operations sysctl_pernet_ops = {
68 .init = sysctl_net_init,
69 .exit = sysctl_net_exit,
70};
71
72static __init int sysctl_init(void)
73{
74 int ret;
75 ret = register_pernet_subsys(&sysctl_pernet_ops);
76 if (ret)
77 goto out;
78 register_sysctl_root(&net_sysctl_root);
79out:
80 return ret;
81}
82subsys_initcall(sysctl_init);
83
84struct ctl_table_header *register_net_sysctl_table(struct net *net,
85 const struct ctl_path *path, struct ctl_table *table)
86{
87 struct nsproxy namespaces;
88 namespaces = *current->nsproxy;
89 namespaces.net_ns = net;
90 return __register_sysctl_paths(&net_sysctl_root,
91 &namespaces, path, table);
92}
93EXPORT_SYMBOL_GPL(register_net_sysctl_table);
94
95void unregister_net_sysctl_table(struct ctl_table_header *header)
96{
97 return unregister_sysctl_table(header);
98}
99EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);