]> Pileus Git - ~andy/linux/blob - net/sysctl_net.c
[TR]: Use ctl paths to register net/token-ring/ table
[~andy/linux] / 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         { 0 },
35 };
36
37 static struct list_head *
38 net_ctl_header_lookup(struct ctl_table_root *root, struct nsproxy *namespaces)
39 {
40         return &namespaces->net_ns->sysctl_table_headers;
41 }
42
43 static struct ctl_table_root net_sysctl_root = {
44         .lookup = net_ctl_header_lookup,
45 };
46
47 static int sysctl_net_init(struct net *net)
48 {
49         INIT_LIST_HEAD(&net->sysctl_table_headers);
50         return 0;
51 }
52
53 static void sysctl_net_exit(struct net *net)
54 {
55         WARN_ON(!list_empty(&net->sysctl_table_headers));
56         return;
57 }
58
59 static struct pernet_operations sysctl_pernet_ops = {
60         .init = sysctl_net_init,
61         .exit = sysctl_net_exit,
62 };
63
64 static __init int sysctl_init(void)
65 {
66         int ret;
67         ret = register_pernet_subsys(&sysctl_pernet_ops);
68         if (ret)
69                 goto out;
70         register_sysctl_root(&net_sysctl_root);
71 out:
72         return ret;
73 }
74 subsys_initcall(sysctl_init);
75
76 struct ctl_table_header *register_net_sysctl_table(struct net *net,
77         const struct ctl_path *path, struct ctl_table *table)
78 {
79         struct nsproxy namespaces;
80         namespaces = *current->nsproxy;
81         namespaces.net_ns = net;
82         return __register_sysctl_paths(&net_sysctl_root,
83                                         &namespaces, path, table);
84 }
85 EXPORT_SYMBOL_GPL(register_net_sysctl_table);
86
87 void unregister_net_sysctl_table(struct ctl_table_header *header)
88 {
89         return unregister_sysctl_table(header);
90 }
91 EXPORT_SYMBOL_GPL(unregister_net_sysctl_table);