blob: 1f872c332fc0041e33e430846299b57c7840cede [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 },
Lorenzo Colitti2887dec2014-03-18 20:52:27 +090051 {
52 .procname = "fwmark_reflect",
53 .data = &init_net.ipv6.sysctl.fwmark_reflect,
54 .maxlen = sizeof(int),
55 .mode = 0644,
56 .proc_handler = proc_dointvec
57 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080058 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070059};
60
Gerrit Renker81e43212009-07-28 09:48:07 +000061static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .procname = "mld_max_msf",
64 .data = &sysctl_mld_max_msf,
65 .maxlen = sizeof(int),
66 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080067 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080069 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080072struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080073 { .procname = "net", },
74 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080075 { },
76};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080077EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080078
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000079static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080081 struct ctl_table *ipv6_table;
82 struct ctl_table *ipv6_route_table;
83 struct ctl_table *ipv6_icmp_table;
84 int err;
85
86 err = -ENOMEM;
87 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
88 GFP_KERNEL);
89 if (!ipv6_table)
90 goto out;
91
92 ipv6_route_table = ipv6_route_sysctl_init(net);
93 if (!ipv6_route_table)
94 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090095 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080096
97 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
98 if (!ipv6_icmp_table)
99 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800100 ipv6_table[1].child = ipv6_icmp_table;
101
Daniel Lezcano99bc9c42008-01-10 02:54:53 -0800102 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
103
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800104 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
105 ipv6_table);
106 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800107 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800108
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800109 err = 0;
110out:
111 return err;
112
113out_ipv6_icmp_table:
114 kfree(ipv6_icmp_table);
115out_ipv6_route_table:
116 kfree(ipv6_route_table);
117out_ipv6_table:
118 kfree(ipv6_table);
119 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000122static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800123{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800124 struct ctl_table *ipv6_table;
125 struct ctl_table *ipv6_route_table;
126 struct ctl_table *ipv6_icmp_table;
127
128 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
129 ipv6_route_table = ipv6_table[0].child;
130 ipv6_icmp_table = ipv6_table[1].child;
131
132 unregister_net_sysctl_table(net->ipv6.sysctl.table);
133
134 kfree(ipv6_table);
135 kfree(ipv6_route_table);
136 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800137}
138
139static struct pernet_operations ipv6_sysctl_net_ops = {
140 .init = ipv6_sysctl_net_init,
141 .exit = ipv6_sysctl_net_exit,
142};
143
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700144static struct ctl_table_header *ip6_header;
145
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800146int ipv6_sysctl_register(void)
147{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800148 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700149
Gerrit Renker81e43212009-07-28 09:48:07 +0000150 ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700151 if (ip6_header == NULL)
152 goto out;
153
154 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
155 if (err)
156 goto err_pernet;
157out:
158 return err;
159
160err_pernet:
161 unregister_net_sysctl_table(ip6_header);
162 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165void ipv6_sysctl_unregister(void)
166{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700167 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800168 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
Al Viroeeb61f72008-07-27 08:59:33 +0100170
171static struct ctl_table_header *ip6_base;
172
173int ipv6_static_sysctl_register(void)
174{
Eric W. Biederman9d2a8fa2011-03-21 18:23:34 -0700175 ip6_base = register_sysctl_paths(net_ipv6_ctl_path, ipv6_static_skeleton);
Al Viroeeb61f72008-07-27 08:59:33 +0100176 if (ip6_base == NULL)
177 return -ENOMEM;
178 return 0;
179}
180
181void ipv6_static_sysctl_unregister(void)
182{
183 unregister_net_sysctl_table(ip6_base);
184}