sysctl_net_ipv4.c 21.7 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;
32
static int tcp_retr1_max = 255;
L
Linus Torvalds 已提交
33 34
static int ip_local_port_range_min[] = { 1, 1 };
static int ip_local_port_range_max[] = { 65535, 65535 };
35 36
static int tcp_adv_win_scale_min = -31;
static int tcp_adv_win_scale_max = 31;
E
Eric Dumazet 已提交
37 38
static int ip_ttl_min = 1;
static int ip_ttl_max = 255;
39 40
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 已提交
41

42 43 44
/* Update system visible IP port range */
static void set_local_port_range(int range[2])
{
E
Eric Dumazet 已提交
45 46 47 48
	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);
49 50 51
}

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

E
Eric Dumazet 已提交
66
	inet_get_local_port_range(range, range + 1);
67
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
68 69

	if (write && ret == 0) {
70
		if (range[1] < range[0])
71 72 73 74 75 76 77 78
			ret = -EINVAL;
		else
			set_local_port_range(range);
	}

	return ret;
}

79

80
static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
81
{
82
	kgid_t *data = table->data;
83
	unsigned int seq;
84 85 86 87 88 89 90 91 92
	do {
		seq = read_seqbegin(&sysctl_local_ports.lock);

		*low = data[0];
		*high = data[1];
	} while (read_seqretry(&sysctl_local_ports.lock, seq));
}

/* Update system visible IP port range */
93
static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
94
{
95
	kgid_t *data = table->data;
96
	write_seqlock(&sysctl_local_ports.lock);
97 98
	data[0] = low;
	data[1] = high;
99 100 101 102
	write_sequnlock(&sysctl_local_ports.lock);
}

/* Validate changes from /proc interface. */
103
static int ipv4_ping_group_range(struct ctl_table *table, int write,
104 105 106
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
107
	struct user_namespace *user_ns = current_user_ns();
108
	int ret;
109 110
	gid_t urange[2];
	kgid_t low, high;
111
	struct ctl_table tmp = {
112 113
		.data = &urange,
		.maxlen = sizeof(urange),
114 115 116 117 118
		.mode = table->mode,
		.extra1 = &ip_ping_group_range_min,
		.extra2 = &ip_ping_group_range_max,
	};

119 120 121
	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);
122 123
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);

124 125 126 127 128 129 130 131 132 133
	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);
	}
134 135 136 137

	return ret;
}

138
static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
139 140 141
				       void __user *buffer, size_t *lenp, loff_t *ppos)
{
	char val[TCP_CA_NAME_MAX];
142
	struct ctl_table tbl = {
143 144 145 146 147 148 149
		.data = val,
		.maxlen = TCP_CA_NAME_MAX,
	};
	int ret;

	tcp_get_default_congestion_control(val);

150
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
151 152 153 154 155
	if (write && ret == 0)
		ret = tcp_set_default_congestion_control(val);
	return ret;
}

156
static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
157
						 int write,
158 159 160
						 void __user *buffer, size_t *lenp,
						 loff_t *ppos)
{
161
	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
162 163 164 165 166 167
	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);
168
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
169 170 171 172
	kfree(tbl.data);
	return ret;
}

173
static int proc_allowed_congestion_control(struct ctl_table *ctl,
174
					   int write,
175 176 177
					   void __user *buffer, size_t *lenp,
					   loff_t *ppos)
{
178
	struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
179 180 181 182 183 184 185
	int ret;

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

	tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
186
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
187 188 189 190 191 192
	if (write && ret == 0)
		ret = tcp_set_allowed_congestion_control(tbl.data);
	kfree(tbl.data);
	return ret;
}

193
static int ipv4_tcp_mem(struct ctl_table *ctl, int write,
G
Glauber Costa 已提交
194 195 196 197 198 199
			   void __user *buffer, size_t *lenp,
			   loff_t *ppos)
{
	int ret;
	unsigned long vec[3];
	struct net *net = current->nsproxy->net_ns;
A
Andrew Morton 已提交
200
#ifdef CONFIG_MEMCG_KMEM
201 202
	struct mem_cgroup *memcg;
#endif
G
Glauber Costa 已提交
203

204
	struct ctl_table tmp = {
G
Glauber Costa 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218
		.data = &vec,
		.maxlen = sizeof(vec),
		.mode = ctl->mode,
	};

	if (!write) {
		ctl->data = &net->ipv4.sysctl_tcp_mem;
		return proc_doulongvec_minmax(ctl, write, buffer, lenp, ppos);
	}

	ret = proc_doulongvec_minmax(&tmp, write, buffer, lenp, ppos);
	if (ret)
		return ret;

A
Andrew Morton 已提交
219
#ifdef CONFIG_MEMCG_KMEM
220 221 222 223 224 225 226 227 228
	rcu_read_lock();
	memcg = mem_cgroup_from_task(current);

	tcp_prot_mem(memcg, vec[0], 0);
	tcp_prot_mem(memcg, vec[1], 1);
	tcp_prot_mem(memcg, vec[2], 2);
	rcu_read_unlock();
#endif

G
Glauber Costa 已提交
229 230 231 232 233 234 235
	net->ipv4.sysctl_tcp_mem[0] = vec[0];
	net->ipv4.sysctl_tcp_mem[1] = vec[1];
	net->ipv4.sysctl_tcp_mem[2] = vec[2];

	return 0;
}

236 237 238
static int proc_tcp_fastopen_key(struct ctl_table *ctl, int write,
				 void __user *buffer, size_t *lenp,
				 loff_t *ppos)
239
{
240
	struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
241 242 243 244 245 246 247 248 249 250 251 252
	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);
253 254
	else
		memset(user_key, 0, sizeof(user_key));
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
	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;
		}
		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;
}

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

778 779 780 781 782 783
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 已提交
784
		.proc_handler	= proc_dointvec
785 786 787 788 789 790
	},
	{
		.procname	= "icmp_echo_ignore_broadcasts",
		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
791
		.proc_handler	= proc_dointvec
792 793 794 795 796 797
	},
	{
		.procname	= "icmp_ignore_bogus_error_responses",
		.data		= &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
798
		.proc_handler	= proc_dointvec
799 800 801 802 803 804
	},
	{
		.procname	= "icmp_errors_use_inbound_ifaddr",
		.data		= &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
805
		.proc_handler	= proc_dointvec
806 807 808 809 810 811
	},
	{
		.procname	= "icmp_ratelimit",
		.data		= &init_net.ipv4.sysctl_icmp_ratelimit,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
812
		.proc_handler	= proc_dointvec_ms_jiffies,
813 814 815 816 817 818
	},
	{
		.procname	= "icmp_ratemask",
		.data		= &init_net.ipv4.sysctl_icmp_ratemask,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
819
		.proc_handler	= proc_dointvec
820
	},
821 822 823
	{
		.procname	= "ping_group_range",
		.data		= &init_net.ipv4.sysctl_ping_group_range,
824
		.maxlen		= sizeof(gid_t)*2,
825 826 827
		.mode		= 0644,
		.proc_handler	= ipv4_ping_group_range,
	},
828 829 830 831 832 833 834
	{
		.procname	= "tcp_ecn",
		.data		= &init_net.ipv4.sysctl_tcp_ecn,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= proc_dointvec
	},
G
Glauber Costa 已提交
835 836 837 838 839 840
	{
		.procname	= "tcp_mem",
		.maxlen		= sizeof(init_net.ipv4.sysctl_tcp_mem),
		.mode		= 0644,
		.proc_handler	= ipv4_tcp_mem,
	},
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 852 853 854 855 856 857 858 859 860 861 862 863 864 865
		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;
866
		table[6].data =
867
			&net->ipv4.sysctl_ping_group_range;
868 869
		table[7].data =
			&net->ipv4.sysctl_tcp_ecn;
870

871 872 873
		/* Don't export sysctls to unprivileged users */
		if (net->user_ns != &init_user_ns)
			table[0].procname = NULL;
874 875
	}

876 877 878 879
	/*
	 * Sane defaults - nobody may create ping sockets.
	 * Boot scripts should set this to distro-specific group.
	 */
880 881
	net->ipv4.sysctl_ping_group_range[0] = make_kgid(&init_user_ns, 1);
	net->ipv4.sysctl_ping_group_range[1] = make_kgid(&init_user_ns, 0);
882

883
	tcp_init_mem(net);
G
Glauber Costa 已提交
884

885
	net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
886 887 888
	if (net->ipv4.ipv4_hdr == NULL)
		goto err_reg;

889
	return 0;
890 891

err_reg:
O
Octavian Purdila 已提交
892
	if (!net_eq(net, &init_net))
893 894 895
		kfree(table);
err_alloc:
	return -ENOMEM;
896 897 898 899
}

static __net_exit void ipv4_sysctl_exit_net(struct net *net)
{
900 901 902 903 904
	struct ctl_table *table;

	table = net->ipv4.ipv4_hdr->ctl_table_arg;
	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
	kfree(table);
905 906 907 908 909 910 911
}

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

912 913 914
static __init int sysctl_ipv4_init(void)
{
	struct ctl_table_header *hdr;
915 916 917 918 919 920 921 922 923 924
	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;
925

926
	hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
927 928 929 930
	if (hdr == NULL)
		return -ENOMEM;

	if (register_pernet_subsys(&ipv4_sysctl_ops)) {
931
		unregister_net_sysctl_table(hdr);
932 933 934 935
		return -ENOMEM;
	}

	return 0;
936 937 938
}

__initcall(sysctl_ipv4_init);