xref: /linux/net/ipv4/sysctl_net_ipv4.c (revision 569d7db70e5dcf13fbf072f10e9096577ac1e565)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * sysctl_net_ipv4.c: sysctl interface to net IPV4 subsystem.
4  *
5  * Begun April 1, 1996, Mike Shaver.
6  * Added /proc/sys/net/ipv4 directory entry (empty =) ). [MS]
7  */
8 
9 #include <linux/sysctl.h>
10 #include <linux/seqlock.h>
11 #include <linux/init.h>
12 #include <linux/slab.h>
13 #include <net/icmp.h>
14 #include <net/ip.h>
15 #include <net/ip_fib.h>
16 #include <net/tcp.h>
17 #include <net/udp.h>
18 #include <net/cipso_ipv4.h>
19 #include <net/ping.h>
20 #include <net/protocol.h>
21 #include <net/netevent.h>
22 
23 static int tcp_retr1_max = 255;
24 static int ip_local_port_range_min[] = { 1, 1 };
25 static int ip_local_port_range_max[] = { 65535, 65535 };
26 static int tcp_adv_win_scale_min = -31;
27 static int tcp_adv_win_scale_max = 31;
28 static int tcp_app_win_max = 31;
29 static int tcp_min_snd_mss_min = TCP_MIN_SND_MSS;
30 static int tcp_min_snd_mss_max = 65535;
31 static int ip_privileged_port_min;
32 static int ip_privileged_port_max = 65535;
33 static int ip_ttl_min = 1;
34 static int ip_ttl_max = 255;
35 static int tcp_syn_retries_min = 1;
36 static int tcp_syn_retries_max = MAX_TCP_SYNCNT;
37 static int tcp_syn_linear_timeouts_max = MAX_TCP_SYNCNT;
38 static unsigned long ip_ping_group_range_min[] = { 0, 0 };
39 static unsigned long ip_ping_group_range_max[] = { GID_T_MAX, GID_T_MAX };
40 static u32 u32_max_div_HZ = UINT_MAX / HZ;
41 static int one_day_secs = 24 * 3600;
42 static u32 fib_multipath_hash_fields_all_mask __maybe_unused =
43 	FIB_MULTIPATH_HASH_FIELD_ALL_MASK;
44 static unsigned int tcp_child_ehash_entries_max = 16 * 1024 * 1024;
45 static unsigned int udp_child_hash_entries_max = UDP_HTABLE_SIZE_MAX;
46 static int tcp_plb_max_rounds = 31;
47 static int tcp_plb_max_cong_thresh = 256;
48 
49 /* obsolete */
50 static int sysctl_tcp_low_latency __read_mostly;
51 
52 /* Update system visible IP port range */
53 static void set_local_port_range(struct net *net, unsigned int low, unsigned int high)
54 {
55 	bool same_parity = !((low ^ high) & 1);
56 
57 	if (same_parity && !net->ipv4.ip_local_ports.warned) {
58 		net->ipv4.ip_local_ports.warned = true;
59 		pr_err_ratelimited("ip_local_port_range: prefer different parity for start/end values.\n");
60 	}
61 	WRITE_ONCE(net->ipv4.ip_local_ports.range, high << 16 | low);
62 }
63 
64 /* Validate changes from /proc interface. */
65 static int ipv4_local_port_range(struct ctl_table *table, int write,
66 				 void *buffer, size_t *lenp, loff_t *ppos)
67 {
68 	struct net *net = table->data;
69 	int ret;
70 	int range[2];
71 	struct ctl_table tmp = {
72 		.data = &range,
73 		.maxlen = sizeof(range),
74 		.mode = table->mode,
75 		.extra1 = &ip_local_port_range_min,
76 		.extra2 = &ip_local_port_range_max,
77 	};
78 
79 	inet_get_local_port_range(net, &range[0], &range[1]);
80 
81 	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
82 
83 	if (write && ret == 0) {
84 		/* Ensure that the upper limit is not smaller than the lower,
85 		 * and that the lower does not encroach upon the privileged
86 		 * port limit.
87 		 */
88 		if ((range[1] < range[0]) ||
89 		    (range[0] < READ_ONCE(net->ipv4.sysctl_ip_prot_sock)))
90 			ret = -EINVAL;
91 		else
92 			set_local_port_range(net, range[0], range[1]);
93 	}
94 
95 	return ret;
96 }
97 
98 /* Validate changes from /proc interface. */
99 static int ipv4_privileged_ports(struct ctl_table *table, int write,
100 				void *buffer, size_t *lenp, loff_t *ppos)
101 {
102 	struct net *net = container_of(table->data, struct net,
103 	    ipv4.sysctl_ip_prot_sock);
104 	int ret;
105 	int pports;
106 	int range[2];
107 	struct ctl_table tmp = {
108 		.data = &pports,
109 		.maxlen = sizeof(pports),
110 		.mode = table->mode,
111 		.extra1 = &ip_privileged_port_min,
112 		.extra2 = &ip_privileged_port_max,
113 	};
114 
115 	pports = READ_ONCE(net->ipv4.sysctl_ip_prot_sock);
116 
117 	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
118 
119 	if (write && ret == 0) {
120 		inet_get_local_port_range(net, &range[0], &range[1]);
121 		/* Ensure that the local port range doesn't overlap with the
122 		 * privileged port range.
123 		 */
124 		if (range[0] < pports)
125 			ret = -EINVAL;
126 		else
127 			WRITE_ONCE(net->ipv4.sysctl_ip_prot_sock, pports);
128 	}
129 
130 	return ret;
131 }
132 
133 static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
134 {
135 	kgid_t *data = table->data;
136 	struct net *net =
137 		container_of(table->data, struct net, ipv4.ping_group_range.range);
138 	unsigned int seq;
139 	do {
140 		seq = read_seqbegin(&net->ipv4.ping_group_range.lock);
141 
142 		*low = data[0];
143 		*high = data[1];
144 	} while (read_seqretry(&net->ipv4.ping_group_range.lock, seq));
145 }
146 
147 /* Update system visible IP port range */
148 static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
149 {
150 	kgid_t *data = table->data;
151 	struct net *net =
152 		container_of(table->data, struct net, ipv4.ping_group_range.range);
153 	write_seqlock(&net->ipv4.ping_group_range.lock);
154 	data[0] = low;
155 	data[1] = high;
156 	write_sequnlock(&net->ipv4.ping_group_range.lock);
157 }
158 
159 /* Validate changes from /proc interface. */
160 static int ipv4_ping_group_range(struct ctl_table *table, int write,
161 				 void *buffer, size_t *lenp, loff_t *ppos)
162 {
163 	struct user_namespace *user_ns = current_user_ns();
164 	int ret;
165 	unsigned long urange[2];
166 	kgid_t low, high;
167 	struct ctl_table tmp = {
168 		.data = &urange,
169 		.maxlen = sizeof(urange),
170 		.mode = table->mode,
171 		.extra1 = &ip_ping_group_range_min,
172 		.extra2 = &ip_ping_group_range_max,
173 	};
174 
175 	inet_get_ping_group_range_table(table, &low, &high);
176 	urange[0] = from_kgid_munged(user_ns, low);
177 	urange[1] = from_kgid_munged(user_ns, high);
178 	ret = proc_doulongvec_minmax(&tmp, write, buffer, lenp, ppos);
179 
180 	if (write && ret == 0) {
181 		low = make_kgid(user_ns, urange[0]);
182 		high = make_kgid(user_ns, urange[1]);
183 		if (!gid_valid(low) || !gid_valid(high))
184 			return -EINVAL;
185 		if (urange[1] < urange[0] || gid_lt(high, low)) {
186 			low = make_kgid(&init_user_ns, 1);
187 			high = make_kgid(&init_user_ns, 0);
188 		}
189 		set_ping_group_range(table, low, high);
190 	}
191 
192 	return ret;
193 }
194 
195 static int ipv4_fwd_update_priority(struct ctl_table *table, int write,
196 				    void *buffer, size_t *lenp, loff_t *ppos)
197 {
198 	struct net *net;
199 	int ret;
200 
201 	net = container_of(table->data, struct net,
202 			   ipv4.sysctl_ip_fwd_update_priority);
203 	ret = proc_dou8vec_minmax(table, write, buffer, lenp, ppos);
204 	if (write && ret == 0)
205 		call_netevent_notifiers(NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE,
206 					net);
207 
208 	return ret;
209 }
210 
211 static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
212 				       void *buffer, size_t *lenp, loff_t *ppos)
213 {
214 	struct net *net = container_of(ctl->data, struct net,
215 				       ipv4.tcp_congestion_control);
216 	char val[TCP_CA_NAME_MAX];
217 	struct ctl_table tbl = {
218 		.data = val,
219 		.maxlen = TCP_CA_NAME_MAX,
220 	};
221 	int ret;
222 
223 	tcp_get_default_congestion_control(net, val);
224 
225 	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
226 	if (write && ret == 0)
227 		ret = tcp_set_default_congestion_control(net, val);
228 	return ret;
229 }
230 
231 static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
232 						 int write, void *buffer,
233 						 size_t *lenp, loff_t *ppos)
234 {
235 	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
236 	int ret;
237 
238 	tbl.data = kmalloc(tbl.maxlen, GFP_USER);
239 	if (!tbl.data)
240 		return -ENOMEM;
241 	tcp_get_available_congestion_control(tbl.data, TCP_CA_BUF_MAX);
242 	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
243 	kfree(tbl.data);
244 	return ret;
245 }
246 
247 static int proc_allowed_congestion_control(struct ctl_table *ctl,
248 					   int write, void *buffer,
249 					   size_t *lenp, loff_t *ppos)
250 {
251 	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
252 	int ret;
253 
254 	tbl.data = kmalloc(tbl.maxlen, GFP_USER);
255 	if (!tbl.data)
256 		return -ENOMEM;
257 
258 	tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
259 	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
260 	if (write && ret == 0)
261 		ret = tcp_set_allowed_congestion_control(tbl.data);
262 	kfree(tbl.data);
263 	return ret;
264 }
265 
266 static int sscanf_key(char *buf, __le32 *key)
267 {
268 	u32 user_key[4];
269 	int i, ret = 0;
270 
271 	if (sscanf(buf, "%x-%x-%x-%x", user_key, user_key + 1,
272 		   user_key + 2, user_key + 3) != 4) {
273 		ret = -EINVAL;
274 	} else {
275 		for (i = 0; i < ARRAY_SIZE(user_key); i++)
276 			key[i] = cpu_to_le32(user_key[i]);
277 	}
278 	pr_debug("proc TFO key set 0x%x-%x-%x-%x <- 0x%s: %u\n",
279 		 user_key[0], user_key[1], user_key[2], user_key[3], buf, ret);
280 
281 	return ret;
282 }
283 
284 static int proc_tcp_fastopen_key(struct ctl_table *table, int write,
285 				 void *buffer, size_t *lenp, loff_t *ppos)
286 {
287 	struct net *net = container_of(table->data, struct net,
288 	    ipv4.sysctl_tcp_fastopen);
289 	/* maxlen to print the list of keys in hex (*2), with dashes
290 	 * separating doublewords and a comma in between keys.
291 	 */
292 	struct ctl_table tbl = { .maxlen = ((TCP_FASTOPEN_KEY_LENGTH *
293 					    2 * TCP_FASTOPEN_KEY_MAX) +
294 					    (TCP_FASTOPEN_KEY_MAX * 5)) };
295 	u32 user_key[TCP_FASTOPEN_KEY_BUF_LENGTH / sizeof(u32)];
296 	__le32 key[TCP_FASTOPEN_KEY_BUF_LENGTH / sizeof(__le32)];
297 	char *backup_data;
298 	int ret, i = 0, off = 0, n_keys;
299 
300 	tbl.data = kmalloc(tbl.maxlen, GFP_KERNEL);
301 	if (!tbl.data)
302 		return -ENOMEM;
303 
304 	n_keys = tcp_fastopen_get_cipher(net, NULL, (u64 *)key);
305 	if (!n_keys) {
306 		memset(&key[0], 0, TCP_FASTOPEN_KEY_LENGTH);
307 		n_keys = 1;
308 	}
309 
310 	for (i = 0; i < n_keys * 4; i++)
311 		user_key[i] = le32_to_cpu(key[i]);
312 
313 	for (i = 0; i < n_keys; i++) {
314 		off += snprintf(tbl.data + off, tbl.maxlen - off,
315 				"%08x-%08x-%08x-%08x",
316 				user_key[i * 4],
317 				user_key[i * 4 + 1],
318 				user_key[i * 4 + 2],
319 				user_key[i * 4 + 3]);
320 
321 		if (WARN_ON_ONCE(off >= tbl.maxlen - 1))
322 			break;
323 
324 		if (i + 1 < n_keys)
325 			off += snprintf(tbl.data + off, tbl.maxlen - off, ",");
326 	}
327 
328 	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
329 
330 	if (write && ret == 0) {
331 		backup_data = strchr(tbl.data, ',');
332 		if (backup_data) {
333 			*backup_data = '\0';
334 			backup_data++;
335 		}
336 		if (sscanf_key(tbl.data, key)) {
337 			ret = -EINVAL;
338 			goto bad_key;
339 		}
340 		if (backup_data) {
341 			if (sscanf_key(backup_data, key + 4)) {
342 				ret = -EINVAL;
343 				goto bad_key;
344 			}
345 		}
346 		tcp_fastopen_reset_cipher(net, NULL, key,
347 					  backup_data ? key + 4 : NULL);
348 	}
349 
350 bad_key:
351 	kfree(tbl.data);
352 	return ret;
353 }
354 
355 static int proc_tfo_blackhole_detect_timeout(struct ctl_table *table,
356 					     int write, void *buffer,
357 					     size_t *lenp, loff_t *ppos)
358 {
359 	struct net *net = container_of(table->data, struct net,
360 	    ipv4.sysctl_tcp_fastopen_blackhole_timeout);
361 	int ret;
362 
363 	ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
364 	if (write && ret == 0)
365 		atomic_set(&net->ipv4.tfo_active_disable_times, 0);
366 
367 	return ret;
368 }
369 
370 static int proc_tcp_available_ulp(struct ctl_table *ctl,
371 				  int write, void *buffer, size_t *lenp,
372 				  loff_t *ppos)
373 {
374 	struct ctl_table tbl = { .maxlen = TCP_ULP_BUF_MAX, };
375 	int ret;
376 
377 	tbl.data = kmalloc(tbl.maxlen, GFP_USER);
378 	if (!tbl.data)
379 		return -ENOMEM;
380 	tcp_get_available_ulp(tbl.data, TCP_ULP_BUF_MAX);
381 	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
382 	kfree(tbl.data);
383 
384 	return ret;
385 }
386 
387 static int proc_tcp_ehash_entries(struct ctl_table *table, int write,
388 				  void *buffer, size_t *lenp, loff_t *ppos)
389 {
390 	struct net *net = container_of(table->data, struct net,
391 				       ipv4.sysctl_tcp_child_ehash_entries);
392 	struct inet_hashinfo *hinfo = net->ipv4.tcp_death_row.hashinfo;
393 	int tcp_ehash_entries;
394 	struct ctl_table tbl;
395 
396 	tcp_ehash_entries = hinfo->ehash_mask + 1;
397 
398 	/* A negative number indicates that the child netns
399 	 * shares the global ehash.
400 	 */
401 	if (!net_eq(net, &init_net) && !hinfo->pernet)
402 		tcp_ehash_entries *= -1;
403 
404 	memset(&tbl, 0, sizeof(tbl));
405 	tbl.data = &tcp_ehash_entries;
406 	tbl.maxlen = sizeof(int);
407 
408 	return proc_dointvec(&tbl, write, buffer, lenp, ppos);
409 }
410 
411 static int proc_udp_hash_entries(struct ctl_table *table, int write,
412 				 void *buffer, size_t *lenp, loff_t *ppos)
413 {
414 	struct net *net = container_of(table->data, struct net,
415 				       ipv4.sysctl_udp_child_hash_entries);
416 	int udp_hash_entries;
417 	struct ctl_table tbl;
418 
419 	udp_hash_entries = net->ipv4.udp_table->mask + 1;
420 
421 	/* A negative number indicates that the child netns
422 	 * shares the global udp_table.
423 	 */
424 	if (!net_eq(net, &init_net) && net->ipv4.udp_table == &udp_table)
425 		udp_hash_entries *= -1;
426 
427 	memset(&tbl, 0, sizeof(tbl));
428 	tbl.data = &udp_hash_entries;
429 	tbl.maxlen = sizeof(int);
430 
431 	return proc_dointvec(&tbl, write, buffer, lenp, ppos);
432 }
433 
434 #ifdef CONFIG_IP_ROUTE_MULTIPATH
435 static int proc_fib_multipath_hash_policy(struct ctl_table *table, int write,
436 					  void *buffer, size_t *lenp,
437 					  loff_t *ppos)
438 {
439 	struct net *net = container_of(table->data, struct net,
440 	    ipv4.sysctl_fib_multipath_hash_policy);
441 	int ret;
442 
443 	ret = proc_dou8vec_minmax(table, write, buffer, lenp, ppos);
444 	if (write && ret == 0)
445 		call_netevent_notifiers(NETEVENT_IPV4_MPATH_HASH_UPDATE, net);
446 
447 	return ret;
448 }
449 
450 static int proc_fib_multipath_hash_fields(struct ctl_table *table, int write,
451 					  void *buffer, size_t *lenp,
452 					  loff_t *ppos)
453 {
454 	struct net *net;
455 	int ret;
456 
457 	net = container_of(table->data, struct net,
458 			   ipv4.sysctl_fib_multipath_hash_fields);
459 	ret = proc_douintvec_minmax(table, write, buffer, lenp, ppos);
460 	if (write && ret == 0)
461 		call_netevent_notifiers(NETEVENT_IPV4_MPATH_HASH_UPDATE, net);
462 
463 	return ret;
464 }
465 #endif
466 
467 static struct ctl_table ipv4_table[] = {
468 	{
469 		.procname	= "tcp_max_orphans",
470 		.data		= &sysctl_tcp_max_orphans,
471 		.maxlen		= sizeof(int),
472 		.mode		= 0644,
473 		.proc_handler	= proc_dointvec
474 	},
475 	{
476 		.procname	= "inet_peer_threshold",
477 		.data		= &inet_peer_threshold,
478 		.maxlen		= sizeof(int),
479 		.mode		= 0644,
480 		.proc_handler	= proc_dointvec
481 	},
482 	{
483 		.procname	= "inet_peer_minttl",
484 		.data		= &inet_peer_minttl,
485 		.maxlen		= sizeof(int),
486 		.mode		= 0644,
487 		.proc_handler	= proc_dointvec_jiffies,
488 	},
489 	{
490 		.procname	= "inet_peer_maxttl",
491 		.data		= &inet_peer_maxttl,
492 		.maxlen		= sizeof(int),
493 		.mode		= 0644,
494 		.proc_handler	= proc_dointvec_jiffies,
495 	},
496 	{
497 		.procname	= "tcp_mem",
498 		.maxlen		= sizeof(sysctl_tcp_mem),
499 		.data		= &sysctl_tcp_mem,
500 		.mode		= 0644,
501 		.proc_handler	= proc_doulongvec_minmax,
502 	},
503 	{
504 		.procname	= "tcp_low_latency",
505 		.data		= &sysctl_tcp_low_latency,
506 		.maxlen		= sizeof(int),
507 		.mode		= 0644,
508 		.proc_handler	= proc_dointvec
509 	},
510 #ifdef CONFIG_NETLABEL
511 	{
512 		.procname	= "cipso_cache_enable",
513 		.data		= &cipso_v4_cache_enabled,
514 		.maxlen		= sizeof(int),
515 		.mode		= 0644,
516 		.proc_handler	= proc_dointvec,
517 	},
518 	{
519 		.procname	= "cipso_cache_bucket_size",
520 		.data		= &cipso_v4_cache_bucketsize,
521 		.maxlen		= sizeof(int),
522 		.mode		= 0644,
523 		.proc_handler	= proc_dointvec,
524 	},
525 	{
526 		.procname	= "cipso_rbm_optfmt",
527 		.data		= &cipso_v4_rbm_optfmt,
528 		.maxlen		= sizeof(int),
529 		.mode		= 0644,
530 		.proc_handler	= proc_dointvec,
531 	},
532 	{
533 		.procname	= "cipso_rbm_strictvalid",
534 		.data		= &cipso_v4_rbm_strictvalid,
535 		.maxlen		= sizeof(int),
536 		.mode		= 0644,
537 		.proc_handler	= proc_dointvec,
538 	},
539 #endif /* CONFIG_NETLABEL */
540 	{
541 		.procname	= "tcp_available_ulp",
542 		.maxlen		= TCP_ULP_BUF_MAX,
543 		.mode		= 0444,
544 		.proc_handler   = proc_tcp_available_ulp,
545 	},
546 	{
547 		.procname	= "icmp_msgs_per_sec",
548 		.data		= &sysctl_icmp_msgs_per_sec,
549 		.maxlen		= sizeof(int),
550 		.mode		= 0644,
551 		.proc_handler	= proc_dointvec_minmax,
552 		.extra1		= SYSCTL_ZERO,
553 	},
554 	{
555 		.procname	= "icmp_msgs_burst",
556 		.data		= &sysctl_icmp_msgs_burst,
557 		.maxlen		= sizeof(int),
558 		.mode		= 0644,
559 		.proc_handler	= proc_dointvec_minmax,
560 		.extra1		= SYSCTL_ZERO,
561 	},
562 	{
563 		.procname	= "udp_mem",
564 		.data		= &sysctl_udp_mem,
565 		.maxlen		= sizeof(sysctl_udp_mem),
566 		.mode		= 0644,
567 		.proc_handler	= proc_doulongvec_minmax,
568 	},
569 	{
570 		.procname	= "fib_sync_mem",
571 		.data		= &sysctl_fib_sync_mem,
572 		.maxlen		= sizeof(sysctl_fib_sync_mem),
573 		.mode		= 0644,
574 		.proc_handler	= proc_douintvec_minmax,
575 		.extra1		= &sysctl_fib_sync_mem_min,
576 		.extra2		= &sysctl_fib_sync_mem_max,
577 	},
578 };
579 
580 static struct ctl_table ipv4_net_table[] = {
581 	{
582 		.procname	= "tcp_max_tw_buckets",
583 		.data		= &init_net.ipv4.tcp_death_row.sysctl_max_tw_buckets,
584 		.maxlen		= sizeof(int),
585 		.mode		= 0644,
586 		.proc_handler	= proc_dointvec
587 	},
588 	{
589 		.procname	= "icmp_echo_ignore_all",
590 		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_all,
591 		.maxlen		= sizeof(u8),
592 		.mode		= 0644,
593 		.proc_handler	= proc_dou8vec_minmax,
594 		.extra1		= SYSCTL_ZERO,
595 		.extra2		= SYSCTL_ONE
596 	},
597 	{
598 		.procname	= "icmp_echo_enable_probe",
599 		.data		= &init_net.ipv4.sysctl_icmp_echo_enable_probe,
600 		.maxlen		= sizeof(u8),
601 		.mode		= 0644,
602 		.proc_handler	= proc_dou8vec_minmax,
603 		.extra1		= SYSCTL_ZERO,
604 		.extra2		= SYSCTL_ONE
605 	},
606 	{
607 		.procname	= "icmp_echo_ignore_broadcasts",
608 		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
609 		.maxlen		= sizeof(u8),
610 		.mode		= 0644,
611 		.proc_handler	= proc_dou8vec_minmax,
612 		.extra1		= SYSCTL_ZERO,
613 		.extra2		= SYSCTL_ONE
614 	},
615 	{
616 		.procname	= "icmp_ignore_bogus_error_responses",
617 		.data		= &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
618 		.maxlen		= sizeof(u8),
619 		.mode		= 0644,
620 		.proc_handler	= proc_dou8vec_minmax,
621 		.extra1		= SYSCTL_ZERO,
622 		.extra2		= SYSCTL_ONE
623 	},
624 	{
625 		.procname	= "icmp_errors_use_inbound_ifaddr",
626 		.data		= &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
627 		.maxlen		= sizeof(u8),
628 		.mode		= 0644,
629 		.proc_handler	= proc_dou8vec_minmax,
630 		.extra1		= SYSCTL_ZERO,
631 		.extra2		= SYSCTL_ONE
632 	},
633 	{
634 		.procname	= "icmp_ratelimit",
635 		.data		= &init_net.ipv4.sysctl_icmp_ratelimit,
636 		.maxlen		= sizeof(int),
637 		.mode		= 0644,
638 		.proc_handler	= proc_dointvec_ms_jiffies,
639 	},
640 	{
641 		.procname	= "icmp_ratemask",
642 		.data		= &init_net.ipv4.sysctl_icmp_ratemask,
643 		.maxlen		= sizeof(int),
644 		.mode		= 0644,
645 		.proc_handler	= proc_dointvec
646 	},
647 	{
648 		.procname	= "ping_group_range",
649 		.data		= &init_net.ipv4.ping_group_range.range,
650 		.maxlen		= sizeof(gid_t)*2,
651 		.mode		= 0644,
652 		.proc_handler	= ipv4_ping_group_range,
653 	},
654 #ifdef CONFIG_NET_L3_MASTER_DEV
655 	{
656 		.procname	= "raw_l3mdev_accept",
657 		.data		= &init_net.ipv4.sysctl_raw_l3mdev_accept,
658 		.maxlen		= sizeof(u8),
659 		.mode		= 0644,
660 		.proc_handler	= proc_dou8vec_minmax,
661 		.extra1		= SYSCTL_ZERO,
662 		.extra2		= SYSCTL_ONE,
663 	},
664 #endif
665 	{
666 		.procname	= "tcp_ecn",
667 		.data		= &init_net.ipv4.sysctl_tcp_ecn,
668 		.maxlen		= sizeof(u8),
669 		.mode		= 0644,
670 		.proc_handler	= proc_dou8vec_minmax,
671 		.extra1		= SYSCTL_ZERO,
672 		.extra2		= SYSCTL_TWO,
673 	},
674 	{
675 		.procname	= "tcp_ecn_fallback",
676 		.data		= &init_net.ipv4.sysctl_tcp_ecn_fallback,
677 		.maxlen		= sizeof(u8),
678 		.mode		= 0644,
679 		.proc_handler	= proc_dou8vec_minmax,
680 		.extra1		= SYSCTL_ZERO,
681 		.extra2		= SYSCTL_ONE,
682 	},
683 	{
684 		.procname	= "ip_dynaddr",
685 		.data		= &init_net.ipv4.sysctl_ip_dynaddr,
686 		.maxlen		= sizeof(u8),
687 		.mode		= 0644,
688 		.proc_handler	= proc_dou8vec_minmax,
689 	},
690 	{
691 		.procname	= "ip_early_demux",
692 		.data		= &init_net.ipv4.sysctl_ip_early_demux,
693 		.maxlen		= sizeof(u8),
694 		.mode		= 0644,
695 		.proc_handler	= proc_dou8vec_minmax,
696 	},
697 	{
698 		.procname       = "udp_early_demux",
699 		.data           = &init_net.ipv4.sysctl_udp_early_demux,
700 		.maxlen         = sizeof(u8),
701 		.mode           = 0644,
702 		.proc_handler   = proc_dou8vec_minmax,
703 	},
704 	{
705 		.procname       = "tcp_early_demux",
706 		.data           = &init_net.ipv4.sysctl_tcp_early_demux,
707 		.maxlen         = sizeof(u8),
708 		.mode           = 0644,
709 		.proc_handler   = proc_dou8vec_minmax,
710 	},
711 	{
712 		.procname       = "nexthop_compat_mode",
713 		.data           = &init_net.ipv4.sysctl_nexthop_compat_mode,
714 		.maxlen         = sizeof(u8),
715 		.mode           = 0644,
716 		.proc_handler   = proc_dou8vec_minmax,
717 		.extra1		= SYSCTL_ZERO,
718 		.extra2		= SYSCTL_ONE,
719 	},
720 	{
721 		.procname	= "ip_default_ttl",
722 		.data		= &init_net.ipv4.sysctl_ip_default_ttl,
723 		.maxlen		= sizeof(u8),
724 		.mode		= 0644,
725 		.proc_handler	= proc_dou8vec_minmax,
726 		.extra1		= &ip_ttl_min,
727 		.extra2		= &ip_ttl_max,
728 	},
729 	{
730 		.procname	= "ip_local_port_range",
731 		.maxlen		= 0,
732 		.data		= &init_net,
733 		.mode		= 0644,
734 		.proc_handler	= ipv4_local_port_range,
735 	},
736 	{
737 		.procname	= "ip_local_reserved_ports",
738 		.data		= &init_net.ipv4.sysctl_local_reserved_ports,
739 		.maxlen		= 65536,
740 		.mode		= 0644,
741 		.proc_handler	= proc_do_large_bitmap,
742 	},
743 	{
744 		.procname	= "ip_no_pmtu_disc",
745 		.data		= &init_net.ipv4.sysctl_ip_no_pmtu_disc,
746 		.maxlen		= sizeof(u8),
747 		.mode		= 0644,
748 		.proc_handler	= proc_dou8vec_minmax,
749 	},
750 	{
751 		.procname	= "ip_forward_use_pmtu",
752 		.data		= &init_net.ipv4.sysctl_ip_fwd_use_pmtu,
753 		.maxlen		= sizeof(u8),
754 		.mode		= 0644,
755 		.proc_handler	= proc_dou8vec_minmax,
756 	},
757 	{
758 		.procname	= "ip_forward_update_priority",
759 		.data		= &init_net.ipv4.sysctl_ip_fwd_update_priority,
760 		.maxlen		= sizeof(u8),
761 		.mode		= 0644,
762 		.proc_handler   = ipv4_fwd_update_priority,
763 		.extra1		= SYSCTL_ZERO,
764 		.extra2		= SYSCTL_ONE,
765 	},
766 	{
767 		.procname	= "ip_nonlocal_bind",
768 		.data		= &init_net.ipv4.sysctl_ip_nonlocal_bind,
769 		.maxlen		= sizeof(u8),
770 		.mode		= 0644,
771 		.proc_handler	= proc_dou8vec_minmax,
772 	},
773 	{
774 		.procname	= "ip_autobind_reuse",
775 		.data		= &init_net.ipv4.sysctl_ip_autobind_reuse,
776 		.maxlen		= sizeof(u8),
777 		.mode		= 0644,
778 		.proc_handler	= proc_dou8vec_minmax,
779 		.extra1         = SYSCTL_ZERO,
780 		.extra2         = SYSCTL_ONE,
781 	},
782 	{
783 		.procname	= "fwmark_reflect",
784 		.data		= &init_net.ipv4.sysctl_fwmark_reflect,
785 		.maxlen		= sizeof(u8),
786 		.mode		= 0644,
787 		.proc_handler	= proc_dou8vec_minmax,
788 	},
789 	{
790 		.procname	= "tcp_fwmark_accept",
791 		.data		= &init_net.ipv4.sysctl_tcp_fwmark_accept,
792 		.maxlen		= sizeof(u8),
793 		.mode		= 0644,
794 		.proc_handler	= proc_dou8vec_minmax,
795 	},
796 #ifdef CONFIG_NET_L3_MASTER_DEV
797 	{
798 		.procname	= "tcp_l3mdev_accept",
799 		.data		= &init_net.ipv4.sysctl_tcp_l3mdev_accept,
800 		.maxlen		= sizeof(u8),
801 		.mode		= 0644,
802 		.proc_handler	= proc_dou8vec_minmax,
803 		.extra1		= SYSCTL_ZERO,
804 		.extra2		= SYSCTL_ONE,
805 	},
806 #endif
807 	{
808 		.procname	= "tcp_mtu_probing",
809 		.data		= &init_net.ipv4.sysctl_tcp_mtu_probing,
810 		.maxlen		= sizeof(u8),
811 		.mode		= 0644,
812 		.proc_handler	= proc_dou8vec_minmax,
813 	},
814 	{
815 		.procname	= "tcp_base_mss",
816 		.data		= &init_net.ipv4.sysctl_tcp_base_mss,
817 		.maxlen		= sizeof(int),
818 		.mode		= 0644,
819 		.proc_handler	= proc_dointvec,
820 	},
821 	{
822 		.procname	= "tcp_min_snd_mss",
823 		.data		= &init_net.ipv4.sysctl_tcp_min_snd_mss,
824 		.maxlen		= sizeof(int),
825 		.mode		= 0644,
826 		.proc_handler	= proc_dointvec_minmax,
827 		.extra1		= &tcp_min_snd_mss_min,
828 		.extra2		= &tcp_min_snd_mss_max,
829 	},
830 	{
831 		.procname	= "tcp_mtu_probe_floor",
832 		.data		= &init_net.ipv4.sysctl_tcp_mtu_probe_floor,
833 		.maxlen		= sizeof(int),
834 		.mode		= 0644,
835 		.proc_handler	= proc_dointvec_minmax,
836 		.extra1		= &tcp_min_snd_mss_min,
837 		.extra2		= &tcp_min_snd_mss_max,
838 	},
839 	{
840 		.procname	= "tcp_probe_threshold",
841 		.data		= &init_net.ipv4.sysctl_tcp_probe_threshold,
842 		.maxlen		= sizeof(int),
843 		.mode		= 0644,
844 		.proc_handler	= proc_dointvec,
845 	},
846 	{
847 		.procname	= "tcp_probe_interval",
848 		.data		= &init_net.ipv4.sysctl_tcp_probe_interval,
849 		.maxlen		= sizeof(u32),
850 		.mode		= 0644,
851 		.proc_handler	= proc_douintvec_minmax,
852 		.extra2		= &u32_max_div_HZ,
853 	},
854 	{
855 		.procname	= "igmp_link_local_mcast_reports",
856 		.data		= &init_net.ipv4.sysctl_igmp_llm_reports,
857 		.maxlen		= sizeof(u8),
858 		.mode		= 0644,
859 		.proc_handler	= proc_dou8vec_minmax,
860 	},
861 	{
862 		.procname	= "igmp_max_memberships",
863 		.data		= &init_net.ipv4.sysctl_igmp_max_memberships,
864 		.maxlen		= sizeof(int),
865 		.mode		= 0644,
866 		.proc_handler	= proc_dointvec
867 	},
868 	{
869 		.procname	= "igmp_max_msf",
870 		.data		= &init_net.ipv4.sysctl_igmp_max_msf,
871 		.maxlen		= sizeof(int),
872 		.mode		= 0644,
873 		.proc_handler	= proc_dointvec
874 	},
875 #ifdef CONFIG_IP_MULTICAST
876 	{
877 		.procname	= "igmp_qrv",
878 		.data		= &init_net.ipv4.sysctl_igmp_qrv,
879 		.maxlen		= sizeof(int),
880 		.mode		= 0644,
881 		.proc_handler	= proc_dointvec_minmax,
882 		.extra1		= SYSCTL_ONE
883 	},
884 #endif
885 	{
886 		.procname	= "tcp_congestion_control",
887 		.data		= &init_net.ipv4.tcp_congestion_control,
888 		.mode		= 0644,
889 		.maxlen		= TCP_CA_NAME_MAX,
890 		.proc_handler	= proc_tcp_congestion_control,
891 	},
892 	{
893 		.procname	= "tcp_available_congestion_control",
894 		.maxlen		= TCP_CA_BUF_MAX,
895 		.mode		= 0444,
896 		.proc_handler   = proc_tcp_available_congestion_control,
897 	},
898 	{
899 		.procname	= "tcp_allowed_congestion_control",
900 		.maxlen		= TCP_CA_BUF_MAX,
901 		.mode		= 0644,
902 		.proc_handler   = proc_allowed_congestion_control,
903 	},
904 	{
905 		.procname	= "tcp_keepalive_time",
906 		.data		= &init_net.ipv4.sysctl_tcp_keepalive_time,
907 		.maxlen		= sizeof(int),
908 		.mode		= 0644,
909 		.proc_handler	= proc_dointvec_jiffies,
910 	},
911 	{
912 		.procname	= "tcp_keepalive_probes",
913 		.data		= &init_net.ipv4.sysctl_tcp_keepalive_probes,
914 		.maxlen		= sizeof(u8),
915 		.mode		= 0644,
916 		.proc_handler	= proc_dou8vec_minmax,
917 	},
918 	{
919 		.procname	= "tcp_keepalive_intvl",
920 		.data		= &init_net.ipv4.sysctl_tcp_keepalive_intvl,
921 		.maxlen		= sizeof(int),
922 		.mode		= 0644,
923 		.proc_handler	= proc_dointvec_jiffies,
924 	},
925 	{
926 		.procname	= "tcp_syn_retries",
927 		.data		= &init_net.ipv4.sysctl_tcp_syn_retries,
928 		.maxlen		= sizeof(u8),
929 		.mode		= 0644,
930 		.proc_handler	= proc_dou8vec_minmax,
931 		.extra1		= &tcp_syn_retries_min,
932 		.extra2		= &tcp_syn_retries_max
933 	},
934 	{
935 		.procname	= "tcp_synack_retries",
936 		.data		= &init_net.ipv4.sysctl_tcp_synack_retries,
937 		.maxlen		= sizeof(u8),
938 		.mode		= 0644,
939 		.proc_handler	= proc_dou8vec_minmax,
940 	},
941 #ifdef CONFIG_SYN_COOKIES
942 	{
943 		.procname	= "tcp_syncookies",
944 		.data		= &init_net.ipv4.sysctl_tcp_syncookies,
945 		.maxlen		= sizeof(u8),
946 		.mode		= 0644,
947 		.proc_handler	= proc_dou8vec_minmax,
948 	},
949 #endif
950 	{
951 		.procname	= "tcp_migrate_req",
952 		.data		= &init_net.ipv4.sysctl_tcp_migrate_req,
953 		.maxlen		= sizeof(u8),
954 		.mode		= 0644,
955 		.proc_handler	= proc_dou8vec_minmax,
956 		.extra1		= SYSCTL_ZERO,
957 		.extra2		= SYSCTL_ONE
958 	},
959 	{
960 		.procname	= "tcp_reordering",
961 		.data		= &init_net.ipv4.sysctl_tcp_reordering,
962 		.maxlen		= sizeof(int),
963 		.mode		= 0644,
964 		.proc_handler	= proc_dointvec
965 	},
966 	{
967 		.procname	= "tcp_retries1",
968 		.data		= &init_net.ipv4.sysctl_tcp_retries1,
969 		.maxlen		= sizeof(u8),
970 		.mode		= 0644,
971 		.proc_handler	= proc_dou8vec_minmax,
972 		.extra2		= &tcp_retr1_max
973 	},
974 	{
975 		.procname	= "tcp_retries2",
976 		.data		= &init_net.ipv4.sysctl_tcp_retries2,
977 		.maxlen		= sizeof(u8),
978 		.mode		= 0644,
979 		.proc_handler	= proc_dou8vec_minmax,
980 	},
981 	{
982 		.procname	= "tcp_orphan_retries",
983 		.data		= &init_net.ipv4.sysctl_tcp_orphan_retries,
984 		.maxlen		= sizeof(u8),
985 		.mode		= 0644,
986 		.proc_handler	= proc_dou8vec_minmax,
987 	},
988 	{
989 		.procname	= "tcp_fin_timeout",
990 		.data		= &init_net.ipv4.sysctl_tcp_fin_timeout,
991 		.maxlen		= sizeof(int),
992 		.mode		= 0644,
993 		.proc_handler	= proc_dointvec_jiffies,
994 	},
995 	{
996 		.procname	= "tcp_notsent_lowat",
997 		.data		= &init_net.ipv4.sysctl_tcp_notsent_lowat,
998 		.maxlen		= sizeof(unsigned int),
999 		.mode		= 0644,
1000 		.proc_handler	= proc_douintvec,
1001 	},
1002 	{
1003 		.procname	= "tcp_tw_reuse",
1004 		.data		= &init_net.ipv4.sysctl_tcp_tw_reuse,
1005 		.maxlen		= sizeof(u8),
1006 		.mode		= 0644,
1007 		.proc_handler	= proc_dou8vec_minmax,
1008 		.extra1		= SYSCTL_ZERO,
1009 		.extra2		= SYSCTL_TWO,
1010 	},
1011 	{
1012 		.procname	= "tcp_max_syn_backlog",
1013 		.data		= &init_net.ipv4.sysctl_max_syn_backlog,
1014 		.maxlen		= sizeof(int),
1015 		.mode		= 0644,
1016 		.proc_handler	= proc_dointvec
1017 	},
1018 	{
1019 		.procname	= "tcp_fastopen",
1020 		.data		= &init_net.ipv4.sysctl_tcp_fastopen,
1021 		.maxlen		= sizeof(int),
1022 		.mode		= 0644,
1023 		.proc_handler	= proc_dointvec,
1024 	},
1025 	{
1026 		.procname	= "tcp_fastopen_key",
1027 		.mode		= 0600,
1028 		.data		= &init_net.ipv4.sysctl_tcp_fastopen,
1029 		/* maxlen to print the list of keys in hex (*2), with dashes
1030 		 * separating doublewords and a comma in between keys.
1031 		 */
1032 		.maxlen		= ((TCP_FASTOPEN_KEY_LENGTH *
1033 				   2 * TCP_FASTOPEN_KEY_MAX) +
1034 				   (TCP_FASTOPEN_KEY_MAX * 5)),
1035 		.proc_handler	= proc_tcp_fastopen_key,
1036 	},
1037 	{
1038 		.procname	= "tcp_fastopen_blackhole_timeout_sec",
1039 		.data		= &init_net.ipv4.sysctl_tcp_fastopen_blackhole_timeout,
1040 		.maxlen		= sizeof(int),
1041 		.mode		= 0644,
1042 		.proc_handler	= proc_tfo_blackhole_detect_timeout,
1043 		.extra1		= SYSCTL_ZERO,
1044 	},
1045 #ifdef CONFIG_IP_ROUTE_MULTIPATH
1046 	{
1047 		.procname	= "fib_multipath_use_neigh",
1048 		.data		= &init_net.ipv4.sysctl_fib_multipath_use_neigh,
1049 		.maxlen		= sizeof(u8),
1050 		.mode		= 0644,
1051 		.proc_handler	= proc_dou8vec_minmax,
1052 		.extra1		= SYSCTL_ZERO,
1053 		.extra2		= SYSCTL_ONE,
1054 	},
1055 	{
1056 		.procname	= "fib_multipath_hash_policy",
1057 		.data		= &init_net.ipv4.sysctl_fib_multipath_hash_policy,
1058 		.maxlen		= sizeof(u8),
1059 		.mode		= 0644,
1060 		.proc_handler	= proc_fib_multipath_hash_policy,
1061 		.extra1		= SYSCTL_ZERO,
1062 		.extra2		= SYSCTL_THREE,
1063 	},
1064 	{
1065 		.procname	= "fib_multipath_hash_fields",
1066 		.data		= &init_net.ipv4.sysctl_fib_multipath_hash_fields,
1067 		.maxlen		= sizeof(u32),
1068 		.mode		= 0644,
1069 		.proc_handler	= proc_fib_multipath_hash_fields,
1070 		.extra1		= SYSCTL_ONE,
1071 		.extra2		= &fib_multipath_hash_fields_all_mask,
1072 	},
1073 #endif
1074 	{
1075 		.procname	= "ip_unprivileged_port_start",
1076 		.maxlen		= sizeof(int),
1077 		.data		= &init_net.ipv4.sysctl_ip_prot_sock,
1078 		.mode		= 0644,
1079 		.proc_handler	= ipv4_privileged_ports,
1080 	},
1081 #ifdef CONFIG_NET_L3_MASTER_DEV
1082 	{
1083 		.procname	= "udp_l3mdev_accept",
1084 		.data		= &init_net.ipv4.sysctl_udp_l3mdev_accept,
1085 		.maxlen		= sizeof(u8),
1086 		.mode		= 0644,
1087 		.proc_handler	= proc_dou8vec_minmax,
1088 		.extra1		= SYSCTL_ZERO,
1089 		.extra2		= SYSCTL_ONE,
1090 	},
1091 #endif
1092 	{
1093 		.procname	= "tcp_sack",
1094 		.data		= &init_net.ipv4.sysctl_tcp_sack,
1095 		.maxlen		= sizeof(u8),
1096 		.mode		= 0644,
1097 		.proc_handler	= proc_dou8vec_minmax,
1098 	},
1099 	{
1100 		.procname	= "tcp_window_scaling",
1101 		.data		= &init_net.ipv4.sysctl_tcp_window_scaling,
1102 		.maxlen		= sizeof(u8),
1103 		.mode		= 0644,
1104 		.proc_handler	= proc_dou8vec_minmax,
1105 	},
1106 	{
1107 		.procname	= "tcp_timestamps",
1108 		.data		= &init_net.ipv4.sysctl_tcp_timestamps,
1109 		.maxlen		= sizeof(u8),
1110 		.mode		= 0644,
1111 		.proc_handler	= proc_dou8vec_minmax,
1112 	},
1113 	{
1114 		.procname	= "tcp_early_retrans",
1115 		.data		= &init_net.ipv4.sysctl_tcp_early_retrans,
1116 		.maxlen		= sizeof(u8),
1117 		.mode		= 0644,
1118 		.proc_handler	= proc_dou8vec_minmax,
1119 		.extra1		= SYSCTL_ZERO,
1120 		.extra2		= SYSCTL_FOUR,
1121 	},
1122 	{
1123 		.procname	= "tcp_recovery",
1124 		.data		= &init_net.ipv4.sysctl_tcp_recovery,
1125 		.maxlen		= sizeof(u8),
1126 		.mode		= 0644,
1127 		.proc_handler	= proc_dou8vec_minmax,
1128 	},
1129 	{
1130 		.procname       = "tcp_thin_linear_timeouts",
1131 		.data           = &init_net.ipv4.sysctl_tcp_thin_linear_timeouts,
1132 		.maxlen         = sizeof(u8),
1133 		.mode           = 0644,
1134 		.proc_handler   = proc_dou8vec_minmax,
1135 	},
1136 	{
1137 		.procname	= "tcp_slow_start_after_idle",
1138 		.data		= &init_net.ipv4.sysctl_tcp_slow_start_after_idle,
1139 		.maxlen		= sizeof(u8),
1140 		.mode		= 0644,
1141 		.proc_handler	= proc_dou8vec_minmax,
1142 	},
1143 	{
1144 		.procname	= "tcp_retrans_collapse",
1145 		.data		= &init_net.ipv4.sysctl_tcp_retrans_collapse,
1146 		.maxlen		= sizeof(u8),
1147 		.mode		= 0644,
1148 		.proc_handler	= proc_dou8vec_minmax,
1149 	},
1150 	{
1151 		.procname	= "tcp_stdurg",
1152 		.data		= &init_net.ipv4.sysctl_tcp_stdurg,
1153 		.maxlen		= sizeof(u8),
1154 		.mode		= 0644,
1155 		.proc_handler	= proc_dou8vec_minmax,
1156 	},
1157 	{
1158 		.procname	= "tcp_rfc1337",
1159 		.data		= &init_net.ipv4.sysctl_tcp_rfc1337,
1160 		.maxlen		= sizeof(u8),
1161 		.mode		= 0644,
1162 		.proc_handler	= proc_dou8vec_minmax,
1163 	},
1164 	{
1165 		.procname	= "tcp_abort_on_overflow",
1166 		.data		= &init_net.ipv4.sysctl_tcp_abort_on_overflow,
1167 		.maxlen		= sizeof(u8),
1168 		.mode		= 0644,
1169 		.proc_handler	= proc_dou8vec_minmax,
1170 	},
1171 	{
1172 		.procname	= "tcp_fack",
1173 		.data		= &init_net.ipv4.sysctl_tcp_fack,
1174 		.maxlen		= sizeof(u8),
1175 		.mode		= 0644,
1176 		.proc_handler	= proc_dou8vec_minmax,
1177 	},
1178 	{
1179 		.procname	= "tcp_max_reordering",
1180 		.data		= &init_net.ipv4.sysctl_tcp_max_reordering,
1181 		.maxlen		= sizeof(int),
1182 		.mode		= 0644,
1183 		.proc_handler	= proc_dointvec
1184 	},
1185 	{
1186 		.procname	= "tcp_dsack",
1187 		.data		= &init_net.ipv4.sysctl_tcp_dsack,
1188 		.maxlen		= sizeof(u8),
1189 		.mode		= 0644,
1190 		.proc_handler	= proc_dou8vec_minmax,
1191 	},
1192 	{
1193 		.procname	= "tcp_app_win",
1194 		.data		= &init_net.ipv4.sysctl_tcp_app_win,
1195 		.maxlen		= sizeof(u8),
1196 		.mode		= 0644,
1197 		.proc_handler	= proc_dou8vec_minmax,
1198 		.extra1		= SYSCTL_ZERO,
1199 		.extra2		= &tcp_app_win_max,
1200 	},
1201 	{
1202 		.procname	= "tcp_adv_win_scale",
1203 		.data		= &init_net.ipv4.sysctl_tcp_adv_win_scale,
1204 		.maxlen		= sizeof(int),
1205 		.mode		= 0644,
1206 		.proc_handler	= proc_dointvec_minmax,
1207 		.extra1		= &tcp_adv_win_scale_min,
1208 		.extra2		= &tcp_adv_win_scale_max,
1209 	},
1210 	{
1211 		.procname	= "tcp_frto",
1212 		.data		= &init_net.ipv4.sysctl_tcp_frto,
1213 		.maxlen		= sizeof(u8),
1214 		.mode		= 0644,
1215 		.proc_handler	= proc_dou8vec_minmax,
1216 	},
1217 	{
1218 		.procname	= "tcp_no_metrics_save",
1219 		.data		= &init_net.ipv4.sysctl_tcp_nometrics_save,
1220 		.maxlen		= sizeof(u8),
1221 		.mode		= 0644,
1222 		.proc_handler	= proc_dou8vec_minmax,
1223 	},
1224 	{
1225 		.procname	= "tcp_no_ssthresh_metrics_save",
1226 		.data		= &init_net.ipv4.sysctl_tcp_no_ssthresh_metrics_save,
1227 		.maxlen		= sizeof(u8),
1228 		.mode		= 0644,
1229 		.proc_handler	= proc_dou8vec_minmax,
1230 		.extra1		= SYSCTL_ZERO,
1231 		.extra2		= SYSCTL_ONE,
1232 	},
1233 	{
1234 		.procname	= "tcp_moderate_rcvbuf",
1235 		.data		= &init_net.ipv4.sysctl_tcp_moderate_rcvbuf,
1236 		.maxlen		= sizeof(u8),
1237 		.mode		= 0644,
1238 		.proc_handler	= proc_dou8vec_minmax,
1239 	},
1240 	{
1241 		.procname	= "tcp_tso_win_divisor",
1242 		.data		= &init_net.ipv4.sysctl_tcp_tso_win_divisor,
1243 		.maxlen		= sizeof(u8),
1244 		.mode		= 0644,
1245 		.proc_handler	= proc_dou8vec_minmax,
1246 	},
1247 	{
1248 		.procname	= "tcp_workaround_signed_windows",
1249 		.data		= &init_net.ipv4.sysctl_tcp_workaround_signed_windows,
1250 		.maxlen		= sizeof(u8),
1251 		.mode		= 0644,
1252 		.proc_handler	= proc_dou8vec_minmax,
1253 	},
1254 	{
1255 		.procname	= "tcp_limit_output_bytes",
1256 		.data		= &init_net.ipv4.sysctl_tcp_limit_output_bytes,
1257 		.maxlen		= sizeof(int),
1258 		.mode		= 0644,
1259 		.proc_handler	= proc_dointvec
1260 	},
1261 	{
1262 		.procname	= "tcp_challenge_ack_limit",
1263 		.data		= &init_net.ipv4.sysctl_tcp_challenge_ack_limit,
1264 		.maxlen		= sizeof(int),
1265 		.mode		= 0644,
1266 		.proc_handler	= proc_dointvec
1267 	},
1268 	{
1269 		.procname	= "tcp_min_tso_segs",
1270 		.data		= &init_net.ipv4.sysctl_tcp_min_tso_segs,
1271 		.maxlen		= sizeof(u8),
1272 		.mode		= 0644,
1273 		.proc_handler	= proc_dou8vec_minmax,
1274 		.extra1		= SYSCTL_ONE,
1275 	},
1276 	{
1277 		.procname	= "tcp_tso_rtt_log",
1278 		.data		= &init_net.ipv4.sysctl_tcp_tso_rtt_log,
1279 		.maxlen		= sizeof(u8),
1280 		.mode		= 0644,
1281 		.proc_handler	= proc_dou8vec_minmax,
1282 	},
1283 	{
1284 		.procname	= "tcp_min_rtt_wlen",
1285 		.data		= &init_net.ipv4.sysctl_tcp_min_rtt_wlen,
1286 		.maxlen		= sizeof(int),
1287 		.mode		= 0644,
1288 		.proc_handler	= proc_dointvec_minmax,
1289 		.extra1		= SYSCTL_ZERO,
1290 		.extra2		= &one_day_secs
1291 	},
1292 	{
1293 		.procname	= "tcp_autocorking",
1294 		.data		= &init_net.ipv4.sysctl_tcp_autocorking,
1295 		.maxlen		= sizeof(u8),
1296 		.mode		= 0644,
1297 		.proc_handler	= proc_dou8vec_minmax,
1298 		.extra1		= SYSCTL_ZERO,
1299 		.extra2		= SYSCTL_ONE,
1300 	},
1301 	{
1302 		.procname	= "tcp_invalid_ratelimit",
1303 		.data		= &init_net.ipv4.sysctl_tcp_invalid_ratelimit,
1304 		.maxlen		= sizeof(int),
1305 		.mode		= 0644,
1306 		.proc_handler	= proc_dointvec_ms_jiffies,
1307 	},
1308 	{
1309 		.procname	= "tcp_pacing_ss_ratio",
1310 		.data		= &init_net.ipv4.sysctl_tcp_pacing_ss_ratio,
1311 		.maxlen		= sizeof(int),
1312 		.mode		= 0644,
1313 		.proc_handler	= proc_dointvec_minmax,
1314 		.extra1		= SYSCTL_ZERO,
1315 		.extra2		= SYSCTL_ONE_THOUSAND,
1316 	},
1317 	{
1318 		.procname	= "tcp_pacing_ca_ratio",
1319 		.data		= &init_net.ipv4.sysctl_tcp_pacing_ca_ratio,
1320 		.maxlen		= sizeof(int),
1321 		.mode		= 0644,
1322 		.proc_handler	= proc_dointvec_minmax,
1323 		.extra1		= SYSCTL_ZERO,
1324 		.extra2		= SYSCTL_ONE_THOUSAND,
1325 	},
1326 	{
1327 		.procname	= "tcp_wmem",
1328 		.data		= &init_net.ipv4.sysctl_tcp_wmem,
1329 		.maxlen		= sizeof(init_net.ipv4.sysctl_tcp_wmem),
1330 		.mode		= 0644,
1331 		.proc_handler	= proc_dointvec_minmax,
1332 		.extra1		= SYSCTL_ONE,
1333 	},
1334 	{
1335 		.procname	= "tcp_rmem",
1336 		.data		= &init_net.ipv4.sysctl_tcp_rmem,
1337 		.maxlen		= sizeof(init_net.ipv4.sysctl_tcp_rmem),
1338 		.mode		= 0644,
1339 		.proc_handler	= proc_dointvec_minmax,
1340 		.extra1		= SYSCTL_ONE,
1341 	},
1342 	{
1343 		.procname	= "tcp_comp_sack_delay_ns",
1344 		.data		= &init_net.ipv4.sysctl_tcp_comp_sack_delay_ns,
1345 		.maxlen		= sizeof(unsigned long),
1346 		.mode		= 0644,
1347 		.proc_handler	= proc_doulongvec_minmax,
1348 	},
1349 	{
1350 		.procname	= "tcp_comp_sack_slack_ns",
1351 		.data		= &init_net.ipv4.sysctl_tcp_comp_sack_slack_ns,
1352 		.maxlen		= sizeof(unsigned long),
1353 		.mode		= 0644,
1354 		.proc_handler	= proc_doulongvec_minmax,
1355 	},
1356 	{
1357 		.procname	= "tcp_comp_sack_nr",
1358 		.data		= &init_net.ipv4.sysctl_tcp_comp_sack_nr,
1359 		.maxlen		= sizeof(u8),
1360 		.mode		= 0644,
1361 		.proc_handler	= proc_dou8vec_minmax,
1362 		.extra1		= SYSCTL_ZERO,
1363 	},
1364 	{
1365 		.procname	= "tcp_backlog_ack_defer",
1366 		.data		= &init_net.ipv4.sysctl_tcp_backlog_ack_defer,
1367 		.maxlen		= sizeof(u8),
1368 		.mode		= 0644,
1369 		.proc_handler	= proc_dou8vec_minmax,
1370 		.extra1		= SYSCTL_ZERO,
1371 		.extra2		= SYSCTL_ONE,
1372 	},
1373 	{
1374 		.procname       = "tcp_reflect_tos",
1375 		.data           = &init_net.ipv4.sysctl_tcp_reflect_tos,
1376 		.maxlen         = sizeof(u8),
1377 		.mode           = 0644,
1378 		.proc_handler   = proc_dou8vec_minmax,
1379 		.extra1         = SYSCTL_ZERO,
1380 		.extra2         = SYSCTL_ONE,
1381 	},
1382 	{
1383 		.procname	= "tcp_ehash_entries",
1384 		.data		= &init_net.ipv4.sysctl_tcp_child_ehash_entries,
1385 		.mode		= 0444,
1386 		.proc_handler	= proc_tcp_ehash_entries,
1387 	},
1388 	{
1389 		.procname	= "tcp_child_ehash_entries",
1390 		.data		= &init_net.ipv4.sysctl_tcp_child_ehash_entries,
1391 		.maxlen		= sizeof(unsigned int),
1392 		.mode		= 0644,
1393 		.proc_handler	= proc_douintvec_minmax,
1394 		.extra1		= SYSCTL_ZERO,
1395 		.extra2		= &tcp_child_ehash_entries_max,
1396 	},
1397 	{
1398 		.procname	= "udp_hash_entries",
1399 		.data		= &init_net.ipv4.sysctl_udp_child_hash_entries,
1400 		.mode		= 0444,
1401 		.proc_handler	= proc_udp_hash_entries,
1402 	},
1403 	{
1404 		.procname	= "udp_child_hash_entries",
1405 		.data		= &init_net.ipv4.sysctl_udp_child_hash_entries,
1406 		.maxlen		= sizeof(unsigned int),
1407 		.mode		= 0644,
1408 		.proc_handler	= proc_douintvec_minmax,
1409 		.extra1		= SYSCTL_ZERO,
1410 		.extra2		= &udp_child_hash_entries_max,
1411 	},
1412 	{
1413 		.procname	= "udp_rmem_min",
1414 		.data		= &init_net.ipv4.sysctl_udp_rmem_min,
1415 		.maxlen		= sizeof(init_net.ipv4.sysctl_udp_rmem_min),
1416 		.mode		= 0644,
1417 		.proc_handler	= proc_dointvec_minmax,
1418 		.extra1		= SYSCTL_ONE
1419 	},
1420 	{
1421 		.procname	= "udp_wmem_min",
1422 		.data		= &init_net.ipv4.sysctl_udp_wmem_min,
1423 		.maxlen		= sizeof(init_net.ipv4.sysctl_udp_wmem_min),
1424 		.mode		= 0644,
1425 		.proc_handler	= proc_dointvec_minmax,
1426 		.extra1		= SYSCTL_ONE
1427 	},
1428 	{
1429 		.procname	= "fib_notify_on_flag_change",
1430 		.data		= &init_net.ipv4.sysctl_fib_notify_on_flag_change,
1431 		.maxlen		= sizeof(u8),
1432 		.mode		= 0644,
1433 		.proc_handler	= proc_dou8vec_minmax,
1434 		.extra1		= SYSCTL_ZERO,
1435 		.extra2		= SYSCTL_TWO,
1436 	},
1437 	{
1438 		.procname       = "tcp_plb_enabled",
1439 		.data           = &init_net.ipv4.sysctl_tcp_plb_enabled,
1440 		.maxlen         = sizeof(u8),
1441 		.mode           = 0644,
1442 		.proc_handler   = proc_dou8vec_minmax,
1443 		.extra1         = SYSCTL_ZERO,
1444 		.extra2         = SYSCTL_ONE,
1445 	},
1446 	{
1447 		.procname       = "tcp_plb_idle_rehash_rounds",
1448 		.data           = &init_net.ipv4.sysctl_tcp_plb_idle_rehash_rounds,
1449 		.maxlen         = sizeof(u8),
1450 		.mode           = 0644,
1451 		.proc_handler   = proc_dou8vec_minmax,
1452 		.extra2		= &tcp_plb_max_rounds,
1453 	},
1454 	{
1455 		.procname       = "tcp_plb_rehash_rounds",
1456 		.data           = &init_net.ipv4.sysctl_tcp_plb_rehash_rounds,
1457 		.maxlen         = sizeof(u8),
1458 		.mode           = 0644,
1459 		.proc_handler   = proc_dou8vec_minmax,
1460 		.extra2         = &tcp_plb_max_rounds,
1461 	},
1462 	{
1463 		.procname       = "tcp_plb_suspend_rto_sec",
1464 		.data           = &init_net.ipv4.sysctl_tcp_plb_suspend_rto_sec,
1465 		.maxlen         = sizeof(u8),
1466 		.mode           = 0644,
1467 		.proc_handler   = proc_dou8vec_minmax,
1468 	},
1469 	{
1470 		.procname       = "tcp_plb_cong_thresh",
1471 		.data           = &init_net.ipv4.sysctl_tcp_plb_cong_thresh,
1472 		.maxlen         = sizeof(int),
1473 		.mode           = 0644,
1474 		.proc_handler   = proc_dointvec_minmax,
1475 		.extra1         = SYSCTL_ZERO,
1476 		.extra2         = &tcp_plb_max_cong_thresh,
1477 	},
1478 	{
1479 		.procname	= "tcp_syn_linear_timeouts",
1480 		.data		= &init_net.ipv4.sysctl_tcp_syn_linear_timeouts,
1481 		.maxlen		= sizeof(u8),
1482 		.mode		= 0644,
1483 		.proc_handler	= proc_dou8vec_minmax,
1484 		.extra1		= SYSCTL_ZERO,
1485 		.extra2		= &tcp_syn_linear_timeouts_max,
1486 	},
1487 	{
1488 		.procname	= "tcp_shrink_window",
1489 		.data		= &init_net.ipv4.sysctl_tcp_shrink_window,
1490 		.maxlen		= sizeof(u8),
1491 		.mode		= 0644,
1492 		.proc_handler	= proc_dou8vec_minmax,
1493 		.extra1		= SYSCTL_ZERO,
1494 		.extra2		= SYSCTL_ONE,
1495 	},
1496 	{
1497 		.procname	= "tcp_pingpong_thresh",
1498 		.data		= &init_net.ipv4.sysctl_tcp_pingpong_thresh,
1499 		.maxlen		= sizeof(u8),
1500 		.mode		= 0644,
1501 		.proc_handler	= proc_dou8vec_minmax,
1502 		.extra1		= SYSCTL_ONE,
1503 	},
1504 };
1505 
1506 static __net_init int ipv4_sysctl_init_net(struct net *net)
1507 {
1508 	size_t table_size = ARRAY_SIZE(ipv4_net_table);
1509 	struct ctl_table *table;
1510 
1511 	table = ipv4_net_table;
1512 	if (!net_eq(net, &init_net)) {
1513 		int i;
1514 
1515 		table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
1516 		if (!table)
1517 			goto err_alloc;
1518 
1519 		for (i = 0; i < table_size; i++) {
1520 			if (table[i].data) {
1521 				/* Update the variables to point into
1522 				 * the current struct net
1523 				 */
1524 				table[i].data += (void *)net - (void *)&init_net;
1525 			} else {
1526 				/* Entries without data pointer are global;
1527 				 * Make them read-only in non-init_net ns
1528 				 */
1529 				table[i].mode &= ~0222;
1530 			}
1531 		}
1532 	}
1533 
1534 	net->ipv4.ipv4_hdr = register_net_sysctl_sz(net, "net/ipv4", table,
1535 						    table_size);
1536 	if (!net->ipv4.ipv4_hdr)
1537 		goto err_reg;
1538 
1539 	net->ipv4.sysctl_local_reserved_ports = kzalloc(65536 / 8, GFP_KERNEL);
1540 	if (!net->ipv4.sysctl_local_reserved_ports)
1541 		goto err_ports;
1542 
1543 	return 0;
1544 
1545 err_ports:
1546 	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
1547 err_reg:
1548 	if (!net_eq(net, &init_net))
1549 		kfree(table);
1550 err_alloc:
1551 	return -ENOMEM;
1552 }
1553 
1554 static __net_exit void ipv4_sysctl_exit_net(struct net *net)
1555 {
1556 	const struct ctl_table *table;
1557 
1558 	kfree(net->ipv4.sysctl_local_reserved_ports);
1559 	table = net->ipv4.ipv4_hdr->ctl_table_arg;
1560 	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
1561 	kfree(table);
1562 }
1563 
1564 static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
1565 	.init = ipv4_sysctl_init_net,
1566 	.exit = ipv4_sysctl_exit_net,
1567 };
1568 
1569 static __init int sysctl_ipv4_init(void)
1570 {
1571 	struct ctl_table_header *hdr;
1572 
1573 	hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
1574 	if (!hdr)
1575 		return -ENOMEM;
1576 
1577 	if (register_pernet_subsys(&ipv4_sysctl_ops)) {
1578 		unregister_net_sysctl_table(hdr);
1579 		return -ENOMEM;
1580 	}
1581 
1582 	return 0;
1583 }
1584 
1585 __initcall(sysctl_ipv4_init);
1586