tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

sctp_sysctl.h (25784B)


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