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

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

/* Validate changes from /proc interface. */
50
static int ipv4_local_port_range(ctl_table *table, int write,
51 52 53 54
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
	int ret;
E
Eric Dumazet 已提交
55
	int range[2];
56 57 58 59 60 61 62 63
	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 已提交
64
	inet_get_local_port_range(range, range + 1);
65
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
66 67

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

	return ret;
}

77

78
static void inet_get_ping_group_range_table(struct ctl_table *table, gid_t *low, gid_t *high)
79 80 81 82 83 84 85 86 87 88 89 90
{
	gid_t *data = table->data;
	unsigned seq;
	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 */
91
static void set_ping_group_range(struct ctl_table *table, gid_t range[2])
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
{
	gid_t *data = table->data;
	write_seqlock(&sysctl_local_ports.lock);
	data[0] = range[0];
	data[1] = range[1];
	write_sequnlock(&sysctl_local_ports.lock);
}

/* Validate changes from /proc interface. */
static int ipv4_ping_group_range(ctl_table *table, int write,
				 void __user *buffer,
				 size_t *lenp, loff_t *ppos)
{
	int ret;
	gid_t range[2];
	ctl_table tmp = {
		.data = &range,
		.maxlen = sizeof(range),
		.mode = table->mode,
		.extra1 = &ip_ping_group_range_min,
		.extra2 = &ip_ping_group_range_max,
	};

	inet_get_ping_group_range_table(table, range, range + 1);
	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);

	if (write && ret == 0)
		set_ping_group_range(table, range);

	return ret;
}

124
static int proc_tcp_congestion_control(ctl_table *ctl, int write,
125 126 127 128 129 130 131 132 133 134 135
				       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);

136
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
137 138 139 140 141
	if (write && ret == 0)
		ret = tcp_set_default_congestion_control(val);
	return ret;
}

142
static int proc_tcp_available_congestion_control(ctl_table *ctl,
143
						 int write,
144 145 146 147 148 149 150 151 152 153
						 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);
154
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
155 156 157 158
	kfree(tbl.data);
	return ret;
}

159
static int proc_allowed_congestion_control(ctl_table *ctl,
160
					   int write,
161 162 163 164 165 166 167 168 169 170 171
					   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);
172
	ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
173 174 175 176 177 178
	if (write && ret == 0)
		ret = tcp_set_allowed_congestion_control(tbl.data);
	kfree(tbl.data);
	return ret;
}

G
Glauber Costa 已提交
179 180 181 182 183 184 185
static int ipv4_tcp_mem(ctl_table *ctl, int write,
			   void __user *buffer, size_t *lenp,
			   loff_t *ppos)
{
	int ret;
	unsigned long vec[3];
	struct net *net = current->nsproxy->net_ns;
186 187 188
#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
	struct mem_cgroup *memcg;
#endif
G
Glauber Costa 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204

	ctl_table tmp = {
		.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;

205 206 207 208 209 210 211 212 213 214
#ifdef CONFIG_CGROUP_MEM_RES_CTLR_KMEM
	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 已提交
215 216 217 218 219 220 221
	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;
}

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

705 706 707 708 709 710
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 已提交
711
		.proc_handler	= proc_dointvec
712 713 714 715 716 717
	},
	{
		.procname	= "icmp_echo_ignore_broadcasts",
		.data		= &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
718
		.proc_handler	= proc_dointvec
719 720 721 722 723 724
	},
	{
		.procname	= "icmp_ignore_bogus_error_responses",
		.data		= &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
725
		.proc_handler	= proc_dointvec
726 727 728 729 730 731
	},
	{
		.procname	= "icmp_errors_use_inbound_ifaddr",
		.data		= &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
732
		.proc_handler	= proc_dointvec
733 734 735 736 737 738
	},
	{
		.procname	= "icmp_ratelimit",
		.data		= &init_net.ipv4.sysctl_icmp_ratelimit,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
739
		.proc_handler	= proc_dointvec_ms_jiffies,
740 741 742 743 744 745
	},
	{
		.procname	= "icmp_ratemask",
		.data		= &init_net.ipv4.sysctl_icmp_ratemask,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
746
		.proc_handler	= proc_dointvec
747
	},
748 749 750 751 752
	{
		.procname	= "rt_cache_rebuild_count",
		.data		= &init_net.ipv4.sysctl_rt_cache_rebuild_count,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
753
		.proc_handler	= proc_dointvec
754
	},
755 756 757 758 759 760 761
	{
		.procname	= "ping_group_range",
		.data		= &init_net.ipv4.sysctl_ping_group_range,
		.maxlen		= sizeof(init_net.ipv4.sysctl_ping_group_range),
		.mode		= 0644,
		.proc_handler	= ipv4_ping_group_range,
	},
G
Glauber Costa 已提交
762 763 764 765 766 767
	{
		.procname	= "tcp_mem",
		.maxlen		= sizeof(init_net.ipv4.sysctl_tcp_mem),
		.mode		= 0644,
		.proc_handler	= ipv4_tcp_mem,
	},
768 769 770
	{ }
};

771
struct ctl_path net_ipv4_ctl_path[] = {
772 773
	{ .procname = "net", },
	{ .procname = "ipv4", },
774 775
	{ },
};
776
EXPORT_SYMBOL_GPL(net_ipv4_ctl_path);
777

778 779
static __net_init int ipv4_sysctl_init_net(struct net *net)
{
780 781 782
	struct ctl_table *table;

	table = ipv4_net_table;
O
Octavian Purdila 已提交
783
	if (!net_eq(net, &init_net)) {
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
		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;
800 801
		table[6].data =
			&net->ipv4.sysctl_rt_cache_rebuild_count;
802 803 804
		table[7].data =
			&net->ipv4.sysctl_ping_group_range;

805 806
	}

807 808 809 810 811 812 813
	/*
	 * Sane defaults - nobody may create ping sockets.
	 * Boot scripts should set this to distro-specific group.
	 */
	net->ipv4.sysctl_ping_group_range[0] = 1;
	net->ipv4.sysctl_ping_group_range[1] = 0;

814 815
	net->ipv4.sysctl_rt_cache_rebuild_count = 4;

816
	tcp_init_mem(net);
G
Glauber Costa 已提交
817

818 819 820 821 822
	net->ipv4.ipv4_hdr = register_net_sysctl_table(net,
			net_ipv4_ctl_path, table);
	if (net->ipv4.ipv4_hdr == NULL)
		goto err_reg;

823
	return 0;
824 825

err_reg:
O
Octavian Purdila 已提交
826
	if (!net_eq(net, &init_net))
827 828 829
		kfree(table);
err_alloc:
	return -ENOMEM;
830 831 832 833
}

static __net_exit void ipv4_sysctl_exit_net(struct net *net)
{
834 835 836 837 838
	struct ctl_table *table;

	table = net->ipv4.ipv4_hdr->ctl_table_arg;
	unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
	kfree(table);
839 840 841 842 843 844 845
}

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

846 847 848
static __init int sysctl_ipv4_init(void)
{
	struct ctl_table_header *hdr;
849 850 851 852 853 854 855 856 857 858
	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;
859

860
	hdr = register_sysctl_paths(net_ipv4_ctl_path, ipv4_table);
861 862 863 864 865 866 867 868 869
	if (hdr == NULL)
		return -ENOMEM;

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

	return 0;
870 871 872
}

__initcall(sysctl_ipv4_init);