blob: 6dcf5e7d661bd4f463f352788a5461f163e63501 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <net/ndisc.h>
14#include <net/ipv6.h>
15#include <net/addrconf.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070016#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Eric W. Biedermanbf360762011-01-31 20:54:17 -080018static struct ctl_table empty[1];
19
Eric W. Biederman9d2a8fa2011-03-21 18:23:34 -070020static ctl_table ipv6_static_skeleton[] = {
21 {
22 .procname = "neigh",
23 .maxlen = 0,
24 .mode = 0555,
25 .child = empty,
26 },
27 { }
28};
29
Daniel Lezcano760f2d02008-01-10 02:53:43 -080030static ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .procname = "route",
33 .maxlen = 0,
34 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080035 .child = ipv6_route_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 },
37 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 .procname = "icmp",
39 .maxlen = 0,
40 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080041 .child = ipv6_icmp_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 },
43 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080045 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .maxlen = sizeof(int),
47 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080048 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080050 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070051};
52
Gerrit Renker81e43212009-07-28 09:48:07 +000053static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .procname = "mld_max_msf",
56 .data = &sysctl_mld_max_msf,
57 .maxlen = sizeof(int),
58 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080059 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080061 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080064struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080065 { .procname = "net", },
66 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080067 { },
68};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080069EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080070
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000071static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080073 struct ctl_table *ipv6_table;
74 struct ctl_table *ipv6_route_table;
75 struct ctl_table *ipv6_icmp_table;
76 int err;
77
78 err = -ENOMEM;
79 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
80 GFP_KERNEL);
81 if (!ipv6_table)
82 goto out;
83
84 ipv6_route_table = ipv6_route_sysctl_init(net);
85 if (!ipv6_route_table)
86 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090087 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080088
89 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
90 if (!ipv6_icmp_table)
91 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080092 ipv6_table[1].child = ipv6_icmp_table;
93
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080094 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
95
Daniel Lezcano760f2d02008-01-10 02:53:43 -080096 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
97 ipv6_table);
98 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080099 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800100
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800101 err = 0;
102out:
103 return err;
104
105out_ipv6_icmp_table:
106 kfree(ipv6_icmp_table);
107out_ipv6_route_table:
108 kfree(ipv6_route_table);
109out_ipv6_table:
110 kfree(ipv6_table);
111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000114static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800115{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800116 struct ctl_table *ipv6_table;
117 struct ctl_table *ipv6_route_table;
118 struct ctl_table *ipv6_icmp_table;
119
120 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
121 ipv6_route_table = ipv6_table[0].child;
122 ipv6_icmp_table = ipv6_table[1].child;
123
124 unregister_net_sysctl_table(net->ipv6.sysctl.table);
125
126 kfree(ipv6_table);
127 kfree(ipv6_route_table);
128 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800129}
130
131static struct pernet_operations ipv6_sysctl_net_ops = {
132 .init = ipv6_sysctl_net_init,
133 .exit = ipv6_sysctl_net_exit,
134};
135
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700136static struct ctl_table_header *ip6_header;
137
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800138int ipv6_sysctl_register(void)
139{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800140 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700141
Gerrit Renker81e43212009-07-28 09:48:07 +0000142 ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700143 if (ip6_header == NULL)
144 goto out;
145
146 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
147 if (err)
148 goto err_pernet;
149out:
150 return err;
151
152err_pernet:
153 unregister_net_sysctl_table(ip6_header);
154 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157void ipv6_sysctl_unregister(void)
158{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700159 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800160 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
Al Viroeeb61f72008-07-27 08:59:33 +0100162
163static struct ctl_table_header *ip6_base;
164
165int ipv6_static_sysctl_register(void)
166{
Eric W. Biederman9d2a8fa2011-03-21 18:23:34 -0700167 ip6_base = register_sysctl_paths(net_ipv6_ctl_path, ipv6_static_skeleton);
Al Viroeeb61f72008-07-27 08:59:33 +0100168 if (ip6_base == NULL)
169 return -ENOMEM;
170 return 0;
171}
172
173void ipv6_static_sysctl_unregister(void)
174{
175 unregister_net_sysctl_table(ip6_base);
176}