blob: 7e5eb75549902eeeb2c0c0889daca8ee53317ccf [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2002, 2004
3 * Copyright (c) 2002 Intel Corp.
4 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05005 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Sysctl related interfaces for SCTP.
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * you can redistribute it and/or modify it under the terms of
11 * the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050015 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
17 * ************************
18 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080022 * along with GNU CC; see the file COPYING. If not, see
23 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 * Please send any bug reports or fixes you make to the
26 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020027 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Written or modified by:
30 * Mingqin Liu <liuming@us.ibm.com>
31 * Jon Grimm <jgrimm@us.ibm.com>
32 * Ardelle Fan <ardelle.fan@intel.com>
33 * Ryan Layer <rmlayer@us.ibm.com>
34 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
37#include <net/sctp/structs.h>
Adrian Bunk8c5955d2005-09-05 18:07:42 -070038#include <net/sctp/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sysctl.h>
40
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070041static int zero = 0;
42static int one = 1;
43static int timer_max = 86400000; /* ms in one day */
44static int int_max = INT_MAX;
Jean-Mickael Guerind48e0742009-05-13 00:03:20 +020045static int sack_timer_min = 1;
46static int sack_timer_max = 500;
Bhaskar Dutta72388432009-09-03 17:25:47 +053047static int addr_scope_max = 3; /* check sctp_scope_policy_t in include/net/sctp/constants.h for max entries */
Vlad Yasevich90f2f532009-11-23 15:53:57 -050048static int rwnd_scale_max = 16;
Xi Wang2692ba62011-12-16 12:44:15 +000049static unsigned long max_autoclose_min = 0;
50static unsigned long max_autoclose_max =
51 (MAX_SCHEDULE_TIMEOUT / HZ > UINT_MAX)
52 ? UINT_MAX : MAX_SCHEDULE_TIMEOUT / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Eric Dumazet8d987e52010-11-09 23:24:26 +000054extern long sysctl_sctp_mem[3];
Vlad Yasevich007e3932007-09-16 16:04:37 -070055extern int sysctl_sctp_rmem[3];
56extern int sysctl_sctp_wmem[3];
Neil Horman4d93df02007-08-15 16:07:44 -070057
wangweidongb486b222013-12-11 09:50:40 +080058static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
Neil Horman3c681982012-10-24 09:20:03 +000059 void __user *buffer, size_t *lenp,
Neil Horman3c681982012-10-24 09:20:03 +000060 loff_t *ppos);
wangweidong4f3fdf32013-12-11 09:50:39 +080061static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
62 void __user *buffer, size_t *lenp,
63 loff_t *ppos);
64static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
65 void __user *buffer, size_t *lenp,
66 loff_t *ppos);
Vlad Yasevichb14878c2014-04-17 17:26:50 +020067static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
68 void __user *buffer, size_t *lenp,
69 loff_t *ppos);
wangweidong4f3fdf32013-12-11 09:50:39 +080070
Joe Perchesfe2c6332013-06-11 23:04:25 -070071static struct ctl_table sctp_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 {
Neil Horman4d93df02007-08-15 16:07:44 -070073 .procname = "sctp_mem",
74 .data = &sysctl_sctp_mem,
75 .maxlen = sizeof(sysctl_sctp_mem),
76 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +000077 .proc_handler = proc_doulongvec_minmax
Neil Horman4d93df02007-08-15 16:07:44 -070078 },
79 {
Neil Horman4d93df02007-08-15 16:07:44 -070080 .procname = "sctp_rmem",
81 .data = &sysctl_sctp_rmem,
82 .maxlen = sizeof(sysctl_sctp_rmem),
83 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080084 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -070085 },
86 {
Neil Horman4d93df02007-08-15 16:07:44 -070087 .procname = "sctp_wmem",
88 .data = &sysctl_sctp_wmem,
89 .maxlen = sizeof(sysctl_sctp_wmem),
90 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080091 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -070092 },
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +000093
94 { /* sentinel */ }
95};
96
Joe Perchesfe2c6332013-06-11 23:04:25 -070097static struct ctl_table sctp_net_table[] = {
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -070098 {
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +000099 .procname = "rto_initial",
100 .data = &init_net.sctp.rto_initial,
101 .maxlen = sizeof(unsigned int),
102 .mode = 0644,
103 .proc_handler = proc_dointvec_minmax,
104 .extra1 = &one,
105 .extra2 = &timer_max
106 },
107 {
108 .procname = "rto_min",
109 .data = &init_net.sctp.rto_min,
110 .maxlen = sizeof(unsigned int),
111 .mode = 0644,
wangweidong4f3fdf32013-12-11 09:50:39 +0800112 .proc_handler = proc_sctp_do_rto_min,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000113 .extra1 = &one,
wangweidong4f3fdf32013-12-11 09:50:39 +0800114 .extra2 = &init_net.sctp.rto_max
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000115 },
116 {
117 .procname = "rto_max",
118 .data = &init_net.sctp.rto_max,
119 .maxlen = sizeof(unsigned int),
120 .mode = 0644,
wangweidong4f3fdf32013-12-11 09:50:39 +0800121 .proc_handler = proc_sctp_do_rto_max,
122 .extra1 = &init_net.sctp.rto_min,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000123 .extra2 = &timer_max
124 },
125 {
126 .procname = "rto_alpha_exp_divisor",
127 .data = &init_net.sctp.rto_alpha,
128 .maxlen = sizeof(int),
129 .mode = 0444,
130 .proc_handler = proc_dointvec,
131 },
132 {
133 .procname = "rto_beta_exp_divisor",
134 .data = &init_net.sctp.rto_beta,
135 .maxlen = sizeof(int),
136 .mode = 0444,
137 .proc_handler = proc_dointvec,
138 },
139 {
140 .procname = "max_burst",
141 .data = &init_net.sctp.max_burst,
142 .maxlen = sizeof(int),
143 .mode = 0644,
144 .proc_handler = proc_dointvec_minmax,
145 .extra1 = &zero,
146 .extra2 = &int_max
147 },
148 {
149 .procname = "cookie_preserve_enable",
150 .data = &init_net.sctp.cookie_preserve_enable,
151 .maxlen = sizeof(int),
152 .mode = 0644,
153 .proc_handler = proc_dointvec,
154 },
155 {
Neil Horman3c681982012-10-24 09:20:03 +0000156 .procname = "cookie_hmac_alg",
wangweidong22a1f5142014-02-12 09:44:43 +0800157 .data = &init_net.sctp.sctp_hmac_alg,
Neil Horman3c681982012-10-24 09:20:03 +0000158 .maxlen = 8,
159 .mode = 0644,
160 .proc_handler = proc_sctp_do_hmac_alg,
161 },
162 {
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000163 .procname = "valid_cookie_life",
164 .data = &init_net.sctp.valid_cookie_life,
165 .maxlen = sizeof(unsigned int),
166 .mode = 0644,
167 .proc_handler = proc_dointvec_minmax,
168 .extra1 = &one,
169 .extra2 = &timer_max
170 },
171 {
172 .procname = "sack_timeout",
173 .data = &init_net.sctp.sack_timeout,
174 .maxlen = sizeof(int),
175 .mode = 0644,
176 .proc_handler = proc_dointvec_minmax,
177 .extra1 = &sack_timer_min,
178 .extra2 = &sack_timer_max,
179 },
180 {
181 .procname = "hb_interval",
182 .data = &init_net.sctp.hb_interval,
183 .maxlen = sizeof(unsigned int),
184 .mode = 0644,
185 .proc_handler = proc_dointvec_minmax,
186 .extra1 = &one,
187 .extra2 = &timer_max
188 },
189 {
190 .procname = "association_max_retrans",
191 .data = &init_net.sctp.max_retrans_association,
192 .maxlen = sizeof(int),
193 .mode = 0644,
194 .proc_handler = proc_dointvec_minmax,
195 .extra1 = &one,
196 .extra2 = &int_max
197 },
198 {
199 .procname = "path_max_retrans",
200 .data = &init_net.sctp.max_retrans_path,
201 .maxlen = sizeof(int),
202 .mode = 0644,
203 .proc_handler = proc_dointvec_minmax,
204 .extra1 = &one,
205 .extra2 = &int_max
206 },
207 {
208 .procname = "max_init_retransmits",
209 .data = &init_net.sctp.max_retrans_init,
210 .maxlen = sizeof(int),
211 .mode = 0644,
212 .proc_handler = proc_dointvec_minmax,
213 .extra1 = &one,
214 .extra2 = &int_max
215 },
216 {
217 .procname = "pf_retrans",
218 .data = &init_net.sctp.pf_retrans,
219 .maxlen = sizeof(int),
220 .mode = 0644,
221 .proc_handler = proc_dointvec_minmax,
222 .extra1 = &zero,
223 .extra2 = &int_max
224 },
225 {
226 .procname = "sndbuf_policy",
227 .data = &init_net.sctp.sndbuf_policy,
228 .maxlen = sizeof(int),
229 .mode = 0644,
230 .proc_handler = proc_dointvec,
231 },
232 {
233 .procname = "rcvbuf_policy",
234 .data = &init_net.sctp.rcvbuf_policy,
235 .maxlen = sizeof(int),
236 .mode = 0644,
237 .proc_handler = proc_dointvec,
238 },
239 {
240 .procname = "default_auto_asconf",
241 .data = &init_net.sctp.default_auto_asconf,
242 .maxlen = sizeof(int),
243 .mode = 0644,
244 .proc_handler = proc_dointvec,
245 },
246 {
247 .procname = "addip_enable",
248 .data = &init_net.sctp.addip_enable,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700249 .maxlen = sizeof(int),
250 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800251 .proc_handler = proc_dointvec,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700252 },
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400253 {
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400254 .procname = "addip_noauth_enable",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000255 .data = &init_net.sctp.addip_noauth,
256 .maxlen = sizeof(int),
257 .mode = 0644,
258 .proc_handler = proc_dointvec,
259 },
260 {
261 .procname = "prsctp_enable",
262 .data = &init_net.sctp.prsctp_enable,
263 .maxlen = sizeof(int),
264 .mode = 0644,
265 .proc_handler = proc_dointvec,
266 },
267 {
268 .procname = "auth_enable",
269 .data = &init_net.sctp.auth_enable,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400270 .maxlen = sizeof(int),
271 .mode = 0644,
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200272 .proc_handler = proc_sctp_do_auth,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400273 },
Bhaskar Dutta72388432009-09-03 17:25:47 +0530274 {
Bhaskar Dutta72388432009-09-03 17:25:47 +0530275 .procname = "addr_scope_policy",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000276 .data = &init_net.sctp.scope_policy,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530277 .maxlen = sizeof(int),
278 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800279 .proc_handler = proc_dointvec_minmax,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530280 .extra1 = &zero,
281 .extra2 = &addr_scope_max,
282 },
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500283 {
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500284 .procname = "rwnd_update_shift",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000285 .data = &init_net.sctp.rwnd_upd_shift,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500286 .maxlen = sizeof(int),
287 .mode = 0644,
288 .proc_handler = &proc_dointvec_minmax,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500289 .extra1 = &one,
290 .extra2 = &rwnd_scale_max,
291 },
Xi Wang2692ba62011-12-16 12:44:15 +0000292 {
293 .procname = "max_autoclose",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000294 .data = &init_net.sctp.max_autoclose,
Xi Wang2692ba62011-12-16 12:44:15 +0000295 .maxlen = sizeof(unsigned long),
296 .mode = 0644,
297 .proc_handler = &proc_doulongvec_minmax,
298 .extra1 = &max_autoclose_min,
299 .extra2 = &max_autoclose_max,
300 },
David S. Miller71acc0d2013-08-09 13:09:41 -0700301
Linus Torvaldsd7fc02c2009-12-08 07:55:01 -0800302 { /* sentinel */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
wangweidongb486b222013-12-11 09:50:40 +0800305static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
Neil Horman3c681982012-10-24 09:20:03 +0000306 void __user *buffer, size_t *lenp,
307 loff_t *ppos)
308{
309 struct net *net = current->nsproxy->net_ns;
310 char tmp[8];
Joe Perchesfe2c6332013-06-11 23:04:25 -0700311 struct ctl_table tbl;
Neil Horman3c681982012-10-24 09:20:03 +0000312 int ret;
313 int changed = 0;
314 char *none = "none";
315
316 memset(&tbl, 0, sizeof(struct ctl_table));
317
318 if (write) {
319 tbl.data = tmp;
320 tbl.maxlen = 8;
321 } else {
322 tbl.data = net->sctp.sctp_hmac_alg ? : none;
323 tbl.maxlen = strlen(tbl.data);
324 }
325 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
326
327 if (write) {
328#ifdef CONFIG_CRYPTO_MD5
329 if (!strncmp(tmp, "md5", 3)) {
330 net->sctp.sctp_hmac_alg = "md5";
331 changed = 1;
332 }
333#endif
334#ifdef CONFIG_CRYPTO_SHA1
335 if (!strncmp(tmp, "sha1", 4)) {
336 net->sctp.sctp_hmac_alg = "sha1";
337 changed = 1;
338 }
339#endif
340 if (!strncmp(tmp, "none", 4)) {
341 net->sctp.sctp_hmac_alg = NULL;
342 changed = 1;
343 }
344
345 if (!changed)
346 ret = -EINVAL;
347 }
348
349 return ret;
350}
351
wangweidong4f3fdf32013-12-11 09:50:39 +0800352static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
353 void __user *buffer, size_t *lenp,
354 loff_t *ppos)
355{
356 struct net *net = current->nsproxy->net_ns;
357 int new_value;
358 struct ctl_table tbl;
359 unsigned int min = *(unsigned int *) ctl->extra1;
360 unsigned int max = *(unsigned int *) ctl->extra2;
361 int ret;
362
363 memset(&tbl, 0, sizeof(struct ctl_table));
364 tbl.maxlen = sizeof(unsigned int);
365
366 if (write)
367 tbl.data = &new_value;
368 else
369 tbl.data = &net->sctp.rto_min;
370 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
371 if (write) {
372 if (ret || new_value > max || new_value < min)
373 return -EINVAL;
374 net->sctp.rto_min = new_value;
375 }
376 return ret;
377}
378
379static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
380 void __user *buffer, size_t *lenp,
381 loff_t *ppos)
382{
383 struct net *net = current->nsproxy->net_ns;
384 int new_value;
385 struct ctl_table tbl;
386 unsigned int min = *(unsigned int *) ctl->extra1;
387 unsigned int max = *(unsigned int *) ctl->extra2;
388 int ret;
389
390 memset(&tbl, 0, sizeof(struct ctl_table));
391 tbl.maxlen = sizeof(unsigned int);
392
393 if (write)
394 tbl.data = &new_value;
395 else
396 tbl.data = &net->sctp.rto_max;
397 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
398 if (write) {
399 if (ret || new_value > max || new_value < min)
400 return -EINVAL;
401 net->sctp.rto_max = new_value;
402 }
403 return ret;
404}
405
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200406static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
407 void __user *buffer, size_t *lenp,
408 loff_t *ppos)
409{
410 struct net *net = current->nsproxy->net_ns;
411 struct ctl_table tbl;
412 int new_value, ret;
413
414 memset(&tbl, 0, sizeof(struct ctl_table));
415 tbl.maxlen = sizeof(unsigned int);
416
417 if (write)
418 tbl.data = &new_value;
419 else
420 tbl.data = &net->sctp.auth_enable;
421
422 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
423
424 if (write) {
425 struct sock *sk = net->sctp.ctl_sock;
426
427 net->sctp.auth_enable = new_value;
428 /* Update the value in the control socket */
429 lock_sock(sk);
430 sctp_sk(sk)->ep->auth_enable = new_value;
431 release_sock(sk);
432 }
433
434 return ret;
435}
436
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000437int sctp_sysctl_net_register(struct net *net)
438{
wangweidongeb9f3702014-05-08 20:55:01 +0800439 struct ctl_table *table;
440 int i;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000441
wangweidongeb9f3702014-05-08 20:55:01 +0800442 table = kmemdup(sctp_net_table, sizeof(sctp_net_table), GFP_KERNEL);
443 if (!table)
444 return -ENOMEM;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000445
wangweidongeb9f3702014-05-08 20:55:01 +0800446 for (i = 0; table[i].data; i++)
447 table[i].data += (char *)(&net->sctp) - (char *)&init_net.sctp;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000448
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000449 net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
wangweidongf66138c2014-05-08 20:55:02 +0800450 if (net->sctp.sysctl_header == NULL) {
451 kfree(table);
452 return -ENOMEM;
453 }
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000454 return 0;
455}
456
457void sctp_sysctl_net_unregister(struct net *net)
458{
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500459 struct ctl_table *table;
460
461 table = net->sctp.sysctl_header->ctl_table_arg;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000462 unregister_net_sysctl_table(net->sctp.sysctl_header);
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500463 kfree(table);
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000464}
465
wangweidong26ac8e52013-12-23 12:16:51 +0800466static struct ctl_table_header *sctp_sysctl_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468/* Sysctl registration. */
469void sctp_sysctl_register(void)
470{
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000471 sctp_sysctl_header = register_net_sysctl(&init_net, "net/sctp", sctp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474/* Sysctl deregistration. */
475void sctp_sysctl_unregister(void)
476{
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000477 unregister_net_sysctl_table(sctp_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}