]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - net/sysctl_net.c
[NET]: Isolate the net/core/ sysctl table
[linux-2.6-omap-h63xx.git] / net / sysctl_net.c
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
15 #include <linux/mm.h>
16 #include <linux/sysctl.h>
17 #include <linux/nsproxy.h>
18
19 #include <net/sock.h>
20
21 #ifdef CONFIG_INET
22 #include <net/ip.h>
23 #endif
24
25 #ifdef CONFIG_NET
26 #include <linux/if_ether.h>
27 #endif
28
29 #ifdef CONFIG_TR
30 #include <linux/if_tr.h>
31 #endif
32
33 struct ctl_table net_table[] = {
34 #ifdef CONFIG_INET
35         {
36                 .ctl_name       = NET_IPV4,
37                 .procname       = "ipv4",
38                 .mode           = 0555,
39                 .child          = ipv4_table
40         },
41 #endif
42 #ifdef CONFIG_TR
43         {
44                 .ctl_name       = NET_TR,
45                 .procname       = "token-ring",
46                 .mode           = 0555,
47                 .child          = tr_table,
48         },
49 #endif
50         { 0 },
51 };
52
53 static struct list_head *
54 net_ctl_header_lookup(struct ctl_table_root *root, struct nsproxy *namespaces)
55 {
56         return &namespaces->net_ns->sysctl_table_headers;
57 }
58
59 static struct ctl_table_root net_sysctl_root = {
60         .lookup = net_ctl_header_lookup,
61 };
62
63 static int sysctl_net_init(struct net *net)
64 {
65         INIT_LIST_HEAD(&net->sysctl_table_headers);
66         return 0;
67 }
68
69 static void sysctl_net_exit(struct net *net)
70 {
71         WARN_ON(!list_empty(&net->sysctl_table_headers));
72         return;
73 }
74
75 static struct pernet_operations sysctl_pernet_ops = {
76         .init = sysctl_net_init,
77         .exit = sysctl_net_exit,
78 };
79
80 static __init int sysctl_init(void)
81 {
82         int ret;
83         ret = register_pernet_subsys(&sysctl_pernet_ops);
84         if (ret)
85                 goto out;
86         register_sysctl_root(&net_sysctl_root);
87 out:
88         return ret;
89 }
90 subsys_initcall(sysctl_init);
91
92 struct ctl_table_header *register_net_sysctl_table(struct net *net,
93         const struct ctl_path *path, struct ctl_table *table)
94 {
95         struct nsproxy namespaces;
96         namespaces = *current->nsproxy;
97         namespaces.net_ns = net;
98         return __register_sysctl_paths(&net_sysctl_root,
99                                         &namespaces, path, table);
100 }
101 EXPORT_SYMBOL_GPL(register_net_sysctl_table);
102
103 void unregister_net_sysctl_table(struct ctl_table_header *header)
104 {
105         return unregister_sysctl_table(header);
106 }
107 EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);