blob: e5fe639c89e7f748885af7725acdc8663d6e9286 [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):
28 * lksctp developers <lksctp-developers@lists.sourceforge.net>
29 *
30 * Or submit a bug report through the following website:
31 * http://www.sf.net/projects/lksctp
32 *
33 * Written or modified by:
34 * Mingqin Liu <liuming@us.ibm.com>
35 * Jon Grimm <jgrimm@us.ibm.com>
36 * Ardelle Fan <ardelle.fan@intel.com>
37 * Ryan Layer <rmlayer@us.ibm.com>
38 * Sridhar Samudrala <sri@us.ibm.com>
39 *
40 * Any bugs reported given to us we will try to fix... any fixes shared will
41 * be incorporated into the next SCTP release.
42 */
43
44#include <net/sctp/structs.h>
Adrian Bunk8c5955d2005-09-05 18:07:42 -070045#include <net/sctp/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/sysctl.h>
47
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070048static int zero = 0;
49static int one = 1;
50static int timer_max = 86400000; /* ms in one day */
51static int int_max = INT_MAX;
Jean-Mickael Guerind48e0742009-05-13 00:03:20 +020052static int sack_timer_min = 1;
53static int sack_timer_max = 500;
Bhaskar Dutta72388432009-09-03 17:25:47 +053054static 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 -050055static int rwnd_scale_max = 16;
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static ctl_table sctp_table[] = {
66 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .procname = "rto_initial",
68 .data = &sctp_rto_initial,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070069 .maxlen = sizeof(unsigned int),
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080071 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070072 .extra1 = &one,
73 .extra2 = &timer_max
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 },
75 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 .procname = "rto_min",
77 .data = &sctp_rto_min,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070078 .maxlen = sizeof(unsigned int),
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080080 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070081 .extra1 = &one,
82 .extra2 = &timer_max
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 },
84 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 .procname = "rto_max",
86 .data = &sctp_rto_max,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070087 .maxlen = sizeof(unsigned int),
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080089 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070090 .extra1 = &one,
91 .extra2 = &timer_max
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 },
93 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 .procname = "valid_cookie_life",
95 .data = &sctp_valid_cookie_life,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070096 .maxlen = sizeof(unsigned int),
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080098 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -070099 .extra1 = &one,
100 .extra2 = &timer_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 },
102 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .procname = "max_burst",
104 .data = &sctp_max_burst,
105 .maxlen = sizeof(int),
106 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800107 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700108 .extra1 = &zero,
109 .extra2 = &int_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 },
111 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .procname = "association_max_retrans",
113 .data = &sctp_max_retrans_association,
114 .maxlen = sizeof(int),
115 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800116 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700117 .extra1 = &one,
118 .extra2 = &int_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 },
120 {
Neil Horman4eb701d2005-04-28 12:02:04 -0700121 .procname = "sndbuf_policy",
122 .data = &sctp_sndbuf_policy,
123 .maxlen = sizeof(int),
124 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800125 .proc_handler = proc_dointvec,
Neil Horman4eb701d2005-04-28 12:02:04 -0700126 },
127 {
Neil Horman049b3ff2005-11-11 16:08:24 -0800128 .procname = "rcvbuf_policy",
129 .data = &sctp_rcvbuf_policy,
130 .maxlen = sizeof(int),
131 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800132 .proc_handler = proc_dointvec,
Neil Horman049b3ff2005-11-11 16:08:24 -0800133 },
134 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .procname = "path_max_retrans",
136 .data = &sctp_max_retrans_path,
137 .maxlen = sizeof(int),
138 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800139 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700140 .extra1 = &one,
141 .extra2 = &int_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 },
143 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .procname = "max_init_retransmits",
145 .data = &sctp_max_retrans_init,
146 .maxlen = sizeof(int),
147 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800148 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700149 .extra1 = &one,
150 .extra2 = &int_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 },
152 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .procname = "hb_interval",
154 .data = &sctp_hb_interval,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700155 .maxlen = sizeof(unsigned int),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800157 .proc_handler = proc_dointvec_minmax,
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700158 .extra1 = &one,
159 .extra2 = &timer_max
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 },
161 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 .procname = "cookie_preserve_enable",
163 .data = &sctp_cookie_preserve_enable,
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800164 .maxlen = sizeof(int),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800166 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 },
168 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .procname = "rto_alpha_exp_divisor",
170 .data = &sctp_rto_alpha,
171 .maxlen = sizeof(int),
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700172 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800173 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 },
175 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .procname = "rto_beta_exp_divisor",
177 .data = &sctp_rto_beta,
178 .maxlen = sizeof(int),
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700179 .mode = 0444,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800180 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 },
182 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 .procname = "addip_enable",
184 .data = &sctp_addip_enable,
185 .maxlen = sizeof(int),
186 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800187 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 },
189 {
Michio Hondadd51be02011-04-26 17:36:05 +0900190 .procname = "default_auto_asconf",
191 .data = &sctp_default_auto_asconf,
192 .maxlen = sizeof(int),
193 .mode = 0644,
194 .proc_handler = proc_dointvec,
195 },
196 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 .procname = "prsctp_enable",
198 .data = &sctp_prsctp_enable,
199 .maxlen = sizeof(int),
200 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800201 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 },
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700203 {
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700204 .procname = "sack_timeout",
205 .data = &sctp_sack_timeout,
Jean-Mickael Guerind48e0742009-05-13 00:03:20 +0200206 .maxlen = sizeof(int),
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700207 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800208 .proc_handler = proc_dointvec_minmax,
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700209 .extra1 = &sack_timer_min,
210 .extra2 = &sack_timer_max,
211 },
Neil Horman4d93df02007-08-15 16:07:44 -0700212 {
Neil Horman4d93df02007-08-15 16:07:44 -0700213 .procname = "sctp_mem",
214 .data = &sysctl_sctp_mem,
215 .maxlen = sizeof(sysctl_sctp_mem),
216 .mode = 0644,
Eric Dumazet8d987e52010-11-09 23:24:26 +0000217 .proc_handler = proc_doulongvec_minmax
Neil Horman4d93df02007-08-15 16:07:44 -0700218 },
219 {
Neil Horman4d93df02007-08-15 16:07:44 -0700220 .procname = "sctp_rmem",
221 .data = &sysctl_sctp_rmem,
222 .maxlen = sizeof(sysctl_sctp_rmem),
223 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800224 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -0700225 },
226 {
Neil Horman4d93df02007-08-15 16:07:44 -0700227 .procname = "sctp_wmem",
228 .data = &sysctl_sctp_wmem,
229 .maxlen = sizeof(sysctl_sctp_wmem),
230 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800231 .proc_handler = proc_dointvec,
Neil Horman4d93df02007-08-15 16:07:44 -0700232 },
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700233 {
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700234 .procname = "auth_enable",
235 .data = &sctp_auth_enable,
236 .maxlen = sizeof(int),
237 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800238 .proc_handler = proc_dointvec,
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -0700239 },
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400240 {
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400241 .procname = "addip_noauth_enable",
242 .data = &sctp_addip_noauth,
243 .maxlen = sizeof(int),
244 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800245 .proc_handler = proc_dointvec,
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400246 },
Bhaskar Dutta72388432009-09-03 17:25:47 +0530247 {
Bhaskar Dutta72388432009-09-03 17:25:47 +0530248 .procname = "addr_scope_policy",
249 .data = &sctp_scope_policy,
250 .maxlen = sizeof(int),
251 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800252 .proc_handler = proc_dointvec_minmax,
Bhaskar Dutta72388432009-09-03 17:25:47 +0530253 .extra1 = &zero,
254 .extra2 = &addr_scope_max,
255 },
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500256 {
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500257 .procname = "rwnd_update_shift",
258 .data = &sctp_rwnd_upd_shift,
259 .maxlen = sizeof(int),
260 .mode = 0644,
261 .proc_handler = &proc_dointvec_minmax,
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500262 .extra1 = &one,
263 .extra2 = &rwnd_scale_max,
264 },
Xi Wang2692ba62011-12-16 12:44:15 +0000265 {
266 .procname = "max_autoclose",
267 .data = &sctp_max_autoclose,
268 .maxlen = sizeof(unsigned long),
269 .mode = 0644,
270 .proc_handler = &proc_doulongvec_minmax,
271 .extra1 = &max_autoclose_min,
272 .extra2 = &max_autoclose_max,
273 },
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500274
Linus Torvaldsd7fc02c2009-12-08 07:55:01 -0800275 { /* sentinel */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276};
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static struct ctl_table_header * sctp_sysctl_header;
279
280/* Sysctl registration. */
281void sctp_sysctl_register(void)
282{
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000283 sctp_sysctl_header = register_net_sysctl(&init_net, "net/sctp", sctp_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/* Sysctl deregistration. */
287void sctp_sysctl_unregister(void)
288{
Eric W. Biederman5dd3df12012-04-19 13:24:33 +0000289 unregister_net_sysctl_table(sctp_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}