blob: eeb4041fa5f905fb0f7c91ea6d74851ae97259f8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * sysctl_net_ipv4.c: sysctl interface to net IPV4 subsystem.
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Begun April 1, 1996, Mike Shaver.
6 * Added /proc/sys/net/ipv4 directory entry (empty =) ). [MS]
7 */
8
9#include <linux/mm.h>
10#include <linux/module.h>
11#include <linux/sysctl.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030012#include <linux/igmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <linux/inetdevice.h>
Stephen Hemminger227b60f2007-10-10 17:30:46 -070014#include <linux/seqlock.h>
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -080015#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000017#include <linux/nsproxy.h>
Glauber Costa3dc43e32011-12-11 21:47:05 +000018#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <net/snmp.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030020#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/ip.h>
22#include <net/route.h>
23#include <net/tcp.h>
Hideo Aoki95766ff2007-12-31 00:29:24 -080024#include <net/udp.h>
Paul Moore446fda42006-08-03 16:48:06 -070025#include <net/cipso_ipv4.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070026#include <net/inet_frag.h>
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000027#include <net/ping.h>
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -060028#include <net/protocol.h>
Ido Schimmel3ae6ec02017-11-02 17:14:05 +010029#include <net/netevent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Herbert Xu89cee8b2005-12-13 23:14:27 -080031static int zero;
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +000032static int one = 1;
Maciej Żenczykowski79e9fed2018-06-03 10:41:17 -070033static int two = 2;
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +000034static int four = 4;
Eric Dumazet43e122b2015-08-21 17:38:02 -070035static int thousand = 1000;
Eric Dumazet95bd09e2013-08-27 05:46:32 -070036static int gso_max_segs = GSO_MAX_SEGS;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090037static int tcp_retr1_max = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int ip_local_port_range_min[] = { 1, 1 };
39static int ip_local_port_range_max[] = { 65535, 65535 };
Alexey Dobriyan0147fc02010-11-22 12:54:21 +000040static int tcp_adv_win_scale_min = -31;
41static int tcp_adv_win_scale_max = 31;
Krister Johansen4548b682017-01-20 17:49:11 -080042static int ip_privileged_port_min;
43static int ip_privileged_port_max = 65535;
Eric Dumazet249fab72010-12-13 12:16:14 -080044static int ip_ttl_min = 1;
45static int ip_ttl_max = 255;
Michal Tesar651e9272013-07-19 14:09:01 +020046static int tcp_syn_retries_min = 1;
47static int tcp_syn_retries_max = MAX_TCP_SYNCNT;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000048static int ip_ping_group_range_min[] = { 0, 0 };
49static int ip_ping_group_range_max[] = { GID_T_MAX, GID_T_MAX };
Eric Dumazet9c21d2f2018-05-17 14:47:29 -070050static int comp_sack_nr_max = 255;
Maciej Żenczykowskid4ce5802018-09-25 21:59:28 -070051static u32 u32_max_div_HZ = UINT_MAX / HZ;
ZhangXiaoxu19fad202019-04-16 09:47:24 +080052static int one_day_secs = 24 * 3600;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Florian Westphalb6690b12017-07-30 03:57:20 +020054/* obsolete */
55static int sysctl_tcp_low_latency __read_mostly;
56
Stephen Hemminger227b60f2007-10-10 17:30:46 -070057/* Update system visible IP port range */
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070058static void set_local_port_range(struct net *net, int range[2])
Stephen Hemminger227b60f2007-10-10 17:30:46 -070059{
Eric Dumazeted2dfd92015-05-27 11:34:37 -070060 bool same_parity = !((range[0] ^ range[1]) & 1);
61
WANG Cong4ee3bd42015-11-03 14:32:57 -080062 write_seqlock_bh(&net->ipv4.ip_local_ports.lock);
Eric Dumazeted2dfd92015-05-27 11:34:37 -070063 if (same_parity && !net->ipv4.ip_local_ports.warned) {
64 net->ipv4.ip_local_ports.warned = true;
65 pr_err_ratelimited("ip_local_port_range: prefer different parity for start/end values.\n");
66 }
Cong Wangc9d8f1a2014-05-06 11:02:49 -070067 net->ipv4.ip_local_ports.range[0] = range[0];
68 net->ipv4.ip_local_ports.range[1] = range[1];
WANG Cong4ee3bd42015-11-03 14:32:57 -080069 write_sequnlock_bh(&net->ipv4.ip_local_ports.lock);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070070}
71
72/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -070073static int ipv4_local_port_range(struct ctl_table *table, int write,
Stephen Hemminger227b60f2007-10-10 17:30:46 -070074 void __user *buffer,
75 size_t *lenp, loff_t *ppos)
76{
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070077 struct net *net =
Cong Wangc9d8f1a2014-05-06 11:02:49 -070078 container_of(table->data, struct net, ipv4.ip_local_ports.range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070079 int ret;
Eric Dumazet3c689b72008-10-08 14:18:04 -070080 int range[2];
Joe Perchesfe2c6332013-06-11 23:04:25 -070081 struct ctl_table tmp = {
Stephen Hemminger227b60f2007-10-10 17:30:46 -070082 .data = &range,
83 .maxlen = sizeof(range),
84 .mode = table->mode,
85 .extra1 = &ip_local_port_range_min,
86 .extra2 = &ip_local_port_range_max,
87 };
88
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070089 inet_get_local_port_range(net, &range[0], &range[1]);
90
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070091 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070092
93 if (write && ret == 0) {
Krister Johansen4548b682017-01-20 17:49:11 -080094 /* Ensure that the upper limit is not smaller than the lower,
95 * and that the lower does not encroach upon the privileged
96 * port limit.
97 */
98 if ((range[1] < range[0]) ||
99 (range[0] < net->ipv4.sysctl_ip_prot_sock))
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700100 ret = -EINVAL;
101 else
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700102 set_local_port_range(net, range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700103 }
104
105 return ret;
106}
107
Krister Johansen4548b682017-01-20 17:49:11 -0800108/* Validate changes from /proc interface. */
109static int ipv4_privileged_ports(struct ctl_table *table, int write,
110 void __user *buffer, size_t *lenp, loff_t *ppos)
111{
112 struct net *net = container_of(table->data, struct net,
113 ipv4.sysctl_ip_prot_sock);
114 int ret;
115 int pports;
116 int range[2];
117 struct ctl_table tmp = {
118 .data = &pports,
119 .maxlen = sizeof(pports),
120 .mode = table->mode,
121 .extra1 = &ip_privileged_port_min,
122 .extra2 = &ip_privileged_port_max,
123 };
124
125 pports = net->ipv4.sysctl_ip_prot_sock;
126
127 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
128
129 if (write && ret == 0) {
130 inet_get_local_port_range(net, &range[0], &range[1]);
131 /* Ensure that the local port range doesn't overlap with the
132 * privileged port range.
133 */
134 if (range[0] < pports)
135 ret = -EINVAL;
136 else
137 net->ipv4.sysctl_ip_prot_sock = pports;
138 }
139
140 return ret;
141}
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000142
Eric W. Biederman7064d162012-05-24 10:34:21 -0600143static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000144{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600145 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700146 struct net *net =
Cong Wangba6b9182014-05-06 11:02:50 -0700147 container_of(table->data, struct net, ipv4.ping_group_range.range);
Eric Dumazet95c96172012-04-15 05:58:06 +0000148 unsigned int seq;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000149 do {
WANG Cong396a30c2016-10-20 14:19:46 -0700150 seq = read_seqbegin(&net->ipv4.ping_group_range.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000151
152 *low = data[0];
153 *high = data[1];
WANG Cong396a30c2016-10-20 14:19:46 -0700154 } while (read_seqretry(&net->ipv4.ping_group_range.lock, seq));
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000155}
156
157/* Update system visible IP port range */
Eric W. Biederman7064d162012-05-24 10:34:21 -0600158static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000159{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600160 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700161 struct net *net =
Cong Wangba6b9182014-05-06 11:02:50 -0700162 container_of(table->data, struct net, ipv4.ping_group_range.range);
WANG Cong396a30c2016-10-20 14:19:46 -0700163 write_seqlock(&net->ipv4.ping_group_range.lock);
Eric W. Biederman7064d162012-05-24 10:34:21 -0600164 data[0] = low;
165 data[1] = high;
WANG Cong396a30c2016-10-20 14:19:46 -0700166 write_sequnlock(&net->ipv4.ping_group_range.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000167}
168
169/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -0700170static int ipv4_ping_group_range(struct ctl_table *table, int write,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000171 void __user *buffer,
172 size_t *lenp, loff_t *ppos)
173{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600174 struct user_namespace *user_ns = current_user_ns();
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000175 int ret;
Eric W. Biederman7064d162012-05-24 10:34:21 -0600176 gid_t urange[2];
177 kgid_t low, high;
Joe Perchesfe2c6332013-06-11 23:04:25 -0700178 struct ctl_table tmp = {
Eric W. Biederman7064d162012-05-24 10:34:21 -0600179 .data = &urange,
180 .maxlen = sizeof(urange),
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000181 .mode = table->mode,
182 .extra1 = &ip_ping_group_range_min,
183 .extra2 = &ip_ping_group_range_max,
184 };
185
Eric W. Biederman7064d162012-05-24 10:34:21 -0600186 inet_get_ping_group_range_table(table, &low, &high);
187 urange[0] = from_kgid_munged(user_ns, low);
188 urange[1] = from_kgid_munged(user_ns, high);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000189 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
190
Eric W. Biederman7064d162012-05-24 10:34:21 -0600191 if (write && ret == 0) {
192 low = make_kgid(user_ns, urange[0]);
193 high = make_kgid(user_ns, urange[1]);
Tyler Hicks70ba5b62018-07-05 18:49:23 +0000194 if (!gid_valid(low) || !gid_valid(high))
195 return -EINVAL;
196 if (urange[1] < urange[0] || gid_lt(high, low)) {
Eric W. Biederman7064d162012-05-24 10:34:21 -0600197 low = make_kgid(&init_user_ns, 1);
198 high = make_kgid(&init_user_ns, 0);
199 }
200 set_ping_group_range(table, low, high);
201 }
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000202
203 return ret;
204}
205
Petr Machatad18c5d12018-08-01 00:36:42 +0200206static int ipv4_fwd_update_priority(struct ctl_table *table, int write,
207 void __user *buffer,
208 size_t *lenp, loff_t *ppos)
209{
210 struct net *net;
211 int ret;
212
213 net = container_of(table->data, struct net,
214 ipv4.sysctl_ip_fwd_update_priority);
215 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
216 if (write && ret == 0)
217 call_netevent_notifiers(NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE,
218 net);
219
220 return ret;
221}
222
Joe Perchesfe2c6332013-06-11 23:04:25 -0700223static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700224 void __user *buffer, size_t *lenp, loff_t *ppos)
225{
Stephen Hemminger6670e152017-11-14 08:25:49 -0800226 struct net *net = container_of(ctl->data, struct net,
227 ipv4.tcp_congestion_control);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700228 char val[TCP_CA_NAME_MAX];
Joe Perchesfe2c6332013-06-11 23:04:25 -0700229 struct ctl_table tbl = {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700230 .data = val,
231 .maxlen = TCP_CA_NAME_MAX,
232 };
233 int ret;
234
Stephen Hemminger6670e152017-11-14 08:25:49 -0800235 tcp_get_default_congestion_control(net, val);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700236
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700237 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700238 if (write && ret == 0)
Stephen Hemminger6670e152017-11-14 08:25:49 -0800239 ret = tcp_set_default_congestion_control(net, val);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700240 return ret;
241}
242
Joe Perchesfe2c6332013-06-11 23:04:25 -0700243static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700244 int write,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800245 void __user *buffer, size_t *lenp,
246 loff_t *ppos)
247{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700248 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800249 int ret;
250
251 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
252 if (!tbl.data)
253 return -ENOMEM;
254 tcp_get_available_congestion_control(tbl.data, TCP_CA_BUF_MAX);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700255 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800256 kfree(tbl.data);
257 return ret;
258}
259
Joe Perchesfe2c6332013-06-11 23:04:25 -0700260static int proc_allowed_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700261 int write,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800262 void __user *buffer, size_t *lenp,
263 loff_t *ppos)
264{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700265 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800266 int ret;
267
268 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
269 if (!tbl.data)
270 return -ENOMEM;
271
272 tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700273 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800274 if (write && ret == 0)
275 ret = tcp_set_allowed_congestion_control(tbl.data);
276 kfree(tbl.data);
277 return ret;
278}
279
Haishuang Yan43713842017-09-27 11:35:42 +0800280static int proc_tcp_fastopen_key(struct ctl_table *table, int write,
Joe Perchesfe2c6332013-06-11 23:04:25 -0700281 void __user *buffer, size_t *lenp,
282 loff_t *ppos)
Jerry Chu10467162012-08-31 12:29:11 +0000283{
Haishuang Yan43713842017-09-27 11:35:42 +0800284 struct net *net = container_of(table->data, struct net,
285 ipv4.sysctl_tcp_fastopen);
Joe Perchesfe2c6332013-06-11 23:04:25 -0700286 struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
Jerry Chu10467162012-08-31 12:29:11 +0000287 struct tcp_fastopen_context *ctxt;
Jerry Chu10467162012-08-31 12:29:11 +0000288 u32 user_key[4]; /* 16 bytes, matching TCP_FASTOPEN_KEY_LENGTH */
Yuchung Chengc860e992018-06-27 16:04:48 -0700289 __le32 key[4];
290 int ret, i;
Jerry Chu10467162012-08-31 12:29:11 +0000291
292 tbl.data = kmalloc(tbl.maxlen, GFP_KERNEL);
293 if (!tbl.data)
294 return -ENOMEM;
295
296 rcu_read_lock();
Haishuang Yan43713842017-09-27 11:35:42 +0800297 ctxt = rcu_dereference(net->ipv4.tcp_fastopen_ctx);
Jerry Chu10467162012-08-31 12:29:11 +0000298 if (ctxt)
Yuchung Chengc860e992018-06-27 16:04:48 -0700299 memcpy(key, ctxt->key, TCP_FASTOPEN_KEY_LENGTH);
Alan Cox0e24c4f2012-10-11 06:24:14 +0000300 else
Yuchung Chengc860e992018-06-27 16:04:48 -0700301 memset(key, 0, sizeof(key));
Jerry Chu10467162012-08-31 12:29:11 +0000302 rcu_read_unlock();
303
Yuchung Chengc860e992018-06-27 16:04:48 -0700304 for (i = 0; i < ARRAY_SIZE(key); i++)
305 user_key[i] = le32_to_cpu(key[i]);
306
Jerry Chu10467162012-08-31 12:29:11 +0000307 snprintf(tbl.data, tbl.maxlen, "%08x-%08x-%08x-%08x",
308 user_key[0], user_key[1], user_key[2], user_key[3]);
309 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
310
311 if (write && ret == 0) {
312 if (sscanf(tbl.data, "%x-%x-%x-%x", user_key, user_key + 1,
313 user_key + 2, user_key + 3) != 4) {
314 ret = -EINVAL;
315 goto bad_key;
316 }
Yuchung Chengc860e992018-06-27 16:04:48 -0700317
318 for (i = 0; i < ARRAY_SIZE(user_key); i++)
319 key[i] = cpu_to_le32(user_key[i]);
320
321 tcp_fastopen_reset_cipher(net, NULL, key,
Yuchung Cheng1fba70e2017-10-18 11:22:51 -0700322 TCP_FASTOPEN_KEY_LENGTH);
Jerry Chu10467162012-08-31 12:29:11 +0000323 }
324
325bad_key:
326 pr_debug("proc FO key set 0x%x-%x-%x-%x <- 0x%s: %u\n",
Yuchung Chengc860e992018-06-27 16:04:48 -0700327 user_key[0], user_key[1], user_key[2], user_key[3],
Jerry Chu10467162012-08-31 12:29:11 +0000328 (char *)tbl.data, ret);
329 kfree(tbl.data);
330 return ret;
331}
332
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -0600333static void proc_configure_early_demux(int enabled, int protocol)
334{
335 struct net_protocol *ipprot;
336#if IS_ENABLED(CONFIG_IPV6)
337 struct inet6_protocol *ip6prot;
338#endif
339
David Ahern58c4c6a2017-04-22 09:33:16 -0700340 rcu_read_lock();
341
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -0600342 ipprot = rcu_dereference(inet_protos[protocol]);
343 if (ipprot)
344 ipprot->early_demux = enabled ? ipprot->early_demux_handler :
345 NULL;
346
347#if IS_ENABLED(CONFIG_IPV6)
348 ip6prot = rcu_dereference(inet6_protos[protocol]);
349 if (ip6prot)
350 ip6prot->early_demux = enabled ? ip6prot->early_demux_handler :
351 NULL;
352#endif
David Ahern58c4c6a2017-04-22 09:33:16 -0700353 rcu_read_unlock();
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -0600354}
355
356static int proc_tcp_early_demux(struct ctl_table *table, int write,
357 void __user *buffer, size_t *lenp, loff_t *ppos)
358{
359 int ret = 0;
360
361 ret = proc_dointvec(table, write, buffer, lenp, ppos);
362
363 if (write && !ret) {
364 int enabled = init_net.ipv4.sysctl_tcp_early_demux;
365
366 proc_configure_early_demux(enabled, IPPROTO_TCP);
367 }
368
369 return ret;
370}
371
372static int proc_udp_early_demux(struct ctl_table *table, int write,
373 void __user *buffer, size_t *lenp, loff_t *ppos)
374{
375 int ret = 0;
376
377 ret = proc_dointvec(table, write, buffer, lenp, ppos);
378
379 if (write && !ret) {
380 int enabled = init_net.ipv4.sysctl_udp_early_demux;
381
382 proc_configure_early_demux(enabled, IPPROTO_UDP);
383 }
384
385 return ret;
386}
387
Wei Wangcf1ef3f2017-04-20 14:45:46 -0700388static int proc_tfo_blackhole_detect_timeout(struct ctl_table *table,
389 int write,
390 void __user *buffer,
391 size_t *lenp, loff_t *ppos)
392{
Haishuang Yan3733be12017-09-27 11:35:43 +0800393 struct net *net = container_of(table->data, struct net,
394 ipv4.sysctl_tcp_fastopen_blackhole_timeout);
Wei Wangcf1ef3f2017-04-20 14:45:46 -0700395 int ret;
396
397 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
398 if (write && ret == 0)
Haishuang Yan3733be12017-09-27 11:35:43 +0800399 atomic_set(&net->ipv4.tfo_active_disable_times, 0);
Dave Watson734942c2017-06-14 11:37:14 -0700400
401 return ret;
402}
403
404static int proc_tcp_available_ulp(struct ctl_table *ctl,
405 int write,
406 void __user *buffer, size_t *lenp,
407 loff_t *ppos)
408{
409 struct ctl_table tbl = { .maxlen = TCP_ULP_BUF_MAX, };
410 int ret;
411
412 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
413 if (!tbl.data)
414 return -ENOMEM;
415 tcp_get_available_ulp(tbl.data, TCP_ULP_BUF_MAX);
416 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
417 kfree(tbl.data);
418
Wei Wangcf1ef3f2017-04-20 14:45:46 -0700419 return ret;
420}
421
Ido Schimmel3ae6ec02017-11-02 17:14:05 +0100422#ifdef CONFIG_IP_ROUTE_MULTIPATH
423static int proc_fib_multipath_hash_policy(struct ctl_table *table, int write,
424 void __user *buffer, size_t *lenp,
425 loff_t *ppos)
426{
427 struct net *net = container_of(table->data, struct net,
428 ipv4.sysctl_fib_multipath_hash_policy);
429 int ret;
430
431 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
432 if (write && ret == 0)
David Ahern3192dac2018-03-02 08:32:16 -0800433 call_netevent_notifiers(NETEVENT_IPV4_MPATH_HASH_UPDATE, net);
Ido Schimmel3ae6ec02017-11-02 17:14:05 +0100434
435 return ret;
436}
437#endif
438
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800439static struct ctl_table ipv4_table[] = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900440 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .procname = "tcp_max_orphans",
442 .data = &sysctl_tcp_max_orphans,
443 .maxlen = sizeof(int),
444 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800445 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 },
447 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .procname = "inet_peer_threshold",
449 .data = &inet_peer_threshold,
450 .maxlen = sizeof(int),
451 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800452 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 },
454 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .procname = "inet_peer_minttl",
456 .data = &inet_peer_minttl,
457 .maxlen = sizeof(int),
458 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800459 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 },
461 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .procname = "inet_peer_maxttl",
463 .data = &inet_peer_maxttl,
464 .maxlen = sizeof(int),
465 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800466 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 },
468 {
Eric W. Biedermana4fe34b2013-10-19 16:25:36 -0700469 .procname = "tcp_mem",
470 .maxlen = sizeof(sysctl_tcp_mem),
471 .data = &sysctl_tcp_mem,
472 .mode = 0644,
473 .proc_handler = proc_doulongvec_minmax,
474 },
475 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 .procname = "tcp_low_latency",
477 .data = &sysctl_tcp_low_latency,
478 .maxlen = sizeof(int),
479 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800480 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 },
Paul Moore446fda42006-08-03 16:48:06 -0700482#ifdef CONFIG_NETLABEL
483 {
Paul Moore446fda42006-08-03 16:48:06 -0700484 .procname = "cipso_cache_enable",
485 .data = &cipso_v4_cache_enabled,
486 .maxlen = sizeof(int),
487 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800488 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700489 },
490 {
Paul Moore446fda42006-08-03 16:48:06 -0700491 .procname = "cipso_cache_bucket_size",
492 .data = &cipso_v4_cache_bucketsize,
493 .maxlen = sizeof(int),
494 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800495 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700496 },
497 {
Paul Moore446fda42006-08-03 16:48:06 -0700498 .procname = "cipso_rbm_optfmt",
499 .data = &cipso_v4_rbm_optfmt,
500 .maxlen = sizeof(int),
501 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800502 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700503 },
504 {
Paul Moore446fda42006-08-03 16:48:06 -0700505 .procname = "cipso_rbm_strictvalid",
506 .data = &cipso_v4_rbm_strictvalid,
507 .maxlen = sizeof(int),
508 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800509 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700510 },
511#endif /* CONFIG_NETLABEL */
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800512 {
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800513 .procname = "tcp_available_congestion_control",
514 .maxlen = TCP_CA_BUF_MAX,
515 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800516 .proc_handler = proc_tcp_available_congestion_control,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800517 },
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800518 {
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800519 .procname = "tcp_allowed_congestion_control",
520 .maxlen = TCP_CA_BUF_MAX,
521 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800522 .proc_handler = proc_allowed_congestion_control,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800523 },
John Heffner886236c2007-03-25 19:21:45 -0700524 {
Dave Watson734942c2017-06-14 11:37:14 -0700525 .procname = "tcp_available_ulp",
526 .maxlen = TCP_ULP_BUF_MAX,
527 .mode = 0444,
528 .proc_handler = proc_tcp_available_ulp,
529 },
530 {
Eric Dumazet4cdf5072014-09-19 07:38:40 -0700531 .procname = "icmp_msgs_per_sec",
532 .data = &sysctl_icmp_msgs_per_sec,
533 .maxlen = sizeof(int),
534 .mode = 0644,
535 .proc_handler = proc_dointvec_minmax,
536 .extra1 = &zero,
537 },
538 {
539 .procname = "icmp_msgs_burst",
540 .data = &sysctl_icmp_msgs_burst,
541 .maxlen = sizeof(int),
542 .mode = 0644,
543 .proc_handler = proc_dointvec_minmax,
544 .extra1 = &zero,
545 },
546 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800547 .procname = "udp_mem",
548 .data = &sysctl_udp_mem,
549 .maxlen = sizeof(sysctl_udp_mem),
550 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +0000551 .proc_handler = proc_doulongvec_minmax,
Hideo Aoki95766ff2007-12-31 00:29:24 -0800552 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800553 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554};
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800555
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700556static struct ctl_table ipv4_net_table[] = {
557 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700558 .procname = "icmp_echo_ignore_all",
559 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_all,
560 .maxlen = sizeof(int),
561 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800562 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700563 },
564 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700565 .procname = "icmp_echo_ignore_broadcasts",
566 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
567 .maxlen = sizeof(int),
568 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800569 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700570 },
571 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700572 .procname = "icmp_ignore_bogus_error_responses",
573 .data = &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
574 .maxlen = sizeof(int),
575 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800576 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700577 },
578 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700579 .procname = "icmp_errors_use_inbound_ifaddr",
580 .data = &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
581 .maxlen = sizeof(int),
582 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800583 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700584 },
585 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700586 .procname = "icmp_ratelimit",
587 .data = &init_net.ipv4.sysctl_icmp_ratelimit,
588 .maxlen = sizeof(int),
589 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800590 .proc_handler = proc_dointvec_ms_jiffies,
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700591 },
592 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700593 .procname = "icmp_ratemask",
594 .data = &init_net.ipv4.sysctl_icmp_ratemask,
595 .maxlen = sizeof(int),
596 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800597 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700598 },
Neil Horman1080d702008-10-27 12:28:25 -0700599 {
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000600 .procname = "ping_group_range",
Cong Wangba6b9182014-05-06 11:02:50 -0700601 .data = &init_net.ipv4.ping_group_range.range,
Eric W. Biederman7064d162012-05-24 10:34:21 -0600602 .maxlen = sizeof(gid_t)*2,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000603 .mode = 0644,
604 .proc_handler = ipv4_ping_group_range,
605 },
Mike Manning68974452018-11-07 15:36:05 +0000606#ifdef CONFIG_NET_L3_MASTER_DEV
607 {
608 .procname = "raw_l3mdev_accept",
609 .data = &init_net.ipv4.sysctl_raw_l3mdev_accept,
610 .maxlen = sizeof(int),
611 .mode = 0644,
612 .proc_handler = proc_dointvec_minmax,
613 .extra1 = &zero,
614 .extra2 = &one,
615 },
616#endif
Glauber Costa3dc43e32011-12-11 21:47:05 +0000617 {
Hannes Frederic Sowa5d134f12013-01-05 16:10:48 +0000618 .procname = "tcp_ecn",
619 .data = &init_net.ipv4.sysctl_tcp_ecn,
620 .maxlen = sizeof(int),
621 .mode = 0644,
622 .proc_handler = proc_dointvec
623 },
624 {
Daniel Borkmann49213552015-05-19 21:04:22 +0200625 .procname = "tcp_ecn_fallback",
626 .data = &init_net.ipv4.sysctl_tcp_ecn_fallback,
627 .maxlen = sizeof(int),
628 .mode = 0644,
629 .proc_handler = proc_dointvec
630 },
631 {
Nikolay Borisov287b7f32016-02-15 12:11:29 +0200632 .procname = "ip_dynaddr",
633 .data = &init_net.ipv4.sysctl_ip_dynaddr,
634 .maxlen = sizeof(int),
635 .mode = 0644,
636 .proc_handler = proc_dointvec
637 },
638 {
Nikolay Borisove21145a2016-02-15 12:11:30 +0200639 .procname = "ip_early_demux",
640 .data = &init_net.ipv4.sysctl_ip_early_demux,
641 .maxlen = sizeof(int),
642 .mode = 0644,
643 .proc_handler = proc_dointvec
644 },
645 {
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -0600646 .procname = "udp_early_demux",
647 .data = &init_net.ipv4.sysctl_udp_early_demux,
648 .maxlen = sizeof(int),
649 .mode = 0644,
650 .proc_handler = proc_udp_early_demux
651 },
652 {
653 .procname = "tcp_early_demux",
654 .data = &init_net.ipv4.sysctl_tcp_early_demux,
655 .maxlen = sizeof(int),
656 .mode = 0644,
657 .proc_handler = proc_tcp_early_demux
658 },
659 {
Nikolay Borisovfa50d972016-02-15 12:11:27 +0200660 .procname = "ip_default_ttl",
661 .data = &init_net.ipv4.sysctl_ip_default_ttl,
662 .maxlen = sizeof(int),
663 .mode = 0644,
664 .proc_handler = proc_dointvec_minmax,
665 .extra1 = &ip_ttl_min,
666 .extra2 = &ip_ttl_max,
667 },
668 {
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700669 .procname = "ip_local_port_range",
Cong Wangc9d8f1a2014-05-06 11:02:49 -0700670 .maxlen = sizeof(init_net.ipv4.ip_local_ports.range),
671 .data = &init_net.ipv4.ip_local_ports.range,
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700672 .mode = 0644,
673 .proc_handler = ipv4_local_port_range,
674 },
Hannes Frederic Sowa974eda12013-12-14 05:13:38 +0100675 {
WANG Cong122ff242014-05-12 16:04:53 -0700676 .procname = "ip_local_reserved_ports",
677 .data = &init_net.ipv4.sysctl_local_reserved_ports,
678 .maxlen = 65536,
679 .mode = 0644,
680 .proc_handler = proc_do_large_bitmap,
681 },
682 {
Hannes Frederic Sowa974eda12013-12-14 05:13:38 +0100683 .procname = "ip_no_pmtu_disc",
684 .data = &init_net.ipv4.sysctl_ip_no_pmtu_disc,
685 .maxlen = sizeof(int),
686 .mode = 0644,
687 .proc_handler = proc_dointvec
688 },
Hannes Frederic Sowaf87c10a2014-01-09 10:01:15 +0100689 {
690 .procname = "ip_forward_use_pmtu",
691 .data = &init_net.ipv4.sysctl_ip_fwd_use_pmtu,
692 .maxlen = sizeof(int),
693 .mode = 0644,
694 .proc_handler = proc_dointvec,
695 },
Lorenzo Colittie1108612014-05-13 10:17:33 -0700696 {
Petr Machata432e05d2018-08-01 00:36:03 +0200697 .procname = "ip_forward_update_priority",
698 .data = &init_net.ipv4.sysctl_ip_fwd_update_priority,
699 .maxlen = sizeof(int),
700 .mode = 0644,
Petr Machatad18c5d12018-08-01 00:36:42 +0200701 .proc_handler = ipv4_fwd_update_priority,
Petr Machata432e05d2018-08-01 00:36:03 +0200702 .extra1 = &zero,
703 .extra2 = &one,
704 },
705 {
Vincent Bernat49a60152014-09-05 15:09:03 +0200706 .procname = "ip_nonlocal_bind",
707 .data = &init_net.ipv4.sysctl_ip_nonlocal_bind,
708 .maxlen = sizeof(int),
709 .mode = 0644,
710 .proc_handler = proc_dointvec
711 },
712 {
Lorenzo Colittie1108612014-05-13 10:17:33 -0700713 .procname = "fwmark_reflect",
714 .data = &init_net.ipv4.sysctl_fwmark_reflect,
715 .maxlen = sizeof(int),
716 .mode = 0644,
717 .proc_handler = proc_dointvec,
718 },
Lorenzo Colitti84f39b02014-05-13 10:17:35 -0700719 {
720 .procname = "tcp_fwmark_accept",
721 .data = &init_net.ipv4.sysctl_tcp_fwmark_accept,
722 .maxlen = sizeof(int),
723 .mode = 0644,
724 .proc_handler = proc_dointvec,
725 },
David Ahern6dd9a142015-12-16 13:20:44 -0800726#ifdef CONFIG_NET_L3_MASTER_DEV
727 {
728 .procname = "tcp_l3mdev_accept",
729 .data = &init_net.ipv4.sysctl_tcp_l3mdev_accept,
730 .maxlen = sizeof(int),
731 .mode = 0644,
732 .proc_handler = proc_dointvec_minmax,
733 .extra1 = &zero,
734 .extra2 = &one,
735 },
736#endif
Fan Dub0f9ca52015-02-10 09:53:16 +0800737 {
738 .procname = "tcp_mtu_probing",
739 .data = &init_net.ipv4.sysctl_tcp_mtu_probing,
740 .maxlen = sizeof(int),
741 .mode = 0644,
742 .proc_handler = proc_dointvec,
743 },
744 {
745 .procname = "tcp_base_mss",
746 .data = &init_net.ipv4.sysctl_tcp_base_mss,
747 .maxlen = sizeof(int),
748 .mode = 0644,
749 .proc_handler = proc_dointvec,
750 },
Fan Du6b58e0a2015-03-06 11:18:23 +0800751 {
752 .procname = "tcp_probe_threshold",
753 .data = &init_net.ipv4.sysctl_tcp_probe_threshold,
754 .maxlen = sizeof(int),
755 .mode = 0644,
756 .proc_handler = proc_dointvec,
757 },
Fan Du05cbc0d2015-03-06 11:18:24 +0800758 {
759 .procname = "tcp_probe_interval",
760 .data = &init_net.ipv4.sysctl_tcp_probe_interval,
Maciej Żenczykowskid4ce5802018-09-25 21:59:28 -0700761 .maxlen = sizeof(u32),
Fan Du05cbc0d2015-03-06 11:18:24 +0800762 .mode = 0644,
Maciej Żenczykowskid4ce5802018-09-25 21:59:28 -0700763 .proc_handler = proc_douintvec_minmax,
764 .extra2 = &u32_max_div_HZ,
Fan Du05cbc0d2015-03-06 11:18:24 +0800765 },
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100766 {
767 .procname = "igmp_link_local_mcast_reports",
Nikolay Borisov87a8a2a2016-02-09 00:13:50 +0200768 .data = &init_net.ipv4.sysctl_igmp_llm_reports,
Philip Downeydf2cf4a2015-08-27 16:46:26 +0100769 .maxlen = sizeof(int),
770 .mode = 0644,
771 .proc_handler = proc_dointvec
772 },
Nikolay Borisov13b287e2016-01-07 16:38:43 +0200773 {
Nikolay Borisov815c5272016-02-08 23:29:21 +0200774 .procname = "igmp_max_memberships",
775 .data = &init_net.ipv4.sysctl_igmp_max_memberships,
776 .maxlen = sizeof(int),
777 .mode = 0644,
778 .proc_handler = proc_dointvec
779 },
780 {
Nikolay Borisov166b6b22016-02-08 23:29:22 +0200781 .procname = "igmp_max_msf",
782 .data = &init_net.ipv4.sysctl_igmp_max_msf,
783 .maxlen = sizeof(int),
784 .mode = 0644,
785 .proc_handler = proc_dointvec
786 },
Nikolay Borisov165094a2016-02-08 23:29:24 +0200787#ifdef CONFIG_IP_MULTICAST
788 {
789 .procname = "igmp_qrv",
790 .data = &init_net.ipv4.sysctl_igmp_qrv,
791 .maxlen = sizeof(int),
792 .mode = 0644,
793 .proc_handler = proc_dointvec_minmax,
794 .extra1 = &one
795 },
796#endif
Nikolay Borisov166b6b22016-02-08 23:29:22 +0200797 {
Stephen Hemminger6670e152017-11-14 08:25:49 -0800798 .procname = "tcp_congestion_control",
799 .data = &init_net.ipv4.tcp_congestion_control,
800 .mode = 0644,
801 .maxlen = TCP_CA_NAME_MAX,
802 .proc_handler = proc_tcp_congestion_control,
803 },
804 {
Nikolay Borisov13b287e2016-01-07 16:38:43 +0200805 .procname = "tcp_keepalive_time",
806 .data = &init_net.ipv4.sysctl_tcp_keepalive_time,
807 .maxlen = sizeof(int),
808 .mode = 0644,
809 .proc_handler = proc_dointvec_jiffies,
810 },
Nikolay Borisov9bd68612016-01-07 16:38:44 +0200811 {
812 .procname = "tcp_keepalive_probes",
813 .data = &init_net.ipv4.sysctl_tcp_keepalive_probes,
814 .maxlen = sizeof(int),
815 .mode = 0644,
816 .proc_handler = proc_dointvec
817 },
Nikolay Borisovb840d152016-01-07 16:38:45 +0200818 {
819 .procname = "tcp_keepalive_intvl",
820 .data = &init_net.ipv4.sysctl_tcp_keepalive_intvl,
821 .maxlen = sizeof(int),
822 .mode = 0644,
823 .proc_handler = proc_dointvec_jiffies,
824 },
Nikolay Borisov6fa25162016-02-03 09:46:49 +0200825 {
826 .procname = "tcp_syn_retries",
827 .data = &init_net.ipv4.sysctl_tcp_syn_retries,
828 .maxlen = sizeof(int),
829 .mode = 0644,
830 .proc_handler = proc_dointvec_minmax,
831 .extra1 = &tcp_syn_retries_min,
832 .extra2 = &tcp_syn_retries_max
833 },
Nikolay Borisov7c083ec2016-02-03 09:46:50 +0200834 {
835 .procname = "tcp_synack_retries",
836 .data = &init_net.ipv4.sysctl_tcp_synack_retries,
837 .maxlen = sizeof(int),
838 .mode = 0644,
839 .proc_handler = proc_dointvec
840 },
Nikolay Borisov12ed8242016-02-03 09:46:51 +0200841#ifdef CONFIG_SYN_COOKIES
842 {
843 .procname = "tcp_syncookies",
844 .data = &init_net.ipv4.sysctl_tcp_syncookies,
845 .maxlen = sizeof(int),
846 .mode = 0644,
847 .proc_handler = proc_dointvec
848 },
849#endif
Nikolay Borisov1043e252016-02-03 09:46:52 +0200850 {
851 .procname = "tcp_reordering",
852 .data = &init_net.ipv4.sysctl_tcp_reordering,
853 .maxlen = sizeof(int),
854 .mode = 0644,
855 .proc_handler = proc_dointvec
856 },
Nikolay Borisovae5c3f42016-02-03 09:46:53 +0200857 {
858 .procname = "tcp_retries1",
859 .data = &init_net.ipv4.sysctl_tcp_retries1,
860 .maxlen = sizeof(int),
861 .mode = 0644,
862 .proc_handler = proc_dointvec_minmax,
863 .extra2 = &tcp_retr1_max
864 },
Nikolay Borisovc6214a92016-02-03 09:46:54 +0200865 {
866 .procname = "tcp_retries2",
867 .data = &init_net.ipv4.sysctl_tcp_retries2,
868 .maxlen = sizeof(int),
869 .mode = 0644,
870 .proc_handler = proc_dointvec
871 },
Nikolay Borisovc402d9b2016-02-03 09:46:55 +0200872 {
873 .procname = "tcp_orphan_retries",
874 .data = &init_net.ipv4.sysctl_tcp_orphan_retries,
875 .maxlen = sizeof(int),
876 .mode = 0644,
877 .proc_handler = proc_dointvec
878 },
Nikolay Borisov1e579ca2016-02-03 09:46:56 +0200879 {
880 .procname = "tcp_fin_timeout",
881 .data = &init_net.ipv4.sysctl_tcp_fin_timeout,
882 .maxlen = sizeof(int),
883 .mode = 0644,
884 .proc_handler = proc_dointvec_jiffies,
885 },
Nikolay Borisov4979f2d2016-02-03 09:46:57 +0200886 {
887 .procname = "tcp_notsent_lowat",
888 .data = &init_net.ipv4.sysctl_tcp_notsent_lowat,
889 .maxlen = sizeof(unsigned int),
890 .mode = 0644,
Pavel Tikhomirovb007f092017-01-09 10:45:49 +0300891 .proc_handler = proc_douintvec,
Nikolay Borisov4979f2d2016-02-03 09:46:57 +0200892 },
Haishuang Yan56ab6b92016-12-25 14:33:16 +0800893 {
894 .procname = "tcp_tw_reuse",
895 .data = &init_net.ipv4.sysctl_tcp_tw_reuse,
896 .maxlen = sizeof(int),
897 .mode = 0644,
Maciej Żenczykowski79e9fed2018-06-03 10:41:17 -0700898 .proc_handler = proc_dointvec_minmax,
899 .extra1 = &zero,
900 .extra2 = &two,
Haishuang Yan56ab6b92016-12-25 14:33:16 +0800901 },
Haishuang Yan1946e672016-12-28 17:52:32 +0800902 {
903 .procname = "tcp_max_tw_buckets",
904 .data = &init_net.ipv4.tcp_death_row.sysctl_max_tw_buckets,
905 .maxlen = sizeof(int),
906 .mode = 0644,
907 .proc_handler = proc_dointvec
908 },
909 {
Haishuang Yanfee83d02016-12-28 17:52:33 +0800910 .procname = "tcp_max_syn_backlog",
911 .data = &init_net.ipv4.sysctl_max_syn_backlog,
912 .maxlen = sizeof(int),
913 .mode = 0644,
914 .proc_handler = proc_dointvec
915 },
Haishuang Yane1cfcbe2017-09-27 11:35:40 +0800916 {
917 .procname = "tcp_fastopen",
918 .data = &init_net.ipv4.sysctl_tcp_fastopen,
919 .maxlen = sizeof(int),
920 .mode = 0644,
921 .proc_handler = proc_dointvec,
922 },
Haishuang Yan43713842017-09-27 11:35:42 +0800923 {
924 .procname = "tcp_fastopen_key",
925 .mode = 0600,
926 .data = &init_net.ipv4.sysctl_tcp_fastopen,
927 .maxlen = ((TCP_FASTOPEN_KEY_LENGTH * 2) + 10),
928 .proc_handler = proc_tcp_fastopen_key,
929 },
Haishuang Yan3733be12017-09-27 11:35:43 +0800930 {
931 .procname = "tcp_fastopen_blackhole_timeout_sec",
932 .data = &init_net.ipv4.sysctl_tcp_fastopen_blackhole_timeout,
933 .maxlen = sizeof(int),
934 .mode = 0644,
935 .proc_handler = proc_tfo_blackhole_detect_timeout,
936 .extra1 = &zero,
937 },
David Aherna6db4492016-04-07 07:21:00 -0700938#ifdef CONFIG_IP_ROUTE_MULTIPATH
939 {
940 .procname = "fib_multipath_use_neigh",
941 .data = &init_net.ipv4.sysctl_fib_multipath_use_neigh,
942 .maxlen = sizeof(int),
943 .mode = 0644,
944 .proc_handler = proc_dointvec_minmax,
945 .extra1 = &zero,
946 .extra2 = &one,
947 },
Nikolay Aleksandrovbf4e0a32017-03-16 15:28:00 +0200948 {
949 .procname = "fib_multipath_hash_policy",
950 .data = &init_net.ipv4.sysctl_fib_multipath_hash_policy,
951 .maxlen = sizeof(int),
952 .mode = 0644,
Ido Schimmel3ae6ec02017-11-02 17:14:05 +0100953 .proc_handler = proc_fib_multipath_hash_policy,
Nikolay Aleksandrovbf4e0a32017-03-16 15:28:00 +0200954 .extra1 = &zero,
955 .extra2 = &one,
956 },
David Aherna6db4492016-04-07 07:21:00 -0700957#endif
Krister Johansen4548b682017-01-20 17:49:11 -0800958 {
959 .procname = "ip_unprivileged_port_start",
960 .maxlen = sizeof(int),
961 .data = &init_net.ipv4.sysctl_ip_prot_sock,
962 .mode = 0644,
963 .proc_handler = ipv4_privileged_ports,
964 },
Robert Shearman63a6fff2017-01-26 18:02:24 +0000965#ifdef CONFIG_NET_L3_MASTER_DEV
966 {
967 .procname = "udp_l3mdev_accept",
968 .data = &init_net.ipv4.sysctl_udp_l3mdev_accept,
969 .maxlen = sizeof(int),
970 .mode = 0644,
971 .proc_handler = proc_dointvec_minmax,
972 .extra1 = &zero,
973 .extra2 = &one,
974 },
975#endif
Eric Dumazetf9301032017-06-07 10:34:37 -0700976 {
977 .procname = "tcp_sack",
978 .data = &init_net.ipv4.sysctl_tcp_sack,
979 .maxlen = sizeof(int),
980 .mode = 0644,
981 .proc_handler = proc_dointvec
982 },
Eric Dumazet9bb37ef2017-06-07 10:34:38 -0700983 {
984 .procname = "tcp_window_scaling",
985 .data = &init_net.ipv4.sysctl_tcp_window_scaling,
986 .maxlen = sizeof(int),
987 .mode = 0644,
988 .proc_handler = proc_dointvec
989 },
Eric Dumazet5d2ed052017-06-07 10:34:39 -0700990 {
991 .procname = "tcp_timestamps",
992 .data = &init_net.ipv4.sysctl_tcp_timestamps,
993 .maxlen = sizeof(int),
994 .mode = 0644,
995 .proc_handler = proc_dointvec
996 },
Eric Dumazet2ae21cf2017-10-26 21:54:56 -0700997 {
998 .procname = "tcp_early_retrans",
999 .data = &init_net.ipv4.sysctl_tcp_early_retrans,
1000 .maxlen = sizeof(int),
1001 .mode = 0644,
1002 .proc_handler = proc_dointvec_minmax,
1003 .extra1 = &zero,
1004 .extra2 = &four,
1005 },
Eric Dumazete20223f2017-10-26 21:54:57 -07001006 {
1007 .procname = "tcp_recovery",
1008 .data = &init_net.ipv4.sysctl_tcp_recovery,
1009 .maxlen = sizeof(int),
1010 .mode = 0644,
1011 .proc_handler = proc_dointvec,
1012 },
Eric Dumazet2c04ac82017-10-26 21:54:58 -07001013 {
1014 .procname = "tcp_thin_linear_timeouts",
1015 .data = &init_net.ipv4.sysctl_tcp_thin_linear_timeouts,
1016 .maxlen = sizeof(int),
1017 .mode = 0644,
1018 .proc_handler = proc_dointvec
1019 },
Eric Dumazetb510f0d2017-10-26 21:54:59 -07001020 {
1021 .procname = "tcp_slow_start_after_idle",
1022 .data = &init_net.ipv4.sysctl_tcp_slow_start_after_idle,
1023 .maxlen = sizeof(int),
1024 .mode = 0644,
1025 .proc_handler = proc_dointvec
1026 },
Eric Dumazete0a1e5b2017-10-26 21:55:00 -07001027 {
1028 .procname = "tcp_retrans_collapse",
1029 .data = &init_net.ipv4.sysctl_tcp_retrans_collapse,
1030 .maxlen = sizeof(int),
1031 .mode = 0644,
1032 .proc_handler = proc_dointvec
1033 },
Eric Dumazet3f4c7c62017-10-26 21:55:01 -07001034 {
1035 .procname = "tcp_stdurg",
1036 .data = &init_net.ipv4.sysctl_tcp_stdurg,
1037 .maxlen = sizeof(int),
1038 .mode = 0644,
1039 .proc_handler = proc_dointvec
1040 },
Eric Dumazet625357a2017-10-26 21:55:02 -07001041 {
1042 .procname = "tcp_rfc1337",
1043 .data = &init_net.ipv4.sysctl_tcp_rfc1337,
1044 .maxlen = sizeof(int),
1045 .mode = 0644,
1046 .proc_handler = proc_dointvec
1047 },
Eric Dumazet65c94102017-10-26 21:55:03 -07001048 {
1049 .procname = "tcp_abort_on_overflow",
1050 .data = &init_net.ipv4.sysctl_tcp_abort_on_overflow,
1051 .maxlen = sizeof(int),
1052 .mode = 0644,
1053 .proc_handler = proc_dointvec
1054 },
Eric Dumazet0bc65a22017-10-26 21:55:04 -07001055 {
1056 .procname = "tcp_fack",
1057 .data = &init_net.ipv4.sysctl_tcp_fack,
1058 .maxlen = sizeof(int),
1059 .mode = 0644,
1060 .proc_handler = proc_dointvec
1061 },
Eric Dumazetc6e21802017-10-26 21:55:06 -07001062 {
1063 .procname = "tcp_max_reordering",
1064 .data = &init_net.ipv4.sysctl_tcp_max_reordering,
1065 .maxlen = sizeof(int),
1066 .mode = 0644,
1067 .proc_handler = proc_dointvec
1068 },
Eric Dumazet6496f6b2017-10-26 21:55:07 -07001069 {
1070 .procname = "tcp_dsack",
1071 .data = &init_net.ipv4.sysctl_tcp_dsack,
1072 .maxlen = sizeof(int),
1073 .mode = 0644,
1074 .proc_handler = proc_dointvec
1075 },
Eric Dumazet0c126542017-10-26 21:55:08 -07001076 {
1077 .procname = "tcp_app_win",
1078 .data = &init_net.ipv4.sysctl_tcp_app_win,
1079 .maxlen = sizeof(int),
1080 .mode = 0644,
1081 .proc_handler = proc_dointvec
1082 },
Eric Dumazet94f08932017-10-26 21:55:09 -07001083 {
1084 .procname = "tcp_adv_win_scale",
1085 .data = &init_net.ipv4.sysctl_tcp_adv_win_scale,
1086 .maxlen = sizeof(int),
1087 .mode = 0644,
1088 .proc_handler = proc_dointvec_minmax,
1089 .extra1 = &tcp_adv_win_scale_min,
1090 .extra2 = &tcp_adv_win_scale_max,
1091 },
Eric Dumazetaf9b69a2017-10-26 21:55:10 -07001092 {
1093 .procname = "tcp_frto",
1094 .data = &init_net.ipv4.sysctl_tcp_frto,
1095 .maxlen = sizeof(int),
1096 .mode = 0644,
1097 .proc_handler = proc_dointvec
1098 },
Eric Dumazetec36e412017-10-27 07:47:21 -07001099 {
1100 .procname = "tcp_no_metrics_save",
1101 .data = &init_net.ipv4.sysctl_tcp_nometrics_save,
1102 .maxlen = sizeof(int),
1103 .mode = 0644,
1104 .proc_handler = proc_dointvec,
1105 },
Eric Dumazet4540c0c2017-10-27 07:47:22 -07001106 {
1107 .procname = "tcp_moderate_rcvbuf",
1108 .data = &init_net.ipv4.sysctl_tcp_moderate_rcvbuf,
1109 .maxlen = sizeof(int),
1110 .mode = 0644,
1111 .proc_handler = proc_dointvec,
1112 },
Eric Dumazetd06a9902017-10-27 07:47:23 -07001113 {
1114 .procname = "tcp_tso_win_divisor",
1115 .data = &init_net.ipv4.sysctl_tcp_tso_win_divisor,
1116 .maxlen = sizeof(int),
1117 .mode = 0644,
1118 .proc_handler = proc_dointvec,
1119 },
Eric Dumazetceef9ab2017-10-27 07:47:24 -07001120 {
1121 .procname = "tcp_workaround_signed_windows",
1122 .data = &init_net.ipv4.sysctl_tcp_workaround_signed_windows,
1123 .maxlen = sizeof(int),
1124 .mode = 0644,
1125 .proc_handler = proc_dointvec
1126 },
Eric Dumazet9184d8b2017-10-27 07:47:25 -07001127 {
1128 .procname = "tcp_limit_output_bytes",
1129 .data = &init_net.ipv4.sysctl_tcp_limit_output_bytes,
1130 .maxlen = sizeof(int),
1131 .mode = 0644,
1132 .proc_handler = proc_dointvec
1133 },
Eric Dumazetb530b682017-10-27 07:47:26 -07001134 {
1135 .procname = "tcp_challenge_ack_limit",
1136 .data = &init_net.ipv4.sysctl_tcp_challenge_ack_limit,
1137 .maxlen = sizeof(int),
1138 .mode = 0644,
1139 .proc_handler = proc_dointvec
1140 },
Eric Dumazet26e95962017-10-27 07:47:27 -07001141 {
1142 .procname = "tcp_min_tso_segs",
1143 .data = &init_net.ipv4.sysctl_tcp_min_tso_segs,
1144 .maxlen = sizeof(int),
1145 .mode = 0644,
1146 .proc_handler = proc_dointvec_minmax,
1147 .extra1 = &one,
1148 .extra2 = &gso_max_segs,
1149 },
Eric Dumazetbd239702017-10-27 07:47:28 -07001150 {
1151 .procname = "tcp_min_rtt_wlen",
1152 .data = &init_net.ipv4.sysctl_tcp_min_rtt_wlen,
1153 .maxlen = sizeof(int),
1154 .mode = 0644,
ZhangXiaoxu19fad202019-04-16 09:47:24 +08001155 .proc_handler = proc_dointvec_minmax,
1156 .extra1 = &zero,
1157 .extra2 = &one_day_secs
Eric Dumazetbd239702017-10-27 07:47:28 -07001158 },
Eric Dumazet790f00e2017-10-27 07:47:29 -07001159 {
1160 .procname = "tcp_autocorking",
1161 .data = &init_net.ipv4.sysctl_tcp_autocorking,
1162 .maxlen = sizeof(int),
1163 .mode = 0644,
1164 .proc_handler = proc_dointvec_minmax,
1165 .extra1 = &zero,
1166 .extra2 = &one,
1167 },
Eric Dumazet4170ba62017-10-27 07:47:30 -07001168 {
1169 .procname = "tcp_invalid_ratelimit",
1170 .data = &init_net.ipv4.sysctl_tcp_invalid_ratelimit,
1171 .maxlen = sizeof(int),
1172 .mode = 0644,
1173 .proc_handler = proc_dointvec_ms_jiffies,
1174 },
Eric Dumazet23a7102a2017-10-27 07:47:31 -07001175 {
1176 .procname = "tcp_pacing_ss_ratio",
1177 .data = &init_net.ipv4.sysctl_tcp_pacing_ss_ratio,
1178 .maxlen = sizeof(int),
1179 .mode = 0644,
1180 .proc_handler = proc_dointvec_minmax,
1181 .extra1 = &zero,
1182 .extra2 = &thousand,
1183 },
Eric Dumazetc26e91f2017-10-27 07:47:32 -07001184 {
1185 .procname = "tcp_pacing_ca_ratio",
1186 .data = &init_net.ipv4.sysctl_tcp_pacing_ca_ratio,
1187 .maxlen = sizeof(int),
1188 .mode = 0644,
1189 .proc_handler = proc_dointvec_minmax,
1190 .extra1 = &zero,
1191 .extra2 = &thousand,
1192 },
Eric Dumazet356d1832017-11-07 00:29:28 -08001193 {
1194 .procname = "tcp_wmem",
1195 .data = &init_net.ipv4.sysctl_tcp_wmem,
1196 .maxlen = sizeof(init_net.ipv4.sysctl_tcp_wmem),
1197 .mode = 0644,
1198 .proc_handler = proc_dointvec_minmax,
1199 .extra1 = &one,
1200 },
1201 {
1202 .procname = "tcp_rmem",
1203 .data = &init_net.ipv4.sysctl_tcp_rmem,
1204 .maxlen = sizeof(init_net.ipv4.sysctl_tcp_rmem),
1205 .mode = 0644,
1206 .proc_handler = proc_dointvec_minmax,
1207 .extra1 = &one,
1208 },
Tonghao Zhang1e802952018-03-13 21:57:16 -07001209 {
Eric Dumazet6d82aa22018-05-17 14:47:28 -07001210 .procname = "tcp_comp_sack_delay_ns",
1211 .data = &init_net.ipv4.sysctl_tcp_comp_sack_delay_ns,
1212 .maxlen = sizeof(unsigned long),
1213 .mode = 0644,
1214 .proc_handler = proc_doulongvec_minmax,
1215 },
1216 {
Eric Dumazet9c21d2f2018-05-17 14:47:29 -07001217 .procname = "tcp_comp_sack_nr",
1218 .data = &init_net.ipv4.sysctl_tcp_comp_sack_nr,
1219 .maxlen = sizeof(int),
1220 .mode = 0644,
1221 .proc_handler = proc_dointvec_minmax,
1222 .extra1 = &zero,
1223 .extra2 = &comp_sack_nr_max,
1224 },
1225 {
Tonghao Zhang1e802952018-03-13 21:57:16 -07001226 .procname = "udp_rmem_min",
1227 .data = &init_net.ipv4.sysctl_udp_rmem_min,
1228 .maxlen = sizeof(init_net.ipv4.sysctl_udp_rmem_min),
1229 .mode = 0644,
1230 .proc_handler = proc_dointvec_minmax,
1231 .extra1 = &one
1232 },
1233 {
1234 .procname = "udp_wmem_min",
1235 .data = &init_net.ipv4.sysctl_udp_wmem_min,
1236 .maxlen = sizeof(init_net.ipv4.sysctl_udp_wmem_min),
1237 .mode = 0644,
1238 .proc_handler = proc_dointvec_minmax,
1239 .extra1 = &one
1240 },
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001241 { }
1242};
1243
Pavel Emelyanov15775192008-03-26 01:54:18 -07001244static __net_init int ipv4_sysctl_init_net(struct net *net)
1245{
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001246 struct ctl_table *table;
1247
1248 table = ipv4_net_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001249 if (!net_eq(net, &init_net)) {
Eric W. Biederman0a6fa232013-10-19 16:27:03 -07001250 int i;
1251
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001252 table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +01001253 if (!table)
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001254 goto err_alloc;
1255
Eric W. Biederman0a6fa232013-10-19 16:27:03 -07001256 /* Update the variables to point into the current struct net */
1257 for (i = 0; i < ARRAY_SIZE(ipv4_net_table) - 1; i++)
1258 table[i].data += (void *)net - (void *)&init_net;
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001259 }
1260
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001261 net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +01001262 if (!net->ipv4.ipv4_hdr)
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001263 goto err_reg;
1264
WANG Cong122ff242014-05-12 16:04:53 -07001265 net->ipv4.sysctl_local_reserved_ports = kzalloc(65536 / 8, GFP_KERNEL);
1266 if (!net->ipv4.sysctl_local_reserved_ports)
1267 goto err_ports;
1268
Pavel Emelyanov15775192008-03-26 01:54:18 -07001269 return 0;
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001270
WANG Cong122ff242014-05-12 16:04:53 -07001271err_ports:
1272 unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001273err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08001274 if (!net_eq(net, &init_net))
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001275 kfree(table);
1276err_alloc:
1277 return -ENOMEM;
Pavel Emelyanov15775192008-03-26 01:54:18 -07001278}
1279
1280static __net_exit void ipv4_sysctl_exit_net(struct net *net)
1281{
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001282 struct ctl_table *table;
1283
WANG Cong122ff242014-05-12 16:04:53 -07001284 kfree(net->ipv4.sysctl_local_reserved_ports);
Pavel Emelyanov68528f02008-03-26 01:56:24 -07001285 table = net->ipv4.ipv4_hdr->ctl_table_arg;
1286 unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
1287 kfree(table);
Pavel Emelyanov15775192008-03-26 01:54:18 -07001288}
1289
1290static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
1291 .init = ipv4_sysctl_init_net,
1292 .exit = ipv4_sysctl_exit_net,
1293};
1294
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -08001295static __init int sysctl_ipv4_init(void)
1296{
1297 struct ctl_table_header *hdr;
1298
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001299 hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
Ian Morris51456b22015-04-03 09:17:26 +01001300 if (!hdr)
Pavel Emelyanov15775192008-03-26 01:54:18 -07001301 return -ENOMEM;
1302
1303 if (register_pernet_subsys(&ipv4_sysctl_ops)) {
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001304 unregister_net_sysctl_table(hdr);
Pavel Emelyanov15775192008-03-26 01:54:18 -07001305 return -ENOMEM;
1306 }
1307
1308 return 0;
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -08001309}
1310
1311__initcall(sysctl_ipv4_init);