blob: 166a57c47d39cd4707bc48ad541afd23c34b12d1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem.
3 *
4 * Changes:
5 * YOSHIFUJI Hideaki @USAGI: added icmp sysctl table.
6 */
7
8#include <linux/mm.h>
9#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/in6.h>
11#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040013#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <net/ndisc.h>
15#include <net/ipv6.h>
16#include <net/addrconf.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070017#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Eric W. Biedermanbf360762011-01-31 20:54:17 -080019static struct ctl_table empty[1];
20
Eric W. Biederman9d2a8fa2011-03-21 18:23:34 -070021static ctl_table ipv6_static_skeleton[] = {
22 {
23 .procname = "neigh",
24 .maxlen = 0,
25 .mode = 0555,
26 .child = empty,
27 },
28 { }
29};
30
Daniel Lezcano760f2d02008-01-10 02:53:43 -080031static ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .procname = "route",
34 .maxlen = 0,
35 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080036 .child = ipv6_route_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 },
38 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .procname = "icmp",
40 .maxlen = 0,
41 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080042 .child = ipv6_icmp_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 },
44 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080046 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .maxlen = sizeof(int),
48 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080049 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080051 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070052};
53
Gerrit Renker81e43212009-07-28 09:48:07 +000054static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .procname = "mld_max_msf",
57 .data = &sysctl_mld_max_msf,
58 .maxlen = sizeof(int),
59 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080060 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080062 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080065struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080066 { .procname = "net", },
67 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080068 { },
69};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080070EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080071
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000072static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080074 struct ctl_table *ipv6_table;
75 struct ctl_table *ipv6_route_table;
76 struct ctl_table *ipv6_icmp_table;
77 int err;
78
79 err = -ENOMEM;
80 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
81 GFP_KERNEL);
82 if (!ipv6_table)
83 goto out;
84
85 ipv6_route_table = ipv6_route_sysctl_init(net);
86 if (!ipv6_route_table)
87 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090088 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080089
90 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
91 if (!ipv6_icmp_table)
92 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080093 ipv6_table[1].child = ipv6_icmp_table;
94
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080095 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
96
Daniel Lezcano760f2d02008-01-10 02:53:43 -080097 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
98 ipv6_table);
99 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800100 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800101
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800102 err = 0;
103out:
104 return err;
105
106out_ipv6_icmp_table:
107 kfree(ipv6_icmp_table);
108out_ipv6_route_table:
109 kfree(ipv6_route_table);
110out_ipv6_table:
111 kfree(ipv6_table);
112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000115static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800116{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800117 struct ctl_table *ipv6_table;
118 struct ctl_table *ipv6_route_table;
119 struct ctl_table *ipv6_icmp_table;
120
121 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
122 ipv6_route_table = ipv6_table[0].child;
123 ipv6_icmp_table = ipv6_table[1].child;
124
125 unregister_net_sysctl_table(net->ipv6.sysctl.table);
126
127 kfree(ipv6_table);
128 kfree(ipv6_route_table);
129 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800130}
131
132static struct pernet_operations ipv6_sysctl_net_ops = {
133 .init = ipv6_sysctl_net_init,
134 .exit = ipv6_sysctl_net_exit,
135};
136
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700137static struct ctl_table_header *ip6_header;
138
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800139int ipv6_sysctl_register(void)
140{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800141 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700142
Gerrit Renker81e43212009-07-28 09:48:07 +0000143 ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700144 if (ip6_header == NULL)
145 goto out;
146
147 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
148 if (err)
149 goto err_pernet;
150out:
151 return err;
152
153err_pernet:
154 unregister_net_sysctl_table(ip6_header);
155 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158void ipv6_sysctl_unregister(void)
159{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700160 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800161 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
Al Viroeeb61f72008-07-27 08:59:33 +0100163
164static struct ctl_table_header *ip6_base;
165
166int ipv6_static_sysctl_register(void)
167{
Eric W. Biederman9d2a8fa2011-03-21 18:23:34 -0700168 ip6_base = register_sysctl_paths(net_ipv6_ctl_path, ipv6_static_skeleton);
Al Viroeeb61f72008-07-27 08:59:33 +0100169 if (ip6_base == NULL)
170 return -ENOMEM;
171 return 0;
172}
173
174void ipv6_static_sysctl_unregister(void)
175{
176 unregister_net_sysctl_table(ip6_base);
177}