sysctl_net_ipv4.c 21.4 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>
16
#include <linux/nsproxy.h>
G
Glauber Costa 已提交
17
#include <linux/swap.h>
L
Linus Torvalds 已提交
18
#include <net/snmp.h>
19
#include <net/icmp.h>
L
Linus Torvalds 已提交
20 21 22
#include <net/ip.h>
#include <net/route.h>
#include <net/tcp.h>
H
Hideo Aoki 已提交
23
#include <net/udp.h>
P
Paul Moore 已提交
24
#include <net/cipso_ipv4.h>
25
#include <net/inet_frag.h>
26
#include <net/ping.h>
27
#include <net/tcp_memcontrol.h>
L
Linus Torvalds 已提交
28

H
Herbert Xu 已提交
29
static int zero;
30
static int one = 1;
N
Nandita Dukkipati 已提交
31
static int four = 4;
E
Eric Dumazet 已提交
32
static int gso_max_segs = GSO_MAX_SEGS;
33
static int tcp_retr1_max = 255;
L
Linus Torvalds 已提交
34 35
static int ip_local_port_range_min[] = { 1, 1 };
static int ip_local_port_range_max[] = { 65535, 65535 };
36 37
static int tcp_adv_win_scale_min = -31;
static int tcp_adv_win_scale_max = 31;
E
Eric Dumazet 已提交
38 39
static int ip_ttl_min = 1;
static int ip_ttl_max = 255;
40 41
static int tcp_syn_retries_min = 1;
static int tcp_syn_retries_max = MAX_TCP_SYNCNT;
42 43
static int ip_ping_group_range_min[] = { 0, 0 };
static int ip_ping_group_range_max[] = { GID_T_MAX, GID_T_MAX };
L
Linus Torvalds 已提交
44

45
/* Update system visible IP port range */
46
static void set_local_port_range(struct net *net, int range[2])
47
{
48 49 50 51
	write_seqlock(&net->ipv4.ip_local_ports.lock);
	net->ipv4.ip_local_ports.range[0] = range[0];
	net->ipv4.ip_local_ports.range[1] = range[1];
	write_sequnlock(&net->ipv4.ip_local_ports.lock);
52 53 54
}

/* Validate changes from /proc interface. */
55
static int ipv4_local_port_range(struct ctl_table *table, int write,
56 57 58
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
59
	struct net *net =
60
		container_of(table->data, struct net, ipv4.ip_local_ports.range);
61
	int ret;
E
Eric Dumazet 已提交
62
	int range[2];
63
	struct ctl_table tmp = {
64 65 66 67 68 69 70
		.data = &range,
		.maxlen = sizeof(range),
		.mode = table->mode,
		.extra1 = &ip_local_port_range_min,
		.extra2 = &ip_local_port_range_max,
	};

71 72
	inet_get_local_port_range(net, &range[0], &range[1]);

73
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
74 75

	if (write && ret == 0) {
76
		if (range[1] < range[0])
77 78
			ret = -EINVAL;
		else
79
			set_local_port_range(net, range);
80 81 82 83 84
	}

	return ret;
}

85

86
static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
87
{
88
	kgid_t *data = table->data;
89
	struct net *net =
90
		container_of(table->data, struct net, ipv4.ping_group_range.range);
91
	unsigned int seq;
92
	do {
93
		seq = read_seqbegin(&net->ipv4.ip_local_ports.lock);
94 95 96

		*low = data[0];
		*high = data[1];
97
	} while (read_seqretry(&net->ipv4.ip_local_ports.lock, seq));
98 99 100
}

/* Update system visible IP port range */
101
static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
102
{
103
	kgid_t *data = table->data;
104
	struct net *net =
105
		container_of(table->data, struct net, ipv4.ping_group_range.range);
106
	write_seqlock(&net->ipv4.ip_local_ports.lock);
107 108
	data[0] = low;
	data[1] = high;
109
	write_sequnlock(&net->ipv4.ip_local_ports.lock);
110 111 112
}

/* Validate changes from /proc interface. */
113
static int ipv4_ping_group_range(struct ctl_table *table, int write,
114 115 116
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
117
	struct user_namespace *user_ns = current_user_ns();
118
	int ret;
119 120
	gid_t urange[2];
	kgid_t low, high;
121
	struct ctl_table tmp = {
122 123
		.data = &urange,
		.maxlen = sizeof(urange),
124 125 126 127 128
		.mode = table->mode,
		.extra1 = &ip_ping_group_range_min,
		.extra2 = &ip_ping_group_range_max,
	};

129 130 131
	inet_get_ping_group_range_table(table, &low, &high);
	urange[0] = from_kgid_munged(user_ns, low);
	urange[1] = from_kgid_munged(user_ns, high);
132 133
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);

134 135 136 137 138 139 140 141 142 143
	if (write && ret == 0) {
		low = make_kgid(user_ns, urange[0]);
		high = make_kgid(user_ns, urange[1]);
		if (!gid_valid(low) || !gid_valid(high) ||
		    (urange[1] < urange[0]) || gid_lt(high, low)) {
			low = make_kgid(&init_user_ns, 1);
			high = make_kgid(&init_user_ns, 0);
		}
		set_ping_group_range(table, low, high);
	}
144 145 146 147

	return ret;
}

148
static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
149 150 151
				       void __user *buffer, size_t *lenp, loff_t *ppos)
{
	char val[TCP_CA_NAME_MAX];
152
	struct ctl_table tbl = {
153 154 155 156 157 158 159
		.data = val,
		.maxlen = TCP_CA_NAME_MAX,
	};
	int ret;

	tcp_get_default_congestion_control(val);

160
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
161 162 163 164 165
	if (write && ret == 0)
		ret = tcp_set_default_congestion_control(val);
	return ret;
}

166
static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
167
						 int write,
168 169 170
						 void __user *buffer, size_t *lenp,
						 loff_t *ppos)
{
171
	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
172 173 174 175 176 177
	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);
178
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
179 180 181 182
	kfree(tbl.data);
	return ret;
}

183
static int proc_allowed_congestion_control(struct ctl_table *ctl,
184
					   int write,
185 186 187
					   void __user *buffer, size_t *lenp,
					   loff_t *ppos)
{
188
	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
189 190 191 192 193 194 195
	int ret;

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

	tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
196
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
197 198 199 200 201 202
	if (write && ret == 0)
		ret = tcp_set_allowed_congestion_control(tbl.data);
	kfree(tbl.data);
	return ret;
}

203 204 205
static int proc_tcp_fastopen_key(struct ctl_table *ctl, int write,
				 void __user *buffer, size_t *lenp,
				 loff_t *ppos)
206
{
207
	struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
208 209 210 211 212 213 214 215 216 217 218 219
	struct tcp_fastopen_context *ctxt;
	int ret;
	u32  user_key[4]; /* 16 bytes, matching TCP_FASTOPEN_KEY_LENGTH */

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

	rcu_read_lock();
	ctxt = rcu_dereference(tcp_fastopen_ctx);
	if (ctxt)
		memcpy(user_key, ctxt->key, TCP_FASTOPEN_KEY_LENGTH);
220 221
	else
		memset(user_key, 0, sizeof(user_key));
222 223 224 225 226 227 228 229 230 231 232 233
	rcu_read_unlock();

	snprintf(tbl.data, tbl.maxlen, "%08x-%08x-%08x-%08x",
		user_key[0], user_key[1], user_key[2], user_key[3]);
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);

	if (write && ret == 0) {
		if (sscanf(tbl.data, "%x-%x-%x-%x", user_key, user_key + 1,
			   user_key + 2, user_key + 3) != 4) {
			ret = -EINVAL;
			goto bad_key;
		}
234 235 236 237 238
		/* Generate a dummy secret but don't publish it. This
		 * is needed so we don't regenerate a new key on the
		 * first invocation of tcp_fastopen_cookie_gen
		 */
		tcp_fastopen_init_key_once(false);
239 240 241 242 243 244 245 246 247 248 249
		tcp_fastopen_reset_cipher(user_key, TCP_FASTOPEN_KEY_LENGTH);
	}

bad_key:
	pr_debug("proc FO key set 0x%x-%x-%x-%x <- 0x%s: %u\n",
	       user_key[0], user_key[1], user_key[2], user_key[3],
	       (char *)tbl.data, ret);
	kfree(tbl.data);
	return ret;
}

250
static struct ctl_table ipv4_table[] = {
251
	{
L
Linus Torvalds 已提交
252 253 254 255
		.procname	= "tcp_timestamps",
		.data		= &sysctl_tcp_timestamps,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
256
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
257
	},
258
	{
L
Linus Torvalds 已提交
259 260 261 262
		.procname	= "tcp_window_scaling",
		.data		= &sysctl_tcp_window_scaling,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
263
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
264
	},
265
	{
L
Linus Torvalds 已提交
266 267 268 269
		.procname	= "tcp_sack",
		.data		= &sysctl_tcp_sack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
270
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
271
	},
272
	{
L
Linus Torvalds 已提交
273 274 275 276
		.procname	= "tcp_retrans_collapse",
		.data		= &sysctl_tcp_retrans_collapse,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
277
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
278
	},
279
	{
L
Linus Torvalds 已提交
280
		.procname	= "ip_default_ttl",
281
		.data		= &sysctl_ip_default_ttl,
L
Linus Torvalds 已提交
282 283
		.maxlen		= sizeof(int),
		.mode		= 0644,
E
Eric Dumazet 已提交
284 285 286
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &ip_ttl_min,
		.extra2		= &ip_ttl_max,
L
Linus Torvalds 已提交
287 288 289 290 291 292
	},
	{
		.procname	= "ip_nonlocal_bind",
		.data		= &sysctl_ip_nonlocal_bind,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
293
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
294 295 296 297 298 299
	},
	{
		.procname	= "tcp_syn_retries",
		.data		= &sysctl_tcp_syn_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
300 301 302
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &tcp_syn_retries_min,
		.extra2		= &tcp_syn_retries_max
L
Linus Torvalds 已提交
303 304 305 306 307 308
	},
	{
		.procname	= "tcp_synack_retries",
		.data		= &sysctl_tcp_synack_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
309
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
310 311 312 313 314 315
	},
	{
		.procname	= "tcp_max_orphans",
		.data		= &sysctl_tcp_max_orphans,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
316
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
317 318 319
	},
	{
		.procname	= "tcp_max_tw_buckets",
320
		.data		= &tcp_death_row.sysctl_max_tw_buckets,
L
Linus Torvalds 已提交
321 322
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
323
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
324
	},
325 326 327 328 329 330 331
	{
		.procname	= "ip_early_demux",
		.data		= &sysctl_ip_early_demux,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
L
Linus Torvalds 已提交
332 333 334 335 336
	{
		.procname	= "ip_dynaddr",
		.data		= &sysctl_ip_dynaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
337
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
338 339 340 341 342 343
	},
	{
		.procname	= "tcp_keepalive_time",
		.data		= &sysctl_tcp_keepalive_time,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
344
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
345 346 347 348 349 350
	},
	{
		.procname	= "tcp_keepalive_probes",
		.data		= &sysctl_tcp_keepalive_probes,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
351
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
352 353 354 355 356 357
	},
	{
		.procname	= "tcp_keepalive_intvl",
		.data		= &sysctl_tcp_keepalive_intvl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
358
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
359 360 361 362 363 364
	},
	{
		.procname	= "tcp_retries1",
		.data		= &sysctl_tcp_retries1,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
365
		.proc_handler	= proc_dointvec_minmax,
L
Linus Torvalds 已提交
366 367 368 369 370 371 372
		.extra2		= &tcp_retr1_max
	},
	{
		.procname	= "tcp_retries2",
		.data		= &sysctl_tcp_retries2,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
373
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
374 375 376 377 378 379
	},
	{
		.procname	= "tcp_fin_timeout",
		.data		= &sysctl_tcp_fin_timeout,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
380
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
381 382 383 384 385 386 387
	},
#ifdef CONFIG_SYN_COOKIES
	{
		.procname	= "tcp_syncookies",
		.data		= &sysctl_tcp_syncookies,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
388
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
389 390
	},
#endif
Y
Yuchung Cheng 已提交
391 392 393 394 395 396 397
	{
		.procname	= "tcp_fastopen",
		.data		= &sysctl_tcp_fastopen,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec,
	},
398 399 400 401 402 403
	{
		.procname	= "tcp_fastopen_key",
		.mode		= 0600,
		.maxlen		= ((TCP_FASTOPEN_KEY_LENGTH * 2) + 10),
		.proc_handler	= proc_tcp_fastopen_key,
	},
L
Linus Torvalds 已提交
404 405
	{
		.procname	= "tcp_tw_recycle",
406
		.data		= &tcp_death_row.sysctl_tw_recycle,
L
Linus Torvalds 已提交
407 408
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
409
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
410 411 412 413 414 415
	},
	{
		.procname	= "tcp_abort_on_overflow",
		.data		= &sysctl_tcp_abort_on_overflow,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
416
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
417 418 419 420 421 422
	},
	{
		.procname	= "tcp_stdurg",
		.data		= &sysctl_tcp_stdurg,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
423
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
424 425 426 427 428 429
	},
	{
		.procname	= "tcp_rfc1337",
		.data		= &sysctl_tcp_rfc1337,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
430
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
431 432 433 434 435 436
	},
	{
		.procname	= "tcp_max_syn_backlog",
		.data		= &sysctl_max_syn_backlog,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
437
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
438
	},
439 440 441 442 443 444 445
	{
		.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 已提交
446 447 448 449 450
	{
		.procname	= "igmp_max_memberships",
		.data		= &sysctl_igmp_max_memberships,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
451
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
452 453 454 455 456 457
	},
	{
		.procname	= "igmp_max_msf",
		.data		= &sysctl_igmp_max_msf,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
458
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
459 460 461 462 463 464
	},
	{
		.procname	= "inet_peer_threshold",
		.data		= &inet_peer_threshold,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
465
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
466 467 468 469 470 471
	},
	{
		.procname	= "inet_peer_minttl",
		.data		= &inet_peer_minttl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
472
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
473 474 475 476 477 478
	},
	{
		.procname	= "inet_peer_maxttl",
		.data		= &inet_peer_maxttl,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
479
		.proc_handler	= proc_dointvec_jiffies,
L
Linus Torvalds 已提交
480 481 482 483 484 485
	},
	{
		.procname	= "tcp_orphan_retries",
		.data		= &sysctl_tcp_orphan_retries,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
486
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
487 488 489 490 491 492
	},
	{
		.procname	= "tcp_fack",
		.data		= &sysctl_tcp_fack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
493
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
494 495 496 497 498 499
	},
	{
		.procname	= "tcp_reordering",
		.data		= &sysctl_tcp_reordering,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
500
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
501 502 503 504 505 506
	},
	{
		.procname	= "tcp_dsack",
		.data		= &sysctl_tcp_dsack,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
507
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
508
	},
509 510 511 512 513 514 515
	{
		.procname	= "tcp_mem",
		.maxlen		= sizeof(sysctl_tcp_mem),
		.data		= &sysctl_tcp_mem,
		.mode		= 0644,
		.proc_handler	= proc_doulongvec_minmax,
	},
L
Linus Torvalds 已提交
516 517 518 519 520
	{
		.procname	= "tcp_wmem",
		.data		= &sysctl_tcp_wmem,
		.maxlen		= sizeof(sysctl_tcp_wmem),
		.mode		= 0644,
521 522
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &one,
L
Linus Torvalds 已提交
523
	},
524 525 526 527 528 529 530
	{
		.procname	= "tcp_notsent_lowat",
		.data		= &sysctl_tcp_notsent_lowat,
		.maxlen		= sizeof(sysctl_tcp_notsent_lowat),
		.mode		= 0644,
		.proc_handler	= proc_dointvec,
	},
L
Linus Torvalds 已提交
531 532 533 534 535
	{
		.procname	= "tcp_rmem",
		.data		= &sysctl_tcp_rmem,
		.maxlen		= sizeof(sysctl_tcp_rmem),
		.mode		= 0644,
536 537
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &one,
L
Linus Torvalds 已提交
538 539 540 541 542 543
	},
	{
		.procname	= "tcp_app_win",
		.data		= &sysctl_tcp_app_win,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
544
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
545 546 547 548 549 550
	},
	{
		.procname	= "tcp_adv_win_scale",
		.data		= &sysctl_tcp_adv_win_scale,
		.maxlen		= sizeof(int),
		.mode		= 0644,
551 552 553
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &tcp_adv_win_scale_min,
		.extra2		= &tcp_adv_win_scale_max,
L
Linus Torvalds 已提交
554 555 556 557 558 559
	},
	{
		.procname	= "tcp_tw_reuse",
		.data		= &sysctl_tcp_tw_reuse,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
560
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
561 562 563 564 565 566
	},
	{
		.procname	= "tcp_frto",
		.data		= &sysctl_tcp_frto,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
567
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
568 569 570 571 572 573
	},
	{
		.procname	= "tcp_low_latency",
		.data		= &sysctl_tcp_low_latency,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
574
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
575 576 577 578 579 580
	},
	{
		.procname	= "tcp_no_metrics_save",
		.data		= &sysctl_tcp_nometrics_save,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
581
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
582 583 584 585 586 587
	},
	{
		.procname	= "tcp_moderate_rcvbuf",
		.data		= &sysctl_tcp_moderate_rcvbuf,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
588
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
589 590 591 592 593 594
	},
	{
		.procname	= "tcp_tso_win_divisor",
		.data		= &sysctl_tcp_tso_win_divisor,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
595
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
596 597
	},
	{
598
		.procname	= "tcp_congestion_control",
L
Linus Torvalds 已提交
599
		.mode		= 0644,
600
		.maxlen		= TCP_CA_NAME_MAX,
A
Alexey Dobriyan 已提交
601
		.proc_handler	= proc_tcp_congestion_control,
L
Linus Torvalds 已提交
602
	},
J
John Heffner 已提交
603 604 605 606 607
	{
		.procname	= "tcp_mtu_probing",
		.data		= &sysctl_tcp_mtu_probing,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
608
		.proc_handler	= proc_dointvec,
J
John Heffner 已提交
609 610 611 612 613 614
	},
	{
		.procname	= "tcp_base_mss",
		.data		= &sysctl_tcp_base_mss,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
615
		.proc_handler	= proc_dointvec,
J
John Heffner 已提交
616
	},
617
	{
618 619 620 621
		.procname	= "tcp_workaround_signed_windows",
		.data		= &sysctl_tcp_workaround_signed_windows,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
622
		.proc_handler	= proc_dointvec
623
	},
E
Eric Dumazet 已提交
624 625 626 627 628 629 630
	{
		.procname	= "tcp_limit_output_bytes",
		.data		= &sysctl_tcp_limit_output_bytes,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
E
Eric Dumazet 已提交
631 632 633 634 635 636 637
	{
		.procname	= "tcp_challenge_ack_limit",
		.data		= &sysctl_tcp_challenge_ack_limit,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
638 639 640 641 642 643
#ifdef CONFIG_NET_DMA
	{
		.procname	= "tcp_dma_copybreak",
		.data		= &sysctl_tcp_dma_copybreak,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
644
		.proc_handler	= proc_dointvec
645 646
	},
#endif
647 648 649 650 651
	{
		.procname	= "tcp_slow_start_after_idle",
		.data		= &sysctl_tcp_slow_start_after_idle,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
652
		.proc_handler	= proc_dointvec
653
	},
P
Paul Moore 已提交
654 655 656 657 658 659
#ifdef CONFIG_NETLABEL
	{
		.procname	= "cipso_cache_enable",
		.data		= &cipso_v4_cache_enabled,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
660
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
661 662 663 664 665 666
	},
	{
		.procname	= "cipso_cache_bucket_size",
		.data		= &cipso_v4_cache_bucketsize,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
667
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
668 669 670 671 672 673
	},
	{
		.procname	= "cipso_rbm_optfmt",
		.data		= &cipso_v4_rbm_optfmt,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
674
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
675 676 677 678 679 680
	},
	{
		.procname	= "cipso_rbm_strictvalid",
		.data		= &cipso_v4_rbm_strictvalid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
681
		.proc_handler	= proc_dointvec,
P
Paul Moore 已提交
682 683
	},
#endif /* CONFIG_NETLABEL */
684 685 686 687
	{
		.procname	= "tcp_available_congestion_control",
		.maxlen		= TCP_CA_BUF_MAX,
		.mode		= 0444,
A
Alexey Dobriyan 已提交
688
		.proc_handler   = proc_tcp_available_congestion_control,
689
	},
690 691 692 693
	{
		.procname	= "tcp_allowed_congestion_control",
		.maxlen		= TCP_CA_BUF_MAX,
		.mode		= 0644,
A
Alexey Dobriyan 已提交
694
		.proc_handler   = proc_allowed_congestion_control,
695
	},
A
Andreas Petlund 已提交
696 697 698 699 700 701 702
	{
		.procname       = "tcp_thin_linear_timeouts",
		.data           = &sysctl_tcp_thin_linear_timeouts,
		.maxlen         = sizeof(int),
		.mode           = 0644,
		.proc_handler   = proc_dointvec
	},
703
	{
A
Andreas Petlund 已提交
704 705 706 707 708 709
		.procname       = "tcp_thin_dupack",
		.data           = &sysctl_tcp_thin_dupack,
		.maxlen         = sizeof(int),
		.mode           = 0644,
		.proc_handler   = proc_dointvec
	},
Y
Yuchung Cheng 已提交
710 711 712 713 714 715 716
	{
		.procname	= "tcp_early_retrans",
		.data		= &sysctl_tcp_early_retrans,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &zero,
N
Nandita Dukkipati 已提交
717
		.extra2		= &four,
Y
Yuchung Cheng 已提交
718
	},
E
Eric Dumazet 已提交
719 720 721 722 723 724 725 726 727
	{
		.procname	= "tcp_min_tso_segs",
		.data		= &sysctl_tcp_min_tso_segs,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &zero,
		.extra2		= &gso_max_segs,
	},
E
Eric Dumazet 已提交
728 729 730 731 732 733 734 735 736
	{
		.procname	= "tcp_autocorking",
		.data		= &sysctl_tcp_autocorking,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec_minmax,
		.extra1		= &zero,
		.extra2		= &one,
	},
H
Hideo Aoki 已提交
737 738 739 740 741
	{
		.procname	= "udp_mem",
		.data		= &sysctl_udp_mem,
		.maxlen		= sizeof(sysctl_udp_mem),
		.mode		= 0644,
E
Eric Dumazet 已提交
742
		.proc_handler	= proc_doulongvec_minmax,
H
Hideo Aoki 已提交
743 744 745 746 747 748
	},
	{
		.procname	= "udp_rmem_min",
		.data		= &sysctl_udp_rmem_min,
		.maxlen		= sizeof(sysctl_udp_rmem_min),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
749
		.proc_handler	= proc_dointvec_minmax,
750
		.extra1		= &one
H
Hideo Aoki 已提交
751 752 753 754 755 756
	},
	{
		.procname	= "udp_wmem_min",
		.data		= &sysctl_udp_wmem_min,
		.maxlen		= sizeof(sysctl_udp_wmem_min),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
757
		.proc_handler	= proc_dointvec_minmax,
758
		.extra1		= &one
H
Hideo Aoki 已提交
759
	},
760
	{ }
L
Linus Torvalds 已提交
761
};
762

763 764 765 766 767 768
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 已提交
769
		.proc_handler	= proc_dointvec
770 771 772 773 774 775
	},
	{
		.procname	= "icmp_echo_ignore_broadcasts",
		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
776
		.proc_handler	= proc_dointvec
777 778 779 780 781 782
	},
	{
		.procname	= "icmp_ignore_bogus_error_responses",
		.data		= &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
783
		.proc_handler	= proc_dointvec
784 785 786 787 788 789
	},
	{
		.procname	= "icmp_errors_use_inbound_ifaddr",
		.data		= &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
790
		.proc_handler	= proc_dointvec
791 792 793 794 795 796
	},
	{
		.procname	= "icmp_ratelimit",
		.data		= &init_net.ipv4.sysctl_icmp_ratelimit,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
797
		.proc_handler	= proc_dointvec_ms_jiffies,
798 799 800 801 802 803
	},
	{
		.procname	= "icmp_ratemask",
		.data		= &init_net.ipv4.sysctl_icmp_ratemask,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
804
		.proc_handler	= proc_dointvec
805
	},
806 807
	{
		.procname	= "ping_group_range",
808
		.data		= &init_net.ipv4.ping_group_range.range,
809
		.maxlen		= sizeof(gid_t)*2,
810 811 812
		.mode		= 0644,
		.proc_handler	= ipv4_ping_group_range,
	},
813 814 815 816 817 818 819
	{
		.procname	= "tcp_ecn",
		.data		= &init_net.ipv4.sysctl_tcp_ecn,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
820 821
	{
		.procname	= "ip_local_port_range",
822 823
		.maxlen		= sizeof(init_net.ipv4.ip_local_ports.range),
		.data		= &init_net.ipv4.ip_local_ports.range,
824 825 826
		.mode		= 0644,
		.proc_handler	= ipv4_local_port_range,
	},
827 828 829 830 831 832 833
	{
		.procname	= "ip_no_pmtu_disc",
		.data		= &init_net.ipv4.sysctl_ip_no_pmtu_disc,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
834 835 836 837 838 839 840
	{
		.procname	= "ip_forward_use_pmtu",
		.data		= &init_net.ipv4.sysctl_ip_fwd_use_pmtu,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec,
	},
841 842 843
	{ }
};

844 845
static __net_init int ipv4_sysctl_init_net(struct net *net)
{
846 847 848
	struct ctl_table *table;

	table = ipv4_net_table;
O
Octavian Purdila 已提交
849
	if (!net_eq(net, &init_net)) {
850 851
		int i;

852 853 854 855
		table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
		if (table == NULL)
			goto err_alloc;

856 857 858
		/* Update the variables to point into the current struct net */
		for (i = 0; i < ARRAY_SIZE(ipv4_net_table) - 1; i++)
			table[i].data += (void *)net - (void *)&init_net;
859 860
	}

861
	net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
862 863 864
	if (net->ipv4.ipv4_hdr == NULL)
		goto err_reg;

865
	return 0;
866 867

err_reg:
O
Octavian Purdila 已提交
868
	if (!net_eq(net, &init_net))
869 870 871
		kfree(table);
err_alloc:
	return -ENOMEM;
872 873 874 875
}

static __net_exit void ipv4_sysctl_exit_net(struct net *net)
{
876 877 878 879 880
	struct ctl_table *table;

	table = net->ipv4.ipv4_hdr->ctl_table_arg;
	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
	kfree(table);
881 882 883 884 885 886 887
}

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

888 889 890
static __init int sysctl_ipv4_init(void)
{
	struct ctl_table_header *hdr;
891 892 893 894 895 896 897 898 899 900
	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;
901

902
	hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
903 904 905 906
	if (hdr == NULL)
		return -ENOMEM;

	if (register_pernet_subsys(&ipv4_sysctl_ops)) {
907
		unregister_net_sysctl_table(hdr);
908 909 910 911
		return -ENOMEM;
	}

	return 0;
912 913 914
}

__initcall(sysctl_ipv4_init);