blob: dcb19592761e3b80b92057ba5b834e568a338ab9 [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
Daniel Borkmannb58537a2014-06-15 00:59:14 +020037#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/sctp/structs.h>
Adrian Bunk8c5955d2005-09-05 18:07:42 -070040#include <net/sctp/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/sysctl.h>
42
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070043static int zero = 0;
44static int one = 1;
45static int timer_max = 86400000; /* ms in one day */
46static int int_max = INT_MAX;
Jean-Mickael Guerind48e0742009-05-13 00:03:20 +020047static int sack_timer_min = 1;
48static int sack_timer_max = 500;
Bhaskar Dutta72388432009-09-03 17:25:47 +053049static 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 -050050static int rwnd_scale_max = 16;
Daniel Borkmannb58537a2014-06-15 00:59:14 +020051static int rto_alpha_min = 0;
52static int rto_beta_min = 0;
53static int rto_alpha_max = 1000;
54static int rto_beta_max = 1000;
55
Xi Wang2692ba62011-12-16 12:44:15 +000056static unsigned long max_autoclose_min = 0;
57static unsigned long max_autoclose_max =
58 (MAX_SCHEDULE_TIMEOUT / HZ > UINT_MAX)
59 ? UINT_MAX : MAX_SCHEDULE_TIMEOUT / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Eric Dumazet8d987e52010-11-09 23:24:26 +000061extern long sysctl_sctp_mem[3];
Vlad Yasevich007e3932007-09-16 16:04:37 -070062extern int sysctl_sctp_rmem[3];
63extern int sysctl_sctp_wmem[3];
Neil Horman4d93df02007-08-15 16:07:44 -070064
wangweidongb486b222013-12-11 09:50:40 +080065static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
Neil Horman3c681982012-10-24 09:20:03 +000066 void __user *buffer, size_t *lenp,
Neil Horman3c681982012-10-24 09:20:03 +000067 loff_t *ppos);
wangweidong4f3fdf32013-12-11 09:50:39 +080068static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
69 void __user *buffer, size_t *lenp,
70 loff_t *ppos);
71static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
72 void __user *buffer, size_t *lenp,
73 loff_t *ppos);
Daniel Borkmannb58537a2014-06-15 00:59:14 +020074static int proc_sctp_do_alpha_beta(struct ctl_table *ctl, int write,
75 void __user *buffer, size_t *lenp,
76 loff_t *ppos);
Vlad Yasevichb14878c2014-04-17 17:26:50 +020077static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
78 void __user *buffer, size_t *lenp,
79 loff_t *ppos);
wangweidong4f3fdf32013-12-11 09:50:39 +080080
Joe Perchesfe2c6332013-06-11 23:04:25 -070081static struct ctl_table sctp_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 {
Neil Horman4d93df02007-08-15 16:07:44 -070083 .procname = "sctp_mem",
84 .data = &sysctl_sctp_mem,
85 .maxlen = sizeof(sysctl_sctp_mem),
86 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +000087 .proc_handler = proc_doulongvec_minmax
Neil Horman4d93df02007-08-15 16:07:44 -070088 },
89 {
Neil Horman4d93df02007-08-15 16:07:44 -070090 .procname = "sctp_rmem",
91 .data = &sysctl_sctp_rmem,
92 .maxlen = sizeof(sysctl_sctp_rmem),
93 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080094 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -070095 },
96 {
Neil Horman4d93df02007-08-15 16:07:44 -070097 .procname = "sctp_wmem",
98 .data = &sysctl_sctp_wmem,
99 .maxlen = sizeof(sysctl_sctp_wmem),
100 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800101 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -0700102 },
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000103
104 { /* sentinel */ }
105};
106
Joe Perchesfe2c6332013-06-11 23:04:25 -0700107static struct ctl_table sctp_net_table[] = {
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700108 {
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000109 .procname = "rto_initial",
110 .data = &init_net.sctp.rto_initial,
111 .maxlen = sizeof(unsigned int),
112 .mode = 0644,
113 .proc_handler = proc_dointvec_minmax,
114 .extra1 = &one,
115 .extra2 = &timer_max
116 },
117 {
118 .procname = "rto_min",
119 .data = &init_net.sctp.rto_min,
120 .maxlen = sizeof(unsigned int),
121 .mode = 0644,
wangweidong4f3fdf32013-12-11 09:50:39 +0800122 .proc_handler = proc_sctp_do_rto_min,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000123 .extra1 = &one,
wangweidong4f3fdf32013-12-11 09:50:39 +0800124 .extra2 = &init_net.sctp.rto_max
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000125 },
126 {
127 .procname = "rto_max",
128 .data = &init_net.sctp.rto_max,
129 .maxlen = sizeof(unsigned int),
130 .mode = 0644,
wangweidong4f3fdf32013-12-11 09:50:39 +0800131 .proc_handler = proc_sctp_do_rto_max,
132 .extra1 = &init_net.sctp.rto_min,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000133 .extra2 = &timer_max
134 },
135 {
136 .procname = "rto_alpha_exp_divisor",
137 .data = &init_net.sctp.rto_alpha,
138 .maxlen = sizeof(int),
Daniel Borkmannb58537a2014-06-15 00:59:14 +0200139 .mode = 0644,
140 .proc_handler = proc_sctp_do_alpha_beta,
141 .extra1 = &rto_alpha_min,
142 .extra2 = &rto_alpha_max,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000143 },
144 {
145 .procname = "rto_beta_exp_divisor",
146 .data = &init_net.sctp.rto_beta,
147 .maxlen = sizeof(int),
Daniel Borkmannb58537a2014-06-15 00:59:14 +0200148 .mode = 0644,
149 .proc_handler = proc_sctp_do_alpha_beta,
150 .extra1 = &rto_beta_min,
151 .extra2 = &rto_beta_max,
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000152 },
153 {
154 .procname = "max_burst",
155 .data = &init_net.sctp.max_burst,
156 .maxlen = sizeof(int),
157 .mode = 0644,
158 .proc_handler = proc_dointvec_minmax,
159 .extra1 = &zero,
160 .extra2 = &int_max
161 },
162 {
163 .procname = "cookie_preserve_enable",
164 .data = &init_net.sctp.cookie_preserve_enable,
165 .maxlen = sizeof(int),
166 .mode = 0644,
167 .proc_handler = proc_dointvec,
168 },
169 {
Neil Horman3c681982012-10-24 09:20:03 +0000170 .procname = "cookie_hmac_alg",
wangweidong22a1f5142014-02-12 09:44:43 +0800171 .data = &init_net.sctp.sctp_hmac_alg,
Neil Horman3c681982012-10-24 09:20:03 +0000172 .maxlen = 8,
173 .mode = 0644,
174 .proc_handler = proc_sctp_do_hmac_alg,
175 },
176 {
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000177 .procname = "valid_cookie_life",
178 .data = &init_net.sctp.valid_cookie_life,
179 .maxlen = sizeof(unsigned int),
180 .mode = 0644,
181 .proc_handler = proc_dointvec_minmax,
182 .extra1 = &one,
183 .extra2 = &timer_max
184 },
185 {
186 .procname = "sack_timeout",
187 .data = &init_net.sctp.sack_timeout,
188 .maxlen = sizeof(int),
189 .mode = 0644,
190 .proc_handler = proc_dointvec_minmax,
191 .extra1 = &sack_timer_min,
192 .extra2 = &sack_timer_max,
193 },
194 {
195 .procname = "hb_interval",
196 .data = &init_net.sctp.hb_interval,
197 .maxlen = sizeof(unsigned int),
198 .mode = 0644,
199 .proc_handler = proc_dointvec_minmax,
200 .extra1 = &one,
201 .extra2 = &timer_max
202 },
203 {
204 .procname = "association_max_retrans",
205 .data = &init_net.sctp.max_retrans_association,
206 .maxlen = sizeof(int),
207 .mode = 0644,
208 .proc_handler = proc_dointvec_minmax,
209 .extra1 = &one,
210 .extra2 = &int_max
211 },
212 {
213 .procname = "path_max_retrans",
214 .data = &init_net.sctp.max_retrans_path,
215 .maxlen = sizeof(int),
216 .mode = 0644,
217 .proc_handler = proc_dointvec_minmax,
218 .extra1 = &one,
219 .extra2 = &int_max
220 },
221 {
222 .procname = "max_init_retransmits",
223 .data = &init_net.sctp.max_retrans_init,
224 .maxlen = sizeof(int),
225 .mode = 0644,
226 .proc_handler = proc_dointvec_minmax,
227 .extra1 = &one,
228 .extra2 = &int_max
229 },
230 {
231 .procname = "pf_retrans",
232 .data = &init_net.sctp.pf_retrans,
233 .maxlen = sizeof(int),
234 .mode = 0644,
235 .proc_handler = proc_dointvec_minmax,
236 .extra1 = &zero,
237 .extra2 = &int_max
238 },
239 {
240 .procname = "sndbuf_policy",
241 .data = &init_net.sctp.sndbuf_policy,
242 .maxlen = sizeof(int),
243 .mode = 0644,
244 .proc_handler = proc_dointvec,
245 },
246 {
247 .procname = "rcvbuf_policy",
248 .data = &init_net.sctp.rcvbuf_policy,
249 .maxlen = sizeof(int),
250 .mode = 0644,
251 .proc_handler = proc_dointvec,
252 },
253 {
254 .procname = "default_auto_asconf",
255 .data = &init_net.sctp.default_auto_asconf,
256 .maxlen = sizeof(int),
257 .mode = 0644,
258 .proc_handler = proc_dointvec,
259 },
260 {
261 .procname = "addip_enable",
262 .data = &init_net.sctp.addip_enable,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700263 .maxlen = sizeof(int),
264 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800265 .proc_handler = proc_dointvec,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700266 },
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400267 {
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400268 .procname = "addip_noauth_enable",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000269 .data = &init_net.sctp.addip_noauth,
270 .maxlen = sizeof(int),
271 .mode = 0644,
272 .proc_handler = proc_dointvec,
273 },
274 {
275 .procname = "prsctp_enable",
276 .data = &init_net.sctp.prsctp_enable,
277 .maxlen = sizeof(int),
278 .mode = 0644,
279 .proc_handler = proc_dointvec,
280 },
281 {
282 .procname = "auth_enable",
283 .data = &init_net.sctp.auth_enable,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400284 .maxlen = sizeof(int),
285 .mode = 0644,
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200286 .proc_handler = proc_sctp_do_auth,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400287 },
Bhaskar Dutta72388432009-09-03 17:25:47 +0530288 {
Bhaskar Dutta72388432009-09-03 17:25:47 +0530289 .procname = "addr_scope_policy",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000290 .data = &init_net.sctp.scope_policy,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530291 .maxlen = sizeof(int),
292 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800293 .proc_handler = proc_dointvec_minmax,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530294 .extra1 = &zero,
295 .extra2 = &addr_scope_max,
296 },
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500297 {
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500298 .procname = "rwnd_update_shift",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000299 .data = &init_net.sctp.rwnd_upd_shift,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500300 .maxlen = sizeof(int),
301 .mode = 0644,
302 .proc_handler = &proc_dointvec_minmax,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500303 .extra1 = &one,
304 .extra2 = &rwnd_scale_max,
305 },
Xi Wang2692ba62011-12-16 12:44:15 +0000306 {
307 .procname = "max_autoclose",
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000308 .data = &init_net.sctp.max_autoclose,
Xi Wang2692ba62011-12-16 12:44:15 +0000309 .maxlen = sizeof(unsigned long),
310 .mode = 0644,
311 .proc_handler = &proc_doulongvec_minmax,
312 .extra1 = &max_autoclose_min,
313 .extra2 = &max_autoclose_max,
314 },
David S. Miller71acc0d2013-08-09 13:09:41 -0700315
Linus Torvaldsd7fc02c2009-12-08 07:55:01 -0800316 { /* sentinel */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
wangweidongb486b222013-12-11 09:50:40 +0800319static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
Neil Horman3c681982012-10-24 09:20:03 +0000320 void __user *buffer, size_t *lenp,
321 loff_t *ppos)
322{
323 struct net *net = current->nsproxy->net_ns;
324 char tmp[8];
Joe Perchesfe2c6332013-06-11 23:04:25 -0700325 struct ctl_table tbl;
Neil Horman3c681982012-10-24 09:20:03 +0000326 int ret;
327 int changed = 0;
328 char *none = "none";
329
330 memset(&tbl, 0, sizeof(struct ctl_table));
331
332 if (write) {
333 tbl.data = tmp;
334 tbl.maxlen = 8;
335 } else {
336 tbl.data = net->sctp.sctp_hmac_alg ? : none;
337 tbl.maxlen = strlen(tbl.data);
338 }
339 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
340
341 if (write) {
342#ifdef CONFIG_CRYPTO_MD5
343 if (!strncmp(tmp, "md5", 3)) {
344 net->sctp.sctp_hmac_alg = "md5";
345 changed = 1;
346 }
347#endif
348#ifdef CONFIG_CRYPTO_SHA1
349 if (!strncmp(tmp, "sha1", 4)) {
350 net->sctp.sctp_hmac_alg = "sha1";
351 changed = 1;
352 }
353#endif
354 if (!strncmp(tmp, "none", 4)) {
355 net->sctp.sctp_hmac_alg = NULL;
356 changed = 1;
357 }
358
359 if (!changed)
360 ret = -EINVAL;
361 }
362
363 return ret;
364}
365
wangweidong4f3fdf32013-12-11 09:50:39 +0800366static int proc_sctp_do_rto_min(struct ctl_table *ctl, int write,
367 void __user *buffer, size_t *lenp,
368 loff_t *ppos)
369{
370 struct net *net = current->nsproxy->net_ns;
371 int new_value;
372 struct ctl_table tbl;
373 unsigned int min = *(unsigned int *) ctl->extra1;
374 unsigned int max = *(unsigned int *) ctl->extra2;
375 int ret;
376
377 memset(&tbl, 0, sizeof(struct ctl_table));
378 tbl.maxlen = sizeof(unsigned int);
379
380 if (write)
381 tbl.data = &new_value;
382 else
383 tbl.data = &net->sctp.rto_min;
384 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
385 if (write) {
386 if (ret || new_value > max || new_value < min)
387 return -EINVAL;
388 net->sctp.rto_min = new_value;
389 }
390 return ret;
391}
392
393static int proc_sctp_do_rto_max(struct ctl_table *ctl, int write,
394 void __user *buffer, size_t *lenp,
395 loff_t *ppos)
396{
397 struct net *net = current->nsproxy->net_ns;
398 int new_value;
399 struct ctl_table tbl;
400 unsigned int min = *(unsigned int *) ctl->extra1;
401 unsigned int max = *(unsigned int *) ctl->extra2;
402 int ret;
403
404 memset(&tbl, 0, sizeof(struct ctl_table));
405 tbl.maxlen = sizeof(unsigned int);
406
407 if (write)
408 tbl.data = &new_value;
409 else
410 tbl.data = &net->sctp.rto_max;
411 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
412 if (write) {
413 if (ret || new_value > max || new_value < min)
414 return -EINVAL;
415 net->sctp.rto_max = new_value;
416 }
417 return ret;
418}
419
Daniel Borkmannb58537a2014-06-15 00:59:14 +0200420static int proc_sctp_do_alpha_beta(struct ctl_table *ctl, int write,
421 void __user *buffer, size_t *lenp,
422 loff_t *ppos)
423{
424 pr_warn_once("Changing rto_alpha or rto_beta may lead to "
425 "suboptimal rtt/srtt estimations!\n");
426
427 return proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
428}
429
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200430static int proc_sctp_do_auth(struct ctl_table *ctl, int write,
431 void __user *buffer, size_t *lenp,
432 loff_t *ppos)
433{
434 struct net *net = current->nsproxy->net_ns;
435 struct ctl_table tbl;
436 int new_value, ret;
437
438 memset(&tbl, 0, sizeof(struct ctl_table));
439 tbl.maxlen = sizeof(unsigned int);
440
441 if (write)
442 tbl.data = &new_value;
443 else
444 tbl.data = &net->sctp.auth_enable;
445
446 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
447
448 if (write) {
449 struct sock *sk = net->sctp.ctl_sock;
450
451 net->sctp.auth_enable = new_value;
452 /* Update the value in the control socket */
453 lock_sock(sk);
454 sctp_sk(sk)->ep->auth_enable = new_value;
455 release_sock(sk);
456 }
457
458 return ret;
459}
460
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000461int sctp_sysctl_net_register(struct net *net)
462{
wangweidongeb9f3702014-05-08 20:55:01 +0800463 struct ctl_table *table;
464 int i;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000465
wangweidongeb9f3702014-05-08 20:55:01 +0800466 table = kmemdup(sctp_net_table, sizeof(sctp_net_table), GFP_KERNEL);
467 if (!table)
468 return -ENOMEM;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000469
wangweidongeb9f3702014-05-08 20:55:01 +0800470 for (i = 0; table[i].data; i++)
471 table[i].data += (char *)(&net->sctp) - (char *)&init_net.sctp;
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000472
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000473 net->sctp.sysctl_header = register_net_sysctl(net, "net/sctp", table);
wangweidongf66138c2014-05-08 20:55:02 +0800474 if (net->sctp.sysctl_header == NULL) {
475 kfree(table);
476 return -ENOMEM;
477 }
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000478 return 0;
479}
480
481void sctp_sysctl_net_unregister(struct net *net)
482{
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500483 struct ctl_table *table;
484
485 table = net->sctp.sysctl_header->ctl_table_arg;
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000486 unregister_net_sysctl_table(net->sctp.sysctl_header);
Vlad Yasevich5f19d122013-01-24 11:02:47 -0500487 kfree(table);
Eric W. Biedermanebb7e952012-08-07 07:23:59 +0000488}
489
wangweidong26ac8e52013-12-23 12:16:51 +0800490static struct ctl_table_header *sctp_sysctl_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492/* Sysctl registration. */
493void sctp_sysctl_register(void)
494{
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000495 sctp_sysctl_header = register_net_sysctl(&init_net, "net/sctp", sctp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498/* Sysctl deregistration. */
499void sctp_sysctl_unregister(void)
500{
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000501 unregister_net_sysctl_table(sctp_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}