sysctl_net_ipv4.c 17.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * sysctl_net_ipv4.c: sysctl interface to net IPV4 subsystem.
 *
 * Begun April 1, 1996, Mike Shaver.
 * Added /proc/sys/net/ipv4 directory entry (empty =) ). [MS]
 */

#include <linux/mm.h>
#include <linux/module.h>
#include <linux/sysctl.h>
11
#include <linux/igmp.h>
12
#include <linux/inetdevice.h>
13
#include <linux/seqlock.h>
14
#include <linux/init.h>
15
#include <linux/slab.h>
L
Linus Torvalds 已提交
16
#include <net/snmp.h>
17
#include <net/icmp.h>
L
Linus Torvalds 已提交
18 19 20
#include <net/ip.h>
#include <net/route.h>
#include <net/tcp.h>
H
Hideo Aoki 已提交
21
#include <net/udp.h>
P
Paul Moore 已提交
22
#include <net/cipso_ipv4.h>
23
#include <net/inet_frag.h>
L
Linus Torvalds 已提交
24

H
Herbert Xu 已提交
25
static int zero;
26
static int tcp_retr1_max = 255;
L
Linus Torvalds 已提交
27 28
static int ip_local_port_range_min[] = { 1, 1 };
static int ip_local_port_range_max[] = { 65535, 65535 };
29 30
static int tcp_adv_win_scale_min = -31;
static int tcp_adv_win_scale_max = 31;
L
Linus Torvalds 已提交
31

32 33 34
/* Update system visible IP port range */
static void set_local_port_range(int range[2])
{
E
Eric Dumazet 已提交
35 36 37 38
	write_seqlock(&sysctl_local_ports.lock);
	sysctl_local_ports.range[0] = range[0];
	sysctl_local_ports.range[1] = range[1];
	write_sequnlock(&sysctl_local_ports.lock);
39 40 41
}

/* Validate changes from /proc interface. */
42
static int ipv4_local_port_range(ctl_table *table, int write,
43 44 45 46
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
	int ret;
E
Eric Dumazet 已提交
47
	int range[2];
48 49 50 51 52 53 54 55
	ctl_table tmp = {
		.data = &range,
		.maxlen = sizeof(range),
		.mode = table->mode,
		.extra1 = &ip_local_port_range_min,
		.extra2 = &ip_local_port_range_max,
	};

E
Eric Dumazet 已提交
56
	inet_get_local_port_range(range, range + 1);
57
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
58 59

	if (write && ret == 0) {
60
		if (range[1] < range[0])
61 62 63 64 65 66 67 68
			ret = -EINVAL;
		else
			set_local_port_range(range);
	}

	return ret;
}

69
static int proc_tcp_congestion_control(ctl_table *ctl, int write,
70 71 72 73 74 75 76 77 78 79 80
				       void __user *buffer, size_t *lenp, loff_t *ppos)
{
	char val[TCP_CA_NAME_MAX];
	ctl_table tbl = {
		.data = val,
		.maxlen = TCP_CA_NAME_MAX,
	};
	int ret;

	tcp_get_default_congestion_control(val);

81
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
82 83 84 85 86
	if (write && ret == 0)
		ret = tcp_set_default_congestion_control(val);
	return ret;
}

87
static int proc_tcp_available_congestion_control(ctl_table *ctl,
88
						 int write,
89 90 91 92 93 94 95 96 97 98
						 void __user *buffer, size_t *lenp,
						 loff_t *ppos)
{
	ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
	int ret;

	tbl.data = kmalloc(tbl.maxlen, GFP_USER);
	if (!tbl.data)
		return -ENOMEM;
	tcp_get_available_congestion_control(tbl.data, TCP_CA_BUF_MAX);
99
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
100 101 102 103
	kfree(tbl.data);
	return ret;
}

104
static int proc_allowed_congestion_control(ctl_table *ctl,
105
					   int write,
106 107 108 109 110 111 112 113 114 115 116
					   void __user *buffer, size_t *lenp,
					   loff_t *ppos)
{
	ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
	int ret;

	tbl.data = kmalloc(tbl.maxlen, GFP_USER);
	if (!tbl.data)
		return -ENOMEM;

	tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
117
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
118 119 120 121 122 123
	if (write && ret == 0)
		ret = tcp_set_allowed_congestion_control(tbl.data);
	kfree(tbl.data);
	return ret;
}

124
static struct ctl_table ipv4_table[] = {
125
	{
L
Linus Torvalds 已提交
126 127 128 129
		.procname	= "tcp_timestamps",
		.data		= &sysctl_tcp_timestamps,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
130
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
131
	},
132
	{
L
Linus Torvalds 已提交
133 134 135 136
		.procname	= "tcp_window_scaling",
		.data		= &sysctl_tcp_window_scaling,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
137
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
138
	},
139
	{
L
Linus Torvalds 已提交
140 141 142 143
		.procname	= "tcp_sack",
		.data		= &sysctl_tcp_sack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
144
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
145
	},
146
	{
L
Linus Torvalds 已提交
147 148 149 150
		.procname	= "tcp_retrans_collapse",
		.data		= &sysctl_tcp_retrans_collapse,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
151
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
152
	},
153
	{
L
Linus Torvalds 已提交
154
		.procname	= "ip_default_ttl",
155
		.data		= &sysctl_ip_default_ttl,
L
Linus Torvalds 已提交
156 157
		.maxlen		= sizeof(int),
		.mode		= 0644,
158
		.proc_handler	= proc_dointvec,
159
		.extra2		= &init_net,
L
Linus Torvalds 已提交
160
	},
161
	{
L
Linus Torvalds 已提交
162 163 164 165
		.procname	= "ip_no_pmtu_disc",
		.data		= &ipv4_config.no_pmtu_disc,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
166
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
167 168 169 170 171 172
	},
	{
		.procname	= "ip_nonlocal_bind",
		.data		= &sysctl_ip_nonlocal_bind,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
173
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
174 175 176 177 178 179
	},
	{
		.procname	= "tcp_syn_retries",
		.data		= &sysctl_tcp_syn_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
180
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
181 182 183 184 185 186
	},
	{
		.procname	= "tcp_synack_retries",
		.data		= &sysctl_tcp_synack_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
187
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
188 189 190 191 192 193
	},
	{
		.procname	= "tcp_max_orphans",
		.data		= &sysctl_tcp_max_orphans,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
194
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
195 196 197
	},
	{
		.procname	= "tcp_max_tw_buckets",
198
		.data		= &tcp_death_row.sysctl_max_tw_buckets,
L
Linus Torvalds 已提交
199 200
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
201
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
202 203 204 205 206 207
	},
	{
		.procname	= "ip_dynaddr",
		.data		= &sysctl_ip_dynaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
208
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
209 210 211 212 213 214
	},
	{
		.procname	= "tcp_keepalive_time",
		.data		= &sysctl_tcp_keepalive_time,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
215
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
216 217 218 219 220 221
	},
	{
		.procname	= "tcp_keepalive_probes",
		.data		= &sysctl_tcp_keepalive_probes,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
222
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
223 224 225 226 227 228
	},
	{
		.procname	= "tcp_keepalive_intvl",
		.data		= &sysctl_tcp_keepalive_intvl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
229
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
230 231 232 233 234 235
	},
	{
		.procname	= "tcp_retries1",
		.data		= &sysctl_tcp_retries1,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
236
		.proc_handler	= proc_dointvec_minmax,
L
Linus Torvalds 已提交
237 238 239 240 241 242 243
		.extra2		= &tcp_retr1_max
	},
	{
		.procname	= "tcp_retries2",
		.data		= &sysctl_tcp_retries2,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
244
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
245 246 247 248 249 250
	},
	{
		.procname	= "tcp_fin_timeout",
		.data		= &sysctl_tcp_fin_timeout,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
251
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
252 253 254 255 256 257 258
	},
#ifdef CONFIG_SYN_COOKIES
	{
		.procname	= "tcp_syncookies",
		.data		= &sysctl_tcp_syncookies,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
259
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
260 261 262 263
	},
#endif
	{
		.procname	= "tcp_tw_recycle",
264
		.data		= &tcp_death_row.sysctl_tw_recycle,
L
Linus Torvalds 已提交
265 266
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
267
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
268 269 270 271 272 273
	},
	{
		.procname	= "tcp_abort_on_overflow",
		.data		= &sysctl_tcp_abort_on_overflow,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
274
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
275 276 277 278 279 280
	},
	{
		.procname	= "tcp_stdurg",
		.data		= &sysctl_tcp_stdurg,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
281
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
282 283 284 285 286 287
	},
	{
		.procname	= "tcp_rfc1337",
		.data		= &sysctl_tcp_rfc1337,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
288
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
289 290 291 292 293 294
	},
	{
		.procname	= "tcp_max_syn_backlog",
		.data		= &sysctl_max_syn_backlog,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
295
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
296 297 298
	},
	{
		.procname	= "ip_local_port_range",
E
Eric Dumazet 已提交
299 300
		.data		= &sysctl_local_ports.range,
		.maxlen		= sizeof(sysctl_local_ports.range),
L
Linus Torvalds 已提交
301
		.mode		= 0644,
A
Alexey Dobriyan 已提交
302
		.proc_handler	= ipv4_local_port_range,
L
Linus Torvalds 已提交
303
	},
304 305 306 307 308 309 310
	{
		.procname	= "ip_local_reserved_ports",
		.data		= NULL, /* initialized in sysctl_ipv4_init */
		.maxlen		= 65536,
		.mode		= 0644,
		.proc_handler	= proc_do_large_bitmap,
	},
L
Linus Torvalds 已提交
311 312 313 314 315 316
#ifdef CONFIG_IP_MULTICAST
	{
		.procname	= "igmp_max_memberships",
		.data		= &sysctl_igmp_max_memberships,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
317
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
318 319 320 321 322 323 324 325
	},

#endif
	{
		.procname	= "igmp_max_msf",
		.data		= &sysctl_igmp_max_msf,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
326
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
327 328 329 330 331 332
	},
	{
		.procname	= "inet_peer_threshold",
		.data		= &inet_peer_threshold,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
333
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
334 335 336 337 338 339
	},
	{
		.procname	= "inet_peer_minttl",
		.data		= &inet_peer_minttl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
340
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
341 342 343 344 345 346
	},
	{
		.procname	= "inet_peer_maxttl",
		.data		= &inet_peer_maxttl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
347
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
348 349 350 351 352 353
	},
	{
		.procname	= "inet_peer_gc_mintime",
		.data		= &inet_peer_gc_mintime,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
354
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
355 356 357 358 359 360
	},
	{
		.procname	= "inet_peer_gc_maxtime",
		.data		= &inet_peer_gc_maxtime,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
361
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
362 363 364 365 366 367
	},
	{
		.procname	= "tcp_orphan_retries",
		.data		= &sysctl_tcp_orphan_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
368
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
369 370 371 372 373 374
	},
	{
		.procname	= "tcp_fack",
		.data		= &sysctl_tcp_fack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
375
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
376 377 378 379 380 381
	},
	{
		.procname	= "tcp_reordering",
		.data		= &sysctl_tcp_reordering,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
382
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
383 384 385 386 387 388
	},
	{
		.procname	= "tcp_ecn",
		.data		= &sysctl_tcp_ecn,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
389
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
390 391 392 393 394 395
	},
	{
		.procname	= "tcp_dsack",
		.data		= &sysctl_tcp_dsack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
396
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
397 398 399 400 401 402
	},
	{
		.procname	= "tcp_mem",
		.data		= &sysctl_tcp_mem,
		.maxlen		= sizeof(sysctl_tcp_mem),
		.mode		= 0644,
E
Eric Dumazet 已提交
403
		.proc_handler	= proc_doulongvec_minmax
L
Linus Torvalds 已提交
404 405 406 407 408 409
	},
	{
		.procname	= "tcp_wmem",
		.data		= &sysctl_tcp_wmem,
		.maxlen		= sizeof(sysctl_tcp_wmem),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
410
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
411 412 413 414 415 416
	},
	{
		.procname	= "tcp_rmem",
		.data		= &sysctl_tcp_rmem,
		.maxlen		= sizeof(sysctl_tcp_rmem),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
417
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
418 419 420 421 422 423
	},
	{
		.procname	= "tcp_app_win",
		.data		= &sysctl_tcp_app_win,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
424
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
425 426 427 428 429 430
	},
	{
		.procname	= "tcp_adv_win_scale",
		.data		= &sysctl_tcp_adv_win_scale,
		.maxlen		= sizeof(int),
		.mode		= 0644,
431 432 433
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &tcp_adv_win_scale_min,
		.extra2		= &tcp_adv_win_scale_max,
L
Linus Torvalds 已提交
434 435 436 437 438 439
	},
	{
		.procname	= "tcp_tw_reuse",
		.data		= &sysctl_tcp_tw_reuse,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
440
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
441 442 443 444 445 446
	},
	{
		.procname	= "tcp_frto",
		.data		= &sysctl_tcp_frto,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
447
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
448
	},
449 450 451 452 453
	{
		.procname	= "tcp_frto_response",
		.data		= &sysctl_tcp_frto_response,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
454
		.proc_handler	= proc_dointvec
455
	},
L
Linus Torvalds 已提交
456 457 458 459 460
	{
		.procname	= "tcp_low_latency",
		.data		= &sysctl_tcp_low_latency,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
461
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
462 463 464 465 466 467
	},
	{
		.procname	= "tcp_no_metrics_save",
		.data		= &sysctl_tcp_nometrics_save,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
468
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
469 470 471 472 473 474
	},
	{
		.procname	= "tcp_moderate_rcvbuf",
		.data		= &sysctl_tcp_moderate_rcvbuf,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
475
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
476 477 478 479 480 481
	},
	{
		.procname	= "tcp_tso_win_divisor",
		.data		= &sysctl_tcp_tso_win_divisor,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
482
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
483 484
	},
	{
485
		.procname	= "tcp_congestion_control",
L
Linus Torvalds 已提交
486
		.mode		= 0644,
487
		.maxlen		= TCP_CA_NAME_MAX,
A
Alexey Dobriyan 已提交
488
		.proc_handler	= proc_tcp_congestion_control,
L
Linus Torvalds 已提交
489
	},
490 491 492 493 494
	{
		.procname	= "tcp_abc",
		.data		= &sysctl_tcp_abc,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
495
		.proc_handler	= proc_dointvec,
496
	},
J
John Heffner 已提交
497 498 499 500 501
	{
		.procname	= "tcp_mtu_probing",
		.data		= &sysctl_tcp_mtu_probing,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
502
		.proc_handler	= proc_dointvec,
J
John Heffner 已提交
503 504 505 506 507 508
	},
	{
		.procname	= "tcp_base_mss",
		.data		= &sysctl_tcp_base_mss,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
509
		.proc_handler	= proc_dointvec,
J
John Heffner 已提交
510
	},
511
	{
512 513 514 515
		.procname	= "tcp_workaround_signed_windows",
		.data		= &sysctl_tcp_workaround_signed_windows,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
516
		.proc_handler	= proc_dointvec
517
	},
518 519 520 521 522 523
#ifdef CONFIG_NET_DMA
	{
		.procname	= "tcp_dma_copybreak",
		.data		= &sysctl_tcp_dma_copybreak,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
524
		.proc_handler	= proc_dointvec
525 526
	},
#endif
527 528 529 530 531
	{
		.procname	= "tcp_slow_start_after_idle",
		.data		= &sysctl_tcp_slow_start_after_idle,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
532
		.proc_handler	= proc_dointvec
533
	},
P
Paul Moore 已提交
534 535 536 537 538 539
#ifdef CONFIG_NETLABEL
	{
		.procname	= "cipso_cache_enable",
		.data		= &cipso_v4_cache_enabled,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
540
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
541 542 543 544 545 546
	},
	{
		.procname	= "cipso_cache_bucket_size",
		.data		= &cipso_v4_cache_bucketsize,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
547
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
548 549 550 551 552 553
	},
	{
		.procname	= "cipso_rbm_optfmt",
		.data		= &cipso_v4_rbm_optfmt,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
554
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
555 556 557 558 559 560
	},
	{
		.procname	= "cipso_rbm_strictvalid",
		.data		= &cipso_v4_rbm_strictvalid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
561
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
562 563
	},
#endif /* CONFIG_NETLABEL */
564 565 566 567
	{
		.procname	= "tcp_available_congestion_control",
		.maxlen		= TCP_CA_BUF_MAX,
		.mode		= 0444,
A
Alexey Dobriyan 已提交
568
		.proc_handler   = proc_tcp_available_congestion_control,
569
	},
570 571 572 573
	{
		.procname	= "tcp_allowed_congestion_control",
		.maxlen		= TCP_CA_BUF_MAX,
		.mode		= 0644,
A
Alexey Dobriyan 已提交
574
		.proc_handler   = proc_allowed_congestion_control,
575
	},
576 577 578 579 580
	{
		.procname	= "tcp_max_ssthresh",
		.data		= &sysctl_tcp_max_ssthresh,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
581
		.proc_handler	= proc_dointvec,
582
	},
583 584 585 586 587 588 589
	{
		.procname	= "tcp_cookie_size",
		.data		= &sysctl_tcp_cookie_size,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
A
Andreas Petlund 已提交
590 591 592 593 594 595 596
	{
		.procname       = "tcp_thin_linear_timeouts",
		.data           = &sysctl_tcp_thin_linear_timeouts,
		.maxlen         = sizeof(int),
		.mode           = 0644,
		.proc_handler   = proc_dointvec
	},
A
Andreas Petlund 已提交
597 598 599 600 601 602 603
        {
		.procname       = "tcp_thin_dupack",
		.data           = &sysctl_tcp_thin_dupack,
		.maxlen         = sizeof(int),
		.mode           = 0644,
		.proc_handler   = proc_dointvec
	},
H
Hideo Aoki 已提交
604 605 606 607 608
	{
		.procname	= "udp_mem",
		.data		= &sysctl_udp_mem,
		.maxlen		= sizeof(sysctl_udp_mem),
		.mode		= 0644,
E
Eric Dumazet 已提交
609
		.proc_handler	= proc_doulongvec_minmax,
H
Hideo Aoki 已提交
610 611 612 613 614 615
	},
	{
		.procname	= "udp_rmem_min",
		.data		= &sysctl_udp_rmem_min,
		.maxlen		= sizeof(sysctl_udp_rmem_min),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
616
		.proc_handler	= proc_dointvec_minmax,
H
Hideo Aoki 已提交
617 618 619 620 621 622 623
		.extra1		= &zero
	},
	{
		.procname	= "udp_wmem_min",
		.data		= &sysctl_udp_wmem_min,
		.maxlen		= sizeof(sysctl_udp_wmem_min),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
624
		.proc_handler	= proc_dointvec_minmax,
H
Hideo Aoki 已提交
625 626
		.extra1		= &zero
	},
627
	{ }
L
Linus Torvalds 已提交
628
};
629

630 631 632 633 634 635
static struct ctl_table ipv4_net_table[] = {
	{
		.procname	= "icmp_echo_ignore_all",
		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_all,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
636
		.proc_handler	= proc_dointvec
637 638 639 640 641 642
	},
	{
		.procname	= "icmp_echo_ignore_broadcasts",
		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
643
		.proc_handler	= proc_dointvec
644 645 646 647 648 649
	},
	{
		.procname	= "icmp_ignore_bogus_error_responses",
		.data		= &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
650
		.proc_handler	= proc_dointvec
651 652 653 654 655 656
	},
	{
		.procname	= "icmp_errors_use_inbound_ifaddr",
		.data		= &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
657
		.proc_handler	= proc_dointvec
658 659 660 661 662 663
	},
	{
		.procname	= "icmp_ratelimit",
		.data		= &init_net.ipv4.sysctl_icmp_ratelimit,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
664
		.proc_handler	= proc_dointvec_ms_jiffies,
665 666 667 668 669 670
	},
	{
		.procname	= "icmp_ratemask",
		.data		= &init_net.ipv4.sysctl_icmp_ratemask,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
671
		.proc_handler	= proc_dointvec
672
	},
673 674 675 676 677
	{
		.procname	= "rt_cache_rebuild_count",
		.data		= &init_net.ipv4.sysctl_rt_cache_rebuild_count,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
678
		.proc_handler	= proc_dointvec
679
	},
680 681 682
	{ }
};

683
struct ctl_path net_ipv4_ctl_path[] = {
684 685
	{ .procname = "net", },
	{ .procname = "ipv4", },
686 687
	{ },
};
688
EXPORT_SYMBOL_GPL(net_ipv4_ctl_path);
689

690 691
static __net_init int ipv4_sysctl_init_net(struct net *net)
{
692 693 694
	struct ctl_table *table;

	table = ipv4_net_table;
O
Octavian Purdila 已提交
695
	if (!net_eq(net, &init_net)) {
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
		table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
		if (table == NULL)
			goto err_alloc;

		table[0].data =
			&net->ipv4.sysctl_icmp_echo_ignore_all;
		table[1].data =
			&net->ipv4.sysctl_icmp_echo_ignore_broadcasts;
		table[2].data =
			&net->ipv4.sysctl_icmp_ignore_bogus_error_responses;
		table[3].data =
			&net->ipv4.sysctl_icmp_errors_use_inbound_ifaddr;
		table[4].data =
			&net->ipv4.sysctl_icmp_ratelimit;
		table[5].data =
			&net->ipv4.sysctl_icmp_ratemask;
712 713
		table[6].data =
			&net->ipv4.sysctl_rt_cache_rebuild_count;
714 715
	}

716 717
	net->ipv4.sysctl_rt_cache_rebuild_count = 4;

718 719 720 721 722
	net->ipv4.ipv4_hdr = register_net_sysctl_table(net,
			net_ipv4_ctl_path, table);
	if (net->ipv4.ipv4_hdr == NULL)
		goto err_reg;

723
	return 0;
724 725

err_reg:
O
Octavian Purdila 已提交
726
	if (!net_eq(net, &init_net))
727 728 729
		kfree(table);
err_alloc:
	return -ENOMEM;
730 731 732 733
}

static __net_exit void ipv4_sysctl_exit_net(struct net *net)
{
734 735 736 737 738
	struct ctl_table *table;

	table = net->ipv4.ipv4_hdr->ctl_table_arg;
	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
	kfree(table);
739 740 741 742 743 744 745
}

static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
	.init = ipv4_sysctl_init_net,
	.exit = ipv4_sysctl_exit_net,
};

746 747 748
static __init int sysctl_ipv4_init(void)
{
	struct ctl_table_header *hdr;
749 750 751 752 753 754 755 756 757 758
	struct ctl_table *i;

	for (i = ipv4_table; i->procname; i++) {
		if (strcmp(i->procname, "ip_local_reserved_ports") == 0) {
			i->data = sysctl_local_reserved_ports;
			break;
		}
	}
	if (!i->procname)
		return -EINVAL;
759

760
	hdr = register_sysctl_paths(net_ipv4_ctl_path, ipv4_table);
761 762 763 764 765 766 767 768 769
	if (hdr == NULL)
		return -ENOMEM;

	if (register_pernet_subsys(&ipv4_sysctl_ops)) {
		unregister_sysctl_table(hdr);
		return -ENOMEM;
	}

	return 0;
770 771 772
}

__initcall(sysctl_ipv4_init);