blob: 5b60a4bdd36af0f4ed9159c1cadc3cb31aa2e75e [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
Ido Schimmel05d44872020-09-02 16:16:59 +030024static int two = 2;
Eric Dumazeta346abe2019-07-01 06:39:36 -070025static int flowlabel_reflect_max = 0x7;
Tom Herbert42240902015-07-31 16:52:12 -070026static int auto_flowlabels_min;
27static int auto_flowlabels_max = IP6_AUTO_FLOW_LABEL_MAX;
28
David Ahernb4bac172018-03-02 08:32:18 -080029static int proc_rt6_multipath_hash_policy(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +020030 void *buffer, size_t *lenp, loff_t *ppos)
David Ahernb4bac172018-03-02 08:32:18 -080031{
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,
Ido Schimmel05d44872020-09-02 16:16:59 +0300154 .extra2 = &two,
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;
Cambda Zhud2f7e562020-03-03 14:54:34 +0800206 int err, i;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800207
208 err = -ENOMEM;
209 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
210 GFP_KERNEL);
211 if (!ipv6_table)
212 goto out;
Cambda Zhud2f7e562020-03-03 14:54:34 +0800213 /* Update the variables to point into the current struct net */
214 for (i = 0; i < ARRAY_SIZE(ipv6_table_template) - 1; i++)
215 ipv6_table[i].data += (void *)net - (void *)&init_net;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800216
217 ipv6_route_table = ipv6_route_sysctl_init(net);
218 if (!ipv6_route_table)
219 goto out_ipv6_table;
220
221 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
222 if (!ipv6_icmp_table)
223 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800224
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000225 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
226 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800227 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800228
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000229 net->ipv6.sysctl.route_hdr =
230 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
231 if (!net->ipv6.sysctl.route_hdr)
232 goto out_unregister_ipv6_table;
233
234 net->ipv6.sysctl.icmp_hdr =
235 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
236 if (!net->ipv6.sysctl.icmp_hdr)
237 goto out_unregister_route_table;
238
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800239 err = 0;
240out:
241 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000242out_unregister_route_table:
243 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
244out_unregister_ipv6_table:
245 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800246out_ipv6_icmp_table:
247 kfree(ipv6_icmp_table);
248out_ipv6_route_table:
249 kfree(ipv6_route_table);
250out_ipv6_table:
251 kfree(ipv6_table);
252 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000255static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800256{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800257 struct ctl_table *ipv6_table;
258 struct ctl_table *ipv6_route_table;
259 struct ctl_table *ipv6_icmp_table;
260
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000261 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
262 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
263 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800264
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000265 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
266 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
267 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800268
269 kfree(ipv6_table);
270 kfree(ipv6_route_table);
271 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800272}
273
274static struct pernet_operations ipv6_sysctl_net_ops = {
275 .init = ipv6_sysctl_net_init,
276 .exit = ipv6_sysctl_net_exit,
277};
278
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700279static struct ctl_table_header *ip6_header;
280
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800281int ipv6_sysctl_register(void)
282{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800283 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700284
Eric W. Biederman43444752012-04-19 13:22:55 +0000285 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Ian Morris63159f22015-03-29 14:00:04 +0100286 if (!ip6_header)
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700287 goto out;
288
289 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
290 if (err)
291 goto err_pernet;
292out:
293 return err;
294
295err_pernet:
296 unregister_net_sysctl_table(ip6_header);
297 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300void ipv6_sysctl_unregister(void)
301{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700302 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800303 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}