blob: fa1d8f4e0051a3210b8bfb760ca1a99d0ac1ead5 [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
Daniel Lezcano760f2d02008-01-10 02:53:43 -080018static ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 .procname = "route",
21 .maxlen = 0,
22 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080023 .child = ipv6_route_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 },
25 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 .procname = "icmp",
27 .maxlen = 0,
28 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080029 .child = ipv6_icmp_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 },
31 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080033 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .maxlen = sizeof(int),
35 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080036 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080038 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070039};
40
Gerrit Renker81e43212009-07-28 09:48:07 +000041static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .procname = "mld_max_msf",
44 .data = &sysctl_mld_max_msf,
45 .maxlen = sizeof(int),
46 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080047 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080049 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080052struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080053 { .procname = "net", },
54 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080055 { },
56};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080057EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080058
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000059static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080061 struct ctl_table *ipv6_table;
62 struct ctl_table *ipv6_route_table;
63 struct ctl_table *ipv6_icmp_table;
64 int err;
65
66 err = -ENOMEM;
67 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
68 GFP_KERNEL);
69 if (!ipv6_table)
70 goto out;
71
72 ipv6_route_table = ipv6_route_sysctl_init(net);
73 if (!ipv6_route_table)
74 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090075 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080076
77 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
78 if (!ipv6_icmp_table)
79 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080080 ipv6_table[1].child = ipv6_icmp_table;
81
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080082 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
83
Daniel Lezcano760f2d02008-01-10 02:53:43 -080084 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
85 ipv6_table);
86 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080087 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080088
Daniel Lezcano760f2d02008-01-10 02:53:43 -080089 err = 0;
90out:
91 return err;
92
93out_ipv6_icmp_table:
94 kfree(ipv6_icmp_table);
95out_ipv6_route_table:
96 kfree(ipv6_route_table);
97out_ipv6_table:
98 kfree(ipv6_table);
99 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000102static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800103{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800104 struct ctl_table *ipv6_table;
105 struct ctl_table *ipv6_route_table;
106 struct ctl_table *ipv6_icmp_table;
107
108 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
109 ipv6_route_table = ipv6_table[0].child;
110 ipv6_icmp_table = ipv6_table[1].child;
111
112 unregister_net_sysctl_table(net->ipv6.sysctl.table);
113
114 kfree(ipv6_table);
115 kfree(ipv6_route_table);
116 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800117}
118
119static struct pernet_operations ipv6_sysctl_net_ops = {
120 .init = ipv6_sysctl_net_init,
121 .exit = ipv6_sysctl_net_exit,
122};
123
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700124static struct ctl_table_header *ip6_header;
125
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800126int ipv6_sysctl_register(void)
127{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800128 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700129
Gerrit Renker81e43212009-07-28 09:48:07 +0000130 ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700131 if (ip6_header == NULL)
132 goto out;
133
134 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
135 if (err)
136 goto err_pernet;
137out:
138 return err;
139
140err_pernet:
141 unregister_net_sysctl_table(ip6_header);
142 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145void ipv6_sysctl_unregister(void)
146{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700147 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800148 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
Al Viroeeb61f72008-07-27 08:59:33 +0100150
151static struct ctl_table_header *ip6_base;
152
153int ipv6_static_sysctl_register(void)
154{
155 static struct ctl_table empty[1];
Al Viroce3113e2008-08-25 15:18:15 -0700156 ip6_base = register_sysctl_paths(net_ipv6_ctl_path, empty);
Al Viroeeb61f72008-07-27 08:59:33 +0100157 if (ip6_base == NULL)
158 return -ENOMEM;
159 return 0;
160}
161
162void ipv6_static_sysctl_unregister(void)
163{
164 unregister_net_sysctl_table(ip6_base);
165}