blob: cf1e96a4960732a80371238d846c2f7c2802f6ba [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
Daniel Lezcano760f2d02008-01-10 02:53:43 -080019static ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 .procname = "route",
22 .maxlen = 0,
23 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080024 .child = ipv6_route_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 },
26 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .procname = "icmp",
28 .maxlen = 0,
29 .mode = 0555,
Daniel Lezcano760f2d02008-01-10 02:53:43 -080030 .child = ipv6_icmp_table_template
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 },
32 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080034 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .maxlen = sizeof(int),
36 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080037 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080039 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070040};
41
Gerrit Renker81e43212009-07-28 09:48:07 +000042static ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .procname = "mld_max_msf",
45 .data = &sysctl_mld_max_msf,
46 .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 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080053struct ctl_path net_ipv6_ctl_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080054 { .procname = "net", },
55 { .procname = "ipv6", },
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080056 { },
57};
Pavel Emelyanov3d7cc2b2008-01-09 00:33:11 -080058EXPORT_SYMBOL_GPL(net_ipv6_ctl_path);
Pavel Emelyanov4d43b782007-12-05 01:44:02 -080059
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000060static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080062 struct ctl_table *ipv6_table;
63 struct ctl_table *ipv6_route_table;
64 struct ctl_table *ipv6_icmp_table;
65 int err;
66
67 err = -ENOMEM;
68 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
69 GFP_KERNEL);
70 if (!ipv6_table)
71 goto out;
72
73 ipv6_route_table = ipv6_route_sysctl_init(net);
74 if (!ipv6_route_table)
75 goto out_ipv6_table;
YOSHIFUJI Hideaki5ee09102008-02-28 00:24:28 +090076 ipv6_table[0].child = ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080077
78 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
79 if (!ipv6_icmp_table)
80 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080081 ipv6_table[1].child = ipv6_icmp_table;
82
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080083 ipv6_table[2].data = &net->ipv6.sysctl.bindv6only;
84
Daniel Lezcano760f2d02008-01-10 02:53:43 -080085 net->ipv6.sysctl.table = register_net_sysctl_table(net, net_ipv6_ctl_path,
86 ipv6_table);
87 if (!net->ipv6.sysctl.table)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080088 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080089
Daniel Lezcano760f2d02008-01-10 02:53:43 -080090 err = 0;
91out:
92 return err;
93
94out_ipv6_icmp_table:
95 kfree(ipv6_icmp_table);
96out_ipv6_route_table:
97 kfree(ipv6_route_table);
98out_ipv6_table:
99 kfree(ipv6_table);
100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000103static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800104{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800105 struct ctl_table *ipv6_table;
106 struct ctl_table *ipv6_route_table;
107 struct ctl_table *ipv6_icmp_table;
108
109 ipv6_table = net->ipv6.sysctl.table->ctl_table_arg;
110 ipv6_route_table = ipv6_table[0].child;
111 ipv6_icmp_table = ipv6_table[1].child;
112
113 unregister_net_sysctl_table(net->ipv6.sysctl.table);
114
115 kfree(ipv6_table);
116 kfree(ipv6_route_table);
117 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800118}
119
120static struct pernet_operations ipv6_sysctl_net_ops = {
121 .init = ipv6_sysctl_net_init,
122 .exit = ipv6_sysctl_net_exit,
123};
124
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700125static struct ctl_table_header *ip6_header;
126
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800127int ipv6_sysctl_register(void)
128{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800129 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700130
Eric W. Biederman43444752012-04-19 13:22:55 +0000131 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700132 if (ip6_header == NULL)
133 goto out;
134
135 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
136 if (err)
137 goto err_pernet;
138out:
139 return err;
140
141err_pernet:
142 unregister_net_sysctl_table(ip6_header);
143 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146void ipv6_sysctl_unregister(void)
147{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700148 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800149 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}