1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2007, by Cisco Systems, Inc. All rights reserved. 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * a) Redistributions of source code must retain the above copyright notice, 12 * this list of conditions and the following disclaimer. 13 * 14 * b) Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in 16 * the documentation and/or other materials provided with the distribution. 17 * 18 * c) Neither the name of Cisco Systems, Inc. nor the names of its 19 * contributors may be used to endorse or promote products derived 20 * from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 32 * THE POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 #ifdef __FreeBSD__ 36 #include <sys/cdefs.h> 37 __FBSDID("$FreeBSD: head/sys/netinet/sctp_sysctl.h 356357 2020-01-04 20:33:12Z tuexen $"); 38 #endif 39 40 #ifndef _NETINET_SCTP_SYSCTL_H_ 41 #define _NETINET_SCTP_SYSCTL_H_ 42 43 #include <netinet/sctp_os.h> 44 #include <netinet/sctp_constants.h> 45 46 struct sctp_sysctl { 47 uint32_t sctp_sendspace; 48 uint32_t sctp_recvspace; 49 uint32_t sctp_auto_asconf; 50 uint32_t sctp_multiple_asconfs; 51 uint32_t sctp_ecn_enable; 52 uint32_t sctp_pr_enable; 53 uint32_t sctp_auth_enable; 54 uint32_t sctp_asconf_enable; 55 uint32_t sctp_reconfig_enable; 56 uint32_t sctp_nrsack_enable; 57 uint32_t sctp_pktdrop_enable; 58 uint32_t sctp_fr_max_burst_default; 59 #if !(defined(__FreeBSD__) && __FreeBSD_version >= 800000) 60 uint32_t sctp_no_csum_on_loopback; 61 #endif 62 uint32_t sctp_peer_chunk_oh; 63 uint32_t sctp_max_burst_default; 64 uint32_t sctp_max_chunks_on_queue; 65 uint32_t sctp_hashtblsize; 66 uint32_t sctp_pcbtblsize; 67 uint32_t sctp_min_split_point; 68 uint32_t sctp_chunkscale; 69 uint32_t sctp_delayed_sack_time_default; 70 uint32_t sctp_sack_freq_default; 71 uint32_t sctp_system_free_resc_limit; 72 uint32_t sctp_asoc_free_resc_limit; 73 uint32_t sctp_heartbeat_interval_default; 74 uint32_t sctp_pmtu_raise_time_default; 75 uint32_t sctp_shutdown_guard_time_default; 76 uint32_t sctp_secret_lifetime_default; 77 uint32_t sctp_rto_max_default; 78 uint32_t sctp_rto_min_default; 79 uint32_t sctp_rto_initial_default; 80 uint32_t sctp_init_rto_max_default; 81 uint32_t sctp_valid_cookie_life_default; 82 uint32_t sctp_init_rtx_max_default; 83 uint32_t sctp_assoc_rtx_max_default; 84 uint32_t sctp_path_rtx_max_default; 85 uint32_t sctp_path_pf_threshold; 86 uint32_t sctp_add_more_threshold; 87 uint32_t sctp_nr_incoming_streams_default; 88 uint32_t sctp_nr_outgoing_streams_default; 89 uint32_t sctp_cmt_on_off; 90 uint32_t sctp_cmt_use_dac; 91 uint32_t sctp_use_cwnd_based_maxburst; 92 uint32_t sctp_nat_friendly; 93 uint32_t sctp_L2_abc_variable; 94 uint32_t sctp_mbuf_threshold_count; 95 uint32_t sctp_do_drain; 96 uint32_t sctp_hb_maxburst; 97 uint32_t sctp_abort_if_one_2_one_hits_limit; 98 uint32_t sctp_min_residual; 99 uint32_t sctp_max_retran_chunk; 100 uint32_t sctp_logging_level; 101 /* JRS - Variable for default congestion control module */ 102 uint32_t sctp_default_cc_module; 103 /* RS - Variable for default stream scheduling module */ 104 uint32_t sctp_default_ss_module; 105 uint32_t sctp_default_frag_interleave; 106 uint32_t sctp_mobility_base; 107 uint32_t sctp_mobility_fasthandoff; 108 uint32_t sctp_inits_include_nat_friendly; 109 uint32_t sctp_rttvar_bw; 110 uint32_t sctp_rttvar_rtt; 111 uint32_t sctp_rttvar_eqret; 112 uint32_t sctp_steady_step; 113 uint32_t sctp_use_dccc_ecn; 114 uint32_t sctp_diag_info_code; 115 #if defined(SCTP_LOCAL_TRACE_BUF) 116 #if defined(__Windows__) 117 struct sctp_log *sctp_log; 118 #else 119 struct sctp_log sctp_log; 120 #endif 121 #endif 122 uint32_t sctp_udp_tunneling_port; 123 uint32_t sctp_enable_sack_immediately; 124 uint32_t sctp_vtag_time_wait; 125 uint32_t sctp_buffer_splitting; 126 uint32_t sctp_initial_cwnd; 127 uint32_t sctp_blackhole; 128 uint32_t sctp_sendall_limit; 129 #if defined(SCTP_DEBUG) 130 uint32_t sctp_debug_on; 131 #endif 132 #if defined(__APPLE__) 133 uint32_t sctp_ignore_vmware_interfaces; 134 uint32_t sctp_main_timer; 135 uint32_t sctp_addr_watchdog_limit; 136 uint32_t sctp_vtag_watchdog_limit; 137 #endif 138 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 139 uint32_t sctp_output_unlocked; 140 #endif 141 }; 142 143 /* 144 * limits for the sysctl variables 145 */ 146 /* maxdgram: Maximum outgoing SCTP buffer size */ 147 #define SCTPCTL_MAXDGRAM_DESC "Maximum outgoing SCTP buffer size" 148 #define SCTPCTL_MAXDGRAM_MIN 0 149 #define SCTPCTL_MAXDGRAM_MAX 0xFFFFFFFF 150 #if defined(__Userspace__) 151 #define SCTPCTL_MAXDGRAM_DEFAULT SB_MAX 152 #else 153 #define SCTPCTL_MAXDGRAM_DEFAULT 262144 /* 256k */ 154 #endif 155 156 /* recvspace: Maximum incoming SCTP buffer size */ 157 #define SCTPCTL_RECVSPACE_DESC "Maximum incoming SCTP buffer size" 158 #define SCTPCTL_RECVSPACE_MIN 0 159 #define SCTPCTL_RECVSPACE_MAX 0xFFFFFFFF 160 #if defined(__Userspace__) 161 #define SCTPCTL_RECVSPACE_DEFAULT SB_RAW 162 #else 163 #define SCTPCTL_RECVSPACE_DEFAULT 262144 /* 256k */ 164 #endif 165 166 /* autoasconf: Enable SCTP Auto-ASCONF */ 167 #define SCTPCTL_AUTOASCONF_DESC "Enable SCTP Auto-ASCONF" 168 #define SCTPCTL_AUTOASCONF_MIN 0 169 #define SCTPCTL_AUTOASCONF_MAX 1 170 #define SCTPCTL_AUTOASCONF_DEFAULT 1 171 172 /* autoasconf: Enable SCTP Auto-ASCONF */ 173 #define SCTPCTL_MULTIPLEASCONFS_DESC "Enable SCTP Muliple-ASCONFs" 174 #define SCTPCTL_MULTIPLEASCONFS_MIN 0 175 #define SCTPCTL_MULTIPLEASCONFS_MAX 1 176 #define SCTPCTL_MULTIPLEASCONFS_DEFAULT SCTP_DEFAULT_MULTIPLE_ASCONFS 177 178 /* ecn_enable: Enable SCTP ECN */ 179 #define SCTPCTL_ECN_ENABLE_DESC "Enable SCTP ECN" 180 #define SCTPCTL_ECN_ENABLE_MIN 0 181 #define SCTPCTL_ECN_ENABLE_MAX 1 182 #define SCTPCTL_ECN_ENABLE_DEFAULT 1 183 184 /* pr_enable: Enable PR-SCTP */ 185 #define SCTPCTL_PR_ENABLE_DESC "Enable PR-SCTP" 186 #define SCTPCTL_PR_ENABLE_MIN 0 187 #define SCTPCTL_PR_ENABLE_MAX 1 188 #define SCTPCTL_PR_ENABLE_DEFAULT 1 189 190 /* auth_enable: Enable SCTP AUTH function */ 191 #define SCTPCTL_AUTH_ENABLE_DESC "Enable SCTP AUTH function" 192 #define SCTPCTL_AUTH_ENABLE_MIN 0 193 #define SCTPCTL_AUTH_ENABLE_MAX 1 194 #define SCTPCTL_AUTH_ENABLE_DEFAULT 1 195 196 /* asconf_enable: Enable SCTP ASCONF */ 197 #define SCTPCTL_ASCONF_ENABLE_DESC "Enable SCTP ASCONF" 198 #define SCTPCTL_ASCONF_ENABLE_MIN 0 199 #define SCTPCTL_ASCONF_ENABLE_MAX 1 200 #define SCTPCTL_ASCONF_ENABLE_DEFAULT 1 201 202 /* reconfig_enable: Enable SCTP RE-CONFIG */ 203 #define SCTPCTL_RECONFIG_ENABLE_DESC "Enable SCTP RE-CONFIG" 204 #define SCTPCTL_RECONFIG_ENABLE_MIN 0 205 #define SCTPCTL_RECONFIG_ENABLE_MAX 1 206 #define SCTPCTL_RECONFIG_ENABLE_DEFAULT 1 207 208 /* nrsack_enable: Enable NR_SACK */ 209 #define SCTPCTL_NRSACK_ENABLE_DESC "Enable SCTP NR-SACK" 210 #define SCTPCTL_NRSACK_ENABLE_MIN 0 211 #define SCTPCTL_NRSACK_ENABLE_MAX 1 212 #define SCTPCTL_NRSACK_ENABLE_DEFAULT 0 213 214 /* pktdrop_enable: Enable SCTP Packet Drop Reports */ 215 #define SCTPCTL_PKTDROP_ENABLE_DESC "Enable SCTP PKTDROP" 216 #define SCTPCTL_PKTDROP_ENABLE_MIN 0 217 #define SCTPCTL_PKTDROP_ENABLE_MAX 1 218 #define SCTPCTL_PKTDROP_ENABLE_DEFAULT 0 219 220 /* loopback_nocsum: Enable NO Csum on packets sent on loopback */ 221 #define SCTPCTL_LOOPBACK_NOCSUM_DESC "Enable NO Csum on packets sent on loopback" 222 #define SCTPCTL_LOOPBACK_NOCSUM_MIN 0 223 #define SCTPCTL_LOOPBACK_NOCSUM_MAX 1 224 #define SCTPCTL_LOOPBACK_NOCSUM_DEFAULT 1 225 226 /* peer_chkoh: Amount to debit peers rwnd per chunk sent */ 227 #define SCTPCTL_PEER_CHKOH_DESC "Amount to debit peers rwnd per chunk sent" 228 #define SCTPCTL_PEER_CHKOH_MIN 0 229 #define SCTPCTL_PEER_CHKOH_MAX 0xFFFFFFFF 230 #define SCTPCTL_PEER_CHKOH_DEFAULT 256 231 232 /* maxburst: Default max burst for sctp endpoints */ 233 #define SCTPCTL_MAXBURST_DESC "Default max burst for sctp endpoints" 234 #define SCTPCTL_MAXBURST_MIN 0 235 #define SCTPCTL_MAXBURST_MAX 0xFFFFFFFF 236 #define SCTPCTL_MAXBURST_DEFAULT SCTP_DEF_MAX_BURST 237 238 /* fr_maxburst: Default max burst for sctp endpoints when fast retransmitting */ 239 #define SCTPCTL_FRMAXBURST_DESC "Default max burst for SCTP endpoints when fast retransmitting" 240 #define SCTPCTL_FRMAXBURST_MIN 0 241 #define SCTPCTL_FRMAXBURST_MAX 0xFFFFFFFF 242 #define SCTPCTL_FRMAXBURST_DEFAULT SCTP_DEF_FRMAX_BURST 243 244 245 /* maxchunks: Default max chunks on queue per asoc */ 246 #define SCTPCTL_MAXCHUNKS_DESC "Default max chunks on queue per asoc" 247 #define SCTPCTL_MAXCHUNKS_MIN 0 248 #define SCTPCTL_MAXCHUNKS_MAX 0xFFFFFFFF 249 #define SCTPCTL_MAXCHUNKS_DEFAULT SCTP_ASOC_MAX_CHUNKS_ON_QUEUE 250 251 /* tcbhashsize: Tunable for Hash table sizes */ 252 #define SCTPCTL_TCBHASHSIZE_DESC "Tunable for TCB hash table sizes" 253 #define SCTPCTL_TCBHASHSIZE_MIN 1 254 #define SCTPCTL_TCBHASHSIZE_MAX 0xFFFFFFFF 255 #define SCTPCTL_TCBHASHSIZE_DEFAULT SCTP_TCBHASHSIZE 256 257 /* pcbhashsize: Tunable for PCB Hash table sizes */ 258 #define SCTPCTL_PCBHASHSIZE_DESC "Tunable for PCB hash table sizes" 259 #define SCTPCTL_PCBHASHSIZE_MIN 1 260 #define SCTPCTL_PCBHASHSIZE_MAX 0xFFFFFFFF 261 #define SCTPCTL_PCBHASHSIZE_DEFAULT SCTP_PCBHASHSIZE 262 263 /* min_split_point: Minimum size when splitting a chunk */ 264 #define SCTPCTL_MIN_SPLIT_POINT_DESC "Minimum size when splitting a chunk" 265 #define SCTPCTL_MIN_SPLIT_POINT_MIN 0 266 #define SCTPCTL_MIN_SPLIT_POINT_MAX 0xFFFFFFFF 267 #define SCTPCTL_MIN_SPLIT_POINT_DEFAULT SCTP_DEFAULT_SPLIT_POINT_MIN 268 269 /* chunkscale: Tunable for Scaling of number of chunks and messages */ 270 #define SCTPCTL_CHUNKSCALE_DESC "Tunable for scaling of number of chunks and messages" 271 #define SCTPCTL_CHUNKSCALE_MIN 1 272 #define SCTPCTL_CHUNKSCALE_MAX 0xFFFFFFFF 273 #define SCTPCTL_CHUNKSCALE_DEFAULT SCTP_CHUNKQUEUE_SCALE 274 275 /* delayed_sack_time: Default delayed SACK timer in ms */ 276 #define SCTPCTL_DELAYED_SACK_TIME_DESC "Default delayed SACK timer in ms" 277 #define SCTPCTL_DELAYED_SACK_TIME_MIN 0 278 #define SCTPCTL_DELAYED_SACK_TIME_MAX 0xFFFFFFFF 279 #define SCTPCTL_DELAYED_SACK_TIME_DEFAULT SCTP_RECV_MSEC 280 281 /* sack_freq: Default SACK frequency */ 282 #define SCTPCTL_SACK_FREQ_DESC "Default SACK frequency" 283 #define SCTPCTL_SACK_FREQ_MIN 0 284 #define SCTPCTL_SACK_FREQ_MAX 0xFFFFFFFF 285 #define SCTPCTL_SACK_FREQ_DEFAULT SCTP_DEFAULT_SACK_FREQ 286 287 /* sys_resource: Max number of cached resources in the system */ 288 #define SCTPCTL_SYS_RESOURCE_DESC "Max number of cached resources in the system" 289 #define SCTPCTL_SYS_RESOURCE_MIN 0 290 #define SCTPCTL_SYS_RESOURCE_MAX 0xFFFFFFFF 291 #define SCTPCTL_SYS_RESOURCE_DEFAULT SCTP_DEF_SYSTEM_RESC_LIMIT 292 293 /* asoc_resource: Max number of cached resources in an asoc */ 294 #define SCTPCTL_ASOC_RESOURCE_DESC "Max number of cached resources in an asoc" 295 #define SCTPCTL_ASOC_RESOURCE_MIN 0 296 #define SCTPCTL_ASOC_RESOURCE_MAX 0xFFFFFFFF 297 #define SCTPCTL_ASOC_RESOURCE_DEFAULT SCTP_DEF_ASOC_RESC_LIMIT 298 299 /* heartbeat_interval: Default heartbeat interval in ms */ 300 #define SCTPCTL_HEARTBEAT_INTERVAL_DESC "Default heartbeat interval in ms" 301 #define SCTPCTL_HEARTBEAT_INTERVAL_MIN 0 302 #define SCTPCTL_HEARTBEAT_INTERVAL_MAX 0xFFFFFFFF 303 #define SCTPCTL_HEARTBEAT_INTERVAL_DEFAULT SCTP_HB_DEFAULT_MSEC 304 305 /* pmtu_raise_time: Default PMTU raise timer in seconds */ 306 #define SCTPCTL_PMTU_RAISE_TIME_DESC "Default PMTU raise timer in seconds" 307 #define SCTPCTL_PMTU_RAISE_TIME_MIN 0 308 #define SCTPCTL_PMTU_RAISE_TIME_MAX 0xFFFFFFFF 309 #define SCTPCTL_PMTU_RAISE_TIME_DEFAULT SCTP_DEF_PMTU_RAISE_SEC 310 311 /* shutdown_guard_time: Default shutdown guard timer in seconds */ 312 #define SCTPCTL_SHUTDOWN_GUARD_TIME_DESC "Shutdown guard timer in seconds (0 means 5 times RTO.Max)" 313 #define SCTPCTL_SHUTDOWN_GUARD_TIME_MIN 0 314 #define SCTPCTL_SHUTDOWN_GUARD_TIME_MAX 0xFFFFFFFF 315 #define SCTPCTL_SHUTDOWN_GUARD_TIME_DEFAULT 0 316 317 /* secret_lifetime: Default secret lifetime in seconds */ 318 #define SCTPCTL_SECRET_LIFETIME_DESC "Default secret lifetime in seconds" 319 #define SCTPCTL_SECRET_LIFETIME_MIN 0 320 #define SCTPCTL_SECRET_LIFETIME_MAX 0xFFFFFFFF 321 #define SCTPCTL_SECRET_LIFETIME_DEFAULT SCTP_DEFAULT_SECRET_LIFE_SEC 322 323 /* rto_max: Default maximum retransmission timeout in ms */ 324 #define SCTPCTL_RTO_MAX_DESC "Default maximum retransmission timeout in ms" 325 #define SCTPCTL_RTO_MAX_MIN 0 326 #define SCTPCTL_RTO_MAX_MAX 0xFFFFFFFF 327 #define SCTPCTL_RTO_MAX_DEFAULT SCTP_RTO_UPPER_BOUND 328 329 /* rto_min: Default minimum retransmission timeout in ms */ 330 #define SCTPCTL_RTO_MIN_DESC "Default minimum retransmission timeout in ms" 331 #define SCTPCTL_RTO_MIN_MIN 0 332 #define SCTPCTL_RTO_MIN_MAX 0xFFFFFFFF 333 #define SCTPCTL_RTO_MIN_DEFAULT SCTP_RTO_LOWER_BOUND 334 335 /* rto_initial: Default initial retransmission timeout in ms */ 336 #define SCTPCTL_RTO_INITIAL_DESC "Default initial retransmission timeout in ms" 337 #define SCTPCTL_RTO_INITIAL_MIN 0 338 #define SCTPCTL_RTO_INITIAL_MAX 0xFFFFFFFF 339 #define SCTPCTL_RTO_INITIAL_DEFAULT SCTP_RTO_INITIAL 340 341 /* init_rto_max: Default maximum retransmission timeout during association setup in ms */ 342 #define SCTPCTL_INIT_RTO_MAX_DESC "Default maximum retransmission timeout during association setup in ms" 343 #define SCTPCTL_INIT_RTO_MAX_MIN 0 344 #define SCTPCTL_INIT_RTO_MAX_MAX 0xFFFFFFFF 345 #define SCTPCTL_INIT_RTO_MAX_DEFAULT SCTP_RTO_UPPER_BOUND 346 347 /* valid_cookie_life: Default cookie lifetime in sec */ 348 #define SCTPCTL_VALID_COOKIE_LIFE_DESC "Default cookie lifetime in seconds" 349 #define SCTPCTL_VALID_COOKIE_LIFE_MIN 0 350 #define SCTPCTL_VALID_COOKIE_LIFE_MAX 0xFFFFFFFF 351 #define SCTPCTL_VALID_COOKIE_LIFE_DEFAULT SCTP_DEFAULT_COOKIE_LIFE 352 353 /* init_rtx_max: Default maximum number of retransmission for INIT chunks */ 354 #define SCTPCTL_INIT_RTX_MAX_DESC "Default maximum number of retransmissions for INIT chunks" 355 #define SCTPCTL_INIT_RTX_MAX_MIN 0 356 #define SCTPCTL_INIT_RTX_MAX_MAX 0xFFFFFFFF 357 #define SCTPCTL_INIT_RTX_MAX_DEFAULT SCTP_DEF_MAX_INIT 358 359 /* assoc_rtx_max: Default maximum number of retransmissions per association */ 360 #define SCTPCTL_ASSOC_RTX_MAX_DESC "Default maximum number of retransmissions per association" 361 #define SCTPCTL_ASSOC_RTX_MAX_MIN 0 362 #define SCTPCTL_ASSOC_RTX_MAX_MAX 0xFFFFFFFF 363 #define SCTPCTL_ASSOC_RTX_MAX_DEFAULT SCTP_DEF_MAX_SEND 364 365 /* path_rtx_max: Default maximum of retransmissions per path */ 366 #define SCTPCTL_PATH_RTX_MAX_DESC "Default maximum of retransmissions per path" 367 #define SCTPCTL_PATH_RTX_MAX_MIN 0 368 #define SCTPCTL_PATH_RTX_MAX_MAX 0xFFFFFFFF 369 #define SCTPCTL_PATH_RTX_MAX_DEFAULT SCTP_DEF_MAX_PATH_RTX 370 371 /* path_pf_threshold: threshold for considering the path potentially failed */ 372 #define SCTPCTL_PATH_PF_THRESHOLD_DESC "Default potentially failed threshold" 373 #define SCTPCTL_PATH_PF_THRESHOLD_MIN 0 374 #define SCTPCTL_PATH_PF_THRESHOLD_MAX 0xFFFF 375 #define SCTPCTL_PATH_PF_THRESHOLD_DEFAULT SCTPCTL_PATH_PF_THRESHOLD_MAX 376 377 /* add_more_on_output: When space-wise is it worthwhile to try to add more to a socket send buffer */ 378 #define SCTPCTL_ADD_MORE_ON_OUTPUT_DESC "When space-wise is it worthwhile to try to add more to a socket send buffer" 379 #define SCTPCTL_ADD_MORE_ON_OUTPUT_MIN 0 380 #define SCTPCTL_ADD_MORE_ON_OUTPUT_MAX 0xFFFFFFFF 381 #define SCTPCTL_ADD_MORE_ON_OUTPUT_DEFAULT SCTP_DEFAULT_ADD_MORE 382 383 /* incoming_streams: Default number of incoming streams */ 384 #define SCTPCTL_INCOMING_STREAMS_DESC "Default number of incoming streams" 385 #define SCTPCTL_INCOMING_STREAMS_MIN 1 386 #define SCTPCTL_INCOMING_STREAMS_MAX 65535 387 #define SCTPCTL_INCOMING_STREAMS_DEFAULT SCTP_ISTREAM_INITIAL 388 389 /* outgoing_streams: Default number of outgoing streams */ 390 #define SCTPCTL_OUTGOING_STREAMS_DESC "Default number of outgoing streams" 391 #define SCTPCTL_OUTGOING_STREAMS_MIN 1 392 #define SCTPCTL_OUTGOING_STREAMS_MAX 65535 393 #define SCTPCTL_OUTGOING_STREAMS_DEFAULT SCTP_OSTREAM_INITIAL 394 395 /* cmt_on_off: CMT on/off flag */ 396 #define SCTPCTL_CMT_ON_OFF_DESC "CMT settings" 397 #define SCTPCTL_CMT_ON_OFF_MIN SCTP_CMT_OFF 398 #define SCTPCTL_CMT_ON_OFF_MAX SCTP_CMT_MAX 399 #define SCTPCTL_CMT_ON_OFF_DEFAULT SCTP_CMT_OFF 400 401 /* cmt_use_dac: CMT DAC on/off flag */ 402 #define SCTPCTL_CMT_USE_DAC_DESC "CMT DAC on/off flag" 403 #define SCTPCTL_CMT_USE_DAC_MIN 0 404 #define SCTPCTL_CMT_USE_DAC_MAX 1 405 #define SCTPCTL_CMT_USE_DAC_DEFAULT 0 406 407 /* cwnd_maxburst: Use a CWND adjusting to implement maxburst */ 408 #define SCTPCTL_CWND_MAXBURST_DESC "Adjust congestion control window to limit maximum burst when sending" 409 #define SCTPCTL_CWND_MAXBURST_MIN 0 410 #define SCTPCTL_CWND_MAXBURST_MAX 1 411 #define SCTPCTL_CWND_MAXBURST_DEFAULT 1 412 413 /* nat_friendly: SCTP NAT friendly operation */ 414 #define SCTPCTL_NAT_FRIENDLY_DESC "SCTP NAT friendly operation" 415 #define SCTPCTL_NAT_FRIENDLY_MIN 0 416 #define SCTPCTL_NAT_FRIENDLY_MAX 1 417 #define SCTPCTL_NAT_FRIENDLY_DEFAULT 1 418 419 /* abc_l_var: SCTP ABC max increase per SACK (L) */ 420 #define SCTPCTL_ABC_L_VAR_DESC "SCTP ABC max increase per SACK (L)" 421 #define SCTPCTL_ABC_L_VAR_MIN 0 422 #define SCTPCTL_ABC_L_VAR_MAX 0xFFFFFFFF 423 #define SCTPCTL_ABC_L_VAR_DEFAULT 2 424 425 /* max_chained_mbufs: Default max number of small mbufs on a chain */ 426 #define SCTPCTL_MAX_CHAINED_MBUFS_DESC "Default max number of small mbufs on a chain" 427 #define SCTPCTL_MAX_CHAINED_MBUFS_MIN 0 428 #define SCTPCTL_MAX_CHAINED_MBUFS_MAX 0xFFFFFFFF 429 #define SCTPCTL_MAX_CHAINED_MBUFS_DEFAULT SCTP_DEFAULT_MBUFS_IN_CHAIN 430 431 /* do_sctp_drain: Should SCTP respond to the drain calls */ 432 #define SCTPCTL_DO_SCTP_DRAIN_DESC "Should SCTP respond to the drain calls" 433 #define SCTPCTL_DO_SCTP_DRAIN_MIN 0 434 #define SCTPCTL_DO_SCTP_DRAIN_MAX 1 435 #define SCTPCTL_DO_SCTP_DRAIN_DEFAULT 1 436 437 /* hb_max_burst: Confirmation Heartbeat max burst? */ 438 #define SCTPCTL_HB_MAX_BURST_DESC "Confirmation Heartbeat max burst" 439 #define SCTPCTL_HB_MAX_BURST_MIN 1 440 #define SCTPCTL_HB_MAX_BURST_MAX 0xFFFFFFFF 441 #define SCTPCTL_HB_MAX_BURST_DEFAULT SCTP_DEF_HBMAX_BURST 442 443 /* abort_at_limit: When one-2-one hits qlimit abort */ 444 #define SCTPCTL_ABORT_AT_LIMIT_DESC "Abort when one-to-one hits qlimit" 445 #define SCTPCTL_ABORT_AT_LIMIT_MIN 0 446 #define SCTPCTL_ABORT_AT_LIMIT_MAX 1 447 #define SCTPCTL_ABORT_AT_LIMIT_DEFAULT 0 448 449 /* min_residual: min residual in a data fragment leftover */ 450 #define SCTPCTL_MIN_RESIDUAL_DESC "Minimum residual data chunk in second part of split" 451 #define SCTPCTL_MIN_RESIDUAL_MIN 20 452 #define SCTPCTL_MIN_RESIDUAL_MAX 65535 453 #define SCTPCTL_MIN_RESIDUAL_DEFAULT 1452 454 455 /* max_retran_chunk: max chunk retransmissions */ 456 #define SCTPCTL_MAX_RETRAN_CHUNK_DESC "Maximum times an unlucky chunk can be retransmitted before assoc abort" 457 #define SCTPCTL_MAX_RETRAN_CHUNK_MIN 0 458 #define SCTPCTL_MAX_RETRAN_CHUNK_MAX 65535 459 #define SCTPCTL_MAX_RETRAN_CHUNK_DEFAULT 30 460 461 /* sctp_logging: This gives us logging when the options are enabled */ 462 #define SCTPCTL_LOGGING_LEVEL_DESC "Ltrace/KTR trace logging level" 463 #define SCTPCTL_LOGGING_LEVEL_MIN 0 464 #define SCTPCTL_LOGGING_LEVEL_MAX 0xffffffff 465 #define SCTPCTL_LOGGING_LEVEL_DEFAULT 0 466 467 /* JRS - default congestion control module sysctl */ 468 #define SCTPCTL_DEFAULT_CC_MODULE_DESC "Default congestion control module" 469 #define SCTPCTL_DEFAULT_CC_MODULE_MIN 0 470 #define SCTPCTL_DEFAULT_CC_MODULE_MAX 2 471 #define SCTPCTL_DEFAULT_CC_MODULE_DEFAULT 0 472 473 /* RS - default stream scheduling module sysctl */ 474 #define SCTPCTL_DEFAULT_SS_MODULE_DESC "Default stream scheduling module" 475 #define SCTPCTL_DEFAULT_SS_MODULE_MIN 0 476 #define SCTPCTL_DEFAULT_SS_MODULE_MAX 5 477 #define SCTPCTL_DEFAULT_SS_MODULE_DEFAULT 0 478 479 /* RRS - default fragment interleave */ 480 #define SCTPCTL_DEFAULT_FRAG_INTERLEAVE_DESC "Default fragment interleave level" 481 #define SCTPCTL_DEFAULT_FRAG_INTERLEAVE_MIN 0 482 #define SCTPCTL_DEFAULT_FRAG_INTERLEAVE_MAX 2 483 #define SCTPCTL_DEFAULT_FRAG_INTERLEAVE_DEFAULT 1 484 485 /* mobility_base: Enable SCTP mobility support */ 486 #define SCTPCTL_MOBILITY_BASE_DESC "Enable SCTP base mobility" 487 #define SCTPCTL_MOBILITY_BASE_MIN 0 488 #define SCTPCTL_MOBILITY_BASE_MAX 1 489 #define SCTPCTL_MOBILITY_BASE_DEFAULT 0 490 491 /* mobility_fasthandoff: Enable SCTP fast handoff support */ 492 #define SCTPCTL_MOBILITY_FASTHANDOFF_DESC "Enable SCTP fast handoff" 493 #define SCTPCTL_MOBILITY_FASTHANDOFF_MIN 0 494 #define SCTPCTL_MOBILITY_FASTHANDOFF_MAX 1 495 #define SCTPCTL_MOBILITY_FASTHANDOFF_DEFAULT 0 496 497 /* Enable SCTP/UDP tunneling port */ 498 #define SCTPCTL_UDP_TUNNELING_PORT_DESC "Set the SCTP/UDP tunneling port" 499 #define SCTPCTL_UDP_TUNNELING_PORT_MIN 0 500 #define SCTPCTL_UDP_TUNNELING_PORT_MAX 65535 501 #if defined(__FreeBSD__) 502 #define SCTPCTL_UDP_TUNNELING_PORT_DEFAULT 0 503 #else 504 #define SCTPCTL_UDP_TUNNELING_PORT_DEFAULT SCTP_OVER_UDP_TUNNELING_PORT 505 #endif 506 507 /* Enable sending of the SACK-IMMEDIATELY bit */ 508 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_DESC "Enable sending of the SACK-IMMEDIATELY-bit" 509 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_MIN 0 510 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_MAX 1 511 #define SCTPCTL_SACK_IMMEDIATELY_ENABLE_DEFAULT SCTPCTL_SACK_IMMEDIATELY_ENABLE_MAX 512 513 /* Enable sending of the NAT-FRIENDLY message */ 514 #define SCTPCTL_NAT_FRIENDLY_INITS_DESC "Enable sending of the nat-friendly SCTP option on INITs" 515 #define SCTPCTL_NAT_FRIENDLY_INITS_MIN 0 516 #define SCTPCTL_NAT_FRIENDLY_INITS_MAX 1 517 #define SCTPCTL_NAT_FRIENDLY_INITS_DEFAULT SCTPCTL_NAT_FRIENDLY_INITS_MIN 518 519 /* Vtag time wait in seconds */ 520 #define SCTPCTL_TIME_WAIT_DESC "Vtag time wait time in seconds, 0 disables it" 521 #define SCTPCTL_TIME_WAIT_MIN 0 522 #define SCTPCTL_TIME_WAIT_MAX 0xffffffff 523 #define SCTPCTL_TIME_WAIT_DEFAULT SCTP_TIME_WAIT 524 525 /* Enable Send/Receive buffer splitting */ 526 #define SCTPCTL_BUFFER_SPLITTING_DESC "Enable send/receive buffer splitting" 527 #define SCTPCTL_BUFFER_SPLITTING_MIN 0 528 #define SCTPCTL_BUFFER_SPLITTING_MAX 0x3 529 #define SCTPCTL_BUFFER_SPLITTING_DEFAULT SCTPCTL_BUFFER_SPLITTING_MIN 530 531 /* Initial congestion window in MTUs */ 532 #define SCTPCTL_INITIAL_CWND_DESC "Defines the initial congestion window size in MTUs" 533 #define SCTPCTL_INITIAL_CWND_MIN 0 534 #define SCTPCTL_INITIAL_CWND_MAX 0xffffffff 535 #define SCTPCTL_INITIAL_CWND_DEFAULT 3 536 537 /* rttvar smooth avg for bw calc */ 538 #define SCTPCTL_RTTVAR_BW_DESC "Shift amount DCCC uses for bw smoothing on rtt calc" 539 #define SCTPCTL_RTTVAR_BW_MIN 0 540 #define SCTPCTL_RTTVAR_BW_MAX 32 541 #define SCTPCTL_RTTVAR_BW_DEFAULT 4 542 543 /* rttvar smooth avg for bw calc */ 544 #define SCTPCTL_RTTVAR_RTT_DESC "Shift amount DCCC uses for rtt smoothing on rtt calc" 545 #define SCTPCTL_RTTVAR_RTT_MIN 0 546 #define SCTPCTL_RTTVAR_RTT_MAX 32 547 #define SCTPCTL_RTTVAR_RTT_DEFAULT 5 548 549 #define SCTPCTL_RTTVAR_EQRET_DESC "Whether DCCC increases cwnd when the rtt and bw are unchanged" 550 #define SCTPCTL_RTTVAR_EQRET_MIN 0 551 #define SCTPCTL_RTTVAR_EQRET_MAX 1 552 #define SCTPCTL_RTTVAR_EQRET_DEFAULT 0 553 554 #define SCTPCTL_RTTVAR_STEADYS_DESC "Number of identical bw measurements DCCC takes to try step down of cwnd" 555 #define SCTPCTL_RTTVAR_STEADYS_MIN 0 556 #define SCTPCTL_RTTVAR_STEADYS_MAX 0xFFFF 557 #define SCTPCTL_RTTVAR_STEADYS_DEFAULT 20 /* 0 means disable feature */ 558 559 #define SCTPCTL_RTTVAR_DCCCECN_DESC "Enable ECN for DCCC." 560 #define SCTPCTL_RTTVAR_DCCCECN_MIN 0 561 #define SCTPCTL_RTTVAR_DCCCECN_MAX 1 562 #define SCTPCTL_RTTVAR_DCCCECN_DEFAULT 1 /* 0 means disable feature */ 563 564 #define SCTPCTL_BLACKHOLE_DESC "Enable SCTP blackholing, see blackhole(4) for more details" 565 #define SCTPCTL_BLACKHOLE_MIN 0 566 #define SCTPCTL_BLACKHOLE_MAX 2 567 #define SCTPCTL_BLACKHOLE_DEFAULT SCTPCTL_BLACKHOLE_MIN 568 569 /* sendall_limit: Maximum message with SCTP_SENDALL */ 570 #define SCTPCTL_SENDALL_LIMIT_DESC "Maximum size of a message send with SCTP_SENDALL" 571 #define SCTPCTL_SENDALL_LIMIT_MIN 0 572 #define SCTPCTL_SENDALL_LIMIT_MAX 0xFFFFFFFF 573 #define SCTPCTL_SENDALL_LIMIT_DEFAULT 1432 574 575 #define SCTPCTL_DIAG_INFO_CODE_DESC "Diagnostic information error cause code" 576 #define SCTPCTL_DIAG_INFO_CODE_MIN 0 577 #define SCTPCTL_DIAG_INFO_CODE_MAX 65535 578 #define SCTPCTL_DIAG_INFO_CODE_DEFAULT 0 579 580 #if defined(SCTP_DEBUG) 581 /* debug: Configure debug output */ 582 #define SCTPCTL_DEBUG_DESC "Configure debug output" 583 #define SCTPCTL_DEBUG_MIN 0 584 #define SCTPCTL_DEBUG_MAX 0xFFFFFFFF 585 #define SCTPCTL_DEBUG_DEFAULT 0 586 #endif 587 588 #if defined(__APPLE__) 589 #define SCTPCTL_MAIN_TIMER_DESC "Main timer interval in ms" 590 #define SCTPCTL_MAIN_TIMER_MIN 1 591 #define SCTPCTL_MAIN_TIMER_MAX 0xFFFFFFFF 592 #define SCTPCTL_MAIN_TIMER_DEFAULT 10 593 594 #define SCTPCTL_IGNORE_VMWARE_INTERFACES_DESC "Ignore VMware Interfaces" 595 #define SCTPCTL_IGNORE_VMWARE_INTERFACES_MIN 0 596 #define SCTPCTL_IGNORE_VMWARE_INTERFACES_MAX 1 597 #define SCTPCTL_IGNORE_VMWARE_INTERFACES_DEFAULT SCTPCTL_IGNORE_VMWARE_INTERFACES_MAX 598 #endif 599 600 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 601 #define SCTPCTL_OUTPUT_UNLOCKED_DESC "Unlock socket when sending packets down to IP" 602 #define SCTPCTL_OUTPUT_UNLOCKED_MIN 0 603 #define SCTPCTL_OUTPUT_UNLOCKED_MAX 1 604 #define SCTPCTL_OUTPUT_UNLOCKED_DEFAULT SCTPCTL_OUTPUT_UNLOCKED_MIN 605 #endif 606 607 #if defined(__APPLE__) 608 #define SCTPCTL_ADDR_WATCHDOG_LIMIT_DESC "Address watchdog limit" 609 #define SCTPCTL_ADDR_WATCHDOG_LIMIT_MIN 0 610 #define SCTPCTL_ADDR_WATCHDOG_LIMIT_MAX 0xFFFFFFFF 611 #define SCTPCTL_ADDR_WATCHDOG_LIMIT_DEFAULT SCTPCTL_ADDR_WATCHDOG_LIMIT_MIN 612 613 #define SCTPCTL_VTAG_WATCHDOG_LIMIT_DESC "VTag watchdog limit" 614 #define SCTPCTL_VTAG_WATCHDOG_LIMIT_MIN 0 615 #define SCTPCTL_VTAG_WATCHDOG_LIMIT_MAX 0xFFFFFFFF 616 #define SCTPCTL_VTAG_WATCHDOG_LIMIT_DEFAULT SCTPCTL_VTAG_WATCHDOG_LIMIT_MIN 617 #endif 618 619 #if defined(_KERNEL) || defined(__Userspace__) 620 #if defined(__FreeBSD__) || defined(__APPLE__) || defined(__Userspace__) 621 #if defined(SYSCTL_DECL) 622 SYSCTL_DECL(_net_inet_sctp); 623 #endif 624 #endif 625 626 void sctp_init_sysctls(void); 627 #if defined(__Windows__) 628 void sctp_finish_sysctls(void); 629 #endif 630 631 #endif /* _KERNEL */ 632 #endif /* __sctp_sysctl_h__ */ 633