blob: 7cb65ef79f9cd722e270b5d711d170035e7df4c7 [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
Daniel Lezcano760f2d02008-01-10 02:53:43 -080020static ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 .procname = "route",
23 .maxlen = 0,
24 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080025 .child = ipv6_route_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 },
27 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .procname = "icmp",
29 .maxlen = 0,
30 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080031 .child = ipv6_icmp_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 },
33 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080035 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .maxlen = sizeof(int),
37 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080038 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 },
Eric W. Biedermanbf360762011-01-31 20:54:17 -080040 {
41 .procname = "neigh",
42 .maxlen = 0,
43 .mode = 0555,
44 .child = empty,
45 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080046 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070047};
48
Gerrit Renker81e43212009-07-28 09:48:07 +000049static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .procname = "mld_max_msf",
52 .data = &sysctl_mld_max_msf,
53 .maxlen = sizeof(int),
54 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080055 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080057 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080060struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080061 { .procname = "net", },
62 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080063 { },
64};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080065EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080066
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000067static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080069 struct ctl_table *ipv6_table;
70 struct ctl_table *ipv6_route_table;
71 struct ctl_table *ipv6_icmp_table;
72 int err;
73
74 err = -ENOMEM;
75 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
76 GFP_KERNEL);
77 if (!ipv6_table)
78 goto out;
79
80 ipv6_route_table = ipv6_route_sysctl_init(net);
81 if (!ipv6_route_table)
82 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090083 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080084
85 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
86 if (!ipv6_icmp_table)
87 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080088 ipv6_table[1].child = ipv6_icmp_table;
89
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080090 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
91
Daniel Lezcano760f2d02008-01-10 02:53:43 -080092 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
93 ipv6_table);
94 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080095 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080096
Daniel Lezcano760f2d02008-01-10 02:53:43 -080097 err = 0;
98out:
99 return err;
100
101out_ipv6_icmp_table:
102 kfree(ipv6_icmp_table);
103out_ipv6_route_table:
104 kfree(ipv6_route_table);
105out_ipv6_table:
106 kfree(ipv6_table);
107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000110static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800111{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800112 struct ctl_table *ipv6_table;
113 struct ctl_table *ipv6_route_table;
114 struct ctl_table *ipv6_icmp_table;
115
116 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
117 ipv6_route_table = ipv6_table[0].child;
118 ipv6_icmp_table = ipv6_table[1].child;
119
120 unregister_net_sysctl_table(net->ipv6.sysctl.table);
121
122 kfree(ipv6_table);
123 kfree(ipv6_route_table);
124 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800125}
126
127static struct pernet_operations ipv6_sysctl_net_ops = {
128 .init = ipv6_sysctl_net_init,
129 .exit = ipv6_sysctl_net_exit,
130};
131
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700132static struct ctl_table_header *ip6_header;
133
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800134int ipv6_sysctl_register(void)
135{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800136 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700137
Gerrit Renker81e43212009-07-28 09:48:07 +0000138 ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700139 if (ip6_header == NULL)
140 goto out;
141
142 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
143 if (err)
144 goto err_pernet;
145out:
146 return err;
147
148err_pernet:
149 unregister_net_sysctl_table(ip6_header);
150 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153void ipv6_sysctl_unregister(void)
154{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700155 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800156 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
Al Viroeeb61f72008-07-27 08:59:33 +0100158
159static struct ctl_table_header *ip6_base;
160
161int ipv6_static_sysctl_register(void)
162{
Al Viroce3113e2008-08-25 15:18:15 -0700163 ip6_base = register_sysctl_paths(net_ipv6_ctl_path, empty);
Al Viroeeb61f72008-07-27 08:59:33 +0100164 if (ip6_base == NULL)
165 return -ENOMEM;
166 return 0;
167}
168
169void ipv6_static_sysctl_unregister(void)
170{
171 unregister_net_sysctl_table(ip6_base);
172}