ipv6: Calculate multipath hash inside switch statement
[linux-2.6-block.git] / net / ipv6 / sysctl_net_ipv6.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
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>
1da177e4
LT
11#include <linux/in6.h>
12#include <linux/ipv6.h>
5a0e3ad6 13#include <linux/slab.h>
bc3b2d7f 14#include <linux/export.h>
1da177e4
LT
15#include <net/ndisc.h>
16#include <net/ipv6.h>
17#include <net/addrconf.h>
04128f23 18#include <net/inet_frag.h>
b4bac172 19#include <net/netevent.h>
4fee5242
HD
20#ifdef CONFIG_NETLABEL
21#include <net/calipso.h>
22#endif
1da177e4 23
05d44871 24static int two = 2;
a346abe0 25static int flowlabel_reflect_max = 0x7;
42240901
TH
26static int auto_flowlabels_max = IP6_AUTO_FLOW_LABEL_MAX;
27
b4bac172 28static int proc_rt6_multipath_hash_policy(struct ctl_table *table, int write,
32927393 29 void *buffer, size_t *lenp, loff_t *ppos)
b4bac172
DA
30{
31 struct net *net;
32 int ret;
33
34 net = container_of(table->data, struct net,
35 ipv6.sysctl.multipath_hash_policy);
a6175633 36 ret = proc_dou8vec_minmax(table, write, buffer, lenp, ppos);
b4bac172
DA
37 if (write && ret == 0)
38 call_netevent_notifiers(NETEVENT_IPV6_MPATH_HASH_UPDATE, net);
39
40 return ret;
41}
2f711939 42
fe2c6338 43static struct ctl_table ipv6_table_template[] = {
1da177e4 44 {
1da177e4 45 .procname = "bindv6only",
99bc9c4e 46 .data = &init_net.ipv6.sysctl.bindv6only,
a6175633 47 .maxlen = sizeof(u8),
1da177e4 48 .mode = 0644,
a6175633 49 .proc_handler = proc_dou8vec_minmax,
1da177e4 50 },
509aba3b
FLB
51 {
52 .procname = "anycast_src_echo_reply",
ec35b61e 53 .data = &init_net.ipv6.sysctl.anycast_src_echo_reply,
a6175633 54 .maxlen = sizeof(u8),
509aba3b 55 .mode = 0644,
a6175633 56 .proc_handler = proc_dou8vec_minmax,
509aba3b 57 },
6444f72b
FF
58 {
59 .procname = "flowlabel_consistency",
60 .data = &init_net.ipv6.sysctl.flowlabel_consistency,
a6175633 61 .maxlen = sizeof(u8),
6444f72b 62 .mode = 0644,
a6175633 63 .proc_handler = proc_dou8vec_minmax,
6444f72b 64 },
cb1ce2ef
TH
65 {
66 .procname = "auto_flowlabels",
67 .data = &init_net.ipv6.sysctl.auto_flowlabels,
a6175633 68 .maxlen = sizeof(u8),
cb1ce2ef 69 .mode = 0644,
a6175633 70 .proc_handler = proc_dou8vec_minmax,
42240901 71 .extra2 = &auto_flowlabels_max
cb1ce2ef 72 },
e110861f
LC
73 {
74 .procname = "fwmark_reflect",
75 .data = &init_net.ipv6.sysctl.fwmark_reflect,
a6175633 76 .maxlen = sizeof(u8),
e110861f 77 .mode = 0644,
a6175633 78 .proc_handler = proc_dou8vec_minmax,
e110861f 79 },
1855b7c3
HFS
80 {
81 .procname = "idgen_retries",
82 .data = &init_net.ipv6.sysctl.idgen_retries,
83 .maxlen = sizeof(int),
84 .mode = 0644,
85 .proc_handler = proc_dointvec,
86 },
87 {
88 .procname = "idgen_delay",
89 .data = &init_net.ipv6.sysctl.idgen_delay,
90 .maxlen = sizeof(int),
91 .mode = 0644,
92 .proc_handler = proc_dointvec_jiffies,
93 },
82a584b7
TH
94 {
95 .procname = "flowlabel_state_ranges",
96 .data = &init_net.ipv6.sysctl.flowlabel_state_ranges,
a6175633 97 .maxlen = sizeof(u8),
82a584b7 98 .mode = 0644,
a6175633 99 .proc_handler = proc_dou8vec_minmax,
82a584b7 100 },
35a256fe
TH
101 {
102 .procname = "ip_nonlocal_bind",
103 .data = &init_net.ipv6.sysctl.ip_nonlocal_bind,
a6175633 104 .maxlen = sizeof(u8),
35a256fe 105 .mode = 0644,
a6175633 106 .proc_handler = proc_dou8vec_minmax,
35a256fe 107 },
22b6722b
JS
108 {
109 .procname = "flowlabel_reflect",
110 .data = &init_net.ipv6.sysctl.flowlabel_reflect,
111 .maxlen = sizeof(int),
112 .mode = 0644,
00dc3307 113 .proc_handler = proc_dointvec_minmax,
eec4844f 114 .extra1 = SYSCTL_ZERO,
a346abe0 115 .extra2 = &flowlabel_reflect_max,
22b6722b 116 },
47d3d7ac
TH
117 {
118 .procname = "max_dst_opts_number",
119 .data = &init_net.ipv6.sysctl.max_dst_opts_cnt,
120 .maxlen = sizeof(int),
121 .mode = 0644,
122 .proc_handler = proc_dointvec
123 },
124 {
125 .procname = "max_hbh_opts_number",
126 .data = &init_net.ipv6.sysctl.max_hbh_opts_cnt,
127 .maxlen = sizeof(int),
128 .mode = 0644,
129 .proc_handler = proc_dointvec
130 },
131 {
132 .procname = "max_dst_opts_length",
133 .data = &init_net.ipv6.sysctl.max_dst_opts_len,
134 .maxlen = sizeof(int),
135 .mode = 0644,
136 .proc_handler = proc_dointvec
137 },
138 {
139 .procname = "max_hbh_length",
140 .data = &init_net.ipv6.sysctl.max_hbh_opts_len,
141 .maxlen = sizeof(int),
142 .mode = 0644,
143 .proc_handler = proc_dointvec
144 },
b4bac172
DA
145 {
146 .procname = "fib_multipath_hash_policy",
147 .data = &init_net.ipv6.sysctl.multipath_hash_policy,
a6175633 148 .maxlen = sizeof(u8),
b4bac172
DA
149 .mode = 0644,
150 .proc_handler = proc_rt6_multipath_hash_policy,
eec4844f 151 .extra1 = SYSCTL_ZERO,
05d44871 152 .extra2 = &two,
b4bac172 153 },
b5facfdb
AA
154 {
155 .procname = "seg6_flowlabel",
156 .data = &init_net.ipv6.sysctl.seg6_flowlabel,
157 .maxlen = sizeof(int),
158 .mode = 0644,
159 .proc_handler = proc_dointvec
160 },
907eea48
AC
161 {
162 .procname = "fib_notify_on_flag_change",
163 .data = &init_net.ipv6.sysctl.fib_notify_on_flag_change,
a6175633 164 .maxlen = sizeof(u8),
907eea48 165 .mode = 0644,
a6175633 166 .proc_handler = proc_dou8vec_minmax,
907eea48 167 .extra1 = SYSCTL_ZERO,
6fad361a 168 .extra2 = &two,
907eea48 169 },
f8572d8f 170 { }
34ac2573
PE
171};
172
fe2c6338 173static struct ctl_table ipv6_rotable[] = {
1da177e4 174 {
1da177e4
LT
175 .procname = "mld_max_msf",
176 .data = &sysctl_mld_max_msf,
177 .maxlen = sizeof(int),
178 .mode = 0644,
6d9f239a 179 .proc_handler = proc_dointvec
1da177e4 180 },
2f711939
HFS
181 {
182 .procname = "mld_qrv",
183 .data = &sysctl_mld_qrv,
184 .maxlen = sizeof(int),
185 .mode = 0644,
186 .proc_handler = proc_dointvec_minmax,
eec4844f 187 .extra1 = SYSCTL_ONE
2f711939 188 },
4fee5242
HD
189#ifdef CONFIG_NETLABEL
190 {
191 .procname = "calipso_cache_enable",
192 .data = &calipso_cache_enabled,
193 .maxlen = sizeof(int),
194 .mode = 0644,
195 .proc_handler = proc_dointvec,
196 },
197 {
198 .procname = "calipso_cache_bucket_size",
199 .data = &calipso_cache_bucketsize,
200 .maxlen = sizeof(int),
201 .mode = 0644,
202 .proc_handler = proc_dointvec,
203 },
204#endif /* CONFIG_NETLABEL */
f8572d8f 205 { }
1da177e4
LT
206};
207
2c8c1e72 208static int __net_init ipv6_sysctl_net_init(struct net *net)
1da177e4 209{
760f2d01
DL
210 struct ctl_table *ipv6_table;
211 struct ctl_table *ipv6_route_table;
212 struct ctl_table *ipv6_icmp_table;
d2f7e56d 213 int err, i;
760f2d01
DL
214
215 err = -ENOMEM;
216 ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template),
217 GFP_KERNEL);
218 if (!ipv6_table)
219 goto out;
d2f7e56d
CZ
220 /* Update the variables to point into the current struct net */
221 for (i = 0; i < ARRAY_SIZE(ipv6_table_template) - 1; i++)
222 ipv6_table[i].data += (void *)net - (void *)&init_net;
760f2d01
DL
223
224 ipv6_route_table = ipv6_route_sysctl_init(net);
225 if (!ipv6_route_table)
226 goto out_ipv6_table;
227
228 ipv6_icmp_table = ipv6_icmp_sysctl_init(net);
229 if (!ipv6_icmp_table)
230 goto out_ipv6_route_table;
760f2d01 231
6dceb036
EB
232 net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table);
233 if (!net->ipv6.sysctl.hdr)
760f2d01
DL
234 goto out_ipv6_icmp_table;
235
6dceb036
EB
236 net->ipv6.sysctl.route_hdr =
237 register_net_sysctl(net, "net/ipv6/route", ipv6_route_table);
238 if (!net->ipv6.sysctl.route_hdr)
239 goto out_unregister_ipv6_table;
240
241 net->ipv6.sysctl.icmp_hdr =
242 register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table);
243 if (!net->ipv6.sysctl.icmp_hdr)
244 goto out_unregister_route_table;
245
760f2d01
DL
246 err = 0;
247out:
248 return err;
6dceb036
EB
249out_unregister_route_table:
250 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
251out_unregister_ipv6_table:
252 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
760f2d01
DL
253out_ipv6_icmp_table:
254 kfree(ipv6_icmp_table);
255out_ipv6_route_table:
256 kfree(ipv6_route_table);
257out_ipv6_table:
258 kfree(ipv6_table);
259 goto out;
1da177e4
LT
260}
261
2c8c1e72 262static void __net_exit ipv6_sysctl_net_exit(struct net *net)
89918fc2 263{
760f2d01
DL
264 struct ctl_table *ipv6_table;
265 struct ctl_table *ipv6_route_table;
266 struct ctl_table *ipv6_icmp_table;
267
6dceb036
EB
268 ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg;
269 ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg;
270 ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg;
760f2d01 271
6dceb036
EB
272 unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr);
273 unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr);
274 unregister_net_sysctl_table(net->ipv6.sysctl.hdr);
760f2d01
DL
275
276 kfree(ipv6_table);
277 kfree(ipv6_route_table);
278 kfree(ipv6_icmp_table);
89918fc2
DL
279}
280
281static struct pernet_operations ipv6_sysctl_net_ops = {
282 .init = ipv6_sysctl_net_init,
283 .exit = ipv6_sysctl_net_exit,
284};
285
34ac2573
PE
286static struct ctl_table_header *ip6_header;
287
89918fc2
DL
288int ipv6_sysctl_register(void)
289{
c19a28e1 290 int err = -ENOMEM;
34ac2573 291
43444757 292 ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable);
63159f29 293 if (!ip6_header)
34ac2573
PE
294 goto out;
295
296 err = register_pernet_subsys(&ipv6_sysctl_net_ops);
297 if (err)
298 goto err_pernet;
299out:
300 return err;
301
302err_pernet:
303 unregister_net_sysctl_table(ip6_header);
304 goto out;
89918fc2
DL
305}
306
1da177e4
LT
307void ipv6_sysctl_unregister(void)
308{
34ac2573 309 unregister_net_sysctl_table(ip6_header);
89918fc2 310 unregister_pernet_subsys(&ipv6_sysctl_net_ops);
1da177e4 311}