blob: 43b5e3243871b463a319e2ff3fca0c984d127afb [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
22 * along with GNU CC; see the file COPYING. If not, write to
23 * the Free Software Foundation, 59 Temple Place - Suite 330,
24 * Boston, MA 02111-1307, USA.
25 *
26 * Please send any bug reports or fixes you make to the
27 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020028 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * Written or modified by:
31 * Mingqin Liu <liuming@us.ibm.com>
32 * Jon Grimm <jgrimm@us.ibm.com>
33 * Ardelle Fan <ardelle.fan@intel.com>
34 * Ryan Layer <rmlayer@us.ibm.com>
35 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38#include <net/sctp/structs.h>
Adrian Bunk8c5955d2005-09-05 18:07:42 -070039#include <net/sctp/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/sysctl.h>
41
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070042static int zero = 0;
43static int one = 1;
44static int timer_max = 86400000; /* ms in one day */
45static int int_max = INT_MAX;
Jean-Mickael Guerind48e0742009-05-13 00:03:20 +020046static int sack_timer_min = 1;
47static int sack_timer_max = 500;
Bhaskar Dutta72388432009-09-03 17:25:47 +053048static 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 -050049static int rwnd_scale_max = 16;
Xi Wang2692ba62011-12-16 12:44:15 +000050static unsigned long max_autoclose_min = 0;
51static unsigned long max_autoclose_max =
52 (MAX_SCHEDULE_TIMEOUT / HZ > UINT_MAX)
53 ? UINT_MAX : MAX_SCHEDULE_TIMEOUT / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Eric Dumazet8d987e52010-11-09 23:24:26 +000055extern long sysctl_sctp_mem[3];
Vlad Yasevich007e3932007-09-16 16:04:37 -070056extern int sysctl_sctp_rmem[3];
57extern int sysctl_sctp_wmem[3];
Neil Horman4d93df02007-08-15 16:07:44 -070058
Joe Perchesfe2c6332013-06-11 23:04:25 -070059static int proc_sctp_do_hmac_alg(struct ctl_table *ctl,
Neil Horman3c681982012-10-24 09:20:03 +000060 int write,
61 void __user *buffer, size_t *lenp,
62
63 loff_t *ppos);
wangweidong4f3fdf32013-12-11 09:50:39 +080064static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
65 void __user *buffer, size_t *lenp,
66 loff_t *ppos);
67static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
68 void __user *buffer, size_t *lenp,
69 loff_t *ppos);
70
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",
157 .maxlen = 8,
158 .mode = 0644,
159 .proc_handler = proc_sctp_do_hmac_alg,
160 },
161 {
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000162 .procname = "valid_cookie_life",
163 .data = &init_net.sctp.valid_cookie_life,
164 .maxlen = sizeof(unsigned int),
165 .mode = 0644,
166 .proc_handler = proc_dointvec_minmax,
167 .extra1 = &one,
168 .extra2 = &timer_max
169 },
170 {
171 .procname = "sack_timeout",
172 .data = &init_net.sctp.sack_timeout,
173 .maxlen = sizeof(int),
174 .mode = 0644,
175 .proc_handler = proc_dointvec_minmax,
176 .extra1 = &sack_timer_min,
177 .extra2 = &sack_timer_max,
178 },
179 {
180 .procname = "hb_interval",
181 .data = &init_net.sctp.hb_interval,
182 .maxlen = sizeof(unsigned int),
183 .mode = 0644,
184 .proc_handler = proc_dointvec_minmax,
185 .extra1 = &one,
186 .extra2 = &timer_max
187 },
188 {
189 .procname = "association_max_retrans",
190 .data = &init_net.sctp.max_retrans_association,
191 .maxlen = sizeof(int),
192 .mode = 0644,
193 .proc_handler = proc_dointvec_minmax,
194 .extra1 = &one,
195 .extra2 = &int_max
196 },
197 {
198 .procname = "path_max_retrans",
199 .data = &init_net.sctp.max_retrans_path,
200 .maxlen = sizeof(int),
201 .mode = 0644,
202 .proc_handler = proc_dointvec_minmax,
203 .extra1 = &one,
204 .extra2 = &int_max
205 },
206 {
207 .procname = "max_init_retransmits",
208 .data = &init_net.sctp.max_retrans_init,
209 .maxlen = sizeof(int),
210 .mode = 0644,
211 .proc_handler = proc_dointvec_minmax,
212 .extra1 = &one,
213 .extra2 = &int_max
214 },
215 {
216 .procname = "pf_retrans",
217 .data = &init_net.sctp.pf_retrans,
218 .maxlen = sizeof(int),
219 .mode = 0644,
220 .proc_handler = proc_dointvec_minmax,
221 .extra1 = &zero,
222 .extra2 = &int_max
223 },
224 {
225 .procname = "sndbuf_policy",
226 .data = &init_net.sctp.sndbuf_policy,
227 .maxlen = sizeof(int),
228 .mode = 0644,
229 .proc_handler = proc_dointvec,
230 },
231 {
232 .procname = "rcvbuf_policy",
233 .data = &init_net.sctp.rcvbuf_policy,
234 .maxlen = sizeof(int),
235 .mode = 0644,
236 .proc_handler = proc_dointvec,
237 },
238 {
239 .procname = "default_auto_asconf",
240 .data = &init_net.sctp.default_auto_asconf,
241 .maxlen = sizeof(int),
242 .mode = 0644,
243 .proc_handler = proc_dointvec,
244 },
245 {
246 .procname = "addip_enable",
247 .data = &init_net.sctp.addip_enable,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700248 .maxlen = sizeof(int),
249 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800250 .proc_handler = proc_dointvec,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700251 },
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400252 {
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400253 .procname = "addip_noauth_enable",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000254 .data = &init_net.sctp.addip_noauth,
255 .maxlen = sizeof(int),
256 .mode = 0644,
257 .proc_handler = proc_dointvec,
258 },
259 {
260 .procname = "prsctp_enable",
261 .data = &init_net.sctp.prsctp_enable,
262 .maxlen = sizeof(int),
263 .mode = 0644,
264 .proc_handler = proc_dointvec,
265 },
266 {
267 .procname = "auth_enable",
268 .data = &init_net.sctp.auth_enable,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400269 .maxlen = sizeof(int),
270 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800271 .proc_handler = proc_dointvec,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400272 },
Bhaskar Dutta72388432009-09-03 17:25:47 +0530273 {
Bhaskar Dutta72388432009-09-03 17:25:47 +0530274 .procname = "addr_scope_policy",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000275 .data = &init_net.sctp.scope_policy,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530276 .maxlen = sizeof(int),
277 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800278 .proc_handler = proc_dointvec_minmax,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530279 .extra1 = &zero,
280 .extra2 = &addr_scope_max,
281 },
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500282 {
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500283 .procname = "rwnd_update_shift",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000284 .data = &init_net.sctp.rwnd_upd_shift,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500285 .maxlen = sizeof(int),
286 .mode = 0644,
287 .proc_handler = &proc_dointvec_minmax,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500288 .extra1 = &one,
289 .extra2 = &rwnd_scale_max,
290 },
Xi Wang2692ba62011-12-16 12:44:15 +0000291 {
292 .procname = "max_autoclose",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000293 .data = &init_net.sctp.max_autoclose,
Xi Wang2692ba62011-12-16 12:44:15 +0000294 .maxlen = sizeof(unsigned long),
295 .mode = 0644,
296 .proc_handler = &proc_doulongvec_minmax,
297 .extra1 = &max_autoclose_min,
298 .extra2 = &max_autoclose_max,
299 },
David S. Miller71acc0d2013-08-09 13:09:41 -0700300
Linus Torvaldsd7fc02c2009-12-08 07:55:01 -0800301 { /* sentinel */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Joe Perchesfe2c6332013-06-11 23:04:25 -0700304static int proc_sctp_do_hmac_alg(struct ctl_table *ctl,
Neil Horman3c681982012-10-24 09:20:03 +0000305 int write,
306 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
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000406int sctp_sysctl_net_register(struct net *net)
407{
408 struct ctl_table *table;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000409 int i;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000410
411 table = kmemdup(sctp_net_table, sizeof(sctp_net_table), GFP_KERNEL);
412 if (!table)
413 return -ENOMEM;
414
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000415 for (i = 0; table[i].data; i++)
416 table[i].data += (char *)(&net->sctp) - (char *)&init_net.sctp;
417
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000418 net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
419 return 0;
420}
421
422void sctp_sysctl_net_unregister(struct net *net)
423{
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500424 struct ctl_table *table;
425
426 table = net->sctp.sysctl_header->ctl_table_arg;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000427 unregister_net_sysctl_table(net->sctp.sysctl_header);
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500428 kfree(table);
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static struct ctl_table_header * sctp_sysctl_header;
432
433/* Sysctl registration. */
434void sctp_sysctl_register(void)
435{
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000436 sctp_sysctl_header = register_net_sysctl(&init_net, "net/sctp", sctp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439/* Sysctl deregistration. */
440void sctp_sysctl_unregister(void)
441{
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000442 unregister_net_sysctl_table(sctp_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}