blob: dc4c91e0bfb8efcc9599b7505f526d443527e62d [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
David Ahernb4bac172018-03-02 08:32:18 -080024static int zero;
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +020025static int one = 1;
Eric Dumazeta346abe2019-07-01 06:39:36 -070026static int flowlabel_reflect_max = 0x7;
Tom Herbert42240902015-07-31 16:52:12 -070027static int auto_flowlabels_min;
28static int auto_flowlabels_max = IP6_AUTO_FLOW_LABEL_MAX;
29
David Ahernb4bac172018-03-02 08:32:18 -080030static int proc_rt6_multipath_hash_policy(struct ctl_table *table, int write,
31 void __user *buffer, size_t *lenp,
32 loff_t *ppos)
33{
34 struct net *net;
35 int ret;
36
37 net = container_of(table->data, struct net,
38 ipv6.sysctl.multipath_hash_policy);
39 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
40 if (write && ret == 0)
41 call_netevent_notifiers(NETEVENT_IPV6_MPATH_HASH_UPDATE, net);
42
43 return ret;
44}
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +020045
Joe Perchesfe2c6332013-06-11 23:04:25 -070046static struct ctl_table ipv6_table_template[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .procname = "bindv6only",
Daniel Lezcano99bc9c42008-01-10 02:54:53 -080049 .data = &init_net.ipv6.sysctl.bindv6only,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 .maxlen = sizeof(int),
51 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080052 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 },
FX Le Bail509aba32014-01-07 14:57:27 +010054 {
55 .procname = "anycast_src_echo_reply",
FX Le Bailec35b612014-01-13 15:59:01 +010056 .data = &init_net.ipv6.sysctl.anycast_src_echo_reply,
FX Le Bail509aba32014-01-07 14:57:27 +010057 .maxlen = sizeof(int),
58 .mode = 0644,
59 .proc_handler = proc_dointvec
60 },
Florent Fourcot6444f722014-01-17 17:15:05 +010061 {
62 .procname = "flowlabel_consistency",
63 .data = &init_net.ipv6.sysctl.flowlabel_consistency,
64 .maxlen = sizeof(int),
65 .mode = 0644,
66 .proc_handler = proc_dointvec
67 },
Lorenzo Colittie1108612014-05-13 10:17:33 -070068 {
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070069 .procname = "auto_flowlabels",
70 .data = &init_net.ipv6.sysctl.auto_flowlabels,
71 .maxlen = sizeof(int),
72 .mode = 0644,
Tom Herbert42240902015-07-31 16:52:12 -070073 .proc_handler = proc_dointvec_minmax,
74 .extra1 = &auto_flowlabels_min,
75 .extra2 = &auto_flowlabels_max
Tom Herbertcb1ce2e2014-07-01 21:33:10 -070076 },
77 {
Lorenzo Colittie1108612014-05-13 10:17:33 -070078 .procname = "fwmark_reflect",
79 .data = &init_net.ipv6.sysctl.fwmark_reflect,
80 .maxlen = sizeof(int),
81 .mode = 0644,
82 .proc_handler = proc_dointvec
83 },
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +010084 {
85 .procname = "idgen_retries",
86 .data = &init_net.ipv6.sysctl.idgen_retries,
87 .maxlen = sizeof(int),
88 .mode = 0644,
89 .proc_handler = proc_dointvec,
90 },
91 {
92 .procname = "idgen_delay",
93 .data = &init_net.ipv6.sysctl.idgen_delay,
94 .maxlen = sizeof(int),
95 .mode = 0644,
96 .proc_handler = proc_dointvec_jiffies,
97 },
Tom Herbert82a584b2015-04-29 15:33:21 -070098 {
99 .procname = "flowlabel_state_ranges",
100 .data = &init_net.ipv6.sysctl.flowlabel_state_ranges,
101 .maxlen = sizeof(int),
102 .mode = 0644,
103 .proc_handler = proc_dointvec
104 },
Tom Herbert35a256f2015-07-08 16:58:22 -0700105 {
106 .procname = "ip_nonlocal_bind",
107 .data = &init_net.ipv6.sysctl.ip_nonlocal_bind,
108 .maxlen = sizeof(int),
109 .mode = 0644,
110 .proc_handler = proc_dointvec
111 },
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200112 {
113 .procname = "flowlabel_reflect",
114 .data = &init_net.ipv6.sysctl.flowlabel_reflect,
115 .maxlen = sizeof(int),
116 .mode = 0644,
Eiichi Tsukata00dc3302019-06-28 11:37:14 +0900117 .proc_handler = proc_dointvec_minmax,
Eric Dumazet323a53c2019-06-05 07:55:09 -0700118 .extra1 = &zero,
Eric Dumazeta346abe2019-07-01 06:39:36 -0700119 .extra2 = &flowlabel_reflect_max,
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200120 },
Tom Herbert47d3d7a2017-10-30 14:16:00 -0700121 {
122 .procname = "max_dst_opts_number",
123 .data = &init_net.ipv6.sysctl.max_dst_opts_cnt,
124 .maxlen = sizeof(int),
125 .mode = 0644,
126 .proc_handler = proc_dointvec
127 },
128 {
129 .procname = "max_hbh_opts_number",
130 .data = &init_net.ipv6.sysctl.max_hbh_opts_cnt,
131 .maxlen = sizeof(int),
132 .mode = 0644,
133 .proc_handler = proc_dointvec
134 },
135 {
136 .procname = "max_dst_opts_length",
137 .data = &init_net.ipv6.sysctl.max_dst_opts_len,
138 .maxlen = sizeof(int),
139 .mode = 0644,
140 .proc_handler = proc_dointvec
141 },
142 {
143 .procname = "max_hbh_length",
144 .data = &init_net.ipv6.sysctl.max_hbh_opts_len,
145 .maxlen = sizeof(int),
146 .mode = 0644,
147 .proc_handler = proc_dointvec
148 },
David Ahernb4bac172018-03-02 08:32:18 -0800149 {
150 .procname = "fib_multipath_hash_policy",
151 .data = &init_net.ipv6.sysctl.multipath_hash_policy,
152 .maxlen = sizeof(int),
153 .mode = 0644,
154 .proc_handler = proc_rt6_multipath_hash_policy,
155 .extra1 = &zero,
156 .extra2 = &one,
157 },
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200158 {
159 .procname = "seg6_flowlabel",
160 .data = &init_net.ipv6.sysctl.seg6_flowlabel,
161 .maxlen = sizeof(int),
162 .mode = 0644,
163 .proc_handler = proc_dointvec
164 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800165 { }
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700166};
167
Joe Perchesfe2c6332013-06-11 23:04:25 -0700168static struct ctl_table ipv6_rotable[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .procname = "mld_max_msf",
171 .data = &sysctl_mld_max_msf,
172 .maxlen = sizeof(int),
173 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800174 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 },
Hannes Frederic Sowa2f711932014-09-02 15:49:25 +0200176 {
177 .procname = "mld_qrv",
178 .data = &sysctl_mld_qrv,
179 .maxlen = sizeof(int),
180 .mode = 0644,
181 .proc_handler = proc_dointvec_minmax,
182 .extra1 = &one
183 },
Huw Davies4fee5242016-06-27 15:06:17 -0400184#ifdef CONFIG_NETLABEL
185 {
186 .procname = "calipso_cache_enable",
187 .data = &calipso_cache_enabled,
188 .maxlen = sizeof(int),
189 .mode = 0644,
190 .proc_handler = proc_dointvec,
191 },
192 {
193 .procname = "calipso_cache_bucket_size",
194 .data = &calipso_cache_bucketsize,
195 .maxlen = sizeof(int),
196 .mode = 0644,
197 .proc_handler = proc_dointvec,
198 },
199#endif /* CONFIG_NETLABEL */
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800200 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000203static int __net_init ipv6_sysctl_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800205 struct ctl_table *ipv6_table;
206 struct ctl_table *ipv6_route_table;
207 struct ctl_table *ipv6_icmp_table;
208 int err;
209
210 err = -ENOMEM;
211 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
212 GFP_KERNEL);
213 if (!ipv6_table)
214 goto out;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000215 ipv6_table[0].data = &net->ipv6.sysctl.bindv6only;
FX Le Bailec35b612014-01-13 15:59:01 +0100216 ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply;
Florent Fourcot6444f722014-01-17 17:15:05 +0100217 ipv6_table[2].data = &net->ipv6.sysctl.flowlabel_consistency;
Tom Herbertcb1ce2e2014-07-01 21:33:10 -0700218 ipv6_table[3].data = &net->ipv6.sysctl.auto_flowlabels;
David S. Millerd247b6a2014-08-05 18:46:26 -0700219 ipv6_table[4].data = &net->ipv6.sysctl.fwmark_reflect;
Hannes Frederic Sowa1855b7c2015-03-23 23:36:05 +0100220 ipv6_table[5].data = &net->ipv6.sysctl.idgen_retries;
221 ipv6_table[6].data = &net->ipv6.sysctl.idgen_delay;
Tom Herbert82a584b2015-04-29 15:33:21 -0700222 ipv6_table[7].data = &net->ipv6.sysctl.flowlabel_state_ranges;
Tom Herbert35a256f2015-07-08 16:58:22 -0700223 ipv6_table[8].data = &net->ipv6.sysctl.ip_nonlocal_bind;
Jakub Sitnicki22b67222017-08-23 09:55:41 +0200224 ipv6_table[9].data = &net->ipv6.sysctl.flowlabel_reflect;
Tom Herbert47d3d7a2017-10-30 14:16:00 -0700225 ipv6_table[10].data = &net->ipv6.sysctl.max_dst_opts_cnt;
226 ipv6_table[11].data = &net->ipv6.sysctl.max_hbh_opts_cnt;
227 ipv6_table[12].data = &net->ipv6.sysctl.max_dst_opts_len;
228 ipv6_table[13].data = &net->ipv6.sysctl.max_hbh_opts_len;
David Ahernb4bac172018-03-02 08:32:18 -0800229 ipv6_table[14].data = &net->ipv6.sysctl.multipath_hash_policy,
Ahmed Abdelsalamb5facfd2018-04-24 20:23:16 +0200230 ipv6_table[15].data = &net->ipv6.sysctl.seg6_flowlabel;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800231
232 ipv6_route_table = ipv6_route_sysctl_init(net);
233 if (!ipv6_route_table)
234 goto out_ipv6_table;
235
236 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
237 if (!ipv6_icmp_table)
238 goto out_ipv6_route_table;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800239
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000240 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
241 if (!net->ipv6.sysctl.hdr)
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800242 goto out_ipv6_icmp_table;
Daniel Lezcano291480c2008-01-10 02:47:55 -0800243
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000244 net->ipv6.sysctl.route_hdr =
245 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
246 if (!net->ipv6.sysctl.route_hdr)
247 goto out_unregister_ipv6_table;
248
249 net->ipv6.sysctl.icmp_hdr =
250 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
251 if (!net->ipv6.sysctl.icmp_hdr)
252 goto out_unregister_route_table;
253
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800254 err = 0;
255out:
256 return err;
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000257out_unregister_route_table:
258 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
259out_unregister_ipv6_table:
260 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800261out_ipv6_icmp_table:
262 kfree(ipv6_icmp_table);
263out_ipv6_route_table:
264 kfree(ipv6_route_table);
265out_ipv6_table:
266 kfree(ipv6_table);
267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000270static void __net_exit ipv6_sysctl_net_exit(struct net *net)
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800271{
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800272 struct ctl_table *ipv6_table;
273 struct ctl_table *ipv6_route_table;
274 struct ctl_table *ipv6_icmp_table;
275
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000276 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
277 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
278 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800279
Eric W. Biederman6dceb032012-04-19 13:37:09 +0000280 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
281 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
282 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
Daniel Lezcano760f2d02008-01-10 02:53:43 -0800283
284 kfree(ipv6_table);
285 kfree(ipv6_route_table);
286 kfree(ipv6_icmp_table);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800287}
288
289static struct pernet_operations ipv6_sysctl_net_ops = {
290 .init = ipv6_sysctl_net_init,
291 .exit = ipv6_sysctl_net_exit,
292};
293
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700294static struct ctl_table_header *ip6_header;
295
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800296int ipv6_sysctl_register(void)
297{
Fernando Carrijoc19a28e2009-01-07 18:09:08 -0800298 int err = -ENOMEM;
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700299
Eric W. Biederman43444752012-04-19 13:22:55 +0000300 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
Ian Morris63159f22015-03-29 14:00:04 +0100301 if (!ip6_header)
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700302 goto out;
303
304 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
305 if (err)
306 goto err_pernet;
307out:
308 return err;
309
310err_pernet:
311 unregister_net_sysctl_table(ip6_header);
312 goto out;
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315void ipv6_sysctl_unregister(void)
316{
Pavel Emelyanov34ac2572008-05-19 13:53:30 -0700317 unregister_net_sysctl_table(ip6_header);
Daniel Lezcano89918fc2008-01-10 02:49:34 -0800318 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}