blob: 0c56c93619e063710a8d32f3f9e15fd9cdb6453c [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
Joe Perchesfe2c6332013-06-11 23:04:25 -070019static struct ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080022 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 .maxlen = sizeof(int),
24 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080025 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 },
FX Le Bail509aba32014-01-07 14:57:27 +010027 {
28 .procname = "anycast_src_echo_reply",
FX Le Bailec35b612014-01-13 15:59:01 +010029 .data = &init_net.ipv6.sysctl.anycast_src_echo_reply,
FX Le Bail509aba32014-01-07 14:57:27 +010030 .maxlen = sizeof(int),
31 .mode = 0644,
32 .proc_handler = proc_dointvec
33 },
Florent Fourcot6444f722014-01-17 17:15:05 +010034 {
35 .procname = "flowlabel_consistency",
36 .data = &init_net.ipv6.sysctl.flowlabel_consistency,
37 .maxlen = sizeof(int),
38 .mode = 0644,
39 .proc_handler = proc_dointvec
40 },
Lorenzo Colittie1108612014-05-13 10:17:33 -070041 {
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070042 .procname = "auto_flowlabels",
43 .data = &init_net.ipv6.sysctl.auto_flowlabels,
44 .maxlen = sizeof(int),
45 .mode = 0644,
46 .proc_handler = proc_dointvec
47 },
48 {
Lorenzo Colittie1108612014-05-13 10:17:33 -070049 .procname = "fwmark_reflect",
50 .data = &init_net.ipv6.sysctl.fwmark_reflect,
51 .maxlen = sizeof(int),
52 .mode = 0644,
53 .proc_handler = proc_dointvec
54 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080055 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -070056};
57
Joe Perchesfe2c6332013-06-11 23:04:25 -070058static struct ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .procname = "mld_max_msf",
61 .data = &sysctl_mld_max_msf,
62 .maxlen = sizeof(int),
63 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080064 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080066 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +000069static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Daniel Lezcano760f2d02008-01-10 02:53:43 -080071 struct ctl_table *ipv6_table;
72 struct ctl_table *ipv6_route_table;
73 struct ctl_table *ipv6_icmp_table;
74 int err;
75
76 err = -ENOMEM;
77 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
78 GFP_KERNEL);
79 if (!ipv6_table)
80 goto out;
Eric W. Biederman6dceb032012-04-19 13:37:09 +000081 ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;
FX Le Bailec35b612014-01-13 15:59:01 +010082 ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply;
Florent Fourcot6444f722014-01-17 17:15:05 +010083 ipv6_table[2].data = &net->ipv6.sysctl.flowlabel_consistency;
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070084 ipv6_table[3].data = &net->ipv6.sysctl.auto_flowlabels;
David S. Millerd247b6a2014-08-05 18:46:26 -070085 ipv6_table[4].data = &net->ipv6.sysctl.fwmark_reflect;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080086
87 ipv6_route_table = ipv6_route_sysctl_init(net);
88 if (!ipv6_route_table)
89 goto out_ipv6_table;
90
91 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
92 if (!ipv6_icmp_table)
93 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -080094
Eric W. Biederman6dceb032012-04-19 13:37:09 +000095 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
96 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -080097 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -080098
Eric W. Biederman6dceb032012-04-19 13:37:09 +000099 net->ipv6.sysctl.route_hdr =
100 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
101 if (!net->ipv6.sysctl.route_hdr)
102 goto out_unregister_ipv6_table;
103
104 net->ipv6.sysctl.icmp_hdr =
105 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
106 if (!net->ipv6.sysctl.icmp_hdr)
107 goto out_unregister_route_table;
108
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800109 err = 0;
110out:
111 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000112out_unregister_route_table:
113 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
114out_unregister_ipv6_table:
115 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800116out_ipv6_icmp_table:
117 kfree(ipv6_icmp_table);
118out_ipv6_route_table:
119 kfree(ipv6_route_table);
120out_ipv6_table:
121 kfree(ipv6_table);
122 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000125static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800126{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800127 struct ctl_table *ipv6_table;
128 struct ctl_table *ipv6_route_table;
129 struct ctl_table *ipv6_icmp_table;
130
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000131 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
132 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
133 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800134
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000135 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
136 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
137 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800138
139 kfree(ipv6_table);
140 kfree(ipv6_route_table);
141 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800142}
143
144static struct pernet_operations ipv6_sysctl_net_ops = {
145 .init = ipv6_sysctl_net_init,
146 .exit = ipv6_sysctl_net_exit,
147};
148
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700149static struct ctl_table_header *ip6_header;
150
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800151int ipv6_sysctl_register(void)
152{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800153 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700154
Eric W. Biederman43444752012-04-19 13:22:55 +0000155 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700156 if (ip6_header == NULL)
157 goto out;
158
159 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
160 if (err)
161 goto err_pernet;
162out:
163 return err;
164
165err_pernet:
166 unregister_net_sysctl_table(ip6_header);
167 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170void ipv6_sysctl_unregister(void)
171{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700172 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800173 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}