blob: d6880a6149ee80c6c75f4fe75b46a9d18d204d5d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl_net_ipv4.c: sysctl interface to net IPV4 subsystem.
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Begun April 1, 1996, Mike Shaver.
5 * Added /proc/sys/net/ipv4 directory entry (empty =) ). [MS]
6 */
7
8#include <linux/mm.h>
9#include <linux/module.h>
10#include <linux/sysctl.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030011#include <linux/igmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020012#include <linux/inetdevice.h>
Stephen Hemminger227b60f2007-10-10 17:30:46 -070013#include <linux/seqlock.h>
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -080014#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000016#include <linux/nsproxy.h>
Glauber Costa3dc43e32011-12-11 21:47:05 +000017#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/snmp.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030019#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <net/ip.h>
21#include <net/route.h>
22#include <net/tcp.h>
Hideo Aoki95766ff2007-12-31 00:29:24 -080023#include <net/udp.h>
Paul Moore446fda42006-08-03 16:48:06 -070024#include <net/cipso_ipv4.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070025#include <net/inet_frag.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000026#include <net/ping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Herbert Xu89cee8b2005-12-13 23:14:27 -080028static int zero;
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +000029static int one = 1;
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +000030static int four = 4;
Eric Dumazet43e122b2015-08-21 17:38:02 -070031static int thousand = 1000;
Eric Dumazet95bd09e2013-08-27 05:46:32 -070032static int gso_max_segs = GSO_MAX_SEGS;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090033static int tcp_retr1_max = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int ip_local_port_range_min[] = { 1, 1 };
35static int ip_local_port_range_max[] = { 65535, 65535 };
Alexey Dobriyan0147fc02010-11-22 12:54:21 +000036static int tcp_adv_win_scale_min = -31;
37static int tcp_adv_win_scale_max = 31;
Krister Johansen4548b682017-01-20 17:49:11 -080038static int ip_privileged_port_min;
39static int ip_privileged_port_max = 65535;
Eric Dumazet249fab72010-12-13 12:16:14 -080040static int ip_ttl_min = 1;
41static int ip_ttl_max = 255;
Michal Tesar651e9272013-07-19 14:09:01 +020042static int tcp_syn_retries_min = 1;
43static int tcp_syn_retries_max = MAX_TCP_SYNCNT;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000044static int ip_ping_group_range_min[] = { 0, 0 };
45static int ip_ping_group_range_max[] = { GID_T_MAX, GID_T_MAX };
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Stephen Hemminger227b60f2007-10-10 17:30:46 -070047/* Update system visible IP port range */
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070048static void set_local_port_range(struct net *net, int range[2])
Stephen Hemminger227b60f2007-10-10 17:30:46 -070049{
Eric Dumazeted2dfd92015-05-27 11:34:37 -070050 bool same_parity = !((range[0] ^ range[1]) & 1);
51
WANG Cong4ee3bd42015-11-03 14:32:57 -080052 write_seqlock_bh(&net->ipv4.ip_local_ports.lock);
Eric Dumazeted2dfd92015-05-27 11:34:37 -070053 if (same_parity && !net->ipv4.ip_local_ports.warned) {
54 net->ipv4.ip_local_ports.warned = true;
55 pr_err_ratelimited("ip_local_port_range: prefer different parity for start/end values.\n");
56 }
Cong Wangc9d8f1a2014-05-06 11:02:49 -070057 net->ipv4.ip_local_ports.range[0] = range[0];
58 net->ipv4.ip_local_ports.range[1] = range[1];
WANG Cong4ee3bd42015-11-03 14:32:57 -080059 write_sequnlock_bh(&net->ipv4.ip_local_ports.lock);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070060}
61
62/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -070063static int ipv4_local_port_range(struct ctl_table *table, int write,
Stephen Hemminger227b60f2007-10-10 17:30:46 -070064 void __user *buffer,
65 size_t *lenp, loff_t *ppos)
66{
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070067 struct net *net =
Cong Wangc9d8f1a2014-05-06 11:02:49 -070068 container_of(table->data, struct net, ipv4.ip_local_ports.range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070069 int ret;
Eric Dumazet3c689b72008-10-08 14:18:04 -070070 int range[2];
Joe Perchesfe2c6332013-06-11 23:04:25 -070071 struct ctl_table tmp = {
Stephen Hemminger227b60f2007-10-10 17:30:46 -070072 .data = &range,
73 .maxlen = sizeof(range),
74 .mode = table->mode,
75 .extra1 = &ip_local_port_range_min,
76 .extra2 = &ip_local_port_range_max,
77 };
78
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070079 inet_get_local_port_range(net, &range[0], &range[1]);
80
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070081 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070082
83 if (write && ret == 0) {
Krister Johansen4548b682017-01-20 17:49:11 -080084 /* Ensure that the upper limit is not smaller than the lower,
85 * and that the lower does not encroach upon the privileged
86 * port limit.
87 */
88 if ((range[1] < range[0]) ||
89 (range[0] < net->ipv4.sysctl_ip_prot_sock))
Stephen Hemminger227b60f2007-10-10 17:30:46 -070090 ret = -EINVAL;
91 else
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070092 set_local_port_range(net, range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070093 }
94
95 return ret;
96}
97
Krister Johansen4548b682017-01-20 17:49:11 -080098/* Validate changes from /proc interface. */
99static int ipv4_privileged_ports(struct ctl_table *table, int write,
100 void __user *buffer, size_t *lenp, loff_t *ppos)
101{
102 struct net *net = container_of(table->data, struct net,
103 ipv4.sysctl_ip_prot_sock);
104 int ret;
105 int pports;
106 int range[2];
107 struct ctl_table tmp = {
108 .data = &pports,
109 .maxlen = sizeof(pports),
110 .mode = table->mode,
111 .extra1 = &ip_privileged_port_min,
112 .extra2 = &ip_privileged_port_max,
113 };
114
115 pports = net->ipv4.sysctl_ip_prot_sock;
116
117 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
118
119 if (write && ret == 0) {
120 inet_get_local_port_range(net, &range[0], &range[1]);
121 /* Ensure that the local port range doesn't overlap with the
122 * privileged port range.
123 */
124 if (range[0] < pports)
125 ret = -EINVAL;
126 else
127 net->ipv4.sysctl_ip_prot_sock = pports;
128 }
129
130 return ret;
131}
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000132
Eric W. Biederman7064d162012-05-24 10:34:21 -0600133static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000134{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600135 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700136 struct net *net =
Cong Wangba6b9182014-05-06 11:02:50 -0700137 container_of(table->data, struct net, ipv4.ping_group_range.range);
Eric Dumazet95c96172012-04-15 05:58:06 +0000138 unsigned int seq;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000139 do {
WANG Cong396a30c2016-10-20 14:19:46 -0700140 seq = read_seqbegin(&net->ipv4.ping_group_range.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000141
142 *low = data[0];
143 *high = data[1];
WANG Cong396a30c2016-10-20 14:19:46 -0700144 } while (read_seqretry(&net->ipv4.ping_group_range.lock, seq));
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000145}
146
147/* Update system visible IP port range */
Eric W. Biederman7064d162012-05-24 10:34:21 -0600148static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000149{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600150 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700151 struct net *net =
Cong Wangba6b9182014-05-06 11:02:50 -0700152 container_of(table->data, struct net, ipv4.ping_group_range.range);
WANG Cong396a30c2016-10-20 14:19:46 -0700153 write_seqlock(&net->ipv4.ping_group_range.lock);
Eric W. Biederman7064d162012-05-24 10:34:21 -0600154 data[0] = low;
155 data[1] = high;
WANG Cong396a30c2016-10-20 14:19:46 -0700156 write_sequnlock(&net->ipv4.ping_group_range.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000157}
158
159/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -0700160static int ipv4_ping_group_range(struct ctl_table *table, int write,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000161 void __user *buffer,
162 size_t *lenp, loff_t *ppos)
163{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600164 struct user_namespace *user_ns = current_user_ns();
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000165 int ret;
Eric W. Biederman7064d162012-05-24 10:34:21 -0600166 gid_t urange[2];
167 kgid_t low, high;
Joe Perchesfe2c6332013-06-11 23:04:25 -0700168 struct ctl_table tmp = {
Eric W. Biederman7064d162012-05-24 10:34:21 -0600169 .data = &urange,
170 .maxlen = sizeof(urange),
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000171 .mode = table->mode,
172 .extra1 = &ip_ping_group_range_min,
173 .extra2 = &ip_ping_group_range_max,
174 };
175
Eric W. Biederman7064d162012-05-24 10:34:21 -0600176 inet_get_ping_group_range_table(table, &low, &high);
177 urange[0] = from_kgid_munged(user_ns, low);
178 urange[1] = from_kgid_munged(user_ns, high);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000179 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
180
Eric W. Biederman7064d162012-05-24 10:34:21 -0600181 if (write && ret == 0) {
182 low = make_kgid(user_ns, urange[0]);
183 high = make_kgid(user_ns, urange[1]);
184 if (!gid_valid(low) || !gid_valid(high) ||
185 (urange[1] < urange[0]) || gid_lt(high, low)) {
186 low = make_kgid(&init_user_ns, 1);
187 high = make_kgid(&init_user_ns, 0);
188 }
189 set_ping_group_range(table, low, high);
190 }
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000191
192 return ret;
193}
194
Joe Perchesfe2c6332013-06-11 23:04:25 -0700195static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700196 void __user *buffer, size_t *lenp, loff_t *ppos)
197{
198 char val[TCP_CA_NAME_MAX];
Joe Perchesfe2c6332013-06-11 23:04:25 -0700199 struct ctl_table tbl = {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700200 .data = val,
201 .maxlen = TCP_CA_NAME_MAX,
202 };
203 int ret;
204
205 tcp_get_default_congestion_control(val);
206
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700207 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700208 if (write && ret == 0)
209 ret = tcp_set_default_congestion_control(val);
210 return ret;
211}
212
Joe Perchesfe2c6332013-06-11 23:04:25 -0700213static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700214 int write,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800215 void __user *buffer, size_t *lenp,
216 loff_t *ppos)
217{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700218 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800219 int ret;
220
221 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
222 if (!tbl.data)
223 return -ENOMEM;
224 tcp_get_available_congestion_control(tbl.data, TCP_CA_BUF_MAX);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700225 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800226 kfree(tbl.data);
227 return ret;
228}
229
Joe Perchesfe2c6332013-06-11 23:04:25 -0700230static int proc_allowed_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700231 int write,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800232 void __user *buffer, size_t *lenp,
233 loff_t *ppos)
234{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700235 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800236 int ret;
237
238 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
239 if (!tbl.data)
240 return -ENOMEM;
241
242 tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700243 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800244 if (write && ret == 0)
245 ret = tcp_set_allowed_congestion_control(tbl.data);
246 kfree(tbl.data);
247 return ret;
248}
249
Joe Perchesfe2c6332013-06-11 23:04:25 -0700250static int proc_tcp_fastopen_key(struct ctl_table *ctl, int write,
251 void __user *buffer, size_t *lenp,
252 loff_t *ppos)
Jerry Chu10467162012-08-31 12:29:11 +0000253{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700254 struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
Jerry Chu10467162012-08-31 12:29:11 +0000255 struct tcp_fastopen_context *ctxt;
256 int ret;
257 u32 user_key[4]; /* 16 bytes, matching TCP_FASTOPEN_KEY_LENGTH */
258
259 tbl.data = kmalloc(tbl.maxlen, GFP_KERNEL);
260 if (!tbl.data)
261 return -ENOMEM;
262
263 rcu_read_lock();
264 ctxt = rcu_dereference(tcp_fastopen_ctx);
265 if (ctxt)
266 memcpy(user_key, ctxt->key, TCP_FASTOPEN_KEY_LENGTH);
Alan Cox0e24c4f2012-10-11 06:24:14 +0000267 else
268 memset(user_key, 0, sizeof(user_key));
Jerry Chu10467162012-08-31 12:29:11 +0000269 rcu_read_unlock();
270
271 snprintf(tbl.data, tbl.maxlen, "%08x-%08x-%08x-%08x",
272 user_key[0], user_key[1], user_key[2], user_key[3]);
273 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
274
275 if (write && ret == 0) {
276 if (sscanf(tbl.data, "%x-%x-%x-%x", user_key, user_key + 1,
277 user_key + 2, user_key + 3) != 4) {
278 ret = -EINVAL;
279 goto bad_key;
280 }
Hannes Frederic Sowa222e83d2013-10-19 21:48:58 +0200281 /* Generate a dummy secret but don't publish it. This
282 * is needed so we don't regenerate a new key on the
283 * first invocation of tcp_fastopen_cookie_gen
284 */
285 tcp_fastopen_init_key_once(false);
Jerry Chu10467162012-08-31 12:29:11 +0000286 tcp_fastopen_reset_cipher(user_key, TCP_FASTOPEN_KEY_LENGTH);
287 }
288
289bad_key:
290 pr_debug("proc FO key set 0x%x-%x-%x-%x <- 0x%s: %u\n",
291 user_key[0], user_key[1], user_key[2], user_key[3],
292 (char *)tbl.data, ret);
293 kfree(tbl.data);
294 return ret;
295}
296
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800297static struct ctl_table ipv4_table[] = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900298 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .procname = "tcp_timestamps",
300 .data = &sysctl_tcp_timestamps,
301 .maxlen = sizeof(int),
302 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800303 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900305 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .procname = "tcp_window_scaling",
307 .data = &sysctl_tcp_window_scaling,
308 .maxlen = sizeof(int),
309 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800310 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900312 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .procname = "tcp_sack",
314 .data = &sysctl_tcp_sack,
315 .maxlen = sizeof(int),
316 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800317 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900319 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 .procname = "tcp_retrans_collapse",
321 .data = &sysctl_tcp_retrans_collapse,
322 .maxlen = sizeof(int),
323 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800324 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900326 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 .procname = "tcp_max_orphans",
328 .data = &sysctl_tcp_max_orphans,
329 .maxlen = sizeof(int),
330 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800331 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 },
333 {
Yuchung Cheng2100c8d2012-07-19 06:43:05 +0000334 .procname = "tcp_fastopen",
335 .data = &sysctl_tcp_fastopen,
336 .maxlen = sizeof(int),
337 .mode = 0644,
338 .proc_handler = proc_dointvec,
339 },
340 {
Jerry Chu10467162012-08-31 12:29:11 +0000341 .procname = "tcp_fastopen_key",
342 .mode = 0600,
343 .maxlen = ((TCP_FASTOPEN_KEY_LENGTH * 2) + 10),
344 .proc_handler = proc_tcp_fastopen_key,
345 },
346 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 .procname = "tcp_abort_on_overflow",
348 .data = &sysctl_tcp_abort_on_overflow,
349 .maxlen = sizeof(int),
350 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800351 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 },
353 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 .procname = "tcp_stdurg",
355 .data = &sysctl_tcp_stdurg,
356 .maxlen = sizeof(int),
357 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800358 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 },
360 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 .procname = "tcp_rfc1337",
362 .data = &sysctl_tcp_rfc1337,
363 .maxlen = sizeof(int),
364 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800365 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 },
367 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .procname = "inet_peer_threshold",
369 .data = &inet_peer_threshold,
370 .maxlen = sizeof(int),
371 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800372 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 },
374 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .procname = "inet_peer_minttl",
376 .data = &inet_peer_minttl,
377 .maxlen = sizeof(int),
378 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800379 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 },
381 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 .procname = "inet_peer_maxttl",
383 .data = &inet_peer_maxttl,
384 .maxlen = sizeof(int),
385 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800386 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 },
388 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .procname = "tcp_fack",
390 .data = &sysctl_tcp_fack,
391 .maxlen = sizeof(int),
392 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800393 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 },
395 {
Yuchung Cheng4f41b1c2015-10-16 21:57:47 -0700396 .procname = "tcp_recovery",
397 .data = &sysctl_tcp_recovery,
398 .maxlen = sizeof(int),
399 .mode = 0644,
400 .proc_handler = proc_dointvec,
401 },
402 {
Eric Dumazetdca145f2014-10-27 21:45:24 -0700403 .procname = "tcp_max_reordering",
404 .data = &sysctl_tcp_max_reordering,
405 .maxlen = sizeof(int),
406 .mode = 0644,
407 .proc_handler = proc_dointvec
408 },
409 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .procname = "tcp_dsack",
411 .data = &sysctl_tcp_dsack,
412 .maxlen = sizeof(int),
413 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800414 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 },
416 {
Eric W. Biedermana4fe34b2013-10-19 16:25:36 -0700417 .procname = "tcp_mem",
418 .maxlen = sizeof(sysctl_tcp_mem),
419 .data = &sysctl_tcp_mem,
420 .mode = 0644,
421 .proc_handler = proc_doulongvec_minmax,
422 },
423 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 .procname = "tcp_wmem",
425 .data = &sysctl_tcp_wmem,
426 .maxlen = sizeof(sysctl_tcp_wmem),
427 .mode = 0644,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000428 .proc_handler = proc_dointvec_minmax,
Calvin Owens5d378522015-08-13 14:21:34 -0700429 .extra1 = &one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 },
431 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 .procname = "tcp_rmem",
433 .data = &sysctl_tcp_rmem,
434 .maxlen = sizeof(sysctl_tcp_rmem),
435 .mode = 0644,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000436 .proc_handler = proc_dointvec_minmax,
Calvin Owens5d378522015-08-13 14:21:34 -0700437 .extra1 = &one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 },
439 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 .procname = "tcp_app_win",
441 .data = &sysctl_tcp_app_win,
442 .maxlen = sizeof(int),
443 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800444 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 },
446 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 .procname = "tcp_adv_win_scale",
448 .data = &sysctl_tcp_adv_win_scale,
449 .maxlen = sizeof(int),
450 .mode = 0644,
Alexey Dobriyan0147fc02010-11-22 12:54:21 +0000451 .proc_handler = proc_dointvec_minmax,
452 .extra1 = &tcp_adv_win_scale_min,
453 .extra2 = &tcp_adv_win_scale_max,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 },
455 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .procname = "tcp_frto",
457 .data = &sysctl_tcp_frto,
458 .maxlen = sizeof(int),
459 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800460 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 },
462 {
Yuchung Chengf6722582015-10-16 21:57:42 -0700463 .procname = "tcp_min_rtt_wlen",
464 .data = &sysctl_tcp_min_rtt_wlen,
465 .maxlen = sizeof(int),
466 .mode = 0644,
467 .proc_handler = proc_dointvec
468 },
469 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .procname = "tcp_low_latency",
471 .data = &sysctl_tcp_low_latency,
472 .maxlen = sizeof(int),
473 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800474 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 },
476 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 .procname = "tcp_no_metrics_save",
478 .data = &sysctl_tcp_nometrics_save,
479 .maxlen = sizeof(int),
480 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800481 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 },
483 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 .procname = "tcp_moderate_rcvbuf",
485 .data = &sysctl_tcp_moderate_rcvbuf,
486 .maxlen = sizeof(int),
487 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800488 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 },
490 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .procname = "tcp_tso_win_divisor",
492 .data = &sysctl_tcp_tso_win_divisor,
493 .maxlen = sizeof(int),
494 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800495 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 },
497 {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700498 .procname = "tcp_congestion_control",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 .mode = 0644,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700500 .maxlen = TCP_CA_NAME_MAX,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800501 .proc_handler = proc_tcp_congestion_control,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 },
Stephen Hemminger9772efb2005-11-10 17:09:53 -0800503 {
Rick Jones15d99e02006-03-20 22:40:29 -0800504 .procname = "tcp_workaround_signed_windows",
505 .data = &sysctl_tcp_workaround_signed_windows,
506 .maxlen = sizeof(int),
507 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800508 .proc_handler = proc_dointvec
Rick Jones15d99e02006-03-20 22:40:29 -0800509 },
Eric Dumazet46d3cea2012-07-11 05:50:31 +0000510 {
511 .procname = "tcp_limit_output_bytes",
512 .data = &sysctl_tcp_limit_output_bytes,
513 .maxlen = sizeof(int),
514 .mode = 0644,
515 .proc_handler = proc_dointvec
516 },
Eric Dumazet282f23c2012-07-17 10:13:05 +0200517 {
518 .procname = "tcp_challenge_ack_limit",
519 .data = &sysctl_tcp_challenge_ack_limit,
520 .maxlen = sizeof(int),
521 .mode = 0644,
522 .proc_handler = proc_dointvec
523 },
David S. Miller35089bb2006-06-13 22:33:04 -0700524 {
David S. Miller35089bb2006-06-13 22:33:04 -0700525 .procname = "tcp_slow_start_after_idle",
526 .data = &sysctl_tcp_slow_start_after_idle,
527 .maxlen = sizeof(int),
528 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800529 .proc_handler = proc_dointvec
David S. Miller35089bb2006-06-13 22:33:04 -0700530 },
Paul Moore446fda42006-08-03 16:48:06 -0700531#ifdef CONFIG_NETLABEL
532 {
Paul Moore446fda42006-08-03 16:48:06 -0700533 .procname = "cipso_cache_enable",
534 .data = &cipso_v4_cache_enabled,
535 .maxlen = sizeof(int),
536 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800537 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700538 },
539 {
Paul Moore446fda42006-08-03 16:48:06 -0700540 .procname = "cipso_cache_bucket_size",
541 .data = &cipso_v4_cache_bucketsize,
542 .maxlen = sizeof(int),
543 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800544 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700545 },
546 {
Paul Moore446fda42006-08-03 16:48:06 -0700547 .procname = "cipso_rbm_optfmt",
548 .data = &cipso_v4_rbm_optfmt,
549 .maxlen = sizeof(int),
550 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800551 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700552 },
553 {
Paul Moore446fda42006-08-03 16:48:06 -0700554 .procname = "cipso_rbm_strictvalid",
555 .data = &cipso_v4_rbm_strictvalid,
556 .maxlen = sizeof(int),
557 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800558 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700559 },
560#endif /* CONFIG_NETLABEL */
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800561 {
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800562 .procname = "tcp_available_congestion_control",
563 .maxlen = TCP_CA_BUF_MAX,
564 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800565 .proc_handler = proc_tcp_available_congestion_control,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800566 },
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800567 {
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800568 .procname = "tcp_allowed_congestion_control",
569 .maxlen = TCP_CA_BUF_MAX,
570 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800571 .proc_handler = proc_allowed_congestion_control,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800572 },
John Heffner886236c2007-03-25 19:21:45 -0700573 {
Andreas Petlund36e31b0a2010-02-18 02:47:01 +0000574 .procname = "tcp_thin_linear_timeouts",
575 .data = &sysctl_tcp_thin_linear_timeouts,
576 .maxlen = sizeof(int),
577 .mode = 0644,
578 .proc_handler = proc_dointvec
579 },
Weilong Chen5797deb2013-12-23 14:37:31 +0800580 {
Yuchung Chengeed530b2012-05-02 13:30:03 +0000581 .procname = "tcp_early_retrans",
582 .data = &sysctl_tcp_early_retrans,
583 .maxlen = sizeof(int),
584 .mode = 0644,
585 .proc_handler = proc_dointvec_minmax,
586 .extra1 = &zero,
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000587 .extra2 = &four,
Yuchung Chengeed530b2012-05-02 13:30:03 +0000588 },
589 {
Eric Dumazet95bd09e2013-08-27 05:46:32 -0700590 .procname = "tcp_min_tso_segs",
591 .data = &sysctl_tcp_min_tso_segs,
592 .maxlen = sizeof(int),
593 .mode = 0644,
594 .proc_handler = proc_dointvec_minmax,
Eric Dumazetd6a4e262015-05-26 08:55:28 -0700595 .extra1 = &one,
Eric Dumazet95bd09e2013-08-27 05:46:32 -0700596 .extra2 = &gso_max_segs,
597 },
598 {
Eric Dumazet43e122b2015-08-21 17:38:02 -0700599 .procname = "tcp_pacing_ss_ratio",
600 .data = &sysctl_tcp_pacing_ss_ratio,
601 .maxlen = sizeof(int),
602 .mode = 0644,
603 .proc_handler = proc_dointvec_minmax,
604 .extra1 = &zero,
605 .extra2 = &thousand,
606 },
607 {
608 .procname = "tcp_pacing_ca_ratio",
609 .data = &sysctl_tcp_pacing_ca_ratio,
610 .maxlen = sizeof(int),
611 .mode = 0644,
612 .proc_handler = proc_dointvec_minmax,
613 .extra1 = &zero,
614 .extra2 = &thousand,
615 },
616 {
Eric Dumazetf54b3112013-12-05 22:36:05 -0800617 .procname = "tcp_autocorking",
618 .data = &sysctl_tcp_autocorking,
619 .maxlen = sizeof(int),
620 .mode = 0644,
621 .proc_handler = proc_dointvec_minmax,
622 .extra1 = &zero,
623 .extra2 = &one,
624 },
625 {
Neal Cardwell032ee422015-02-06 16:04:38 -0500626 .procname = "tcp_invalid_ratelimit",
627 .data = &sysctl_tcp_invalid_ratelimit,
628 .maxlen = sizeof(int),
629 .mode = 0644,
630 .proc_handler = proc_dointvec_ms_jiffies,
631 },
632 {
Eric Dumazet4cdf5072014-09-19 07:38:40 -0700633 .procname = "icmp_msgs_per_sec",
634 .data = &sysctl_icmp_msgs_per_sec,
635 .maxlen = sizeof(int),
636 .mode = 0644,
637 .proc_handler = proc_dointvec_minmax,
638 .extra1 = &zero,
639 },
640 {
641 .procname = "icmp_msgs_burst",
642 .data = &sysctl_icmp_msgs_burst,
643 .maxlen = sizeof(int),
644 .mode = 0644,
645 .proc_handler = proc_dointvec_minmax,
646 .extra1 = &zero,
647 },
648 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800649 .procname = "udp_mem",
650 .data = &sysctl_udp_mem,
651 .maxlen = sizeof(sysctl_udp_mem),
652 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +0000653 .proc_handler = proc_doulongvec_minmax,
Hideo Aoki95766ff2007-12-31 00:29:24 -0800654 },
655 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800656 .procname = "udp_rmem_min",
657 .data = &sysctl_udp_rmem_min,
658 .maxlen = sizeof(sysctl_udp_rmem_min),
659 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800660 .proc_handler = proc_dointvec_minmax,
Calvin Owens5d378522015-08-13 14:21:34 -0700661 .extra1 = &one
Hideo Aoki95766ff2007-12-31 00:29:24 -0800662 },
663 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800664 .procname = "udp_wmem_min",
665 .data = &sysctl_udp_wmem_min,
666 .maxlen = sizeof(sysctl_udp_wmem_min),
667 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800668 .proc_handler = proc_dointvec_minmax,
Calvin Owens5d378522015-08-13 14:21:34 -0700669 .extra1 = &one
Hideo Aoki95766ff2007-12-31 00:29:24 -0800670 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800671 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800673
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700674static struct ctl_table ipv4_net_table[] = {
675 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700676 .procname = "icmp_echo_ignore_all",
677 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_all,
678 .maxlen = sizeof(int),
679 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800680 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700681 },
682 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700683 .procname = "icmp_echo_ignore_broadcasts",
684 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
685 .maxlen = sizeof(int),
686 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800687 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700688 },
689 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700690 .procname = "icmp_ignore_bogus_error_responses",
691 .data = &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
692 .maxlen = sizeof(int),
693 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800694 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700695 },
696 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700697 .procname = "icmp_errors_use_inbound_ifaddr",
698 .data = &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
699 .maxlen = sizeof(int),
700 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800701 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700702 },
703 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700704 .procname = "icmp_ratelimit",
705 .data = &init_net.ipv4.sysctl_icmp_ratelimit,
706 .maxlen = sizeof(int),
707 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800708 .proc_handler = proc_dointvec_ms_jiffies,
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700709 },
710 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700711 .procname = "icmp_ratemask",
712 .data = &init_net.ipv4.sysctl_icmp_ratemask,
713 .maxlen = sizeof(int),
714 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800715 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700716 },
Neil Horman1080d702008-10-27 12:28:25 -0700717 {
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000718 .procname = "ping_group_range",
Cong Wangba6b9182014-05-06 11:02:50 -0700719 .data = &init_net.ipv4.ping_group_range.range,
Eric W. Biederman7064d162012-05-24 10:34:21 -0600720 .maxlen = sizeof(gid_t)*2,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000721 .mode = 0644,
722 .proc_handler = ipv4_ping_group_range,
723 },
Glauber Costa3dc43e32011-12-11 21:47:05 +0000724 {
Hannes Frederic Sowa5d134f12013-01-05 16:10:48 +0000725 .procname = "tcp_ecn",
726 .data = &init_net.ipv4.sysctl_tcp_ecn,
727 .maxlen = sizeof(int),
728 .mode = 0644,
729 .proc_handler = proc_dointvec
730 },
731 {
Daniel Borkmann49213552015-05-19 21:04:22 +0200732 .procname = "tcp_ecn_fallback",
733 .data = &init_net.ipv4.sysctl_tcp_ecn_fallback,
734 .maxlen = sizeof(int),
735 .mode = 0644,
736 .proc_handler = proc_dointvec
737 },
738 {
Nikolay Borisov287b7f32016-02-15 12:11:29 +0200739 .procname = "ip_dynaddr",
740 .data = &init_net.ipv4.sysctl_ip_dynaddr,
741 .maxlen = sizeof(int),
742 .mode = 0644,
743 .proc_handler = proc_dointvec
744 },
745 {
Nikolay Borisove21145a2016-02-15 12:11:30 +0200746 .procname = "ip_early_demux",
747 .data = &init_net.ipv4.sysctl_ip_early_demux,
748 .maxlen = sizeof(int),
749 .mode = 0644,
750 .proc_handler = proc_dointvec
751 },
752 {
Nikolay Borisovfa50d972016-02-15 12:11:27 +0200753 .procname = "ip_default_ttl",
754 .data = &init_net.ipv4.sysctl_ip_default_ttl,
755 .maxlen = sizeof(int),
756 .mode = 0644,
757 .proc_handler = proc_dointvec_minmax,
758 .extra1 = &ip_ttl_min,
759 .extra2 = &ip_ttl_max,
760 },
761 {
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700762 .procname = "ip_local_port_range",
Cong Wangc9d8f1a2014-05-06 11:02:49 -0700763 .maxlen = sizeof(init_net.ipv4.ip_local_ports.range),
764 .data = &init_net.ipv4.ip_local_ports.range,
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700765 .mode = 0644,
766 .proc_handler = ipv4_local_port_range,
767 },
Hannes Frederic Sowa974eda12013-12-14 05:13:38 +0100768 {
WANG Cong122ff242014-05-12 16:04:53 -0700769 .procname = "ip_local_reserved_ports",
770 .data = &init_net.ipv4.sysctl_local_reserved_ports,
771 .maxlen = 65536,
772 .mode = 0644,
773 .proc_handler = proc_do_large_bitmap,
774 },
775 {
Hannes Frederic Sowa974eda12013-12-14 05:13:38 +0100776 .procname = "ip_no_pmtu_disc",
777 .data = &init_net.ipv4.sysctl_ip_no_pmtu_disc,
778 .maxlen = sizeof(int),
779 .mode = 0644,
780 .proc_handler = proc_dointvec
781 },
Hannes Frederic Sowaf87c10a2014-01-09 10:01:15 +0100782 {
783 .procname = "ip_forward_use_pmtu",
784 .data = &init_net.ipv4.sysctl_ip_fwd_use_pmtu,
785 .maxlen = sizeof(int),
786 .mode = 0644,
787 .proc_handler = proc_dointvec,
788 },
Lorenzo Colittie1108612014-05-13 10:17:33 -0700789 {
Vincent Bernat49a60152014-09-05 15:09:03 +0200790 .procname = "ip_nonlocal_bind",
791 .data = &init_net.ipv4.sysctl_ip_nonlocal_bind,
792 .maxlen = sizeof(int),
793 .mode = 0644,
794 .proc_handler = proc_dointvec
795 },
796 {
Lorenzo Colittie1108612014-05-13 10:17:33 -0700797 .procname = "fwmark_reflect",
798 .data = &init_net.ipv4.sysctl_fwmark_reflect,
799 .maxlen = sizeof(int),
800 .mode = 0644,
801 .proc_handler = proc_dointvec,
802 },
Lorenzo Colitti84f39b02014-05-13 10:17:35 -0700803 {
804 .procname = "tcp_fwmark_accept",
805 .data = &init_net.ipv4.sysctl_tcp_fwmark_accept,
806 .maxlen = sizeof(int),
807 .mode = 0644,
808 .proc_handler = proc_dointvec,
809 },
David Ahern6dd9a142015-12-16 13:20:44 -0800810#ifdef CONFIG_NET_L3_MASTER_DEV
811 {
812 .procname = "tcp_l3mdev_accept",
813 .data = &init_net.ipv4.sysctl_tcp_l3mdev_accept,
814 .maxlen = sizeof(int),
815 .mode = 0644,
816 .proc_handler = proc_dointvec_minmax,
817 .extra1 = &zero,
818 .extra2 = &one,
819 },
820#endif
Fan Dub0f9ca52015-02-10 09:53:16 +0800821 {
822 .procname = "tcp_mtu_probing",
823 .data = &init_net.ipv4.sysctl_tcp_mtu_probing,
824 .maxlen = sizeof(int),
825 .mode = 0644,
826 .proc_handler = proc_dointvec,
827 },
828 {
829 .procname = "tcp_base_mss",
830 .data = &init_net.ipv4.sysctl_tcp_base_mss,
831 .maxlen = sizeof(int),
832 .mode = 0644,
833 .proc_handler = proc_dointvec,
834 },
Fan Du6b58e0a2015-03-06 11:18:23 +0800835 {
836 .procname = "tcp_probe_threshold",
837 .data = &init_net.ipv4.sysctl_tcp_probe_threshold,
838 .maxlen = sizeof(int),
839 .mode = 0644,
840 .proc_handler = proc_dointvec,
841 },
Fan Du05cbc0d2015-03-06 11:18:24 +0800842 {
843 .procname = "tcp_probe_interval",
844 .data = &init_net.ipv4.sysctl_tcp_probe_interval,
845 .maxlen = sizeof(int),
846 .mode = 0644,
847 .proc_handler = proc_dointvec,
848 },
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100849 {
850 .procname = "igmp_link_local_mcast_reports",
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200851 .data = &init_net.ipv4.sysctl_igmp_llm_reports,
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100852 .maxlen = sizeof(int),
853 .mode = 0644,
854 .proc_handler = proc_dointvec
855 },
Nikolay Borisov13b287e2016-01-07 16:38:43 +0200856 {
Nikolay Borisov815c5272016-02-08 23:29:21 +0200857 .procname = "igmp_max_memberships",
858 .data = &init_net.ipv4.sysctl_igmp_max_memberships,
859 .maxlen = sizeof(int),
860 .mode = 0644,
861 .proc_handler = proc_dointvec
862 },
863 {
Nikolay Borisov166b6b22016-02-08 23:29:22 +0200864 .procname = "igmp_max_msf",
865 .data = &init_net.ipv4.sysctl_igmp_max_msf,
866 .maxlen = sizeof(int),
867 .mode = 0644,
868 .proc_handler = proc_dointvec
869 },
Nikolay Borisov165094a2016-02-08 23:29:24 +0200870#ifdef CONFIG_IP_MULTICAST
871 {
872 .procname = "igmp_qrv",
873 .data = &init_net.ipv4.sysctl_igmp_qrv,
874 .maxlen = sizeof(int),
875 .mode = 0644,
876 .proc_handler = proc_dointvec_minmax,
877 .extra1 = &one
878 },
879#endif
Nikolay Borisov166b6b22016-02-08 23:29:22 +0200880 {
Nikolay Borisov13b287e2016-01-07 16:38:43 +0200881 .procname = "tcp_keepalive_time",
882 .data = &init_net.ipv4.sysctl_tcp_keepalive_time,
883 .maxlen = sizeof(int),
884 .mode = 0644,
885 .proc_handler = proc_dointvec_jiffies,
886 },
Nikolay Borisov9bd68612016-01-07 16:38:44 +0200887 {
888 .procname = "tcp_keepalive_probes",
889 .data = &init_net.ipv4.sysctl_tcp_keepalive_probes,
890 .maxlen = sizeof(int),
891 .mode = 0644,
892 .proc_handler = proc_dointvec
893 },
Nikolay Borisovb840d152016-01-07 16:38:45 +0200894 {
895 .procname = "tcp_keepalive_intvl",
896 .data = &init_net.ipv4.sysctl_tcp_keepalive_intvl,
897 .maxlen = sizeof(int),
898 .mode = 0644,
899 .proc_handler = proc_dointvec_jiffies,
900 },
Nikolay Borisov6fa25162016-02-03 09:46:49 +0200901 {
902 .procname = "tcp_syn_retries",
903 .data = &init_net.ipv4.sysctl_tcp_syn_retries,
904 .maxlen = sizeof(int),
905 .mode = 0644,
906 .proc_handler = proc_dointvec_minmax,
907 .extra1 = &tcp_syn_retries_min,
908 .extra2 = &tcp_syn_retries_max
909 },
Nikolay Borisov7c083ec2016-02-03 09:46:50 +0200910 {
911 .procname = "tcp_synack_retries",
912 .data = &init_net.ipv4.sysctl_tcp_synack_retries,
913 .maxlen = sizeof(int),
914 .mode = 0644,
915 .proc_handler = proc_dointvec
916 },
Nikolay Borisov12ed8242016-02-03 09:46:51 +0200917#ifdef CONFIG_SYN_COOKIES
918 {
919 .procname = "tcp_syncookies",
920 .data = &init_net.ipv4.sysctl_tcp_syncookies,
921 .maxlen = sizeof(int),
922 .mode = 0644,
923 .proc_handler = proc_dointvec
924 },
925#endif
Nikolay Borisov1043e252016-02-03 09:46:52 +0200926 {
927 .procname = "tcp_reordering",
928 .data = &init_net.ipv4.sysctl_tcp_reordering,
929 .maxlen = sizeof(int),
930 .mode = 0644,
931 .proc_handler = proc_dointvec
932 },
Nikolay Borisovae5c3f42016-02-03 09:46:53 +0200933 {
934 .procname = "tcp_retries1",
935 .data = &init_net.ipv4.sysctl_tcp_retries1,
936 .maxlen = sizeof(int),
937 .mode = 0644,
938 .proc_handler = proc_dointvec_minmax,
939 .extra2 = &tcp_retr1_max
940 },
Nikolay Borisovc6214a92016-02-03 09:46:54 +0200941 {
942 .procname = "tcp_retries2",
943 .data = &init_net.ipv4.sysctl_tcp_retries2,
944 .maxlen = sizeof(int),
945 .mode = 0644,
946 .proc_handler = proc_dointvec
947 },
Nikolay Borisovc402d9b2016-02-03 09:46:55 +0200948 {
949 .procname = "tcp_orphan_retries",
950 .data = &init_net.ipv4.sysctl_tcp_orphan_retries,
951 .maxlen = sizeof(int),
952 .mode = 0644,
953 .proc_handler = proc_dointvec
954 },
Nikolay Borisov1e579ca2016-02-03 09:46:56 +0200955 {
956 .procname = "tcp_fin_timeout",
957 .data = &init_net.ipv4.sysctl_tcp_fin_timeout,
958 .maxlen = sizeof(int),
959 .mode = 0644,
960 .proc_handler = proc_dointvec_jiffies,
961 },
Nikolay Borisov4979f2d2016-02-03 09:46:57 +0200962 {
963 .procname = "tcp_notsent_lowat",
964 .data = &init_net.ipv4.sysctl_tcp_notsent_lowat,
965 .maxlen = sizeof(unsigned int),
966 .mode = 0644,
Pavel Tikhomirovb007f092017-01-09 10:45:49 +0300967 .proc_handler = proc_douintvec,
Nikolay Borisov4979f2d2016-02-03 09:46:57 +0200968 },
Haishuang Yan56ab6b92016-12-25 14:33:16 +0800969 {
970 .procname = "tcp_tw_reuse",
971 .data = &init_net.ipv4.sysctl_tcp_tw_reuse,
972 .maxlen = sizeof(int),
973 .mode = 0644,
974 .proc_handler = proc_dointvec
975 },
Haishuang Yan1946e672016-12-28 17:52:32 +0800976 {
977 .procname = "tcp_max_tw_buckets",
978 .data = &init_net.ipv4.tcp_death_row.sysctl_max_tw_buckets,
979 .maxlen = sizeof(int),
980 .mode = 0644,
981 .proc_handler = proc_dointvec
982 },
983 {
984 .procname = "tcp_tw_recycle",
985 .data = &init_net.ipv4.tcp_death_row.sysctl_tw_recycle,
986 .maxlen = sizeof(int),
987 .mode = 0644,
988 .proc_handler = proc_dointvec
989 },
Haishuang Yanfee83d02016-12-28 17:52:33 +0800990 {
991 .procname = "tcp_max_syn_backlog",
992 .data = &init_net.ipv4.sysctl_max_syn_backlog,
993 .maxlen = sizeof(int),
994 .mode = 0644,
995 .proc_handler = proc_dointvec
996 },
David Aherna6db4492016-04-07 07:21:00 -0700997#ifdef CONFIG_IP_ROUTE_MULTIPATH
998 {
999 .procname = "fib_multipath_use_neigh",
1000 .data = &init_net.ipv4.sysctl_fib_multipath_use_neigh,
1001 .maxlen = sizeof(int),
1002 .mode = 0644,
1003 .proc_handler = proc_dointvec_minmax,
1004 .extra1 = &zero,
1005 .extra2 = &one,
1006 },
1007#endif
Krister Johansen4548b682017-01-20 17:49:11 -08001008 {
1009 .procname = "ip_unprivileged_port_start",
1010 .maxlen = sizeof(int),
1011 .data = &init_net.ipv4.sysctl_ip_prot_sock,
1012 .mode = 0644,
1013 .proc_handler = ipv4_privileged_ports,
1014 },
Robert Shearman63a6fff2017-01-26 18:02:24 +00001015#ifdef CONFIG_NET_L3_MASTER_DEV
1016 {
1017 .procname = "udp_l3mdev_accept",
1018 .data = &init_net.ipv4.sysctl_udp_l3mdev_accept,
1019 .maxlen = sizeof(int),
1020 .mode = 0644,
1021 .proc_handler = proc_dointvec_minmax,
1022 .extra1 = &zero,
1023 .extra2 = &one,
1024 },
1025#endif
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001026 { }
1027};
1028
Pavel Emelyanov15775192008-03-26 01:54:18 -07001029static __net_init int ipv4_sysctl_init_net(struct net *net)
1030{
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001031 struct ctl_table *table;
1032
1033 table = ipv4_net_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001034 if (!net_eq(net, &init_net)) {
Eric W. Biederman0a6fa232013-10-19 16:27:03 -07001035 int i;
1036
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001037 table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001038 if (!table)
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001039 goto err_alloc;
1040
Eric W. Biederman0a6fa232013-10-19 16:27:03 -07001041 /* Update the variables to point into the current struct net */
1042 for (i = 0; i < ARRAY_SIZE(ipv4_net_table) - 1; i++)
1043 table[i].data += (void *)net - (void *)&init_net;
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001044 }
1045
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001046 net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +01001047 if (!net->ipv4.ipv4_hdr)
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001048 goto err_reg;
1049
WANG Cong122ff242014-05-12 16:04:53 -07001050 net->ipv4.sysctl_local_reserved_ports = kzalloc(65536 / 8, GFP_KERNEL);
1051 if (!net->ipv4.sysctl_local_reserved_ports)
1052 goto err_ports;
1053
Pavel Emelyanov15775192008-03-26 01:54:18 -07001054 return 0;
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001055
WANG Cong122ff242014-05-12 16:04:53 -07001056err_ports:
1057 unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001058err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001059 if (!net_eq(net, &init_net))
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001060 kfree(table);
1061err_alloc:
1062 return -ENOMEM;
Pavel Emelyanov15775192008-03-26 01:54:18 -07001063}
1064
1065static __net_exit void ipv4_sysctl_exit_net(struct net *net)
1066{
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001067 struct ctl_table *table;
1068
WANG Cong122ff242014-05-12 16:04:53 -07001069 kfree(net->ipv4.sysctl_local_reserved_ports);
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001070 table = net->ipv4.ipv4_hdr->ctl_table_arg;
1071 unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
1072 kfree(table);
Pavel Emelyanov15775192008-03-26 01:54:18 -07001073}
1074
1075static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
1076 .init = ipv4_sysctl_init_net,
1077 .exit = ipv4_sysctl_exit_net,
1078};
1079
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -08001080static __init int sysctl_ipv4_init(void)
1081{
1082 struct ctl_table_header *hdr;
1083
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001084 hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
Ian Morris51456b22015-04-03 09:17:26 +01001085 if (!hdr)
Pavel Emelyanov15775192008-03-26 01:54:18 -07001086 return -ENOMEM;
1087
1088 if (register_pernet_subsys(&ipv4_sysctl_ops)) {
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001089 unregister_net_sysctl_table(hdr);
Pavel Emelyanov15775192008-03-26 01:54:18 -07001090 return -ENOMEM;
1091 }
1092
1093 return 0;
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -08001094}
1095
1096__initcall(sysctl_ipv4_init);