Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /*- |
michael@0 | 2 | * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. |
michael@0 | 3 | * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. |
michael@0 | 4 | * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. |
michael@0 | 5 | * |
michael@0 | 6 | * Redistribution and use in source and binary forms, with or without |
michael@0 | 7 | * modification, are permitted provided that the following conditions are met: |
michael@0 | 8 | * |
michael@0 | 9 | * a) Redistributions of source code must retain the above copyright notice, |
michael@0 | 10 | * this list of conditions and the following disclaimer. |
michael@0 | 11 | * |
michael@0 | 12 | * b) Redistributions in binary form must reproduce the above copyright |
michael@0 | 13 | * notice, this list of conditions and the following disclaimer in |
michael@0 | 14 | * the documentation and/or other materials provided with the distribution. |
michael@0 | 15 | * |
michael@0 | 16 | * c) Neither the name of Cisco Systems, Inc. nor the names of its |
michael@0 | 17 | * contributors may be used to endorse or promote products derived |
michael@0 | 18 | * from this software without specific prior written permission. |
michael@0 | 19 | * |
michael@0 | 20 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
michael@0 | 21 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
michael@0 | 22 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
michael@0 | 23 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
michael@0 | 24 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
michael@0 | 25 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
michael@0 | 26 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
michael@0 | 27 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
michael@0 | 28 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
michael@0 | 29 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
michael@0 | 30 | * THE POSSIBILITY OF SUCH DAMAGE. |
michael@0 | 31 | */ |
michael@0 | 32 | |
michael@0 | 33 | #ifdef __FreeBSD__ |
michael@0 | 34 | #include <sys/cdefs.h> |
michael@0 | 35 | __FBSDID("$FreeBSD: head/sys/netinet/sctp_constants.h 256556 2013-10-15 20:21:27Z tuexen $"); |
michael@0 | 36 | #endif |
michael@0 | 37 | |
michael@0 | 38 | #ifndef _NETINET_SCTP_CONSTANTS_H_ |
michael@0 | 39 | #define _NETINET_SCTP_CONSTANTS_H_ |
michael@0 | 40 | |
michael@0 | 41 | #if defined(__Userspace_os_Windows) |
michael@0 | 42 | extern void getwintimeofday(struct timeval *tv); |
michael@0 | 43 | #endif |
michael@0 | 44 | /* IANA assigned port number for SCTP over UDP encapsulation */ |
michael@0 | 45 | #ifdef __FreeBSD__ |
michael@0 | 46 | /* For freebsd we cannot bind the port at |
michael@0 | 47 | * startup. Otherwise what will happen is |
michael@0 | 48 | * we really won't be bound. The user must |
michael@0 | 49 | * put it into the sysctl... or we need |
michael@0 | 50 | * to build a special timer for this to allow |
michael@0 | 51 | * us to wait 1 second or so after the system |
michael@0 | 52 | * comes up. |
michael@0 | 53 | */ |
michael@0 | 54 | #define SCTP_OVER_UDP_TUNNELING_PORT 0 |
michael@0 | 55 | #else |
michael@0 | 56 | #define SCTP_OVER_UDP_TUNNELING_PORT 9899 |
michael@0 | 57 | #endif |
michael@0 | 58 | /* Number of packets to get before sack sent by default */ |
michael@0 | 59 | #define SCTP_DEFAULT_SACK_FREQ 2 |
michael@0 | 60 | |
michael@0 | 61 | /* Address limit - This variable is calculated |
michael@0 | 62 | * based on an 65535 byte max ip packet. We take out 100 bytes |
michael@0 | 63 | * for the cookie, 40 bytes for a v6 header and 32 |
michael@0 | 64 | * bytes for the init structure. A second init structure |
michael@0 | 65 | * for the init-ack and then finally a third one for the |
michael@0 | 66 | * imbedded init. This yeilds 100+40+(3 * 32) = 236 bytes. |
michael@0 | 67 | * This leaves 65299 bytes for addresses. We throw out the 299 bytes. |
michael@0 | 68 | * Now whatever we send in the INIT() we need to allow to get back in the |
michael@0 | 69 | * INIT-ACK plus all the values from INIT and INIT-ACK |
michael@0 | 70 | * listed in the cookie. Plus we need some overhead for |
michael@0 | 71 | * maybe copied parameters in the COOKIE. If we |
michael@0 | 72 | * allow 1080 addresses, and each side has 1080 V6 addresses |
michael@0 | 73 | * that will be 21600 bytes. In the INIT-ACK we will |
michael@0 | 74 | * see the INIT-ACK 21600 + 43200 in the cookie. This leaves |
michael@0 | 75 | * about 500 bytes slack for misc things in the cookie. |
michael@0 | 76 | */ |
michael@0 | 77 | #define SCTP_ADDRESS_LIMIT 1080 |
michael@0 | 78 | |
michael@0 | 79 | /* We need at least 2k of space for us, inits |
michael@0 | 80 | * larger than that lets abort. |
michael@0 | 81 | */ |
michael@0 | 82 | #define SCTP_LARGEST_INIT_ACCEPTED (65535 - 2048) |
michael@0 | 83 | |
michael@0 | 84 | /* Number of addresses where we just skip the counting */ |
michael@0 | 85 | #define SCTP_COUNT_LIMIT 40 |
michael@0 | 86 | |
michael@0 | 87 | #define SCTP_ZERO_COPY_TICK_DELAY (((100 * hz) + 999) / 1000) |
michael@0 | 88 | #define SCTP_ZERO_COPY_SENDQ_TICK_DELAY (((100 * hz) + 999) / 1000) |
michael@0 | 89 | |
michael@0 | 90 | /* Number of ticks to delay before running |
michael@0 | 91 | * iterator on an address change. |
michael@0 | 92 | */ |
michael@0 | 93 | #define SCTP_ADDRESS_TICK_DELAY 2 |
michael@0 | 94 | |
michael@0 | 95 | #define SCTP_VERSION_STRING "KAME-BSD 1.1" |
michael@0 | 96 | /* #define SCTP_AUDITING_ENABLED 1 used for debug/auditing */ |
michael@0 | 97 | #define SCTP_AUDIT_SIZE 256 |
michael@0 | 98 | |
michael@0 | 99 | |
michael@0 | 100 | #define SCTP_KTRHEAD_NAME "sctp_iterator" |
michael@0 | 101 | #define SCTP_KTHREAD_PAGES 0 |
michael@0 | 102 | |
michael@0 | 103 | #define SCTP_MCORE_NAME "sctp_core_worker" |
michael@0 | 104 | |
michael@0 | 105 | |
michael@0 | 106 | /* If you support Multi-VRF how big to |
michael@0 | 107 | * make the initial array of VRF's to. |
michael@0 | 108 | */ |
michael@0 | 109 | #define SCTP_DEFAULT_VRF_SIZE 4 |
michael@0 | 110 | |
michael@0 | 111 | /* constants for rto calc */ |
michael@0 | 112 | #define sctp_align_safe_nocopy 0 |
michael@0 | 113 | #define sctp_align_unsafe_makecopy 1 |
michael@0 | 114 | |
michael@0 | 115 | /* JRS - Values defined for the HTCP algorithm */ |
michael@0 | 116 | #define ALPHA_BASE (1<<7) /* 1.0 with shift << 7 */ |
michael@0 | 117 | #define BETA_MIN (1<<6) /* 0.5 with shift << 7 */ |
michael@0 | 118 | #define BETA_MAX 102 /* 0.8 with shift << 7 */ |
michael@0 | 119 | |
michael@0 | 120 | /* Places that CWND log can happen from */ |
michael@0 | 121 | #define SCTP_CWND_LOG_FROM_FR 1 |
michael@0 | 122 | #define SCTP_CWND_LOG_FROM_RTX 2 |
michael@0 | 123 | #define SCTP_CWND_LOG_FROM_BRST 3 |
michael@0 | 124 | #define SCTP_CWND_LOG_FROM_SS 4 |
michael@0 | 125 | #define SCTP_CWND_LOG_FROM_CA 5 |
michael@0 | 126 | #define SCTP_CWND_LOG_FROM_SAT 6 |
michael@0 | 127 | #define SCTP_BLOCK_LOG_INTO_BLK 7 |
michael@0 | 128 | #define SCTP_BLOCK_LOG_OUTOF_BLK 8 |
michael@0 | 129 | #define SCTP_BLOCK_LOG_CHECK 9 |
michael@0 | 130 | #define SCTP_STR_LOG_FROM_INTO_STRD 10 |
michael@0 | 131 | #define SCTP_STR_LOG_FROM_IMMED_DEL 11 |
michael@0 | 132 | #define SCTP_STR_LOG_FROM_INSERT_HD 12 |
michael@0 | 133 | #define SCTP_STR_LOG_FROM_INSERT_MD 13 |
michael@0 | 134 | #define SCTP_STR_LOG_FROM_INSERT_TL 14 |
michael@0 | 135 | #define SCTP_STR_LOG_FROM_MARK_TSN 15 |
michael@0 | 136 | #define SCTP_STR_LOG_FROM_EXPRS_DEL 16 |
michael@0 | 137 | #define SCTP_FR_LOG_BIGGEST_TSNS 17 |
michael@0 | 138 | #define SCTP_FR_LOG_STRIKE_TEST 18 |
michael@0 | 139 | #define SCTP_FR_LOG_STRIKE_CHUNK 19 |
michael@0 | 140 | #define SCTP_FR_T3_TIMEOUT 20 |
michael@0 | 141 | #define SCTP_MAP_PREPARE_SLIDE 21 |
michael@0 | 142 | #define SCTP_MAP_SLIDE_FROM 22 |
michael@0 | 143 | #define SCTP_MAP_SLIDE_RESULT 23 |
michael@0 | 144 | #define SCTP_MAP_SLIDE_CLEARED 24 |
michael@0 | 145 | #define SCTP_MAP_SLIDE_NONE 25 |
michael@0 | 146 | #define SCTP_FR_T3_MARK_TIME 26 |
michael@0 | 147 | #define SCTP_FR_T3_MARKED 27 |
michael@0 | 148 | #define SCTP_FR_T3_STOPPED 28 |
michael@0 | 149 | #define SCTP_FR_MARKED 30 |
michael@0 | 150 | #define SCTP_CWND_LOG_NOADV_SS 31 |
michael@0 | 151 | #define SCTP_CWND_LOG_NOADV_CA 32 |
michael@0 | 152 | #define SCTP_MAX_BURST_APPLIED 33 |
michael@0 | 153 | #define SCTP_MAX_IFP_APPLIED 34 |
michael@0 | 154 | #define SCTP_MAX_BURST_ERROR_STOP 35 |
michael@0 | 155 | #define SCTP_INCREASE_PEER_RWND 36 |
michael@0 | 156 | #define SCTP_DECREASE_PEER_RWND 37 |
michael@0 | 157 | #define SCTP_SET_PEER_RWND_VIA_SACK 38 |
michael@0 | 158 | #define SCTP_LOG_MBCNT_INCREASE 39 |
michael@0 | 159 | #define SCTP_LOG_MBCNT_DECREASE 40 |
michael@0 | 160 | #define SCTP_LOG_MBCNT_CHKSET 41 |
michael@0 | 161 | #define SCTP_LOG_NEW_SACK 42 |
michael@0 | 162 | #define SCTP_LOG_TSN_ACKED 43 |
michael@0 | 163 | #define SCTP_LOG_TSN_REVOKED 44 |
michael@0 | 164 | #define SCTP_LOG_LOCK_TCB 45 |
michael@0 | 165 | #define SCTP_LOG_LOCK_INP 46 |
michael@0 | 166 | #define SCTP_LOG_LOCK_SOCK 47 |
michael@0 | 167 | #define SCTP_LOG_LOCK_SOCKBUF_R 48 |
michael@0 | 168 | #define SCTP_LOG_LOCK_SOCKBUF_S 49 |
michael@0 | 169 | #define SCTP_LOG_LOCK_CREATE 50 |
michael@0 | 170 | #define SCTP_LOG_INITIAL_RTT 51 |
michael@0 | 171 | #define SCTP_LOG_RTTVAR 52 |
michael@0 | 172 | #define SCTP_LOG_SBALLOC 53 |
michael@0 | 173 | #define SCTP_LOG_SBFREE 54 |
michael@0 | 174 | #define SCTP_LOG_SBRESULT 55 |
michael@0 | 175 | #define SCTP_FR_DUPED 56 |
michael@0 | 176 | #define SCTP_FR_MARKED_EARLY 57 |
michael@0 | 177 | #define SCTP_FR_CWND_REPORT 58 |
michael@0 | 178 | #define SCTP_FR_CWND_REPORT_START 59 |
michael@0 | 179 | #define SCTP_FR_CWND_REPORT_STOP 60 |
michael@0 | 180 | #define SCTP_CWND_LOG_FROM_SEND 61 |
michael@0 | 181 | #define SCTP_CWND_INITIALIZATION 62 |
michael@0 | 182 | #define SCTP_CWND_LOG_FROM_T3 63 |
michael@0 | 183 | #define SCTP_CWND_LOG_FROM_SACK 64 |
michael@0 | 184 | #define SCTP_CWND_LOG_NO_CUMACK 65 |
michael@0 | 185 | #define SCTP_CWND_LOG_FROM_RESEND 66 |
michael@0 | 186 | #define SCTP_FR_LOG_CHECK_STRIKE 67 |
michael@0 | 187 | #define SCTP_SEND_NOW_COMPLETES 68 |
michael@0 | 188 | #define SCTP_CWND_LOG_FILL_OUTQ_CALLED 69 |
michael@0 | 189 | #define SCTP_CWND_LOG_FILL_OUTQ_FILLS 70 |
michael@0 | 190 | #define SCTP_LOG_FREE_SENT 71 |
michael@0 | 191 | #define SCTP_NAGLE_APPLIED 72 |
michael@0 | 192 | #define SCTP_NAGLE_SKIPPED 73 |
michael@0 | 193 | #define SCTP_WAKESND_FROM_SACK 74 |
michael@0 | 194 | #define SCTP_WAKESND_FROM_FWDTSN 75 |
michael@0 | 195 | #define SCTP_NOWAKE_FROM_SACK 76 |
michael@0 | 196 | #define SCTP_CWNDLOG_PRESEND 77 |
michael@0 | 197 | #define SCTP_CWNDLOG_ENDSEND 78 |
michael@0 | 198 | #define SCTP_AT_END_OF_SACK 79 |
michael@0 | 199 | #define SCTP_REASON_FOR_SC 80 |
michael@0 | 200 | #define SCTP_BLOCK_LOG_INTO_BLKA 81 |
michael@0 | 201 | #define SCTP_ENTER_USER_RECV 82 |
michael@0 | 202 | #define SCTP_USER_RECV_SACKS 83 |
michael@0 | 203 | #define SCTP_SORECV_BLOCKSA 84 |
michael@0 | 204 | #define SCTP_SORECV_BLOCKSB 85 |
michael@0 | 205 | #define SCTP_SORECV_DONE 86 |
michael@0 | 206 | #define SCTP_SACK_RWND_UPDATE 87 |
michael@0 | 207 | #define SCTP_SORECV_ENTER 88 |
michael@0 | 208 | #define SCTP_SORECV_ENTERPL 89 |
michael@0 | 209 | #define SCTP_MBUF_INPUT 90 |
michael@0 | 210 | #define SCTP_MBUF_IALLOC 91 |
michael@0 | 211 | #define SCTP_MBUF_IFREE 92 |
michael@0 | 212 | #define SCTP_MBUF_ICOPY 93 |
michael@0 | 213 | #define SCTP_MBUF_SPLIT 94 |
michael@0 | 214 | #define SCTP_SORCV_FREECTL 95 |
michael@0 | 215 | #define SCTP_SORCV_DOESCPY 96 |
michael@0 | 216 | #define SCTP_SORCV_DOESLCK 97 |
michael@0 | 217 | #define SCTP_SORCV_DOESADJ 98 |
michael@0 | 218 | #define SCTP_SORCV_BOTWHILE 99 |
michael@0 | 219 | #define SCTP_SORCV_PASSBF 100 |
michael@0 | 220 | #define SCTP_SORCV_ADJD 101 |
michael@0 | 221 | #define SCTP_UNKNOWN_MAX 102 |
michael@0 | 222 | #define SCTP_RANDY_STUFF 103 |
michael@0 | 223 | #define SCTP_RANDY_STUFF1 104 |
michael@0 | 224 | #define SCTP_STRMOUT_LOG_ASSIGN 105 |
michael@0 | 225 | #define SCTP_STRMOUT_LOG_SEND 106 |
michael@0 | 226 | #define SCTP_FLIGHT_LOG_DOWN_CA 107 |
michael@0 | 227 | #define SCTP_FLIGHT_LOG_UP 108 |
michael@0 | 228 | #define SCTP_FLIGHT_LOG_DOWN_GAP 109 |
michael@0 | 229 | #define SCTP_FLIGHT_LOG_DOWN_RSND 110 |
michael@0 | 230 | #define SCTP_FLIGHT_LOG_UP_RSND 111 |
michael@0 | 231 | #define SCTP_FLIGHT_LOG_DOWN_RSND_TO 112 |
michael@0 | 232 | #define SCTP_FLIGHT_LOG_DOWN_WP 113 |
michael@0 | 233 | #define SCTP_FLIGHT_LOG_UP_REVOKE 114 |
michael@0 | 234 | #define SCTP_FLIGHT_LOG_DOWN_PDRP 115 |
michael@0 | 235 | #define SCTP_FLIGHT_LOG_DOWN_PMTU 116 |
michael@0 | 236 | #define SCTP_SACK_LOG_NORMAL 117 |
michael@0 | 237 | #define SCTP_SACK_LOG_EXPRESS 118 |
michael@0 | 238 | #define SCTP_MAP_TSN_ENTERS 119 |
michael@0 | 239 | #define SCTP_THRESHOLD_CLEAR 120 |
michael@0 | 240 | #define SCTP_THRESHOLD_INCR 121 |
michael@0 | 241 | #define SCTP_FLIGHT_LOG_DWN_WP_FWD 122 |
michael@0 | 242 | #define SCTP_FWD_TSN_CHECK 123 |
michael@0 | 243 | #define SCTP_LOG_MAX_TYPES 124 |
michael@0 | 244 | /* |
michael@0 | 245 | * To turn on various logging, you must first enable 'options KTR' and |
michael@0 | 246 | * you might want to bump the entires 'options KTR_ENTRIES=80000'. |
michael@0 | 247 | * To get something to log you define one of the logging defines. |
michael@0 | 248 | * (see LINT). |
michael@0 | 249 | * |
michael@0 | 250 | * This gets the compile in place, but you still need to turn the |
michael@0 | 251 | * logging flag on too in the sysctl (see in sctp.h). |
michael@0 | 252 | */ |
michael@0 | 253 | |
michael@0 | 254 | #define SCTP_LOG_EVENT_UNKNOWN 0 |
michael@0 | 255 | #define SCTP_LOG_EVENT_CWND 1 |
michael@0 | 256 | #define SCTP_LOG_EVENT_BLOCK 2 |
michael@0 | 257 | #define SCTP_LOG_EVENT_STRM 3 |
michael@0 | 258 | #define SCTP_LOG_EVENT_FR 4 |
michael@0 | 259 | #define SCTP_LOG_EVENT_MAP 5 |
michael@0 | 260 | #define SCTP_LOG_EVENT_MAXBURST 6 |
michael@0 | 261 | #define SCTP_LOG_EVENT_RWND 7 |
michael@0 | 262 | #define SCTP_LOG_EVENT_MBCNT 8 |
michael@0 | 263 | #define SCTP_LOG_EVENT_SACK 9 |
michael@0 | 264 | #define SCTP_LOG_LOCK_EVENT 10 |
michael@0 | 265 | #define SCTP_LOG_EVENT_RTT 11 |
michael@0 | 266 | #define SCTP_LOG_EVENT_SB 12 |
michael@0 | 267 | #define SCTP_LOG_EVENT_NAGLE 13 |
michael@0 | 268 | #define SCTP_LOG_EVENT_WAKE 14 |
michael@0 | 269 | #define SCTP_LOG_MISC_EVENT 15 |
michael@0 | 270 | #define SCTP_LOG_EVENT_CLOSE 16 |
michael@0 | 271 | #define SCTP_LOG_EVENT_MBUF 17 |
michael@0 | 272 | #define SCTP_LOG_CHUNK_PROC 18 |
michael@0 | 273 | #define SCTP_LOG_ERROR_RET 19 |
michael@0 | 274 | |
michael@0 | 275 | #define SCTP_LOG_MAX_EVENT 20 |
michael@0 | 276 | |
michael@0 | 277 | #define SCTP_LOCK_UNKNOWN 2 |
michael@0 | 278 | |
michael@0 | 279 | |
michael@0 | 280 | /* number of associations by default for zone allocation */ |
michael@0 | 281 | #define SCTP_MAX_NUM_OF_ASOC 40000 |
michael@0 | 282 | /* how many addresses per assoc remote and local */ |
michael@0 | 283 | #define SCTP_SCALE_FOR_ADDR 2 |
michael@0 | 284 | |
michael@0 | 285 | /* default AUTO_ASCONF mode enable(1)/disable(0) value (sysctl) */ |
michael@0 | 286 | #if defined(__APPLE__) |
michael@0 | 287 | #if !defined(SCTP_APPLE_AUTO_ASCONF) |
michael@0 | 288 | #define SCTP_DEFAULT_AUTO_ASCONF 0 |
michael@0 | 289 | #else |
michael@0 | 290 | #define SCTP_DEFAULT_AUTO_ASCONF 1 |
michael@0 | 291 | #endif |
michael@0 | 292 | #else |
michael@0 | 293 | #define SCTP_DEFAULT_AUTO_ASCONF 1 |
michael@0 | 294 | #endif |
michael@0 | 295 | |
michael@0 | 296 | /* default MULTIPLE_ASCONF mode enable(1)/disable(0) value (sysctl) */ |
michael@0 | 297 | #define SCTP_DEFAULT_MULTIPLE_ASCONFS 0 |
michael@0 | 298 | |
michael@0 | 299 | /* default MOBILITY_BASE mode enable(1)/disable(0) value (sysctl) */ |
michael@0 | 300 | #if defined(__APPLE__) |
michael@0 | 301 | #if !defined(SCTP_APPLE_MOBILITY_BASE) |
michael@0 | 302 | #define SCTP_DEFAULT_MOBILITY_BASE 0 |
michael@0 | 303 | #else |
michael@0 | 304 | #define SCTP_DEFAULT_MOBILITY_BASE 1 |
michael@0 | 305 | #endif |
michael@0 | 306 | #else |
michael@0 | 307 | #define SCTP_DEFAULT_MOBILITY_BASE 0 |
michael@0 | 308 | #endif |
michael@0 | 309 | |
michael@0 | 310 | /* default MOBILITY_FASTHANDOFF mode enable(1)/disable(0) value (sysctl) */ |
michael@0 | 311 | #if defined(__APPLE__) |
michael@0 | 312 | #if !defined(SCTP_APPLE_MOBILITY_FASTHANDOFF) |
michael@0 | 313 | #define SCTP_DEFAULT_MOBILITY_FASTHANDOFF 0 |
michael@0 | 314 | #else |
michael@0 | 315 | #define SCTP_DEFAULT_MOBILITY_FASTHANDOFF 1 |
michael@0 | 316 | #endif |
michael@0 | 317 | #else |
michael@0 | 318 | #define SCTP_DEFAULT_MOBILITY_FASTHANDOFF 0 |
michael@0 | 319 | #endif |
michael@0 | 320 | |
michael@0 | 321 | /* |
michael@0 | 322 | * Theshold for rwnd updates, we have to read (sb_hiwat >> |
michael@0 | 323 | * SCTP_RWND_HIWAT_SHIFT) before we will look to see if we need to send a |
michael@0 | 324 | * window update sack. When we look, we compare the last rwnd we sent vs the |
michael@0 | 325 | * current rwnd. It too must be greater than this value. Using 3 divdes the |
michael@0 | 326 | * hiwat by 8, so for 200k rwnd we need to read 24k. For a 64k rwnd we need |
michael@0 | 327 | * to read 8k. This seems about right.. I hope :-D.. we do set a |
michael@0 | 328 | * min of a MTU on it so if the rwnd is real small we will insist |
michael@0 | 329 | * on a full MTU of 1500 bytes. |
michael@0 | 330 | */ |
michael@0 | 331 | #define SCTP_RWND_HIWAT_SHIFT 3 |
michael@0 | 332 | |
michael@0 | 333 | /* How much of the rwnd must the |
michael@0 | 334 | * message be taking up to start partial delivery. |
michael@0 | 335 | * We calculate this by shifing the hi_water (recv_win) |
michael@0 | 336 | * left the following .. set to 1, when a message holds |
michael@0 | 337 | * 1/2 the rwnd. If we set it to 2 when a message holds |
michael@0 | 338 | * 1/4 the rwnd...etc.. |
michael@0 | 339 | */ |
michael@0 | 340 | |
michael@0 | 341 | #define SCTP_PARTIAL_DELIVERY_SHIFT 1 |
michael@0 | 342 | |
michael@0 | 343 | /* |
michael@0 | 344 | * default HMAC for cookies, etc... use one of the AUTH HMAC id's |
michael@0 | 345 | * SCTP_HMAC is the HMAC_ID to use |
michael@0 | 346 | * SCTP_SIGNATURE_SIZE is the digest length |
michael@0 | 347 | */ |
michael@0 | 348 | #define SCTP_HMAC SCTP_AUTH_HMAC_ID_SHA1 |
michael@0 | 349 | #define SCTP_SIGNATURE_SIZE SCTP_AUTH_DIGEST_LEN_SHA1 |
michael@0 | 350 | #define SCTP_SIGNATURE_ALOC_SIZE SCTP_SIGNATURE_SIZE |
michael@0 | 351 | |
michael@0 | 352 | /* |
michael@0 | 353 | * the SCTP protocol signature this includes the version number encoded in |
michael@0 | 354 | * the last 4 bits of the signature. |
michael@0 | 355 | */ |
michael@0 | 356 | #define PROTO_SIGNATURE_A 0x30000000 |
michael@0 | 357 | #define SCTP_VERSION_NUMBER 0x3 |
michael@0 | 358 | |
michael@0 | 359 | #define MAX_TSN 0xffffffff |
michael@0 | 360 | |
michael@0 | 361 | /* how many executions every N tick's */ |
michael@0 | 362 | #define SCTP_ITERATOR_MAX_AT_ONCE 20 |
michael@0 | 363 | |
michael@0 | 364 | /* number of clock ticks between iterator executions */ |
michael@0 | 365 | #define SCTP_ITERATOR_TICKS 1 |
michael@0 | 366 | |
michael@0 | 367 | /* |
michael@0 | 368 | * option: If you comment out the following you will receive the old behavior |
michael@0 | 369 | * of obeying cwnd for the fast retransmit algorithm. With this defined a FR |
michael@0 | 370 | * happens right away with-out waiting for the flightsize to drop below the |
michael@0 | 371 | * cwnd value (which is reduced by the FR to 1/2 the inflight packets). |
michael@0 | 372 | */ |
michael@0 | 373 | #define SCTP_IGNORE_CWND_ON_FR 1 |
michael@0 | 374 | |
michael@0 | 375 | /* |
michael@0 | 376 | * Adds implementors guide behavior to only use newest highest update in SACK |
michael@0 | 377 | * gap ack's to figure out if you need to stroke a chunk for FR. |
michael@0 | 378 | */ |
michael@0 | 379 | #define SCTP_NO_FR_UNLESS_SEGMENT_SMALLER 1 |
michael@0 | 380 | |
michael@0 | 381 | /* default max I can burst out after a fast retransmit, 0 disables it */ |
michael@0 | 382 | #define SCTP_DEF_MAX_BURST 4 |
michael@0 | 383 | #define SCTP_DEF_HBMAX_BURST 4 |
michael@0 | 384 | #define SCTP_DEF_FRMAX_BURST 4 |
michael@0 | 385 | |
michael@0 | 386 | /* RTO calculation flag to say if it |
michael@0 | 387 | * is safe to determine local lan or not. |
michael@0 | 388 | */ |
michael@0 | 389 | #define SCTP_RTT_FROM_NON_DATA 0 |
michael@0 | 390 | #define SCTP_RTT_FROM_DATA 1 |
michael@0 | 391 | |
michael@0 | 392 | |
michael@0 | 393 | /* IP hdr (20/40) + 12+2+2 (enet) + sctp common 12 */ |
michael@0 | 394 | #define SCTP_FIRST_MBUF_RESV 68 |
michael@0 | 395 | /* Packet transmit states in the sent field */ |
michael@0 | 396 | #define SCTP_DATAGRAM_UNSENT 0 |
michael@0 | 397 | #define SCTP_DATAGRAM_SENT 1 |
michael@0 | 398 | #define SCTP_DATAGRAM_RESEND1 2 /* not used (in code, but may |
michael@0 | 399 | * hit this value) */ |
michael@0 | 400 | #define SCTP_DATAGRAM_RESEND2 3 /* not used (in code, but may |
michael@0 | 401 | * hit this value) */ |
michael@0 | 402 | #define SCTP_DATAGRAM_RESEND 4 |
michael@0 | 403 | #define SCTP_DATAGRAM_ACKED 10010 |
michael@0 | 404 | #define SCTP_DATAGRAM_MARKED 20010 |
michael@0 | 405 | #define SCTP_FORWARD_TSN_SKIP 30010 |
michael@0 | 406 | #define SCTP_DATAGRAM_NR_ACKED 40010 |
michael@0 | 407 | |
michael@0 | 408 | /* chunk output send from locations */ |
michael@0 | 409 | #define SCTP_OUTPUT_FROM_USR_SEND 0 |
michael@0 | 410 | #define SCTP_OUTPUT_FROM_T3 1 |
michael@0 | 411 | #define SCTP_OUTPUT_FROM_INPUT_ERROR 2 |
michael@0 | 412 | #define SCTP_OUTPUT_FROM_CONTROL_PROC 3 |
michael@0 | 413 | #define SCTP_OUTPUT_FROM_SACK_TMR 4 |
michael@0 | 414 | #define SCTP_OUTPUT_FROM_SHUT_TMR 5 |
michael@0 | 415 | #define SCTP_OUTPUT_FROM_HB_TMR 6 |
michael@0 | 416 | #define SCTP_OUTPUT_FROM_SHUT_ACK_TMR 7 |
michael@0 | 417 | #define SCTP_OUTPUT_FROM_ASCONF_TMR 8 |
michael@0 | 418 | #define SCTP_OUTPUT_FROM_STRRST_TMR 9 |
michael@0 | 419 | #define SCTP_OUTPUT_FROM_AUTOCLOSE_TMR 10 |
michael@0 | 420 | #define SCTP_OUTPUT_FROM_EARLY_FR_TMR 11 |
michael@0 | 421 | #define SCTP_OUTPUT_FROM_STRRST_REQ 12 |
michael@0 | 422 | #define SCTP_OUTPUT_FROM_USR_RCVD 13 |
michael@0 | 423 | #define SCTP_OUTPUT_FROM_COOKIE_ACK 14 |
michael@0 | 424 | #define SCTP_OUTPUT_FROM_DRAIN 15 |
michael@0 | 425 | #define SCTP_OUTPUT_FROM_CLOSING 16 |
michael@0 | 426 | #define SCTP_OUTPUT_FROM_SOCKOPT 17 |
michael@0 | 427 | |
michael@0 | 428 | /* SCTP chunk types are moved sctp.h for application (NAT, FW) use */ |
michael@0 | 429 | |
michael@0 | 430 | /* align to 32-bit sizes */ |
michael@0 | 431 | #define SCTP_SIZE32(x) ((((x) + 3) >> 2) << 2) |
michael@0 | 432 | |
michael@0 | 433 | #define IS_SCTP_CONTROL(a) ((a)->chunk_type != SCTP_DATA) |
michael@0 | 434 | #define IS_SCTP_DATA(a) ((a)->chunk_type == SCTP_DATA) |
michael@0 | 435 | |
michael@0 | 436 | |
michael@0 | 437 | /* SCTP parameter types */ |
michael@0 | 438 | /*************0x0000 series*************/ |
michael@0 | 439 | #define SCTP_HEARTBEAT_INFO 0x0001 |
michael@0 | 440 | #if defined(__Userspace__) |
michael@0 | 441 | #define SCTP_CONN_ADDRESS 0x0004 |
michael@0 | 442 | #endif |
michael@0 | 443 | #define SCTP_IPV4_ADDRESS 0x0005 |
michael@0 | 444 | #define SCTP_IPV6_ADDRESS 0x0006 |
michael@0 | 445 | #define SCTP_STATE_COOKIE 0x0007 |
michael@0 | 446 | #define SCTP_UNRECOG_PARAM 0x0008 |
michael@0 | 447 | #define SCTP_COOKIE_PRESERVE 0x0009 |
michael@0 | 448 | #define SCTP_HOSTNAME_ADDRESS 0x000b |
michael@0 | 449 | #define SCTP_SUPPORTED_ADDRTYPE 0x000c |
michael@0 | 450 | |
michael@0 | 451 | /* draft-ietf-stewart-tsvwg-strreset-xxx */ |
michael@0 | 452 | #define SCTP_STR_RESET_OUT_REQUEST 0x000d |
michael@0 | 453 | #define SCTP_STR_RESET_IN_REQUEST 0x000e |
michael@0 | 454 | #define SCTP_STR_RESET_TSN_REQUEST 0x000f |
michael@0 | 455 | #define SCTP_STR_RESET_RESPONSE 0x0010 |
michael@0 | 456 | #define SCTP_STR_RESET_ADD_OUT_STREAMS 0x0011 |
michael@0 | 457 | #define SCTP_STR_RESET_ADD_IN_STREAMS 0x0012 |
michael@0 | 458 | |
michael@0 | 459 | #define SCTP_MAX_RESET_PARAMS 2 |
michael@0 | 460 | #define SCTP_STREAM_RESET_TSN_DELTA 0x1000 |
michael@0 | 461 | |
michael@0 | 462 | /*************0x4000 series*************/ |
michael@0 | 463 | |
michael@0 | 464 | /*************0x8000 series*************/ |
michael@0 | 465 | #define SCTP_ECN_CAPABLE 0x8000 |
michael@0 | 466 | |
michael@0 | 467 | /* draft-ietf-tsvwg-auth-xxx */ |
michael@0 | 468 | #define SCTP_RANDOM 0x8002 |
michael@0 | 469 | #define SCTP_CHUNK_LIST 0x8003 |
michael@0 | 470 | #define SCTP_HMAC_LIST 0x8004 |
michael@0 | 471 | /* |
michael@0 | 472 | * draft-ietf-tsvwg-addip-sctp-xx param=0x8008 len=0xNNNN Byte | Byte | Byte |
michael@0 | 473 | * | Byte Byte | Byte ... |
michael@0 | 474 | * |
michael@0 | 475 | * Where each byte is a chunk type extension supported. For example, to support |
michael@0 | 476 | * all chunks one would have (in hex): |
michael@0 | 477 | * |
michael@0 | 478 | * 80 01 00 09 C0 C1 80 81 82 00 00 00 |
michael@0 | 479 | * |
michael@0 | 480 | * Has the parameter. C0 = PR-SCTP (RFC3758) C1, 80 = ASCONF (addip draft) 81 |
michael@0 | 481 | * = Packet Drop 82 = Stream Reset 83 = Authentication |
michael@0 | 482 | */ |
michael@0 | 483 | #define SCTP_SUPPORTED_CHUNK_EXT 0x8008 |
michael@0 | 484 | |
michael@0 | 485 | /*************0xC000 series*************/ |
michael@0 | 486 | #define SCTP_PRSCTP_SUPPORTED 0xc000 |
michael@0 | 487 | /* draft-ietf-tsvwg-addip-sctp */ |
michael@0 | 488 | #define SCTP_ADD_IP_ADDRESS 0xc001 |
michael@0 | 489 | #define SCTP_DEL_IP_ADDRESS 0xc002 |
michael@0 | 490 | #define SCTP_ERROR_CAUSE_IND 0xc003 |
michael@0 | 491 | #define SCTP_SET_PRIM_ADDR 0xc004 |
michael@0 | 492 | #define SCTP_SUCCESS_REPORT 0xc005 |
michael@0 | 493 | #define SCTP_ULP_ADAPTATION 0xc006 |
michael@0 | 494 | /* behave-nat-draft */ |
michael@0 | 495 | #define SCTP_HAS_NAT_SUPPORT 0xc007 |
michael@0 | 496 | #define SCTP_NAT_VTAGS 0xc008 |
michael@0 | 497 | |
michael@0 | 498 | /* bits for TOS field */ |
michael@0 | 499 | #define SCTP_ECT0_BIT 0x02 |
michael@0 | 500 | #define SCTP_ECT1_BIT 0x01 |
michael@0 | 501 | #define SCTP_CE_BITS 0x03 |
michael@0 | 502 | |
michael@0 | 503 | /* below turns off above */ |
michael@0 | 504 | #define SCTP_FLEXIBLE_ADDRESS 0x20 |
michael@0 | 505 | #define SCTP_NO_HEARTBEAT 0x40 |
michael@0 | 506 | |
michael@0 | 507 | /* mask to get sticky */ |
michael@0 | 508 | #define SCTP_STICKY_OPTIONS_MASK 0x0c |
michael@0 | 509 | |
michael@0 | 510 | |
michael@0 | 511 | /* |
michael@0 | 512 | * SCTP states for internal state machine XXX (should match "user" values) |
michael@0 | 513 | */ |
michael@0 | 514 | #define SCTP_STATE_EMPTY 0x0000 |
michael@0 | 515 | #define SCTP_STATE_INUSE 0x0001 |
michael@0 | 516 | #define SCTP_STATE_COOKIE_WAIT 0x0002 |
michael@0 | 517 | #define SCTP_STATE_COOKIE_ECHOED 0x0004 |
michael@0 | 518 | #define SCTP_STATE_OPEN 0x0008 |
michael@0 | 519 | #define SCTP_STATE_SHUTDOWN_SENT 0x0010 |
michael@0 | 520 | #define SCTP_STATE_SHUTDOWN_RECEIVED 0x0020 |
michael@0 | 521 | #define SCTP_STATE_SHUTDOWN_ACK_SENT 0x0040 |
michael@0 | 522 | #define SCTP_STATE_SHUTDOWN_PENDING 0x0080 |
michael@0 | 523 | #define SCTP_STATE_CLOSED_SOCKET 0x0100 |
michael@0 | 524 | #define SCTP_STATE_ABOUT_TO_BE_FREED 0x0200 |
michael@0 | 525 | #define SCTP_STATE_PARTIAL_MSG_LEFT 0x0400 |
michael@0 | 526 | #define SCTP_STATE_WAS_ABORTED 0x0800 |
michael@0 | 527 | #define SCTP_STATE_IN_ACCEPT_QUEUE 0x1000 |
michael@0 | 528 | #define SCTP_STATE_MASK 0x007f |
michael@0 | 529 | |
michael@0 | 530 | #define SCTP_GET_STATE(asoc) ((asoc)->state & SCTP_STATE_MASK) |
michael@0 | 531 | #define SCTP_SET_STATE(asoc, newstate) ((asoc)->state = ((asoc)->state & ~SCTP_STATE_MASK) | newstate) |
michael@0 | 532 | #define SCTP_CLEAR_SUBSTATE(asoc, substate) ((asoc)->state &= ~substate) |
michael@0 | 533 | #define SCTP_ADD_SUBSTATE(asoc, substate) ((asoc)->state |= substate) |
michael@0 | 534 | |
michael@0 | 535 | /* SCTP reachability state for each address */ |
michael@0 | 536 | #define SCTP_ADDR_REACHABLE 0x001 |
michael@0 | 537 | #define SCTP_ADDR_NO_PMTUD 0x002 |
michael@0 | 538 | #define SCTP_ADDR_NOHB 0x004 |
michael@0 | 539 | #define SCTP_ADDR_BEING_DELETED 0x008 |
michael@0 | 540 | #define SCTP_ADDR_NOT_IN_ASSOC 0x010 |
michael@0 | 541 | #define SCTP_ADDR_OUT_OF_SCOPE 0x080 |
michael@0 | 542 | #define SCTP_ADDR_UNCONFIRMED 0x200 |
michael@0 | 543 | #define SCTP_ADDR_REQ_PRIMARY 0x400 |
michael@0 | 544 | /* JRS 5/13/07 - Added potentially failed state for CMT PF */ |
michael@0 | 545 | #define SCTP_ADDR_PF 0x800 |
michael@0 | 546 | |
michael@0 | 547 | /* bound address types (e.g. valid address types to allow) */ |
michael@0 | 548 | #define SCTP_BOUND_V6 0x01 |
michael@0 | 549 | #define SCTP_BOUND_V4 0x02 |
michael@0 | 550 | |
michael@0 | 551 | /* |
michael@0 | 552 | * what is the default number of mbufs in a chain I allow before switching to |
michael@0 | 553 | * a cluster |
michael@0 | 554 | */ |
michael@0 | 555 | #define SCTP_DEFAULT_MBUFS_IN_CHAIN 5 |
michael@0 | 556 | |
michael@0 | 557 | /* How long a cookie lives in milli-seconds */ |
michael@0 | 558 | #define SCTP_DEFAULT_COOKIE_LIFE 60000 |
michael@0 | 559 | |
michael@0 | 560 | /* Maximum the mapping array will grow to (TSN mapping array) */ |
michael@0 | 561 | #define SCTP_MAPPING_ARRAY 512 |
michael@0 | 562 | |
michael@0 | 563 | /* size of the inital malloc on the mapping array */ |
michael@0 | 564 | #define SCTP_INITIAL_MAPPING_ARRAY 16 |
michael@0 | 565 | /* how much we grow the mapping array each call */ |
michael@0 | 566 | #define SCTP_MAPPING_ARRAY_INCR 32 |
michael@0 | 567 | |
michael@0 | 568 | /* |
michael@0 | 569 | * Here we define the timer types used by the implementation as arguments in |
michael@0 | 570 | * the set/get timer type calls. |
michael@0 | 571 | */ |
michael@0 | 572 | #define SCTP_TIMER_INIT 0 |
michael@0 | 573 | #define SCTP_TIMER_RECV 1 |
michael@0 | 574 | #define SCTP_TIMER_SEND 2 |
michael@0 | 575 | #define SCTP_TIMER_HEARTBEAT 3 |
michael@0 | 576 | #define SCTP_TIMER_PMTU 4 |
michael@0 | 577 | #define SCTP_TIMER_MAXSHUTDOWN 5 |
michael@0 | 578 | #define SCTP_TIMER_SIGNATURE 6 |
michael@0 | 579 | /* |
michael@0 | 580 | * number of timer types in the base SCTP structure used in the set/get and |
michael@0 | 581 | * has the base default. |
michael@0 | 582 | */ |
michael@0 | 583 | #define SCTP_NUM_TMRS 7 |
michael@0 | 584 | |
michael@0 | 585 | /* timer types */ |
michael@0 | 586 | #define SCTP_TIMER_TYPE_NONE 0 |
michael@0 | 587 | #define SCTP_TIMER_TYPE_SEND 1 |
michael@0 | 588 | #define SCTP_TIMER_TYPE_INIT 2 |
michael@0 | 589 | #define SCTP_TIMER_TYPE_RECV 3 |
michael@0 | 590 | #define SCTP_TIMER_TYPE_SHUTDOWN 4 |
michael@0 | 591 | #define SCTP_TIMER_TYPE_HEARTBEAT 5 |
michael@0 | 592 | #define SCTP_TIMER_TYPE_COOKIE 6 |
michael@0 | 593 | #define SCTP_TIMER_TYPE_NEWCOOKIE 7 |
michael@0 | 594 | #define SCTP_TIMER_TYPE_PATHMTURAISE 8 |
michael@0 | 595 | #define SCTP_TIMER_TYPE_SHUTDOWNACK 9 |
michael@0 | 596 | #define SCTP_TIMER_TYPE_ASCONF 10 |
michael@0 | 597 | #define SCTP_TIMER_TYPE_SHUTDOWNGUARD 11 |
michael@0 | 598 | #define SCTP_TIMER_TYPE_AUTOCLOSE 12 |
michael@0 | 599 | #define SCTP_TIMER_TYPE_EVENTWAKE 13 |
michael@0 | 600 | #define SCTP_TIMER_TYPE_STRRESET 14 |
michael@0 | 601 | #define SCTP_TIMER_TYPE_INPKILL 15 |
michael@0 | 602 | #define SCTP_TIMER_TYPE_ASOCKILL 16 |
michael@0 | 603 | #define SCTP_TIMER_TYPE_ADDR_WQ 17 |
michael@0 | 604 | #define SCTP_TIMER_TYPE_ZERO_COPY 18 |
michael@0 | 605 | #define SCTP_TIMER_TYPE_ZCOPY_SENDQ 19 |
michael@0 | 606 | #define SCTP_TIMER_TYPE_PRIM_DELETED 20 |
michael@0 | 607 | /* add new timers here - and increment LAST */ |
michael@0 | 608 | #define SCTP_TIMER_TYPE_LAST 21 |
michael@0 | 609 | |
michael@0 | 610 | #define SCTP_IS_TIMER_TYPE_VALID(t) (((t) > SCTP_TIMER_TYPE_NONE) && \ |
michael@0 | 611 | ((t) < SCTP_TIMER_TYPE_LAST)) |
michael@0 | 612 | |
michael@0 | 613 | |
michael@0 | 614 | #if defined(__APPLE__) |
michael@0 | 615 | /* Number of ticks to run the main timer at in msec */ |
michael@0 | 616 | #define SCTP_MAIN_TIMER_DEFAULT 10 |
michael@0 | 617 | #endif |
michael@0 | 618 | |
michael@0 | 619 | /* max number of TSN's dup'd that I will hold */ |
michael@0 | 620 | #define SCTP_MAX_DUP_TSNS 20 |
michael@0 | 621 | |
michael@0 | 622 | /* |
michael@0 | 623 | * Here we define the types used when setting the retry amounts. |
michael@0 | 624 | */ |
michael@0 | 625 | /* How many drop re-attempts we make on INIT/COOKIE-ECHO */ |
michael@0 | 626 | #define SCTP_RETRY_DROPPED_THRESH 4 |
michael@0 | 627 | |
michael@0 | 628 | /* |
michael@0 | 629 | * Maxmium number of chunks a single association can have on it. Note that |
michael@0 | 630 | * this is a squishy number since the count can run over this if the user |
michael@0 | 631 | * sends a large message down .. the fragmented chunks don't count until |
michael@0 | 632 | * AFTER the message is on queue.. it would be the next send that blocks |
michael@0 | 633 | * things. This number will get tuned up at boot in the sctp_init and use the |
michael@0 | 634 | * number of clusters as a base. This way high bandwidth environments will |
michael@0 | 635 | * not get impacted by the lower bandwidth sending a bunch of 1 byte chunks |
michael@0 | 636 | */ |
michael@0 | 637 | #ifdef __Panda__ |
michael@0 | 638 | #define SCTP_ASOC_MAX_CHUNKS_ON_QUEUE 10240 |
michael@0 | 639 | #else |
michael@0 | 640 | #define SCTP_ASOC_MAX_CHUNKS_ON_QUEUE 512 |
michael@0 | 641 | #endif |
michael@0 | 642 | |
michael@0 | 643 | |
michael@0 | 644 | /* The conversion from time to ticks and vice versa is done by rounding |
michael@0 | 645 | * upwards. This way we can test in the code the time to be positive and |
michael@0 | 646 | * know that this corresponds to a positive number of ticks. |
michael@0 | 647 | */ |
michael@0 | 648 | #define MSEC_TO_TICKS(x) ((hz == 1000) ? x : ((((x) * hz) + 999) / 1000)) |
michael@0 | 649 | #define TICKS_TO_MSEC(x) ((hz == 1000) ? x : ((((x) * 1000) + (hz - 1)) / hz)) |
michael@0 | 650 | |
michael@0 | 651 | #define SEC_TO_TICKS(x) ((x) * hz) |
michael@0 | 652 | #define TICKS_TO_SEC(x) (((x) + (hz - 1)) / hz) |
michael@0 | 653 | |
michael@0 | 654 | /* |
michael@0 | 655 | * Basically the minimum amount of time before I do a early FR. Making this |
michael@0 | 656 | * value to low will cause duplicate retransmissions. |
michael@0 | 657 | */ |
michael@0 | 658 | #define SCTP_MINFR_MSEC_TIMER 250 |
michael@0 | 659 | /* The floor this value is allowed to fall to when starting a timer. */ |
michael@0 | 660 | #define SCTP_MINFR_MSEC_FLOOR 20 |
michael@0 | 661 | |
michael@0 | 662 | /* init timer def = 1 sec */ |
michael@0 | 663 | #define SCTP_INIT_SEC 1 |
michael@0 | 664 | |
michael@0 | 665 | /* send timer def = 1 seconds */ |
michael@0 | 666 | #define SCTP_SEND_SEC 1 |
michael@0 | 667 | |
michael@0 | 668 | /* recv timer def = 200ms */ |
michael@0 | 669 | #define SCTP_RECV_MSEC 200 |
michael@0 | 670 | |
michael@0 | 671 | /* 30 seconds + RTO (in ms) */ |
michael@0 | 672 | #define SCTP_HB_DEFAULT_MSEC 30000 |
michael@0 | 673 | |
michael@0 | 674 | /* Max time I will wait for Shutdown to complete */ |
michael@0 | 675 | #define SCTP_DEF_MAX_SHUTDOWN_SEC 180 |
michael@0 | 676 | |
michael@0 | 677 | |
michael@0 | 678 | /* |
michael@0 | 679 | * This is how long a secret lives, NOT how long a cookie lives how many |
michael@0 | 680 | * ticks the current secret will live. |
michael@0 | 681 | */ |
michael@0 | 682 | #define SCTP_DEFAULT_SECRET_LIFE_SEC 3600 |
michael@0 | 683 | |
michael@0 | 684 | #define SCTP_RTO_UPPER_BOUND (60000) /* 60 sec in ms */ |
michael@0 | 685 | #define SCTP_RTO_LOWER_BOUND (1000) /* 1 sec is ms */ |
michael@0 | 686 | #define SCTP_RTO_INITIAL (3000) /* 3 sec in ms */ |
michael@0 | 687 | |
michael@0 | 688 | |
michael@0 | 689 | #define SCTP_INP_KILL_TIMEOUT 20 /* number of ms to retry kill of inpcb */ |
michael@0 | 690 | #define SCTP_ASOC_KILL_TIMEOUT 10 /* number of ms to retry kill of inpcb */ |
michael@0 | 691 | |
michael@0 | 692 | #define SCTP_DEF_MAX_INIT 8 |
michael@0 | 693 | #define SCTP_DEF_MAX_SEND 10 |
michael@0 | 694 | #define SCTP_DEF_MAX_PATH_RTX 5 |
michael@0 | 695 | #define SCTP_DEF_PATH_PF_THRESHOLD SCTP_DEF_MAX_PATH_RTX |
michael@0 | 696 | |
michael@0 | 697 | #define SCTP_DEF_PMTU_RAISE_SEC 600 /* 10 min between raise attempts */ |
michael@0 | 698 | |
michael@0 | 699 | |
michael@0 | 700 | /* How many streams I request initally by default */ |
michael@0 | 701 | #define SCTP_OSTREAM_INITIAL 10 |
michael@0 | 702 | #define SCTP_ISTREAM_INITIAL 2048 |
michael@0 | 703 | |
michael@0 | 704 | /* |
michael@0 | 705 | * How many smallest_mtu's need to increase before a window update sack is |
michael@0 | 706 | * sent (should be a power of 2). |
michael@0 | 707 | */ |
michael@0 | 708 | /* Send window update (incr * this > hiwat). Should be a power of 2 */ |
michael@0 | 709 | #define SCTP_MINIMAL_RWND (4096) /* minimal rwnd */ |
michael@0 | 710 | |
michael@0 | 711 | #define SCTP_ADDRMAX 16 |
michael@0 | 712 | |
michael@0 | 713 | /* SCTP DEBUG Switch parameters */ |
michael@0 | 714 | #define SCTP_DEBUG_TIMER1 0x00000001 |
michael@0 | 715 | #define SCTP_DEBUG_TIMER2 0x00000002 /* unused */ |
michael@0 | 716 | #define SCTP_DEBUG_TIMER3 0x00000004 /* unused */ |
michael@0 | 717 | #define SCTP_DEBUG_TIMER4 0x00000008 |
michael@0 | 718 | #define SCTP_DEBUG_OUTPUT1 0x00000010 |
michael@0 | 719 | #define SCTP_DEBUG_OUTPUT2 0x00000020 |
michael@0 | 720 | #define SCTP_DEBUG_OUTPUT3 0x00000040 |
michael@0 | 721 | #define SCTP_DEBUG_OUTPUT4 0x00000080 |
michael@0 | 722 | #define SCTP_DEBUG_UTIL1 0x00000100 |
michael@0 | 723 | #define SCTP_DEBUG_UTIL2 0x00000200 /* unused */ |
michael@0 | 724 | #define SCTP_DEBUG_AUTH1 0x00000400 |
michael@0 | 725 | #define SCTP_DEBUG_AUTH2 0x00000800 /* unused */ |
michael@0 | 726 | #define SCTP_DEBUG_INPUT1 0x00001000 |
michael@0 | 727 | #define SCTP_DEBUG_INPUT2 0x00002000 |
michael@0 | 728 | #define SCTP_DEBUG_INPUT3 0x00004000 |
michael@0 | 729 | #define SCTP_DEBUG_INPUT4 0x00008000 /* unused */ |
michael@0 | 730 | #define SCTP_DEBUG_ASCONF1 0x00010000 |
michael@0 | 731 | #define SCTP_DEBUG_ASCONF2 0x00020000 |
michael@0 | 732 | #define SCTP_DEBUG_OUTPUT5 0x00040000 /* unused */ |
michael@0 | 733 | #define SCTP_DEBUG_XXX 0x00080000 /* unused */ |
michael@0 | 734 | #define SCTP_DEBUG_PCB1 0x00100000 |
michael@0 | 735 | #define SCTP_DEBUG_PCB2 0x00200000 /* unused */ |
michael@0 | 736 | #define SCTP_DEBUG_PCB3 0x00400000 |
michael@0 | 737 | #define SCTP_DEBUG_PCB4 0x00800000 |
michael@0 | 738 | #define SCTP_DEBUG_INDATA1 0x01000000 |
michael@0 | 739 | #define SCTP_DEBUG_INDATA2 0x02000000 /* unused */ |
michael@0 | 740 | #define SCTP_DEBUG_INDATA3 0x04000000 /* unused */ |
michael@0 | 741 | #define SCTP_DEBUG_CRCOFFLOAD 0x08000000 /* unused */ |
michael@0 | 742 | #define SCTP_DEBUG_USRREQ1 0x10000000 /* unused */ |
michael@0 | 743 | #define SCTP_DEBUG_USRREQ2 0x20000000 /* unused */ |
michael@0 | 744 | #define SCTP_DEBUG_PEEL1 0x40000000 |
michael@0 | 745 | #if defined(__Userspace__) |
michael@0 | 746 | #define SCTP_DEBUG_USR 0x80000000 |
michael@0 | 747 | #else |
michael@0 | 748 | #define SCTP_DEBUG_XXXXX 0x80000000 /* unused */ |
michael@0 | 749 | #endif |
michael@0 | 750 | #define SCTP_DEBUG_ALL 0x7ff3ffff |
michael@0 | 751 | #define SCTP_DEBUG_NOISY 0x00040000 |
michael@0 | 752 | |
michael@0 | 753 | /* What sender needs to see to avoid SWS or we consider peers rwnd 0 */ |
michael@0 | 754 | #define SCTP_SWS_SENDER_DEF 1420 |
michael@0 | 755 | |
michael@0 | 756 | /* |
michael@0 | 757 | * SWS is scaled to the sb_hiwat of the socket. A value of 2 is hiwat/4, 1 |
michael@0 | 758 | * would be hiwat/2 etc. |
michael@0 | 759 | */ |
michael@0 | 760 | /* What receiver needs to see in sockbuf or we tell peer its 1 */ |
michael@0 | 761 | #define SCTP_SWS_RECEIVER_DEF 3000 |
michael@0 | 762 | |
michael@0 | 763 | #define SCTP_INITIAL_CWND 4380 |
michael@0 | 764 | |
michael@0 | 765 | #define SCTP_DEFAULT_MTU 1500 /* emergency default MTU */ |
michael@0 | 766 | /* amount peer is obligated to have in rwnd or I will abort */ |
michael@0 | 767 | #define SCTP_MIN_RWND 1500 |
michael@0 | 768 | |
michael@0 | 769 | #define SCTP_DEFAULT_MAXSEGMENT 65535 |
michael@0 | 770 | |
michael@0 | 771 | #define SCTP_CHUNK_BUFFER_SIZE 512 |
michael@0 | 772 | #define SCTP_PARAM_BUFFER_SIZE 512 |
michael@0 | 773 | |
michael@0 | 774 | /* small chunk store for looking at chunk_list in auth */ |
michael@0 | 775 | #define SCTP_SMALL_CHUNK_STORE 260 |
michael@0 | 776 | |
michael@0 | 777 | #define SCTP_HOW_MANY_SECRETS 2 /* how many secrets I keep */ |
michael@0 | 778 | |
michael@0 | 779 | #define SCTP_NUMBER_OF_SECRETS 8 /* or 8 * 4 = 32 octets */ |
michael@0 | 780 | #define SCTP_SECRET_SIZE 32 /* number of octets in a 256 bits */ |
michael@0 | 781 | |
michael@0 | 782 | |
michael@0 | 783 | /* |
michael@0 | 784 | * SCTP upper layer notifications |
michael@0 | 785 | */ |
michael@0 | 786 | #define SCTP_NOTIFY_ASSOC_UP 1 |
michael@0 | 787 | #define SCTP_NOTIFY_ASSOC_DOWN 2 |
michael@0 | 788 | #define SCTP_NOTIFY_INTERFACE_DOWN 3 |
michael@0 | 789 | #define SCTP_NOTIFY_INTERFACE_UP 4 |
michael@0 | 790 | #define SCTP_NOTIFY_SENT_DG_FAIL 5 |
michael@0 | 791 | #define SCTP_NOTIFY_UNSENT_DG_FAIL 6 |
michael@0 | 792 | #define SCTP_NOTIFY_SPECIAL_SP_FAIL 7 |
michael@0 | 793 | #define SCTP_NOTIFY_ASSOC_LOC_ABORTED 8 |
michael@0 | 794 | #define SCTP_NOTIFY_ASSOC_REM_ABORTED 9 |
michael@0 | 795 | #define SCTP_NOTIFY_ASSOC_RESTART 10 |
michael@0 | 796 | #define SCTP_NOTIFY_PEER_SHUTDOWN 11 |
michael@0 | 797 | #define SCTP_NOTIFY_ASCONF_ADD_IP 12 |
michael@0 | 798 | #define SCTP_NOTIFY_ASCONF_DELETE_IP 13 |
michael@0 | 799 | #define SCTP_NOTIFY_ASCONF_SET_PRIMARY 14 |
michael@0 | 800 | #define SCTP_NOTIFY_PARTIAL_DELVIERY_INDICATION 15 |
michael@0 | 801 | #define SCTP_NOTIFY_INTERFACE_CONFIRMED 16 |
michael@0 | 802 | #define SCTP_NOTIFY_STR_RESET_RECV 17 |
michael@0 | 803 | #define SCTP_NOTIFY_STR_RESET_SEND 18 |
michael@0 | 804 | #define SCTP_NOTIFY_STR_RESET_FAILED_OUT 19 |
michael@0 | 805 | #define SCTP_NOTIFY_STR_RESET_FAILED_IN 20 |
michael@0 | 806 | #define SCTP_NOTIFY_STR_RESET_DENIED_OUT 21 |
michael@0 | 807 | #define SCTP_NOTIFY_STR_RESET_DENIED_IN 22 |
michael@0 | 808 | #define SCTP_NOTIFY_AUTH_NEW_KEY 23 |
michael@0 | 809 | #define SCTP_NOTIFY_AUTH_FREE_KEY 24 |
michael@0 | 810 | #define SCTP_NOTIFY_NO_PEER_AUTH 25 |
michael@0 | 811 | #define SCTP_NOTIFY_SENDER_DRY 26 |
michael@0 | 812 | #define SCTP_NOTIFY_REMOTE_ERROR 27 |
michael@0 | 813 | |
michael@0 | 814 | /* This is the value for messages that are NOT completely |
michael@0 | 815 | * copied down where we will start to split the message. |
michael@0 | 816 | * So, with our default, we split only if the piece we |
michael@0 | 817 | * want to take will fill up a full MTU (assuming |
michael@0 | 818 | * a 1500 byte MTU). |
michael@0 | 819 | */ |
michael@0 | 820 | #define SCTP_DEFAULT_SPLIT_POINT_MIN 2904 |
michael@0 | 821 | |
michael@0 | 822 | /* ABORT CODES and other tell-tale location |
michael@0 | 823 | * codes are generated by adding the below |
michael@0 | 824 | * to the instance id. |
michael@0 | 825 | */ |
michael@0 | 826 | |
michael@0 | 827 | /* File defines */ |
michael@0 | 828 | #define SCTP_FROM_SCTP_INPUT 0x10000000 |
michael@0 | 829 | #define SCTP_FROM_SCTP_PCB 0x20000000 |
michael@0 | 830 | #define SCTP_FROM_SCTP_INDATA 0x30000000 |
michael@0 | 831 | #define SCTP_FROM_SCTP_TIMER 0x40000000 |
michael@0 | 832 | #define SCTP_FROM_SCTP_USRREQ 0x50000000 |
michael@0 | 833 | #define SCTP_FROM_SCTPUTIL 0x60000000 |
michael@0 | 834 | #define SCTP_FROM_SCTP6_USRREQ 0x70000000 |
michael@0 | 835 | #define SCTP_FROM_SCTP_ASCONF 0x80000000 |
michael@0 | 836 | #define SCTP_FROM_SCTP_OUTPUT 0x90000000 |
michael@0 | 837 | #define SCTP_FROM_SCTP_PEELOFF 0xa0000000 |
michael@0 | 838 | #define SCTP_FROM_SCTP_PANDA 0xb0000000 |
michael@0 | 839 | #define SCTP_FROM_SCTP_SYSCTL 0xc0000000 |
michael@0 | 840 | |
michael@0 | 841 | /* Location ID's */ |
michael@0 | 842 | #define SCTP_LOC_1 0x00000001 |
michael@0 | 843 | #define SCTP_LOC_2 0x00000002 |
michael@0 | 844 | #define SCTP_LOC_3 0x00000003 |
michael@0 | 845 | #define SCTP_LOC_4 0x00000004 |
michael@0 | 846 | #define SCTP_LOC_5 0x00000005 |
michael@0 | 847 | #define SCTP_LOC_6 0x00000006 |
michael@0 | 848 | #define SCTP_LOC_7 0x00000007 |
michael@0 | 849 | #define SCTP_LOC_8 0x00000008 |
michael@0 | 850 | #define SCTP_LOC_9 0x00000009 |
michael@0 | 851 | #define SCTP_LOC_10 0x0000000a |
michael@0 | 852 | #define SCTP_LOC_11 0x0000000b |
michael@0 | 853 | #define SCTP_LOC_12 0x0000000c |
michael@0 | 854 | #define SCTP_LOC_13 0x0000000d |
michael@0 | 855 | #define SCTP_LOC_14 0x0000000e |
michael@0 | 856 | #define SCTP_LOC_15 0x0000000f |
michael@0 | 857 | #define SCTP_LOC_16 0x00000010 |
michael@0 | 858 | #define SCTP_LOC_17 0x00000011 |
michael@0 | 859 | #define SCTP_LOC_18 0x00000012 |
michael@0 | 860 | #define SCTP_LOC_19 0x00000013 |
michael@0 | 861 | #define SCTP_LOC_20 0x00000014 |
michael@0 | 862 | #define SCTP_LOC_21 0x00000015 |
michael@0 | 863 | #define SCTP_LOC_22 0x00000016 |
michael@0 | 864 | #define SCTP_LOC_23 0x00000017 |
michael@0 | 865 | #define SCTP_LOC_24 0x00000018 |
michael@0 | 866 | #define SCTP_LOC_25 0x00000019 |
michael@0 | 867 | #define SCTP_LOC_26 0x0000001a |
michael@0 | 868 | #define SCTP_LOC_27 0x0000001b |
michael@0 | 869 | #define SCTP_LOC_28 0x0000001c |
michael@0 | 870 | #define SCTP_LOC_29 0x0000001d |
michael@0 | 871 | #define SCTP_LOC_30 0x0000001e |
michael@0 | 872 | #define SCTP_LOC_31 0x0000001f |
michael@0 | 873 | #define SCTP_LOC_32 0x00000020 |
michael@0 | 874 | #define SCTP_LOC_33 0x00000021 |
michael@0 | 875 | |
michael@0 | 876 | |
michael@0 | 877 | /* Free assoc codes */ |
michael@0 | 878 | #define SCTP_NORMAL_PROC 0 |
michael@0 | 879 | #define SCTP_PCBFREE_NOFORCE 1 |
michael@0 | 880 | #define SCTP_PCBFREE_FORCE 2 |
michael@0 | 881 | |
michael@0 | 882 | /* From codes for adding addresses */ |
michael@0 | 883 | #define SCTP_ADDR_IS_CONFIRMED 8 |
michael@0 | 884 | #define SCTP_ADDR_DYNAMIC_ADDED 6 |
michael@0 | 885 | #define SCTP_IN_COOKIE_PROC 100 |
michael@0 | 886 | #define SCTP_ALLOC_ASOC 1 |
michael@0 | 887 | #define SCTP_LOAD_ADDR_2 2 |
michael@0 | 888 | #define SCTP_LOAD_ADDR_3 3 |
michael@0 | 889 | #define SCTP_LOAD_ADDR_4 4 |
michael@0 | 890 | #define SCTP_LOAD_ADDR_5 5 |
michael@0 | 891 | |
michael@0 | 892 | #define SCTP_DONOT_SETSCOPE 0 |
michael@0 | 893 | #define SCTP_DO_SETSCOPE 1 |
michael@0 | 894 | |
michael@0 | 895 | |
michael@0 | 896 | /* This value determines the default for when |
michael@0 | 897 | * we try to add more on the send queue., if |
michael@0 | 898 | * there is room. This prevents us from cycling |
michael@0 | 899 | * into the copy_resume routine to often if |
michael@0 | 900 | * we have not got enough space to add a decent |
michael@0 | 901 | * enough size message. Note that if we have enough |
michael@0 | 902 | * space to complete the message copy we will always |
michael@0 | 903 | * add to the message, no matter what the size. Its |
michael@0 | 904 | * only when we reach the point that we have some left |
michael@0 | 905 | * to add, there is only room for part of it that we |
michael@0 | 906 | * will use this threshold. Its also a sysctl. |
michael@0 | 907 | */ |
michael@0 | 908 | #define SCTP_DEFAULT_ADD_MORE 1452 |
michael@0 | 909 | |
michael@0 | 910 | #ifndef SCTP_PCBHASHSIZE |
michael@0 | 911 | /* default number of association hash buckets in each endpoint */ |
michael@0 | 912 | #define SCTP_PCBHASHSIZE 256 |
michael@0 | 913 | #endif |
michael@0 | 914 | #ifndef SCTP_TCBHASHSIZE |
michael@0 | 915 | #define SCTP_TCBHASHSIZE 1024 |
michael@0 | 916 | #endif |
michael@0 | 917 | |
michael@0 | 918 | #ifndef SCTP_CHUNKQUEUE_SCALE |
michael@0 | 919 | #define SCTP_CHUNKQUEUE_SCALE 10 |
michael@0 | 920 | #endif |
michael@0 | 921 | |
michael@0 | 922 | #ifdef __FreeBSD__ |
michael@0 | 923 | /* clock variance is 1 ms */ |
michael@0 | 924 | #define SCTP_CLOCK_GRANULARITY 1 |
michael@0 | 925 | #else |
michael@0 | 926 | /* clock variance is 10 ms */ |
michael@0 | 927 | #define SCTP_CLOCK_GRANULARITY 10 |
michael@0 | 928 | #endif |
michael@0 | 929 | #define IP_HDR_SIZE 40 /* we use the size of a IP6 header here this |
michael@0 | 930 | * detracts a small amount for ipv4 but it |
michael@0 | 931 | * simplifies the ipv6 addition */ |
michael@0 | 932 | |
michael@0 | 933 | /* Argument magic number for sctp_inpcb_free() */ |
michael@0 | 934 | |
michael@0 | 935 | /* third argument */ |
michael@0 | 936 | #define SCTP_CALLED_DIRECTLY_NOCMPSET 0 |
michael@0 | 937 | #define SCTP_CALLED_AFTER_CMPSET_OFCLOSE 1 |
michael@0 | 938 | #define SCTP_CALLED_FROM_INPKILL_TIMER 2 |
michael@0 | 939 | /* second argument */ |
michael@0 | 940 | #define SCTP_FREE_SHOULD_USE_ABORT 1 |
michael@0 | 941 | #define SCTP_FREE_SHOULD_USE_GRACEFUL_CLOSE 0 |
michael@0 | 942 | |
michael@0 | 943 | #ifndef IPPROTO_SCTP |
michael@0 | 944 | #define IPPROTO_SCTP 132 /* the Official IANA number :-) */ |
michael@0 | 945 | #endif /* !IPPROTO_SCTP */ |
michael@0 | 946 | |
michael@0 | 947 | #define SCTP_MAX_DATA_BUNDLING 256 |
michael@0 | 948 | |
michael@0 | 949 | /* modular comparison */ |
michael@0 | 950 | /* See RFC 1982 for details. */ |
michael@0 | 951 | #define SCTP_SSN_GT(a, b) (((a < b) && ((uint16_t)(b - a) > (1U<<15))) || \ |
michael@0 | 952 | ((a > b) && ((uint16_t)(a - b) < (1U<<15)))) |
michael@0 | 953 | #define SCTP_SSN_GE(a, b) (SCTP_SSN_GT(a, b) || (a == b)) |
michael@0 | 954 | #define SCTP_TSN_GT(a, b) (((a < b) && ((uint32_t)(b - a) > (1U<<31))) || \ |
michael@0 | 955 | ((a > b) && ((uint32_t)(a - b) < (1U<<31)))) |
michael@0 | 956 | #define SCTP_TSN_GE(a, b) (SCTP_TSN_GT(a, b) || (a == b)) |
michael@0 | 957 | |
michael@0 | 958 | /* Mapping array manipulation routines */ |
michael@0 | 959 | #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01) |
michael@0 | 960 | #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07)))) |
michael@0 | 961 | #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap & 0x07)))) & 0xff)) |
michael@0 | 962 | #define SCTP_CALC_TSN_TO_GAP(gap, tsn, mapping_tsn) do { \ |
michael@0 | 963 | if (tsn >= mapping_tsn) { \ |
michael@0 | 964 | gap = tsn - mapping_tsn; \ |
michael@0 | 965 | } else { \ |
michael@0 | 966 | gap = (MAX_TSN - mapping_tsn) + tsn + 1; \ |
michael@0 | 967 | } \ |
michael@0 | 968 | } while (0) |
michael@0 | 969 | |
michael@0 | 970 | |
michael@0 | 971 | #define SCTP_RETRAN_DONE -1 |
michael@0 | 972 | #define SCTP_RETRAN_EXIT -2 |
michael@0 | 973 | |
michael@0 | 974 | /* |
michael@0 | 975 | * This value defines the number of vtag block time wait entry's per list |
michael@0 | 976 | * element. Each entry will take 2 4 byte ints (and of course the overhead |
michael@0 | 977 | * of the next pointer as well). Using 15 as an example will yield * ((8 * |
michael@0 | 978 | * 15) + 8) or 128 bytes of overhead for each timewait block that gets |
michael@0 | 979 | * initialized. Increasing it to 31 would yeild 256 bytes per block. |
michael@0 | 980 | */ |
michael@0 | 981 | #define SCTP_NUMBER_IN_VTAG_BLOCK 15 |
michael@0 | 982 | /* |
michael@0 | 983 | * If we use the STACK option, we have an array of this size head pointers. |
michael@0 | 984 | * This array is mod'd the with the size to find which bucket and then all |
michael@0 | 985 | * entries must be searched to see if the tag is in timed wait. If so we |
michael@0 | 986 | * reject it. |
michael@0 | 987 | */ |
michael@0 | 988 | #define SCTP_STACK_VTAG_HASH_SIZE 32 |
michael@0 | 989 | |
michael@0 | 990 | /* |
michael@0 | 991 | * Number of seconds of time wait for a vtag. |
michael@0 | 992 | */ |
michael@0 | 993 | #define SCTP_TIME_WAIT 60 |
michael@0 | 994 | |
michael@0 | 995 | /* How many micro seconds is the cutoff from |
michael@0 | 996 | * local lan type rtt's |
michael@0 | 997 | */ |
michael@0 | 998 | /* |
michael@0 | 999 | * We allow 900us for the rtt. |
michael@0 | 1000 | */ |
michael@0 | 1001 | #define SCTP_LOCAL_LAN_RTT 900 |
michael@0 | 1002 | #define SCTP_LAN_UNKNOWN 0 |
michael@0 | 1003 | #define SCTP_LAN_LOCAL 1 |
michael@0 | 1004 | #define SCTP_LAN_INTERNET 2 |
michael@0 | 1005 | |
michael@0 | 1006 | #define SCTP_SEND_BUFFER_SPLITTING 0x00000001 |
michael@0 | 1007 | #define SCTP_RECV_BUFFER_SPLITTING 0x00000002 |
michael@0 | 1008 | |
michael@0 | 1009 | /* The system retains a cache of free chunks such to |
michael@0 | 1010 | * cut down on calls the memory allocation system. There |
michael@0 | 1011 | * is a per association limit of free items and a overall |
michael@0 | 1012 | * system limit. If either one gets hit then the resource |
michael@0 | 1013 | * stops being cached. |
michael@0 | 1014 | */ |
michael@0 | 1015 | |
michael@0 | 1016 | #define SCTP_DEF_ASOC_RESC_LIMIT 10 |
michael@0 | 1017 | #define SCTP_DEF_SYSTEM_RESC_LIMIT 1000 |
michael@0 | 1018 | |
michael@0 | 1019 | /*- |
michael@0 | 1020 | * defines for socket lock states. |
michael@0 | 1021 | * Used by __APPLE__ and SCTP_SO_LOCK_TESTING |
michael@0 | 1022 | */ |
michael@0 | 1023 | #define SCTP_SO_LOCKED 1 |
michael@0 | 1024 | #define SCTP_SO_NOT_LOCKED 0 |
michael@0 | 1025 | |
michael@0 | 1026 | |
michael@0 | 1027 | #define SCTP_HOLDS_LOCK 1 |
michael@0 | 1028 | #define SCTP_NOT_LOCKED 0 |
michael@0 | 1029 | |
michael@0 | 1030 | /*- |
michael@0 | 1031 | * For address locks, do we hold the lock? |
michael@0 | 1032 | */ |
michael@0 | 1033 | #define SCTP_ADDR_LOCKED 1 |
michael@0 | 1034 | #define SCTP_ADDR_NOT_LOCKED 0 |
michael@0 | 1035 | |
michael@0 | 1036 | #define IN4_ISPRIVATE_ADDRESS(a) \ |
michael@0 | 1037 | ((((uint8_t *)&(a)->s_addr)[0] == 10) || \ |
michael@0 | 1038 | ((((uint8_t *)&(a)->s_addr)[0] == 172) && \ |
michael@0 | 1039 | (((uint8_t *)&(a)->s_addr)[1] >= 16) && \ |
michael@0 | 1040 | (((uint8_t *)&(a)->s_addr)[1] <= 32)) || \ |
michael@0 | 1041 | ((((uint8_t *)&(a)->s_addr)[0] == 192) && \ |
michael@0 | 1042 | (((uint8_t *)&(a)->s_addr)[1] == 168))) |
michael@0 | 1043 | |
michael@0 | 1044 | #define IN4_ISLOOPBACK_ADDRESS(a) \ |
michael@0 | 1045 | ((((uint8_t *)&(a)->s_addr)[0] == 127) && \ |
michael@0 | 1046 | (((uint8_t *)&(a)->s_addr)[1] == 0) && \ |
michael@0 | 1047 | (((uint8_t *)&(a)->s_addr)[2] == 0) && \ |
michael@0 | 1048 | (((uint8_t *)&(a)->s_addr)[3] == 1)) |
michael@0 | 1049 | |
michael@0 | 1050 | #define IN4_ISLINKLOCAL_ADDRESS(a) \ |
michael@0 | 1051 | ((((uint8_t *)&(a)->s_addr)[0] == 169) && \ |
michael@0 | 1052 | (((uint8_t *)&(a)->s_addr)[1] == 254)) |
michael@0 | 1053 | |
michael@0 | 1054 | #if defined(__Userspace__) |
michael@0 | 1055 | #if defined(__Userspace_os_Windows) |
michael@0 | 1056 | #define SCTP_GETTIME_TIMEVAL(x) getwintimeofday(x) |
michael@0 | 1057 | #define SCTP_GETPTIME_TIMEVAL(x) getwintimeofday(x) /* this doesn't seem to ever be used.. */ |
michael@0 | 1058 | #else |
michael@0 | 1059 | #define SCTP_GETTIME_TIMEVAL(x) gettimeofday(x, NULL) |
michael@0 | 1060 | #define SCTP_GETPTIME_TIMEVAL(x) gettimeofday(x, NULL) |
michael@0 | 1061 | #endif |
michael@0 | 1062 | #endif |
michael@0 | 1063 | |
michael@0 | 1064 | #if defined(_KERNEL) |
michael@0 | 1065 | #define SCTP_GETTIME_TIMEVAL(x) (getmicrouptime(x)) |
michael@0 | 1066 | #define SCTP_GETPTIME_TIMEVAL(x) (microuptime(x)) |
michael@0 | 1067 | #endif |
michael@0 | 1068 | |
michael@0 | 1069 | #if defined(_KERNEL) || defined(__Userspace__) |
michael@0 | 1070 | #define sctp_sowwakeup(inp, so) \ |
michael@0 | 1071 | do { \ |
michael@0 | 1072 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1073 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEOUTPUT; \ |
michael@0 | 1074 | } else { \ |
michael@0 | 1075 | sowwakeup(so); \ |
michael@0 | 1076 | } \ |
michael@0 | 1077 | } while (0) |
michael@0 | 1078 | |
michael@0 | 1079 | #if defined(__FreeBSD__) || defined(__Windows__) || defined(__Userspace__) |
michael@0 | 1080 | #define sctp_sowwakeup_locked(inp, so) \ |
michael@0 | 1081 | do { \ |
michael@0 | 1082 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1083 | SOCKBUF_UNLOCK(&((so)->so_snd)); \ |
michael@0 | 1084 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEOUTPUT; \ |
michael@0 | 1085 | } else { \ |
michael@0 | 1086 | sowwakeup_locked(so); \ |
michael@0 | 1087 | } \ |
michael@0 | 1088 | } while (0) |
michael@0 | 1089 | #else |
michael@0 | 1090 | #define sctp_sowwakeup_locked(inp, so) \ |
michael@0 | 1091 | do { \ |
michael@0 | 1092 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1093 | SOCKBUF_UNLOCK(&((so)->so_snd)); \ |
michael@0 | 1094 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEOUTPUT; \ |
michael@0 | 1095 | } else { \ |
michael@0 | 1096 | sowwakeup(so); \ |
michael@0 | 1097 | } \ |
michael@0 | 1098 | } while (0) |
michael@0 | 1099 | #endif |
michael@0 | 1100 | |
michael@0 | 1101 | #define sctp_sorwakeup(inp, so) \ |
michael@0 | 1102 | do { \ |
michael@0 | 1103 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1104 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEINPUT; \ |
michael@0 | 1105 | } else { \ |
michael@0 | 1106 | sorwakeup(so); \ |
michael@0 | 1107 | } \ |
michael@0 | 1108 | } while (0) |
michael@0 | 1109 | |
michael@0 | 1110 | #if defined(__FreeBSD__) || defined(__Windows__) || defined(__Userspace__) |
michael@0 | 1111 | #define sctp_sorwakeup_locked(inp, so) \ |
michael@0 | 1112 | do { \ |
michael@0 | 1113 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1114 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEINPUT; \ |
michael@0 | 1115 | SOCKBUF_UNLOCK(&((so)->so_rcv)); \ |
michael@0 | 1116 | } else { \ |
michael@0 | 1117 | sorwakeup_locked(so); \ |
michael@0 | 1118 | } \ |
michael@0 | 1119 | } while (0) |
michael@0 | 1120 | #else |
michael@0 | 1121 | |
michael@0 | 1122 | #define sctp_sorwakeup_locked(inp, so) \ |
michael@0 | 1123 | do { \ |
michael@0 | 1124 | if (inp->sctp_flags & SCTP_PCB_FLAGS_DONT_WAKE) { \ |
michael@0 | 1125 | inp->sctp_flags |= SCTP_PCB_FLAGS_WAKEINPUT; \ |
michael@0 | 1126 | SOCKBUF_UNLOCK(&((so)->so_rcv)); \ |
michael@0 | 1127 | } else { \ |
michael@0 | 1128 | sorwakeup(so); \ |
michael@0 | 1129 | } \ |
michael@0 | 1130 | } while (0) |
michael@0 | 1131 | #endif |
michael@0 | 1132 | |
michael@0 | 1133 | #endif /* _KERNEL || __Userspace__*/ |
michael@0 | 1134 | #endif |