blob: 8457f7bc4d89234f408366625754425f29c5be72 [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>
Glauber Costa3aaabe22011-12-11 21:47:06 +000027#include <net/tcp_memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Herbert Xu89cee8b2005-12-13 23:14:27 -080029static int zero;
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +000030static int one = 1;
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +000031static int four = 4;
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;
Eric Dumazet249fab72010-12-13 12:16:14 -080038static int ip_ttl_min = 1;
39static int ip_ttl_max = 255;
Michal Tesar651e9272013-07-19 14:09:01 +020040static int tcp_syn_retries_min = 1;
41static int tcp_syn_retries_max = MAX_TCP_SYNCNT;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000042static int ip_ping_group_range_min[] = { 0, 0 };
43static int ip_ping_group_range_max[] = { GID_T_MAX, GID_T_MAX };
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Stephen Hemminger227b60f2007-10-10 17:30:46 -070045/* Update system visible IP port range */
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070046static void set_local_port_range(struct net *net, int range[2])
Stephen Hemminger227b60f2007-10-10 17:30:46 -070047{
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070048 write_seqlock(&net->ipv4.sysctl_local_ports.lock);
49 net->ipv4.sysctl_local_ports.range[0] = range[0];
50 net->ipv4.sysctl_local_ports.range[1] = range[1];
51 write_sequnlock(&net->ipv4.sysctl_local_ports.lock);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070052}
53
54/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -070055static int ipv4_local_port_range(struct ctl_table *table, int write,
Stephen Hemminger227b60f2007-10-10 17:30:46 -070056 void __user *buffer,
57 size_t *lenp, loff_t *ppos)
58{
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070059 struct net *net =
60 container_of(table->data, struct net, ipv4.sysctl_local_ports.range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070061 int ret;
Eric Dumazet3c689b72008-10-08 14:18:04 -070062 int range[2];
Joe Perchesfe2c6332013-06-11 23:04:25 -070063 struct ctl_table tmp = {
Stephen Hemminger227b60f2007-10-10 17:30:46 -070064 .data = &range,
65 .maxlen = sizeof(range),
66 .mode = table->mode,
67 .extra1 = &ip_local_port_range_min,
68 .extra2 = &ip_local_port_range_max,
69 };
70
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070071 inet_get_local_port_range(net, &range[0], &range[1]);
72
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070073 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070074
75 if (write && ret == 0) {
Anton Arapova25de532007-10-18 22:00:17 -070076 if (range[1] < range[0])
Stephen Hemminger227b60f2007-10-10 17:30:46 -070077 ret = -EINVAL;
78 else
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070079 set_local_port_range(net, range);
Stephen Hemminger227b60f2007-10-10 17:30:46 -070080 }
81
82 return ret;
83}
84
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000085
Eric W. Biederman7064d162012-05-24 10:34:21 -060086static void inet_get_ping_group_range_table(struct ctl_table *table, kgid_t *low, kgid_t *high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000087{
Eric W. Biederman7064d162012-05-24 10:34:21 -060088 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070089 struct net *net =
90 container_of(table->data, struct net, ipv4.sysctl_ping_group_range);
Eric Dumazet95c96172012-04-15 05:58:06 +000091 unsigned int seq;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000092 do {
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070093 seq = read_seqbegin(&net->ipv4.sysctl_local_ports.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000094
95 *low = data[0];
96 *high = data[1];
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -070097 } while (read_seqretry(&net->ipv4.sysctl_local_ports.lock, seq));
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +000098}
99
100/* Update system visible IP port range */
Eric W. Biederman7064d162012-05-24 10:34:21 -0600101static void set_ping_group_range(struct ctl_table *table, kgid_t low, kgid_t high)
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000102{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600103 kgid_t *data = table->data;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700104 struct net *net =
105 container_of(table->data, struct net, ipv4.sysctl_ping_group_range);
106 write_seqlock(&net->ipv4.sysctl_local_ports.lock);
Eric W. Biederman7064d162012-05-24 10:34:21 -0600107 data[0] = low;
108 data[1] = high;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700109 write_sequnlock(&net->ipv4.sysctl_local_ports.lock);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000110}
111
112/* Validate changes from /proc interface. */
Joe Perchesfe2c6332013-06-11 23:04:25 -0700113static int ipv4_ping_group_range(struct ctl_table *table, int write,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000114 void __user *buffer,
115 size_t *lenp, loff_t *ppos)
116{
Eric W. Biederman7064d162012-05-24 10:34:21 -0600117 struct user_namespace *user_ns = current_user_ns();
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000118 int ret;
Eric W. Biederman7064d162012-05-24 10:34:21 -0600119 gid_t urange[2];
120 kgid_t low, high;
Joe Perchesfe2c6332013-06-11 23:04:25 -0700121 struct ctl_table tmp = {
Eric W. Biederman7064d162012-05-24 10:34:21 -0600122 .data = &urange,
123 .maxlen = sizeof(urange),
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000124 .mode = table->mode,
125 .extra1 = &ip_ping_group_range_min,
126 .extra2 = &ip_ping_group_range_max,
127 };
128
Eric W. Biederman7064d162012-05-24 10:34:21 -0600129 inet_get_ping_group_range_table(table, &low, &high);
130 urange[0] = from_kgid_munged(user_ns, low);
131 urange[1] = from_kgid_munged(user_ns, high);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000132 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
133
Eric W. Biederman7064d162012-05-24 10:34:21 -0600134 if (write && ret == 0) {
135 low = make_kgid(user_ns, urange[0]);
136 high = make_kgid(user_ns, urange[1]);
137 if (!gid_valid(low) || !gid_valid(high) ||
138 (urange[1] < urange[0]) || gid_lt(high, low)) {
139 low = make_kgid(&init_user_ns, 1);
140 high = make_kgid(&init_user_ns, 0);
141 }
142 set_ping_group_range(table, low, high);
143 }
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000144
145 return ret;
146}
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static int proc_tcp_congestion_control(struct ctl_table *ctl, int write,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700149 void __user *buffer, size_t *lenp, loff_t *ppos)
150{
151 char val[TCP_CA_NAME_MAX];
Joe Perchesfe2c6332013-06-11 23:04:25 -0700152 struct ctl_table tbl = {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700153 .data = val,
154 .maxlen = TCP_CA_NAME_MAX,
155 };
156 int ret;
157
158 tcp_get_default_congestion_control(val);
159
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700160 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700161 if (write && ret == 0)
162 ret = tcp_set_default_congestion_control(val);
163 return ret;
164}
165
Joe Perchesfe2c6332013-06-11 23:04:25 -0700166static int proc_tcp_available_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700167 int write,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800168 void __user *buffer, size_t *lenp,
169 loff_t *ppos)
170{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700171 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX, };
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800172 int ret;
173
174 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
175 if (!tbl.data)
176 return -ENOMEM;
177 tcp_get_available_congestion_control(tbl.data, TCP_CA_BUF_MAX);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700178 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800179 kfree(tbl.data);
180 return ret;
181}
182
Joe Perchesfe2c6332013-06-11 23:04:25 -0700183static int proc_allowed_congestion_control(struct ctl_table *ctl,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700184 int write,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800185 void __user *buffer, size_t *lenp,
186 loff_t *ppos)
187{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700188 struct ctl_table tbl = { .maxlen = TCP_CA_BUF_MAX };
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800189 int ret;
190
191 tbl.data = kmalloc(tbl.maxlen, GFP_USER);
192 if (!tbl.data)
193 return -ENOMEM;
194
195 tcp_get_allowed_congestion_control(tbl.data, tbl.maxlen);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700196 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800197 if (write && ret == 0)
198 ret = tcp_set_allowed_congestion_control(tbl.data);
199 kfree(tbl.data);
200 return ret;
201}
202
Joe Perchesfe2c6332013-06-11 23:04:25 -0700203static int ipv4_tcp_mem(struct ctl_table *ctl, int write,
Glauber Costa3dc43e32011-12-11 21:47:05 +0000204 void __user *buffer, size_t *lenp,
205 loff_t *ppos)
206{
Eric W. Biedermanf594d632013-10-19 16:24:52 -0700207 ctl->data = &current->nsproxy->net_ns->ipv4.sysctl_tcp_mem;
208 return proc_doulongvec_minmax(ctl, write, buffer, lenp, ppos);
Glauber Costa3dc43e32011-12-11 21:47:05 +0000209}
210
Joe Perchesfe2c6332013-06-11 23:04:25 -0700211static int proc_tcp_fastopen_key(struct ctl_table *ctl, int write,
212 void __user *buffer, size_t *lenp,
213 loff_t *ppos)
Jerry Chu10467162012-08-31 12:29:11 +0000214{
Joe Perchesfe2c6332013-06-11 23:04:25 -0700215 struct ctl_table tbl = { .maxlen = (TCP_FASTOPEN_KEY_LENGTH * 2 + 10) };
Jerry Chu10467162012-08-31 12:29:11 +0000216 struct tcp_fastopen_context *ctxt;
217 int ret;
218 u32 user_key[4]; /* 16 bytes, matching TCP_FASTOPEN_KEY_LENGTH */
219
220 tbl.data = kmalloc(tbl.maxlen, GFP_KERNEL);
221 if (!tbl.data)
222 return -ENOMEM;
223
224 rcu_read_lock();
225 ctxt = rcu_dereference(tcp_fastopen_ctx);
226 if (ctxt)
227 memcpy(user_key, ctxt->key, TCP_FASTOPEN_KEY_LENGTH);
Alan Cox0e24c4f2012-10-11 06:24:14 +0000228 else
229 memset(user_key, 0, sizeof(user_key));
Jerry Chu10467162012-08-31 12:29:11 +0000230 rcu_read_unlock();
231
232 snprintf(tbl.data, tbl.maxlen, "%08x-%08x-%08x-%08x",
233 user_key[0], user_key[1], user_key[2], user_key[3]);
234 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
235
236 if (write && ret == 0) {
237 if (sscanf(tbl.data, "%x-%x-%x-%x", user_key, user_key + 1,
238 user_key + 2, user_key + 3) != 4) {
239 ret = -EINVAL;
240 goto bad_key;
241 }
Hannes Frederic Sowa222e83d2013-10-19 21:48:58 +0200242 /* Generate a dummy secret but don't publish it. This
243 * is needed so we don't regenerate a new key on the
244 * first invocation of tcp_fastopen_cookie_gen
245 */
246 tcp_fastopen_init_key_once(false);
Jerry Chu10467162012-08-31 12:29:11 +0000247 tcp_fastopen_reset_cipher(user_key, TCP_FASTOPEN_KEY_LENGTH);
248 }
249
250bad_key:
251 pr_debug("proc FO key set 0x%x-%x-%x-%x <- 0x%s: %u\n",
252 user_key[0], user_key[1], user_key[2], user_key[3],
253 (char *)tbl.data, ret);
254 kfree(tbl.data);
255 return ret;
256}
257
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800258static struct ctl_table ipv4_table[] = {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900259 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .procname = "tcp_timestamps",
261 .data = &sysctl_tcp_timestamps,
262 .maxlen = sizeof(int),
263 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800264 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900266 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .procname = "tcp_window_scaling",
268 .data = &sysctl_tcp_window_scaling,
269 .maxlen = sizeof(int),
270 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800271 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900273 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 .procname = "tcp_sack",
275 .data = &sysctl_tcp_sack,
276 .maxlen = sizeof(int),
277 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800278 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900280 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .procname = "tcp_retrans_collapse",
282 .data = &sysctl_tcp_retrans_collapse,
283 .maxlen = sizeof(int),
284 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800285 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900287 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .procname = "ip_default_ttl",
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900289 .data = &sysctl_ip_default_ttl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .maxlen = sizeof(int),
291 .mode = 0644,
Eric Dumazet249fab72010-12-13 12:16:14 -0800292 .proc_handler = proc_dointvec_minmax,
293 .extra1 = &ip_ttl_min,
294 .extra2 = &ip_ttl_max,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900296 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .procname = "ip_no_pmtu_disc",
298 .data = &ipv4_config.no_pmtu_disc,
299 .maxlen = sizeof(int),
300 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800301 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 },
303 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .procname = "ip_nonlocal_bind",
305 .data = &sysctl_ip_nonlocal_bind,
306 .maxlen = sizeof(int),
307 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800308 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 },
310 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 .procname = "tcp_syn_retries",
312 .data = &sysctl_tcp_syn_retries,
313 .maxlen = sizeof(int),
314 .mode = 0644,
Michal Tesar651e9272013-07-19 14:09:01 +0200315 .proc_handler = proc_dointvec_minmax,
316 .extra1 = &tcp_syn_retries_min,
317 .extra2 = &tcp_syn_retries_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 },
319 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 .procname = "tcp_synack_retries",
321 .data = &sysctl_tcp_synack_retries,
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 },
326 {
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 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .procname = "tcp_max_tw_buckets",
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -0700335 .data = &tcp_death_row.sysctl_max_tw_buckets,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 .maxlen = sizeof(int),
337 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800338 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 },
340 {
Alexander Duyck6648bd72012-06-21 13:58:31 +0000341 .procname = "ip_early_demux",
342 .data = &sysctl_ip_early_demux,
343 .maxlen = sizeof(int),
344 .mode = 0644,
345 .proc_handler = proc_dointvec
346 },
347 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 .procname = "ip_dynaddr",
349 .data = &sysctl_ip_dynaddr,
350 .maxlen = sizeof(int),
351 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800352 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 },
354 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 .procname = "tcp_keepalive_time",
356 .data = &sysctl_tcp_keepalive_time,
357 .maxlen = sizeof(int),
358 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800359 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 },
361 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .procname = "tcp_keepalive_probes",
363 .data = &sysctl_tcp_keepalive_probes,
364 .maxlen = sizeof(int),
365 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800366 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 },
368 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .procname = "tcp_keepalive_intvl",
370 .data = &sysctl_tcp_keepalive_intvl,
371 .maxlen = sizeof(int),
372 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800373 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 },
375 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 .procname = "tcp_retries1",
377 .data = &sysctl_tcp_retries1,
378 .maxlen = sizeof(int),
379 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800380 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 .extra2 = &tcp_retr1_max
382 },
383 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 .procname = "tcp_retries2",
385 .data = &sysctl_tcp_retries2,
386 .maxlen = sizeof(int),
387 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800388 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 },
390 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 .procname = "tcp_fin_timeout",
392 .data = &sysctl_tcp_fin_timeout,
393 .maxlen = sizeof(int),
394 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800395 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 },
397#ifdef CONFIG_SYN_COOKIES
398 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 .procname = "tcp_syncookies",
400 .data = &sysctl_tcp_syncookies,
401 .maxlen = sizeof(int),
402 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800403 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 },
405#endif
406 {
Yuchung Cheng2100c8d2012-07-19 06:43:05 +0000407 .procname = "tcp_fastopen",
408 .data = &sysctl_tcp_fastopen,
409 .maxlen = sizeof(int),
410 .mode = 0644,
411 .proc_handler = proc_dointvec,
412 },
413 {
Jerry Chu10467162012-08-31 12:29:11 +0000414 .procname = "tcp_fastopen_key",
415 .mode = 0600,
416 .maxlen = ((TCP_FASTOPEN_KEY_LENGTH * 2) + 10),
417 .proc_handler = proc_tcp_fastopen_key,
418 },
419 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 .procname = "tcp_tw_recycle",
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -0700421 .data = &tcp_death_row.sysctl_tw_recycle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 .maxlen = sizeof(int),
423 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800424 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 },
426 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 .procname = "tcp_abort_on_overflow",
428 .data = &sysctl_tcp_abort_on_overflow,
429 .maxlen = sizeof(int),
430 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800431 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 },
433 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 .procname = "tcp_stdurg",
435 .data = &sysctl_tcp_stdurg,
436 .maxlen = sizeof(int),
437 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800438 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 },
440 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .procname = "tcp_rfc1337",
442 .data = &sysctl_tcp_rfc1337,
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 = "tcp_max_syn_backlog",
449 .data = &sysctl_max_syn_backlog,
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 {
Amerigo Wange3826f12010-05-05 00:27:06 +0000455 .procname = "ip_local_reserved_ports",
456 .data = NULL, /* initialized in sysctl_ipv4_init */
457 .maxlen = 65536,
458 .mode = 0644,
459 .proc_handler = proc_do_large_bitmap,
460 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .procname = "igmp_max_memberships",
463 .data = &sysctl_igmp_max_memberships,
464 .maxlen = sizeof(int),
465 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800466 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 .procname = "igmp_max_msf",
470 .data = &sysctl_igmp_max_msf,
471 .maxlen = sizeof(int),
472 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800473 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 },
475 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 .procname = "inet_peer_threshold",
477 .data = &inet_peer_threshold,
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 },
482 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 .procname = "inet_peer_minttl",
484 .data = &inet_peer_minttl,
485 .maxlen = sizeof(int),
486 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800487 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 },
489 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 .procname = "inet_peer_maxttl",
491 .data = &inet_peer_maxttl,
492 .maxlen = sizeof(int),
493 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800494 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 },
496 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .procname = "tcp_orphan_retries",
498 .data = &sysctl_tcp_orphan_retries,
499 .maxlen = sizeof(int),
500 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800501 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 },
503 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 .procname = "tcp_fack",
505 .data = &sysctl_tcp_fack,
506 .maxlen = sizeof(int),
507 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800508 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 },
510 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .procname = "tcp_reordering",
512 .data = &sysctl_tcp_reordering,
513 .maxlen = sizeof(int),
514 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800515 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 },
517 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .procname = "tcp_dsack",
519 .data = &sysctl_tcp_dsack,
520 .maxlen = sizeof(int),
521 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800522 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 },
524 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 .procname = "tcp_wmem",
526 .data = &sysctl_tcp_wmem,
527 .maxlen = sizeof(sysctl_tcp_wmem),
528 .mode = 0644,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000529 .proc_handler = proc_dointvec_minmax,
530 .extra1 = &one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 },
532 {
Eric Dumazetc9bee3b72013-07-22 20:27:07 -0700533 .procname = "tcp_notsent_lowat",
534 .data = &sysctl_tcp_notsent_lowat,
535 .maxlen = sizeof(sysctl_tcp_notsent_lowat),
536 .mode = 0644,
537 .proc_handler = proc_dointvec,
538 },
539 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 .procname = "tcp_rmem",
541 .data = &sysctl_tcp_rmem,
542 .maxlen = sizeof(sysctl_tcp_rmem),
543 .mode = 0644,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000544 .proc_handler = proc_dointvec_minmax,
545 .extra1 = &one,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 },
547 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 .procname = "tcp_app_win",
549 .data = &sysctl_tcp_app_win,
550 .maxlen = sizeof(int),
551 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800552 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 },
554 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 .procname = "tcp_adv_win_scale",
556 .data = &sysctl_tcp_adv_win_scale,
557 .maxlen = sizeof(int),
558 .mode = 0644,
Alexey Dobriyan0147fc02010-11-22 12:54:21 +0000559 .proc_handler = proc_dointvec_minmax,
560 .extra1 = &tcp_adv_win_scale_min,
561 .extra2 = &tcp_adv_win_scale_max,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 },
563 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .procname = "tcp_tw_reuse",
565 .data = &sysctl_tcp_tw_reuse,
566 .maxlen = sizeof(int),
567 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800568 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 },
570 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .procname = "tcp_frto",
572 .data = &sysctl_tcp_frto,
573 .maxlen = sizeof(int),
574 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800575 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 },
577 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 .procname = "tcp_low_latency",
579 .data = &sysctl_tcp_low_latency,
580 .maxlen = sizeof(int),
581 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800582 .proc_handler = proc_dointvec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 },
584 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 .procname = "tcp_no_metrics_save",
586 .data = &sysctl_tcp_nometrics_save,
587 .maxlen = sizeof(int),
588 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800589 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 },
591 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 .procname = "tcp_moderate_rcvbuf",
593 .data = &sysctl_tcp_moderate_rcvbuf,
594 .maxlen = sizeof(int),
595 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800596 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 },
598 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 .procname = "tcp_tso_win_divisor",
600 .data = &sysctl_tcp_tso_win_divisor,
601 .maxlen = sizeof(int),
602 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800603 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 },
605 {
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700606 .procname = "tcp_congestion_control",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .mode = 0644,
Stephen Hemminger317a76f2005-06-23 12:19:55 -0700608 .maxlen = TCP_CA_NAME_MAX,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800609 .proc_handler = proc_tcp_congestion_control,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 },
Stephen Hemminger9772efb2005-11-10 17:09:53 -0800611 {
John Heffner5d424d52006-03-20 17:53:41 -0800612 .procname = "tcp_mtu_probing",
613 .data = &sysctl_tcp_mtu_probing,
614 .maxlen = sizeof(int),
615 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800616 .proc_handler = proc_dointvec,
John Heffner5d424d52006-03-20 17:53:41 -0800617 },
618 {
John Heffner5d424d52006-03-20 17:53:41 -0800619 .procname = "tcp_base_mss",
620 .data = &sysctl_tcp_base_mss,
621 .maxlen = sizeof(int),
622 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800623 .proc_handler = proc_dointvec,
John Heffner5d424d52006-03-20 17:53:41 -0800624 },
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900625 {
Rick Jones15d99e02006-03-20 22:40:29 -0800626 .procname = "tcp_workaround_signed_windows",
627 .data = &sysctl_tcp_workaround_signed_windows,
628 .maxlen = sizeof(int),
629 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800630 .proc_handler = proc_dointvec
Rick Jones15d99e02006-03-20 22:40:29 -0800631 },
Eric Dumazet46d3cea2012-07-11 05:50:31 +0000632 {
633 .procname = "tcp_limit_output_bytes",
634 .data = &sysctl_tcp_limit_output_bytes,
635 .maxlen = sizeof(int),
636 .mode = 0644,
637 .proc_handler = proc_dointvec
638 },
Eric Dumazet282f23c2012-07-17 10:13:05 +0200639 {
640 .procname = "tcp_challenge_ack_limit",
641 .data = &sysctl_tcp_challenge_ack_limit,
642 .maxlen = sizeof(int),
643 .mode = 0644,
644 .proc_handler = proc_dointvec
645 },
Chris Leech95937822006-05-23 18:02:55 -0700646#ifdef CONFIG_NET_DMA
647 {
Chris Leech95937822006-05-23 18:02:55 -0700648 .procname = "tcp_dma_copybreak",
649 .data = &sysctl_tcp_dma_copybreak,
650 .maxlen = sizeof(int),
651 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800652 .proc_handler = proc_dointvec
Chris Leech95937822006-05-23 18:02:55 -0700653 },
654#endif
David S. Miller35089bb2006-06-13 22:33:04 -0700655 {
David S. Miller35089bb2006-06-13 22:33:04 -0700656 .procname = "tcp_slow_start_after_idle",
657 .data = &sysctl_tcp_slow_start_after_idle,
658 .maxlen = sizeof(int),
659 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800660 .proc_handler = proc_dointvec
David S. Miller35089bb2006-06-13 22:33:04 -0700661 },
Paul Moore446fda42006-08-03 16:48:06 -0700662#ifdef CONFIG_NETLABEL
663 {
Paul Moore446fda42006-08-03 16:48:06 -0700664 .procname = "cipso_cache_enable",
665 .data = &cipso_v4_cache_enabled,
666 .maxlen = sizeof(int),
667 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800668 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700669 },
670 {
Paul Moore446fda42006-08-03 16:48:06 -0700671 .procname = "cipso_cache_bucket_size",
672 .data = &cipso_v4_cache_bucketsize,
673 .maxlen = sizeof(int),
674 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800675 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700676 },
677 {
Paul Moore446fda42006-08-03 16:48:06 -0700678 .procname = "cipso_rbm_optfmt",
679 .data = &cipso_v4_rbm_optfmt,
680 .maxlen = sizeof(int),
681 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800682 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700683 },
684 {
Paul Moore446fda42006-08-03 16:48:06 -0700685 .procname = "cipso_rbm_strictvalid",
686 .data = &cipso_v4_rbm_strictvalid,
687 .maxlen = sizeof(int),
688 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800689 .proc_handler = proc_dointvec,
Paul Moore446fda42006-08-03 16:48:06 -0700690 },
691#endif /* CONFIG_NETLABEL */
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800692 {
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800693 .procname = "tcp_available_congestion_control",
694 .maxlen = TCP_CA_BUF_MAX,
695 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800696 .proc_handler = proc_tcp_available_congestion_control,
Stephen Hemminger3ff825b2006-11-09 16:32:06 -0800697 },
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800698 {
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800699 .procname = "tcp_allowed_congestion_control",
700 .maxlen = TCP_CA_BUF_MAX,
701 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800702 .proc_handler = proc_allowed_congestion_control,
Stephen Hemmingerce7bc3b2006-11-09 16:35:15 -0800703 },
John Heffner886236c2007-03-25 19:21:45 -0700704 {
John Heffner886236c2007-03-25 19:21:45 -0700705 .procname = "tcp_max_ssthresh",
706 .data = &sysctl_tcp_max_ssthresh,
707 .maxlen = sizeof(int),
708 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800709 .proc_handler = proc_dointvec,
John Heffner886236c2007-03-25 19:21:45 -0700710 },
Hideo Aoki95766ff2007-12-31 00:29:24 -0800711 {
Andreas Petlund36e31b0a2010-02-18 02:47:01 +0000712 .procname = "tcp_thin_linear_timeouts",
713 .data = &sysctl_tcp_thin_linear_timeouts,
714 .maxlen = sizeof(int),
715 .mode = 0644,
716 .proc_handler = proc_dointvec
717 },
Andreas Petlund7e380172010-02-18 04:48:19 +0000718 {
719 .procname = "tcp_thin_dupack",
720 .data = &sysctl_tcp_thin_dupack,
721 .maxlen = sizeof(int),
722 .mode = 0644,
723 .proc_handler = proc_dointvec
724 },
Andreas Petlund36e31b0a2010-02-18 02:47:01 +0000725 {
Yuchung Chengeed530b2012-05-02 13:30:03 +0000726 .procname = "tcp_early_retrans",
727 .data = &sysctl_tcp_early_retrans,
728 .maxlen = sizeof(int),
729 .mode = 0644,
730 .proc_handler = proc_dointvec_minmax,
731 .extra1 = &zero,
Nandita Dukkipati6ba8a3b2013-03-11 10:00:43 +0000732 .extra2 = &four,
Yuchung Chengeed530b2012-05-02 13:30:03 +0000733 },
734 {
Eric Dumazet95bd09e2013-08-27 05:46:32 -0700735 .procname = "tcp_min_tso_segs",
736 .data = &sysctl_tcp_min_tso_segs,
737 .maxlen = sizeof(int),
738 .mode = 0644,
739 .proc_handler = proc_dointvec_minmax,
740 .extra1 = &zero,
741 .extra2 = &gso_max_segs,
742 },
743 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800744 .procname = "udp_mem",
745 .data = &sysctl_udp_mem,
746 .maxlen = sizeof(sysctl_udp_mem),
747 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +0000748 .proc_handler = proc_doulongvec_minmax,
Hideo Aoki95766ff2007-12-31 00:29:24 -0800749 },
750 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800751 .procname = "udp_rmem_min",
752 .data = &sysctl_udp_rmem_min,
753 .maxlen = sizeof(sysctl_udp_rmem_min),
754 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800755 .proc_handler = proc_dointvec_minmax,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000756 .extra1 = &one
Hideo Aoki95766ff2007-12-31 00:29:24 -0800757 },
758 {
Hideo Aoki95766ff2007-12-31 00:29:24 -0800759 .procname = "udp_wmem_min",
760 .data = &sysctl_udp_wmem_min,
761 .maxlen = sizeof(sysctl_udp_wmem_min),
762 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800763 .proc_handler = proc_dointvec_minmax,
bingtian.ly@taobao.comcdda8892013-01-23 20:35:28 +0000764 .extra1 = &one
Hideo Aoki95766ff2007-12-31 00:29:24 -0800765 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800766 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767};
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800768
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700769static struct ctl_table ipv4_net_table[] = {
770 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700771 .procname = "icmp_echo_ignore_all",
772 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_all,
773 .maxlen = sizeof(int),
774 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800775 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700776 },
777 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700778 .procname = "icmp_echo_ignore_broadcasts",
779 .data = &init_net.ipv4.sysctl_icmp_echo_ignore_broadcasts,
780 .maxlen = sizeof(int),
781 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800782 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700783 },
784 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700785 .procname = "icmp_ignore_bogus_error_responses",
786 .data = &init_net.ipv4.sysctl_icmp_ignore_bogus_error_responses,
787 .maxlen = sizeof(int),
788 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800789 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700790 },
791 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700792 .procname = "icmp_errors_use_inbound_ifaddr",
793 .data = &init_net.ipv4.sysctl_icmp_errors_use_inbound_ifaddr,
794 .maxlen = sizeof(int),
795 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800796 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700797 },
798 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700799 .procname = "icmp_ratelimit",
800 .data = &init_net.ipv4.sysctl_icmp_ratelimit,
801 .maxlen = sizeof(int),
802 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800803 .proc_handler = proc_dointvec_ms_jiffies,
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700804 },
805 {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700806 .procname = "icmp_ratemask",
807 .data = &init_net.ipv4.sysctl_icmp_ratemask,
808 .maxlen = sizeof(int),
809 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800810 .proc_handler = proc_dointvec
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700811 },
Neil Horman1080d702008-10-27 12:28:25 -0700812 {
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000813 .procname = "ping_group_range",
814 .data = &init_net.ipv4.sysctl_ping_group_range,
Eric W. Biederman7064d162012-05-24 10:34:21 -0600815 .maxlen = sizeof(gid_t)*2,
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000816 .mode = 0644,
817 .proc_handler = ipv4_ping_group_range,
818 },
Glauber Costa3dc43e32011-12-11 21:47:05 +0000819 {
Hannes Frederic Sowa5d134f12013-01-05 16:10:48 +0000820 .procname = "tcp_ecn",
821 .data = &init_net.ipv4.sysctl_tcp_ecn,
822 .maxlen = sizeof(int),
823 .mode = 0644,
824 .proc_handler = proc_dointvec
825 },
826 {
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700827 .procname = "ip_local_port_range",
828 .maxlen = sizeof(init_net.ipv4.sysctl_local_ports.range),
829 .data = &init_net.ipv4.sysctl_local_ports.range,
830 .mode = 0644,
831 .proc_handler = ipv4_local_port_range,
832 },
833 {
Glauber Costa3dc43e32011-12-11 21:47:05 +0000834 .procname = "tcp_mem",
835 .maxlen = sizeof(init_net.ipv4.sysctl_tcp_mem),
836 .mode = 0644,
837 .proc_handler = ipv4_tcp_mem,
838 },
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700839 { }
840};
841
Pavel Emelyanov15775192008-03-26 01:54:18 -0700842static __net_init int ipv4_sysctl_init_net(struct net *net)
843{
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700844 struct ctl_table *table;
845
846 table = ipv4_net_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800847 if (!net_eq(net, &init_net)) {
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700848 table = kmemdup(table, sizeof(ipv4_net_table), GFP_KERNEL);
849 if (table == NULL)
850 goto err_alloc;
851
852 table[0].data =
853 &net->ipv4.sysctl_icmp_echo_ignore_all;
854 table[1].data =
855 &net->ipv4.sysctl_icmp_echo_ignore_broadcasts;
856 table[2].data =
857 &net->ipv4.sysctl_icmp_ignore_bogus_error_responses;
858 table[3].data =
859 &net->ipv4.sysctl_icmp_errors_use_inbound_ifaddr;
860 table[4].data =
861 &net->ipv4.sysctl_icmp_ratelimit;
862 table[5].data =
863 &net->ipv4.sysctl_icmp_ratemask;
Neil Horman1080d702008-10-27 12:28:25 -0700864 table[6].data =
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000865 &net->ipv4.sysctl_ping_group_range;
Hannes Frederic Sowa5d134f12013-01-05 16:10:48 +0000866 table[7].data =
867 &net->ipv4.sysctl_tcp_ecn;
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700868 table[8].data =
869 &net->ipv4.sysctl_local_ports.range;
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000870
Eric W. Biederman464dc802012-11-16 03:02:59 +0000871 /* Don't export sysctls to unprivileged users */
872 if (net->user_ns != &init_user_ns)
873 table[0].procname = NULL;
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700874 }
875
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000876 /*
877 * Sane defaults - nobody may create ping sockets.
878 * Boot scripts should set this to distro-specific group.
879 */
Eric W. Biederman7064d162012-05-24 10:34:21 -0600880 net->ipv4.sysctl_ping_group_range[0] = make_kgid(&init_user_ns, 1);
881 net->ipv4.sysctl_ping_group_range[1] = make_kgid(&init_user_ns, 0);
Vasiliy Kulikovc319b4d2011-05-13 10:01:00 +0000882
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -0700883 /*
884 * Set defaults for local port range
885 */
886 seqlock_init(&net->ipv4.sysctl_local_ports.lock);
887 net->ipv4.sysctl_local_ports.range[0] = 32768;
888 net->ipv4.sysctl_local_ports.range[1] = 61000;
889
Glauber Costa4acb4192012-01-30 01:20:17 +0000890 tcp_init_mem(net);
Glauber Costa3dc43e32011-12-11 21:47:05 +0000891
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000892 net->ipv4.ipv4_hdr = register_net_sysctl(net, "net/ipv4", table);
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700893 if (net->ipv4.ipv4_hdr == NULL)
894 goto err_reg;
895
Pavel Emelyanov15775192008-03-26 01:54:18 -0700896 return 0;
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700897
898err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800899 if (!net_eq(net, &init_net))
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700900 kfree(table);
901err_alloc:
902 return -ENOMEM;
Pavel Emelyanov15775192008-03-26 01:54:18 -0700903}
904
905static __net_exit void ipv4_sysctl_exit_net(struct net *net)
906{
Pavel Emelyanov68528f02008-03-26 01:56:24 -0700907 struct ctl_table *table;
908
909 table = net->ipv4.ipv4_hdr->ctl_table_arg;
910 unregister_net_sysctl_table(net->ipv4.ipv4_hdr);
911 kfree(table);
Pavel Emelyanov15775192008-03-26 01:54:18 -0700912}
913
914static __net_initdata struct pernet_operations ipv4_sysctl_ops = {
915 .init = ipv4_sysctl_init_net,
916 .exit = ipv4_sysctl_exit_net,
917};
918
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800919static __init int sysctl_ipv4_init(void)
920{
921 struct ctl_table_header *hdr;
Amerigo Wange3826f12010-05-05 00:27:06 +0000922 struct ctl_table *i;
923
924 for (i = ipv4_table; i->procname; i++) {
925 if (strcmp(i->procname, "ip_local_reserved_ports") == 0) {
926 i->data = sysctl_local_reserved_ports;
927 break;
928 }
929 }
930 if (!i->procname)
931 return -EINVAL;
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800932
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000933 hdr = register_net_sysctl(&init_net, "net/ipv4", ipv4_table);
Pavel Emelyanov15775192008-03-26 01:54:18 -0700934 if (hdr == NULL)
935 return -ENOMEM;
936
937 if (register_pernet_subsys(&ipv4_sysctl_ops)) {
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000938 unregister_net_sysctl_table(hdr);
Pavel Emelyanov15775192008-03-26 01:54:18 -0700939 return -ENOMEM;
940 }
941
942 return 0;
Pavel Emelyanov3e37c3f2007-12-05 01:41:26 -0800943}
944
945__initcall(sysctl_ipv4_init);