blob: ec8fcfc60a27ba2a238cf05ecae292e2db4daedc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem.
4 *
5 * Changes:
6 * YOSHIFUJI Hideaki @USAGI: added icmp sysctl table.
7 */
8
9#include <linux/mm.h>
10#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/in6.h>
12#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <net/ndisc.h>
16#include <net/ipv6.h>
17#include <net/addrconf.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070018#include <net/inet_frag.h>
David Ahernb4bac172018-03-02 08:32:18 -080019#include <net/netevent.h>
Huw Davies4fee5242016-06-27 15:06:17 -040020#ifdef CONFIG_NETLABEL
21#include <net/calipso.h>
22#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Eric Dumazeta346abe2019-07-01 06:39:36 -070024static int flowlabel_reflect_max = 0x7;
Tom Herbert42240902015-07-31 16:52:12 -070025static int auto_flowlabels_min;
26static int auto_flowlabels_max = IP6_AUTO_FLOW_LABEL_MAX;
27
David Ahernb4bac172018-03-02 08:32:18 -080028static int proc_rt6_multipath_hash_policy(struct ctl_table *table, int write,
29 void __user *buffer, size_t *lenp,
30 loff_t *ppos)
31{
32 struct net *net;
33 int ret;
34
35 net = container_of(table->data, struct net,
36 ipv6.sysctl.multipath_hash_policy);
37 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
38 if (write && ret == 0)
39 call_netevent_notifiers(NETEVENT_IPV6_MPATH_HASH_UPDATE, net);
40
41 return ret;
42}
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +020043
Joe Perchesfe2c6332013-06-11 23:04:25 -070044static struct ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080047 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .maxlen = sizeof(int),
49 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080050 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 },
FX Le Bail509aba32014-01-07 14:57:27 +010052 {
53 .procname = "anycast_src_echo_reply",
FX Le Bailec35b612014-01-13 15:59:01 +010054 .data = &init_net.ipv6.sysctl.anycast_src_echo_reply,
FX Le Bail509aba32014-01-07 14:57:27 +010055 .maxlen = sizeof(int),
56 .mode = 0644,
57 .proc_handler = proc_dointvec
58 },
Florent Fourcot6444f722014-01-17 17:15:05 +010059 {
60 .procname = "flowlabel_consistency",
61 .data = &init_net.ipv6.sysctl.flowlabel_consistency,
62 .maxlen = sizeof(int),
63 .mode = 0644,
64 .proc_handler = proc_dointvec
65 },
Lorenzo Colittie1108612014-05-13 10:17:33 -070066 {
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070067 .procname = "auto_flowlabels",
68 .data = &init_net.ipv6.sysctl.auto_flowlabels,
69 .maxlen = sizeof(int),
70 .mode = 0644,
Tom Herbert42240902015-07-31 16:52:12 -070071 .proc_handler = proc_dointvec_minmax,
72 .extra1 = &auto_flowlabels_min,
73 .extra2 = &auto_flowlabels_max
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070074 },
75 {
Lorenzo Colittie1108612014-05-13 10:17:33 -070076 .procname = "fwmark_reflect",
77 .data = &init_net.ipv6.sysctl.fwmark_reflect,
78 .maxlen = sizeof(int),
79 .mode = 0644,
80 .proc_handler = proc_dointvec
81 },
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +010082 {
83 .procname = "idgen_retries",
84 .data = &init_net.ipv6.sysctl.idgen_retries,
85 .maxlen = sizeof(int),
86 .mode = 0644,
87 .proc_handler = proc_dointvec,
88 },
89 {
90 .procname = "idgen_delay",
91 .data = &init_net.ipv6.sysctl.idgen_delay,
92 .maxlen = sizeof(int),
93 .mode = 0644,
94 .proc_handler = proc_dointvec_jiffies,
95 },
Tom Herbert82a584b2015-04-29 15:33:21 -070096 {
97 .procname = "flowlabel_state_ranges",
98 .data = &init_net.ipv6.sysctl.flowlabel_state_ranges,
99 .maxlen = sizeof(int),
100 .mode = 0644,
101 .proc_handler = proc_dointvec
102 },
Tom Herbert35a256f2015-07-08 16:58:22 -0700103 {
104 .procname = "ip_nonlocal_bind",
105 .data = &init_net.ipv6.sysctl.ip_nonlocal_bind,
106 .maxlen = sizeof(int),
107 .mode = 0644,
108 .proc_handler = proc_dointvec
109 },
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200110 {
111 .procname = "flowlabel_reflect",
112 .data = &init_net.ipv6.sysctl.flowlabel_reflect,
113 .maxlen = sizeof(int),
114 .mode = 0644,
Eiichi Tsukata00dc3302019-06-28 11:37:14 +0900115 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -0700116 .extra1 = SYSCTL_ZERO,
Eric Dumazeta346abe2019-07-01 06:39:36 -0700117 .extra2 = &flowlabel_reflect_max,
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200118 },
Tom Herbert47d3d7a2017-10-30 14:16:00 -0700119 {
120 .procname = "max_dst_opts_number",
121 .data = &init_net.ipv6.sysctl.max_dst_opts_cnt,
122 .maxlen = sizeof(int),
123 .mode = 0644,
124 .proc_handler = proc_dointvec
125 },
126 {
127 .procname = "max_hbh_opts_number",
128 .data = &init_net.ipv6.sysctl.max_hbh_opts_cnt,
129 .maxlen = sizeof(int),
130 .mode = 0644,
131 .proc_handler = proc_dointvec
132 },
133 {
134 .procname = "max_dst_opts_length",
135 .data = &init_net.ipv6.sysctl.max_dst_opts_len,
136 .maxlen = sizeof(int),
137 .mode = 0644,
138 .proc_handler = proc_dointvec
139 },
140 {
141 .procname = "max_hbh_length",
142 .data = &init_net.ipv6.sysctl.max_hbh_opts_len,
143 .maxlen = sizeof(int),
144 .mode = 0644,
145 .proc_handler = proc_dointvec
146 },
David Ahernb4bac172018-03-02 08:32:18 -0800147 {
148 .procname = "fib_multipath_hash_policy",
149 .data = &init_net.ipv6.sysctl.multipath_hash_policy,
150 .maxlen = sizeof(int),
151 .mode = 0644,
152 .proc_handler = proc_rt6_multipath_hash_policy,
Matteo Croceeec48442019-07-18 15:58:50 -0700153 .extra1 = SYSCTL_ZERO,
154 .extra2 = SYSCTL_ONE,
David Ahernb4bac172018-03-02 08:32:18 -0800155 },
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200156 {
157 .procname = "seg6_flowlabel",
158 .data = &init_net.ipv6.sysctl.seg6_flowlabel,
159 .maxlen = sizeof(int),
160 .mode = 0644,
161 .proc_handler = proc_dointvec
162 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800163 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700164};
165
Joe Perchesfe2c6332013-06-11 23:04:25 -0700166static struct ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 .procname = "mld_max_msf",
169 .data = &sysctl_mld_max_msf,
170 .maxlen = sizeof(int),
171 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800172 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 },
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200174 {
175 .procname = "mld_qrv",
176 .data = &sysctl_mld_qrv,
177 .maxlen = sizeof(int),
178 .mode = 0644,
179 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -0700180 .extra1 = SYSCTL_ONE
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200181 },
Huw Davies4fee5242016-06-27 15:06:17 -0400182#ifdef CONFIG_NETLABEL
183 {
184 .procname = "calipso_cache_enable",
185 .data = &calipso_cache_enabled,
186 .maxlen = sizeof(int),
187 .mode = 0644,
188 .proc_handler = proc_dointvec,
189 },
190 {
191 .procname = "calipso_cache_bucket_size",
192 .data = &calipso_cache_bucketsize,
193 .maxlen = sizeof(int),
194 .mode = 0644,
195 .proc_handler = proc_dointvec,
196 },
197#endif /* CONFIG_NETLABEL */
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800198 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199};
200
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000201static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800203 struct ctl_table *ipv6_table;
204 struct ctl_table *ipv6_route_table;
205 struct ctl_table *ipv6_icmp_table;
206 int err;
207
208 err = -ENOMEM;
209 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
210 GFP_KERNEL);
211 if (!ipv6_table)
212 goto out;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000213 ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;
FX Le Bailec35b612014-01-13 15:59:01 +0100214 ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply;
Florent Fourcot6444f722014-01-17 17:15:05 +0100215 ipv6_table[2].data = &net->ipv6.sysctl.flowlabel_consistency;
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700216 ipv6_table[3].data = &net->ipv6.sysctl.auto_flowlabels;
David S. Millerd247b6a2014-08-05 18:46:26 -0700217 ipv6_table[4].data = &net->ipv6.sysctl.fwmark_reflect;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +0100218 ipv6_table[5].data = &net->ipv6.sysctl.idgen_retries;
219 ipv6_table[6].data = &net->ipv6.sysctl.idgen_delay;
Tom Herbert82a584b2015-04-29 15:33:21 -0700220 ipv6_table[7].data = &net->ipv6.sysctl.flowlabel_state_ranges;
Tom Herbert35a256f2015-07-08 16:58:22 -0700221 ipv6_table[8].data = &net->ipv6.sysctl.ip_nonlocal_bind;
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200222 ipv6_table[9].data = &net->ipv6.sysctl.flowlabel_reflect;
Tom Herbert47d3d7a2017-10-30 14:16:00 -0700223 ipv6_table[10].data = &net->ipv6.sysctl.max_dst_opts_cnt;
224 ipv6_table[11].data = &net->ipv6.sysctl.max_hbh_opts_cnt;
225 ipv6_table[12].data = &net->ipv6.sysctl.max_dst_opts_len;
226 ipv6_table[13].data = &net->ipv6.sysctl.max_hbh_opts_len;
David Ahernb4bac172018-03-02 08:32:18 -0800227 ipv6_table[14].data = &net->ipv6.sysctl.multipath_hash_policy,
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200228 ipv6_table[15].data = &net->ipv6.sysctl.seg6_flowlabel;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800229
230 ipv6_route_table = ipv6_route_sysctl_init(net);
231 if (!ipv6_route_table)
232 goto out_ipv6_table;
233
234 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
235 if (!ipv6_icmp_table)
236 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800237
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000238 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
239 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800240 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800241
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000242 net->ipv6.sysctl.route_hdr =
243 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
244 if (!net->ipv6.sysctl.route_hdr)
245 goto out_unregister_ipv6_table;
246
247 net->ipv6.sysctl.icmp_hdr =
248 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
249 if (!net->ipv6.sysctl.icmp_hdr)
250 goto out_unregister_route_table;
251
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800252 err = 0;
253out:
254 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000255out_unregister_route_table:
256 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
257out_unregister_ipv6_table:
258 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800259out_ipv6_icmp_table:
260 kfree(ipv6_icmp_table);
261out_ipv6_route_table:
262 kfree(ipv6_route_table);
263out_ipv6_table:
264 kfree(ipv6_table);
265 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000268static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800269{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800270 struct ctl_table *ipv6_table;
271 struct ctl_table *ipv6_route_table;
272 struct ctl_table *ipv6_icmp_table;
273
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000274 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
275 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
276 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800277
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000278 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
279 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
280 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800281
282 kfree(ipv6_table);
283 kfree(ipv6_route_table);
284 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800285}
286
287static struct pernet_operations ipv6_sysctl_net_ops = {
288 .init = ipv6_sysctl_net_init,
289 .exit = ipv6_sysctl_net_exit,
290};
291
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700292static struct ctl_table_header *ip6_header;
293
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800294int ipv6_sysctl_register(void)
295{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800296 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700297
Eric W. Biederman43444752012-04-19 13:22:55 +0000298 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Ian Morris63159f22015-03-29 14:00:04 +0100299 if (!ip6_header)
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700300 goto out;
301
302 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
303 if (err)
304 goto err_pernet;
305out:
306 return err;
307
308err_pernet:
309 unregister_net_sysctl_table(ip6_header);
310 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313void ipv6_sysctl_unregister(void)
314{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700315 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800316 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}