James Kuszmaul | 4cb043c | 2021-01-17 11:25:51 -0800 | [diff] [blame] | 1 | /*- |
| 2 | * Copyright (c) 2009-2010 Brad Penoff |
| 3 | * Copyright (c) 2009-2010 Humaira Kamal |
| 4 | * Copyright (c) 2011-2012 Irene Ruengeler |
| 5 | * Copyright (c) 2011-2012 Michael Tuexen |
| 6 | * |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * Redistribution and use in source and binary forms, with or without |
| 10 | * modification, are permitted provided that the following conditions |
| 11 | * are met: |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer. |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
| 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 24 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 26 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 27 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 28 | * SUCH DAMAGE. |
| 29 | */ |
| 30 | |
| 31 | #ifndef __USRSCTP_H__ |
| 32 | #define __USRSCTP_H__ |
| 33 | |
| 34 | #ifdef __cplusplus |
| 35 | extern "C" { |
| 36 | #endif |
| 37 | |
| 38 | #include <errno.h> |
| 39 | #include <sys/types.h> |
| 40 | #ifdef _WIN32 |
| 41 | #ifdef _MSC_VER |
| 42 | #pragma warning(disable: 4200) |
| 43 | #endif |
| 44 | #include <winsock2.h> |
| 45 | #include <ws2tcpip.h> |
| 46 | #else |
| 47 | #include <sys/socket.h> |
| 48 | #include <netinet/in.h> |
| 49 | #endif |
| 50 | |
| 51 | #ifndef MSG_NOTIFICATION |
| 52 | /* This definition MUST be in sync with usrsctplib/user_socketvar.h */ |
| 53 | #define MSG_NOTIFICATION 0x2000 |
| 54 | #endif |
| 55 | |
| 56 | #ifndef IPPROTO_SCTP |
| 57 | /* This is the IANA assigned protocol number of SCTP. */ |
| 58 | #define IPPROTO_SCTP 132 |
| 59 | #endif |
| 60 | |
| 61 | #ifdef _WIN32 |
| 62 | #if defined(_MSC_VER) && _MSC_VER >= 1600 |
| 63 | #include <stdint.h> |
| 64 | #elif defined(SCTP_STDINT_INCLUDE) |
| 65 | #include SCTP_STDINT_INCLUDE |
| 66 | #else |
| 67 | #define uint8_t unsigned __int8 |
| 68 | #define uint16_t unsigned __int16 |
| 69 | #define uint32_t unsigned __int32 |
| 70 | #define uint64_t unsigned __int64 |
| 71 | #define int16_t __int16 |
| 72 | #define int32_t __int32 |
| 73 | #endif |
| 74 | |
| 75 | #define ssize_t __int64 |
| 76 | #define MSG_EOR 0x8 |
| 77 | #ifndef EWOULDBLOCK |
| 78 | #define EWOULDBLOCK WSAEWOULDBLOCK |
| 79 | #endif |
| 80 | #ifndef EINPROGRESS |
| 81 | #define EINPROGRESS WSAEINPROGRESS |
| 82 | #endif |
| 83 | #define SHUT_RD 1 |
| 84 | #define SHUT_WR 2 |
| 85 | #define SHUT_RDWR 3 |
| 86 | #endif |
| 87 | |
| 88 | typedef uint32_t sctp_assoc_t; |
| 89 | |
| 90 | #if defined(_WIN32) && defined(_MSC_VER) |
| 91 | #pragma pack (push, 1) |
| 92 | #define SCTP_PACKED |
| 93 | #else |
| 94 | #define SCTP_PACKED __attribute__((packed)) |
| 95 | #endif |
| 96 | |
| 97 | struct sctp_common_header { |
| 98 | uint16_t source_port; |
| 99 | uint16_t destination_port; |
| 100 | uint32_t verification_tag; |
| 101 | uint32_t crc32c; |
| 102 | } SCTP_PACKED; |
| 103 | |
| 104 | #if defined(_WIN32) && defined(_MSC_VER) |
| 105 | #pragma pack() |
| 106 | #endif |
| 107 | #undef SCTP_PACKED |
| 108 | |
| 109 | #define AF_CONN 123 |
| 110 | /* The definition of struct sockaddr_conn MUST be in |
| 111 | * tune with other sockaddr_* structures. |
| 112 | */ |
| 113 | #if defined(__APPLE__) || defined(__Bitrig__) || defined(__DragonFly__) || \ |
| 114 | defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) |
| 115 | struct sockaddr_conn { |
| 116 | uint8_t sconn_len; |
| 117 | uint8_t sconn_family; |
| 118 | uint16_t sconn_port; |
| 119 | void *sconn_addr; |
| 120 | }; |
| 121 | #else |
| 122 | struct sockaddr_conn { |
| 123 | uint16_t sconn_family; |
| 124 | uint16_t sconn_port; |
| 125 | void *sconn_addr; |
| 126 | }; |
| 127 | #endif |
| 128 | |
| 129 | union sctp_sockstore { |
| 130 | #if defined(INET) |
| 131 | struct sockaddr_in sin; |
| 132 | #endif |
| 133 | #if defined(INET6) |
| 134 | struct sockaddr_in6 sin6; |
| 135 | #endif |
| 136 | struct sockaddr_conn sconn; |
| 137 | struct sockaddr sa; |
| 138 | }; |
| 139 | |
| 140 | #define SCTP_FUTURE_ASSOC 0 |
| 141 | #define SCTP_CURRENT_ASSOC 1 |
| 142 | #define SCTP_ALL_ASSOC 2 |
| 143 | |
| 144 | #define SCTP_EVENT_READ 0x0001 |
| 145 | #define SCTP_EVENT_WRITE 0x0002 |
| 146 | #define SCTP_EVENT_ERROR 0x0004 |
| 147 | |
| 148 | /*** Structures and definitions to use the socket API ***/ |
| 149 | |
| 150 | #define SCTP_ALIGN_RESV_PAD 92 |
| 151 | #define SCTP_ALIGN_RESV_PAD_SHORT 76 |
| 152 | |
| 153 | struct sctp_rcvinfo { |
| 154 | uint16_t rcv_sid; |
| 155 | uint16_t rcv_ssn; |
| 156 | uint16_t rcv_flags; |
| 157 | uint32_t rcv_ppid; |
| 158 | uint32_t rcv_tsn; |
| 159 | uint32_t rcv_cumtsn; |
| 160 | uint32_t rcv_context; |
| 161 | sctp_assoc_t rcv_assoc_id; |
| 162 | }; |
| 163 | |
| 164 | struct sctp_nxtinfo { |
| 165 | uint16_t nxt_sid; |
| 166 | uint16_t nxt_flags; |
| 167 | uint32_t nxt_ppid; |
| 168 | uint32_t nxt_length; |
| 169 | sctp_assoc_t nxt_assoc_id; |
| 170 | }; |
| 171 | |
| 172 | #define SCTP_NO_NEXT_MSG 0x0000 |
| 173 | #define SCTP_NEXT_MSG_AVAIL 0x0001 |
| 174 | #define SCTP_NEXT_MSG_ISCOMPLETE 0x0002 |
| 175 | #define SCTP_NEXT_MSG_IS_UNORDERED 0x0004 |
| 176 | #define SCTP_NEXT_MSG_IS_NOTIFICATION 0x0008 |
| 177 | |
| 178 | struct sctp_recvv_rn { |
| 179 | struct sctp_rcvinfo recvv_rcvinfo; |
| 180 | struct sctp_nxtinfo recvv_nxtinfo; |
| 181 | }; |
| 182 | |
| 183 | #define SCTP_RECVV_NOINFO 0 |
| 184 | #define SCTP_RECVV_RCVINFO 1 |
| 185 | #define SCTP_RECVV_NXTINFO 2 |
| 186 | #define SCTP_RECVV_RN 3 |
| 187 | |
| 188 | #define SCTP_SENDV_NOINFO 0 |
| 189 | #define SCTP_SENDV_SNDINFO 1 |
| 190 | #define SCTP_SENDV_PRINFO 2 |
| 191 | #define SCTP_SENDV_AUTHINFO 3 |
| 192 | #define SCTP_SENDV_SPA 4 |
| 193 | |
| 194 | #define SCTP_SEND_SNDINFO_VALID 0x00000001 |
| 195 | #define SCTP_SEND_PRINFO_VALID 0x00000002 |
| 196 | #define SCTP_SEND_AUTHINFO_VALID 0x00000004 |
| 197 | |
| 198 | struct sctp_snd_all_completes { |
| 199 | uint16_t sall_stream; |
| 200 | uint16_t sall_flags; |
| 201 | uint32_t sall_ppid; |
| 202 | uint32_t sall_context; |
| 203 | uint32_t sall_num_sent; |
| 204 | uint32_t sall_num_failed; |
| 205 | }; |
| 206 | |
| 207 | struct sctp_sndinfo { |
| 208 | uint16_t snd_sid; |
| 209 | uint16_t snd_flags; |
| 210 | uint32_t snd_ppid; |
| 211 | uint32_t snd_context; |
| 212 | sctp_assoc_t snd_assoc_id; |
| 213 | }; |
| 214 | |
| 215 | struct sctp_prinfo { |
| 216 | uint16_t pr_policy; |
| 217 | uint32_t pr_value; |
| 218 | }; |
| 219 | |
| 220 | struct sctp_authinfo { |
| 221 | uint16_t auth_keynumber; |
| 222 | }; |
| 223 | |
| 224 | struct sctp_sendv_spa { |
| 225 | uint32_t sendv_flags; |
| 226 | struct sctp_sndinfo sendv_sndinfo; |
| 227 | struct sctp_prinfo sendv_prinfo; |
| 228 | struct sctp_authinfo sendv_authinfo; |
| 229 | }; |
| 230 | |
| 231 | struct sctp_udpencaps { |
| 232 | struct sockaddr_storage sue_address; |
| 233 | uint32_t sue_assoc_id; |
| 234 | uint16_t sue_port; |
| 235 | }; |
| 236 | |
| 237 | /******** Notifications **************/ |
| 238 | |
| 239 | /* notification types */ |
| 240 | #define SCTP_ASSOC_CHANGE 0x0001 |
| 241 | #define SCTP_PEER_ADDR_CHANGE 0x0002 |
| 242 | #define SCTP_REMOTE_ERROR 0x0003 |
| 243 | #define SCTP_SEND_FAILED 0x0004 |
| 244 | #define SCTP_SHUTDOWN_EVENT 0x0005 |
| 245 | #define SCTP_ADAPTATION_INDICATION 0x0006 |
| 246 | #define SCTP_PARTIAL_DELIVERY_EVENT 0x0007 |
| 247 | #define SCTP_AUTHENTICATION_EVENT 0x0008 |
| 248 | #define SCTP_STREAM_RESET_EVENT 0x0009 |
| 249 | #define SCTP_SENDER_DRY_EVENT 0x000a |
| 250 | #define SCTP_NOTIFICATIONS_STOPPED_EVENT 0x000b |
| 251 | #define SCTP_ASSOC_RESET_EVENT 0x000c |
| 252 | #define SCTP_STREAM_CHANGE_EVENT 0x000d |
| 253 | #define SCTP_SEND_FAILED_EVENT 0x000e |
| 254 | |
| 255 | /* notification event structures */ |
| 256 | |
| 257 | |
| 258 | /* association change event */ |
| 259 | struct sctp_assoc_change { |
| 260 | uint16_t sac_type; |
| 261 | uint16_t sac_flags; |
| 262 | uint32_t sac_length; |
| 263 | uint16_t sac_state; |
| 264 | uint16_t sac_error; |
| 265 | uint16_t sac_outbound_streams; |
| 266 | uint16_t sac_inbound_streams; |
| 267 | sctp_assoc_t sac_assoc_id; |
| 268 | uint8_t sac_info[]; /* not available yet */ |
| 269 | }; |
| 270 | |
| 271 | /* sac_state values */ |
| 272 | #define SCTP_COMM_UP 0x0001 |
| 273 | #define SCTP_COMM_LOST 0x0002 |
| 274 | #define SCTP_RESTART 0x0003 |
| 275 | #define SCTP_SHUTDOWN_COMP 0x0004 |
| 276 | #define SCTP_CANT_STR_ASSOC 0x0005 |
| 277 | |
| 278 | /* sac_info values */ |
| 279 | #define SCTP_ASSOC_SUPPORTS_PR 0x01 |
| 280 | #define SCTP_ASSOC_SUPPORTS_AUTH 0x02 |
| 281 | #define SCTP_ASSOC_SUPPORTS_ASCONF 0x03 |
| 282 | #define SCTP_ASSOC_SUPPORTS_MULTIBUF 0x04 |
| 283 | #define SCTP_ASSOC_SUPPORTS_RE_CONFIG 0x05 |
| 284 | #define SCTP_ASSOC_SUPPORTS_MAX 0x05 |
| 285 | |
| 286 | /* Address event */ |
| 287 | struct sctp_paddr_change { |
| 288 | uint16_t spc_type; |
| 289 | uint16_t spc_flags; |
| 290 | uint32_t spc_length; |
| 291 | struct sockaddr_storage spc_aaddr; |
| 292 | uint32_t spc_state; |
| 293 | uint32_t spc_error; |
| 294 | sctp_assoc_t spc_assoc_id; |
| 295 | uint8_t spc_padding[4]; |
| 296 | }; |
| 297 | |
| 298 | /* paddr state values */ |
| 299 | #define SCTP_ADDR_AVAILABLE 0x0001 |
| 300 | #define SCTP_ADDR_UNREACHABLE 0x0002 |
| 301 | #define SCTP_ADDR_REMOVED 0x0003 |
| 302 | #define SCTP_ADDR_ADDED 0x0004 |
| 303 | #define SCTP_ADDR_MADE_PRIM 0x0005 |
| 304 | #define SCTP_ADDR_CONFIRMED 0x0006 |
| 305 | |
| 306 | /* remote error events */ |
| 307 | struct sctp_remote_error { |
| 308 | uint16_t sre_type; |
| 309 | uint16_t sre_flags; |
| 310 | uint32_t sre_length; |
| 311 | uint16_t sre_error; |
| 312 | sctp_assoc_t sre_assoc_id; |
| 313 | uint8_t sre_data[4]; |
| 314 | }; |
| 315 | |
| 316 | /* shutdown event */ |
| 317 | struct sctp_shutdown_event { |
| 318 | uint16_t sse_type; |
| 319 | uint16_t sse_flags; |
| 320 | uint32_t sse_length; |
| 321 | sctp_assoc_t sse_assoc_id; |
| 322 | }; |
| 323 | |
| 324 | /* Adaptation layer indication */ |
| 325 | struct sctp_adaptation_event { |
| 326 | uint16_t sai_type; |
| 327 | uint16_t sai_flags; |
| 328 | uint32_t sai_length; |
| 329 | uint32_t sai_adaptation_ind; |
| 330 | sctp_assoc_t sai_assoc_id; |
| 331 | }; |
| 332 | |
| 333 | /* Partial delivery event */ |
| 334 | struct sctp_pdapi_event { |
| 335 | uint16_t pdapi_type; |
| 336 | uint16_t pdapi_flags; |
| 337 | uint32_t pdapi_length; |
| 338 | uint32_t pdapi_indication; |
| 339 | uint32_t pdapi_stream; |
| 340 | uint32_t pdapi_seq; |
| 341 | sctp_assoc_t pdapi_assoc_id; |
| 342 | }; |
| 343 | |
| 344 | /* indication values */ |
| 345 | #define SCTP_PARTIAL_DELIVERY_ABORTED 0x0001 |
| 346 | |
| 347 | /* SCTP authentication event */ |
| 348 | struct sctp_authkey_event { |
| 349 | uint16_t auth_type; |
| 350 | uint16_t auth_flags; |
| 351 | uint32_t auth_length; |
| 352 | uint16_t auth_keynumber; |
| 353 | uint32_t auth_indication; |
| 354 | sctp_assoc_t auth_assoc_id; |
| 355 | }; |
| 356 | |
| 357 | /* indication values */ |
| 358 | #define SCTP_AUTH_NEW_KEY 0x0001 |
| 359 | #define SCTP_AUTH_NO_AUTH 0x0002 |
| 360 | #define SCTP_AUTH_FREE_KEY 0x0003 |
| 361 | |
| 362 | /* SCTP sender dry event */ |
| 363 | struct sctp_sender_dry_event { |
| 364 | uint16_t sender_dry_type; |
| 365 | uint16_t sender_dry_flags; |
| 366 | uint32_t sender_dry_length; |
| 367 | sctp_assoc_t sender_dry_assoc_id; |
| 368 | }; |
| 369 | |
| 370 | |
| 371 | /* Stream reset event - subscribe to SCTP_STREAM_RESET_EVENT */ |
| 372 | struct sctp_stream_reset_event { |
| 373 | uint16_t strreset_type; |
| 374 | uint16_t strreset_flags; |
| 375 | uint32_t strreset_length; |
| 376 | sctp_assoc_t strreset_assoc_id; |
| 377 | uint16_t strreset_stream_list[]; |
| 378 | }; |
| 379 | |
| 380 | /* flags in stream_reset_event (strreset_flags) */ |
| 381 | #define SCTP_STREAM_RESET_INCOMING_SSN 0x0001 |
| 382 | #define SCTP_STREAM_RESET_OUTGOING_SSN 0x0002 |
| 383 | #define SCTP_STREAM_RESET_DENIED 0x0004 /* SCTP_STRRESET_FAILED */ |
| 384 | #define SCTP_STREAM_RESET_FAILED 0x0008 /* SCTP_STRRESET_FAILED */ |
| 385 | #define SCTP_STREAM_CHANGED_DENIED 0x0010 |
| 386 | |
| 387 | #define SCTP_STREAM_RESET_INCOMING 0x00000001 |
| 388 | #define SCTP_STREAM_RESET_OUTGOING 0x00000002 |
| 389 | |
| 390 | |
| 391 | /* Assoc reset event - subscribe to SCTP_ASSOC_RESET_EVENT */ |
| 392 | struct sctp_assoc_reset_event { |
| 393 | uint16_t assocreset_type; |
| 394 | uint16_t assocreset_flags; |
| 395 | uint32_t assocreset_length; |
| 396 | sctp_assoc_t assocreset_assoc_id; |
| 397 | uint32_t assocreset_local_tsn; |
| 398 | uint32_t assocreset_remote_tsn; |
| 399 | }; |
| 400 | |
| 401 | #define SCTP_ASSOC_RESET_DENIED 0x0004 |
| 402 | #define SCTP_ASSOC_RESET_FAILED 0x0008 |
| 403 | |
| 404 | |
| 405 | /* Stream change event - subscribe to SCTP_STREAM_CHANGE_EVENT */ |
| 406 | struct sctp_stream_change_event { |
| 407 | uint16_t strchange_type; |
| 408 | uint16_t strchange_flags; |
| 409 | uint32_t strchange_length; |
| 410 | sctp_assoc_t strchange_assoc_id; |
| 411 | uint16_t strchange_instrms; |
| 412 | uint16_t strchange_outstrms; |
| 413 | }; |
| 414 | |
| 415 | #define SCTP_STREAM_CHANGE_DENIED 0x0004 |
| 416 | #define SCTP_STREAM_CHANGE_FAILED 0x0008 |
| 417 | |
| 418 | |
| 419 | /* SCTP send failed event */ |
| 420 | struct sctp_send_failed_event { |
| 421 | uint16_t ssfe_type; |
| 422 | uint16_t ssfe_flags; |
| 423 | uint32_t ssfe_length; |
| 424 | uint32_t ssfe_error; |
| 425 | struct sctp_sndinfo ssfe_info; |
| 426 | sctp_assoc_t ssfe_assoc_id; |
| 427 | uint8_t ssfe_data[]; |
| 428 | }; |
| 429 | |
| 430 | /* flag that indicates state of data */ |
| 431 | #define SCTP_DATA_UNSENT 0x0001 /* inqueue never on wire */ |
| 432 | #define SCTP_DATA_SENT 0x0002 /* on wire at failure */ |
| 433 | |
| 434 | /* SCTP event option */ |
| 435 | struct sctp_event { |
| 436 | sctp_assoc_t se_assoc_id; |
| 437 | uint16_t se_type; |
| 438 | uint8_t se_on; |
| 439 | }; |
| 440 | |
| 441 | union sctp_notification { |
| 442 | struct sctp_tlv { |
| 443 | uint16_t sn_type; |
| 444 | uint16_t sn_flags; |
| 445 | uint32_t sn_length; |
| 446 | } sn_header; |
| 447 | struct sctp_assoc_change sn_assoc_change; |
| 448 | struct sctp_paddr_change sn_paddr_change; |
| 449 | struct sctp_remote_error sn_remote_error; |
| 450 | struct sctp_shutdown_event sn_shutdown_event; |
| 451 | struct sctp_adaptation_event sn_adaptation_event; |
| 452 | struct sctp_pdapi_event sn_pdapi_event; |
| 453 | struct sctp_authkey_event sn_auth_event; |
| 454 | struct sctp_sender_dry_event sn_sender_dry_event; |
| 455 | struct sctp_send_failed_event sn_send_failed_event; |
| 456 | struct sctp_stream_reset_event sn_strreset_event; |
| 457 | struct sctp_assoc_reset_event sn_assocreset_event; |
| 458 | struct sctp_stream_change_event sn_strchange_event; |
| 459 | }; |
| 460 | |
| 461 | struct sctp_event_subscribe { |
| 462 | uint8_t sctp_data_io_event; |
| 463 | uint8_t sctp_association_event; |
| 464 | uint8_t sctp_address_event; |
| 465 | uint8_t sctp_send_failure_event; |
| 466 | uint8_t sctp_peer_error_event; |
| 467 | uint8_t sctp_shutdown_event; |
| 468 | uint8_t sctp_partial_delivery_event; |
| 469 | uint8_t sctp_adaptation_layer_event; |
| 470 | uint8_t sctp_authentication_event; |
| 471 | uint8_t sctp_sender_dry_event; |
| 472 | uint8_t sctp_stream_reset_event; |
| 473 | }; |
| 474 | |
| 475 | |
| 476 | |
| 477 | /* Flags that go into the sinfo->sinfo_flags field */ |
| 478 | #define SCTP_NOTIFICATION 0x0010 /* next message is a notification */ |
| 479 | #define SCTP_COMPLETE 0x0020 /* next message is complete */ |
| 480 | #define SCTP_EOF 0x0100 /* Start shutdown procedures */ |
| 481 | #define SCTP_ABORT 0x0200 /* Send an ABORT to peer */ |
| 482 | #define SCTP_UNORDERED 0x0400 /* Message is un-ordered */ |
| 483 | #define SCTP_ADDR_OVER 0x0800 /* Override the primary-address */ |
| 484 | #define SCTP_SENDALL 0x1000 /* Send this on all associations */ |
| 485 | #define SCTP_EOR 0x2000 /* end of message signal */ |
| 486 | #define SCTP_SACK_IMMEDIATELY 0x4000 /* Set I-Bit */ |
| 487 | |
| 488 | #define INVALID_SINFO_FLAG(x) (((x) & 0xfffffff0 \ |
| 489 | & ~(SCTP_EOF | SCTP_ABORT | SCTP_UNORDERED |\ |
| 490 | SCTP_ADDR_OVER | SCTP_SENDALL | SCTP_EOR |\ |
| 491 | SCTP_SACK_IMMEDIATELY)) != 0) |
| 492 | /* for the endpoint */ |
| 493 | |
| 494 | /* The lower byte is an enumeration of PR-SCTP policies */ |
| 495 | #define SCTP_PR_SCTP_NONE 0x0000 /* Reliable transfer */ |
| 496 | #define SCTP_PR_SCTP_TTL 0x0001 /* Time based PR-SCTP */ |
| 497 | #define SCTP_PR_SCTP_BUF 0x0002 /* Buffer based PR-SCTP */ |
| 498 | #define SCTP_PR_SCTP_RTX 0x0003 /* Number of retransmissions based PR-SCTP */ |
| 499 | |
| 500 | #define PR_SCTP_POLICY(x) ((x) & 0x0f) |
| 501 | #define PR_SCTP_ENABLED(x) (PR_SCTP_POLICY(x) != SCTP_PR_SCTP_NONE) |
| 502 | #define PR_SCTP_TTL_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_TTL) |
| 503 | #define PR_SCTP_BUF_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_BUF) |
| 504 | #define PR_SCTP_RTX_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_RTX) |
| 505 | #define PR_SCTP_INVALID_POLICY(x) (PR_SCTP_POLICY(x) > SCTP_PR_SCTP_RTX) |
| 506 | |
| 507 | |
| 508 | /* |
| 509 | * user socket options: socket API defined |
| 510 | */ |
| 511 | /* |
| 512 | * read-write options |
| 513 | */ |
| 514 | #define SCTP_RTOINFO 0x00000001 |
| 515 | #define SCTP_ASSOCINFO 0x00000002 |
| 516 | #define SCTP_INITMSG 0x00000003 |
| 517 | #define SCTP_NODELAY 0x00000004 |
| 518 | #define SCTP_AUTOCLOSE 0x00000005 |
| 519 | #define SCTP_PRIMARY_ADDR 0x00000007 |
| 520 | #define SCTP_ADAPTATION_LAYER 0x00000008 |
| 521 | #define SCTP_DISABLE_FRAGMENTS 0x00000009 |
| 522 | #define SCTP_PEER_ADDR_PARAMS 0x0000000a |
| 523 | /* ancillary data/notification interest options */ |
| 524 | /* Without this applied we will give V4 and V6 addresses on a V6 socket */ |
| 525 | #define SCTP_I_WANT_MAPPED_V4_ADDR 0x0000000d |
| 526 | #define SCTP_MAXSEG 0x0000000e |
| 527 | #define SCTP_DELAYED_SACK 0x0000000f |
| 528 | #define SCTP_FRAGMENT_INTERLEAVE 0x00000010 |
| 529 | #define SCTP_PARTIAL_DELIVERY_POINT 0x00000011 |
| 530 | /* authentication support */ |
| 531 | #define SCTP_HMAC_IDENT 0x00000014 |
| 532 | #define SCTP_AUTH_ACTIVE_KEY 0x00000015 |
| 533 | #define SCTP_AUTO_ASCONF 0x00000018 |
| 534 | #define SCTP_MAX_BURST 0x00000019 |
| 535 | /* assoc level context */ |
| 536 | #define SCTP_CONTEXT 0x0000001a |
| 537 | /* explicit EOR signalling */ |
| 538 | #define SCTP_EXPLICIT_EOR 0x0000001b |
| 539 | #define SCTP_REUSE_PORT 0x0000001c |
| 540 | |
| 541 | #define SCTP_EVENT 0x0000001e |
| 542 | #define SCTP_RECVRCVINFO 0x0000001f |
| 543 | #define SCTP_RECVNXTINFO 0x00000020 |
| 544 | #define SCTP_DEFAULT_SNDINFO 0x00000021 |
| 545 | #define SCTP_DEFAULT_PRINFO 0x00000022 |
| 546 | #define SCTP_REMOTE_UDP_ENCAPS_PORT 0x00000024 |
| 547 | |
| 548 | #define SCTP_ENABLE_STREAM_RESET 0x00000900 /* struct sctp_assoc_value */ |
| 549 | |
| 550 | /* Pluggable Stream Scheduling Socket option */ |
| 551 | #define SCTP_PLUGGABLE_SS 0x00001203 |
| 552 | #define SCTP_SS_VALUE 0x00001204 |
| 553 | |
| 554 | /* ancillary data types */ |
| 555 | #define SCTP_INIT 0x0001 |
| 556 | #define SCTP_SNDRCV 0x0002 |
| 557 | #define SCTP_EXTRCV 0x0003 |
| 558 | #define SCTP_SNDINFO 0x0004 |
| 559 | #define SCTP_RCVINFO 0x0005 |
| 560 | #define SCTP_NXTINFO 0x0006 |
| 561 | #define SCTP_PRINFO 0x0007 |
| 562 | #define SCTP_AUTHINFO 0x0008 |
| 563 | #define SCTP_DSTADDRV4 0x0009 |
| 564 | #define SCTP_DSTADDRV6 0x000a |
| 565 | |
| 566 | /* |
| 567 | * read-only options |
| 568 | */ |
| 569 | #define SCTP_STATUS 0x00000100 |
| 570 | #define SCTP_GET_PEER_ADDR_INFO 0x00000101 |
| 571 | /* authentication support */ |
| 572 | #define SCTP_PEER_AUTH_CHUNKS 0x00000102 |
| 573 | #define SCTP_LOCAL_AUTH_CHUNKS 0x00000103 |
| 574 | #define SCTP_GET_ASSOC_NUMBER 0x00000104 |
| 575 | #define SCTP_GET_ASSOC_ID_LIST 0x00000105 |
| 576 | #define SCTP_TIMEOUTS 0x00000106 |
| 577 | #define SCTP_PR_STREAM_STATUS 0x00000107 |
| 578 | #define SCTP_PR_ASSOC_STATUS 0x00000108 |
| 579 | |
| 580 | /* |
| 581 | * write-only options |
| 582 | */ |
| 583 | #define SCTP_SET_PEER_PRIMARY_ADDR 0x00000006 |
| 584 | #define SCTP_AUTH_CHUNK 0x00000012 |
| 585 | #define SCTP_AUTH_KEY 0x00000013 |
| 586 | #define SCTP_AUTH_DEACTIVATE_KEY 0x0000001d |
| 587 | #define SCTP_AUTH_DELETE_KEY 0x00000016 |
| 588 | #define SCTP_RESET_STREAMS 0x00000901 /* struct sctp_reset_streams */ |
| 589 | #define SCTP_RESET_ASSOC 0x00000902 /* sctp_assoc_t */ |
| 590 | #define SCTP_ADD_STREAMS 0x00000903 /* struct sctp_add_streams */ |
| 591 | |
| 592 | struct sctp_initmsg { |
| 593 | uint16_t sinit_num_ostreams; |
| 594 | uint16_t sinit_max_instreams; |
| 595 | uint16_t sinit_max_attempts; |
| 596 | uint16_t sinit_max_init_timeo; |
| 597 | }; |
| 598 | |
| 599 | struct sctp_rtoinfo { |
| 600 | sctp_assoc_t srto_assoc_id; |
| 601 | uint32_t srto_initial; |
| 602 | uint32_t srto_max; |
| 603 | uint32_t srto_min; |
| 604 | }; |
| 605 | |
| 606 | struct sctp_assocparams { |
| 607 | sctp_assoc_t sasoc_assoc_id; |
| 608 | uint32_t sasoc_peer_rwnd; |
| 609 | uint32_t sasoc_local_rwnd; |
| 610 | uint32_t sasoc_cookie_life; |
| 611 | uint16_t sasoc_asocmaxrxt; |
| 612 | uint16_t sasoc_number_peer_destinations; |
| 613 | }; |
| 614 | |
| 615 | struct sctp_setprim { |
| 616 | struct sockaddr_storage ssp_addr; |
| 617 | sctp_assoc_t ssp_assoc_id; |
| 618 | uint8_t ssp_padding[4]; |
| 619 | }; |
| 620 | |
| 621 | struct sctp_setadaptation { |
| 622 | uint32_t ssb_adaptation_ind; |
| 623 | }; |
| 624 | |
| 625 | struct sctp_paddrparams { |
| 626 | struct sockaddr_storage spp_address; |
| 627 | sctp_assoc_t spp_assoc_id; |
| 628 | uint32_t spp_hbinterval; |
| 629 | uint32_t spp_pathmtu; |
| 630 | uint32_t spp_flags; |
| 631 | uint32_t spp_ipv6_flowlabel; |
| 632 | uint16_t spp_pathmaxrxt; |
| 633 | uint8_t spp_dscp; |
| 634 | }; |
| 635 | |
| 636 | #define SPP_HB_ENABLE 0x00000001 |
| 637 | #define SPP_HB_DISABLE 0x00000002 |
| 638 | #define SPP_HB_DEMAND 0x00000004 |
| 639 | #define SPP_PMTUD_ENABLE 0x00000008 |
| 640 | #define SPP_PMTUD_DISABLE 0x00000010 |
| 641 | #define SPP_HB_TIME_IS_ZERO 0x00000080 |
| 642 | #define SPP_IPV6_FLOWLABEL 0x00000100 |
| 643 | #define SPP_DSCP 0x00000200 |
| 644 | |
| 645 | /* Used for SCTP_MAXSEG, SCTP_MAX_BURST, SCTP_ENABLE_STREAM_RESET, and SCTP_CONTEXT */ |
| 646 | struct sctp_assoc_value { |
| 647 | sctp_assoc_t assoc_id; |
| 648 | uint32_t assoc_value; |
| 649 | }; |
| 650 | |
| 651 | /* To enable stream reset */ |
| 652 | #define SCTP_ENABLE_RESET_STREAM_REQ 0x00000001 |
| 653 | #define SCTP_ENABLE_RESET_ASSOC_REQ 0x00000002 |
| 654 | #define SCTP_ENABLE_CHANGE_ASSOC_REQ 0x00000004 |
| 655 | #define SCTP_ENABLE_VALUE_MASK 0x00000007 |
| 656 | |
| 657 | struct sctp_reset_streams { |
| 658 | sctp_assoc_t srs_assoc_id; |
| 659 | uint16_t srs_flags; |
| 660 | uint16_t srs_number_streams; /* 0 == ALL */ |
| 661 | uint16_t srs_stream_list[]; /* list if strrst_num_streams is not 0 */ |
| 662 | }; |
| 663 | |
| 664 | struct sctp_add_streams { |
| 665 | sctp_assoc_t sas_assoc_id; |
| 666 | uint16_t sas_instrms; |
| 667 | uint16_t sas_outstrms; |
| 668 | }; |
| 669 | |
| 670 | struct sctp_hmacalgo { |
| 671 | uint32_t shmac_number_of_idents; |
| 672 | uint16_t shmac_idents[]; |
| 673 | }; |
| 674 | |
| 675 | /* AUTH hmac_id */ |
| 676 | #define SCTP_AUTH_HMAC_ID_RSVD 0x0000 |
| 677 | #define SCTP_AUTH_HMAC_ID_SHA1 0x0001 /* default, mandatory */ |
| 678 | #define SCTP_AUTH_HMAC_ID_SHA256 0x0003 |
| 679 | #define SCTP_AUTH_HMAC_ID_SHA224 0x0004 |
| 680 | #define SCTP_AUTH_HMAC_ID_SHA384 0x0005 |
| 681 | #define SCTP_AUTH_HMAC_ID_SHA512 0x0006 |
| 682 | |
| 683 | |
| 684 | struct sctp_sack_info { |
| 685 | sctp_assoc_t sack_assoc_id; |
| 686 | uint32_t sack_delay; |
| 687 | uint32_t sack_freq; |
| 688 | }; |
| 689 | |
| 690 | struct sctp_default_prinfo { |
| 691 | uint16_t pr_policy; |
| 692 | uint32_t pr_value; |
| 693 | sctp_assoc_t pr_assoc_id; |
| 694 | }; |
| 695 | |
| 696 | struct sctp_paddrinfo { |
| 697 | struct sockaddr_storage spinfo_address; |
| 698 | sctp_assoc_t spinfo_assoc_id; |
| 699 | int32_t spinfo_state; |
| 700 | uint32_t spinfo_cwnd; |
| 701 | uint32_t spinfo_srtt; |
| 702 | uint32_t spinfo_rto; |
| 703 | uint32_t spinfo_mtu; |
| 704 | }; |
| 705 | |
| 706 | struct sctp_status { |
| 707 | sctp_assoc_t sstat_assoc_id; |
| 708 | int32_t sstat_state; |
| 709 | uint32_t sstat_rwnd; |
| 710 | uint16_t sstat_unackdata; |
| 711 | uint16_t sstat_penddata; |
| 712 | uint16_t sstat_instrms; |
| 713 | uint16_t sstat_outstrms; |
| 714 | uint32_t sstat_fragmentation_point; |
| 715 | struct sctp_paddrinfo sstat_primary; |
| 716 | }; |
| 717 | |
| 718 | /* |
| 719 | * user state values |
| 720 | */ |
| 721 | #define SCTP_CLOSED 0x0000 |
| 722 | #define SCTP_BOUND 0x1000 |
| 723 | #define SCTP_LISTEN 0x2000 |
| 724 | #define SCTP_COOKIE_WAIT 0x0002 |
| 725 | #define SCTP_COOKIE_ECHOED 0x0004 |
| 726 | #define SCTP_ESTABLISHED 0x0008 |
| 727 | #define SCTP_SHUTDOWN_SENT 0x0010 |
| 728 | #define SCTP_SHUTDOWN_RECEIVED 0x0020 |
| 729 | #define SCTP_SHUTDOWN_ACK_SENT 0x0040 |
| 730 | #define SCTP_SHUTDOWN_PENDING 0x0080 |
| 731 | |
| 732 | |
| 733 | #define SCTP_ACTIVE 0x0001 /* SCTP_ADDR_REACHABLE */ |
| 734 | #define SCTP_INACTIVE 0x0002 /* neither SCTP_ADDR_REACHABLE |
| 735 | nor SCTP_ADDR_UNCONFIRMED */ |
| 736 | #define SCTP_UNCONFIRMED 0x0200 /* SCTP_ADDR_UNCONFIRMED */ |
| 737 | |
| 738 | struct sctp_authchunks { |
| 739 | sctp_assoc_t gauth_assoc_id; |
| 740 | /* uint32_t gauth_number_of_chunks; not available */ |
| 741 | uint8_t gauth_chunks[]; |
| 742 | }; |
| 743 | |
| 744 | struct sctp_assoc_ids { |
| 745 | uint32_t gaids_number_of_ids; |
| 746 | sctp_assoc_t gaids_assoc_id[]; |
| 747 | }; |
| 748 | |
| 749 | struct sctp_setpeerprim { |
| 750 | struct sockaddr_storage sspp_addr; |
| 751 | sctp_assoc_t sspp_assoc_id; |
| 752 | uint8_t sspp_padding[4]; |
| 753 | }; |
| 754 | |
| 755 | struct sctp_authchunk { |
| 756 | uint8_t sauth_chunk; |
| 757 | }; |
| 758 | |
| 759 | |
| 760 | struct sctp_get_nonce_values { |
| 761 | sctp_assoc_t gn_assoc_id; |
| 762 | uint32_t gn_peers_tag; |
| 763 | uint32_t gn_local_tag; |
| 764 | }; |
| 765 | |
| 766 | |
| 767 | /* |
| 768 | * Main SCTP chunk types |
| 769 | */ |
| 770 | /************0x00 series ***********/ |
| 771 | #define SCTP_DATA 0x00 |
| 772 | #define SCTP_INITIATION 0x01 |
| 773 | #define SCTP_INITIATION_ACK 0x02 |
| 774 | #define SCTP_SELECTIVE_ACK 0x03 |
| 775 | #define SCTP_HEARTBEAT_REQUEST 0x04 |
| 776 | #define SCTP_HEARTBEAT_ACK 0x05 |
| 777 | #define SCTP_ABORT_ASSOCIATION 0x06 |
| 778 | #define SCTP_SHUTDOWN 0x07 |
| 779 | #define SCTP_SHUTDOWN_ACK 0x08 |
| 780 | #define SCTP_OPERATION_ERROR 0x09 |
| 781 | #define SCTP_COOKIE_ECHO 0x0a |
| 782 | #define SCTP_COOKIE_ACK 0x0b |
| 783 | #define SCTP_ECN_ECHO 0x0c |
| 784 | #define SCTP_ECN_CWR 0x0d |
| 785 | #define SCTP_SHUTDOWN_COMPLETE 0x0e |
| 786 | /* RFC4895 */ |
| 787 | #define SCTP_AUTHENTICATION 0x0f |
| 788 | /* EY nr_sack chunk id*/ |
| 789 | #define SCTP_NR_SELECTIVE_ACK 0x10 |
| 790 | /************0x40 series ***********/ |
| 791 | /************0x80 series ***********/ |
| 792 | /* RFC5061 */ |
| 793 | #define SCTP_ASCONF_ACK 0x80 |
| 794 | /* draft-ietf-stewart-pktdrpsctp */ |
| 795 | #define SCTP_PACKET_DROPPED 0x81 |
| 796 | /* draft-ietf-stewart-strreset-xxx */ |
| 797 | #define SCTP_STREAM_RESET 0x82 |
| 798 | |
| 799 | /* RFC4820 */ |
| 800 | #define SCTP_PAD_CHUNK 0x84 |
| 801 | /************0xc0 series ***********/ |
| 802 | /* RFC3758 */ |
| 803 | #define SCTP_FORWARD_CUM_TSN 0xc0 |
| 804 | /* RFC5061 */ |
| 805 | #define SCTP_ASCONF 0xc1 |
| 806 | |
| 807 | struct sctp_authkey { |
| 808 | sctp_assoc_t sca_assoc_id; |
| 809 | uint16_t sca_keynumber; |
| 810 | uint16_t sca_keylength; |
| 811 | uint8_t sca_key[]; |
| 812 | }; |
| 813 | |
| 814 | struct sctp_authkeyid { |
| 815 | sctp_assoc_t scact_assoc_id; |
| 816 | uint16_t scact_keynumber; |
| 817 | }; |
| 818 | |
| 819 | struct sctp_cc_option { |
| 820 | int option; |
| 821 | struct sctp_assoc_value aid_value; |
| 822 | }; |
| 823 | |
| 824 | struct sctp_stream_value { |
| 825 | sctp_assoc_t assoc_id; |
| 826 | uint16_t stream_id; |
| 827 | uint16_t stream_value; |
| 828 | }; |
| 829 | |
| 830 | struct sctp_timeouts { |
| 831 | sctp_assoc_t stimo_assoc_id; |
| 832 | uint32_t stimo_init; |
| 833 | uint32_t stimo_data; |
| 834 | uint32_t stimo_sack; |
| 835 | uint32_t stimo_shutdown; |
| 836 | uint32_t stimo_heartbeat; |
| 837 | uint32_t stimo_cookie; |
| 838 | uint32_t stimo_shutdownack; |
| 839 | }; |
| 840 | |
| 841 | struct sctp_prstatus { |
| 842 | sctp_assoc_t sprstat_assoc_id; |
| 843 | uint16_t sprstat_sid; |
| 844 | uint16_t sprstat_policy; |
| 845 | uint64_t sprstat_abandoned_unsent; |
| 846 | uint64_t sprstat_abandoned_sent; |
| 847 | }; |
| 848 | |
| 849 | /* Standard TCP Congestion Control */ |
| 850 | #define SCTP_CC_RFC2581 0x00000000 |
| 851 | /* High Speed TCP Congestion Control (Floyd) */ |
| 852 | #define SCTP_CC_HSTCP 0x00000001 |
| 853 | /* HTCP Congestion Control */ |
| 854 | #define SCTP_CC_HTCP 0x00000002 |
| 855 | /* RTCC Congestion Control - RFC2581 plus */ |
| 856 | #define SCTP_CC_RTCC 0x00000003 |
| 857 | |
| 858 | #define SCTP_CC_OPT_RTCC_SETMODE 0x00002000 |
| 859 | #define SCTP_CC_OPT_USE_DCCC_EC 0x00002001 |
| 860 | #define SCTP_CC_OPT_STEADY_STEP 0x00002002 |
| 861 | |
| 862 | #define SCTP_CMT_OFF 0 |
| 863 | #define SCTP_CMT_BASE 1 |
| 864 | #define SCTP_CMT_RPV1 2 |
| 865 | #define SCTP_CMT_RPV2 3 |
| 866 | #define SCTP_CMT_MPTCP 4 |
| 867 | #define SCTP_CMT_MAX SCTP_CMT_MPTCP |
| 868 | |
| 869 | /* RS - Supported stream scheduling modules for pluggable |
| 870 | * stream scheduling |
| 871 | */ |
| 872 | /* Default simple round-robin */ |
| 873 | #define SCTP_SS_DEFAULT 0x00000000 |
| 874 | /* Real round-robin */ |
| 875 | #define SCTP_SS_ROUND_ROBIN 0x00000001 |
| 876 | /* Real round-robin per packet */ |
| 877 | #define SCTP_SS_ROUND_ROBIN_PACKET 0x00000002 |
| 878 | /* Priority */ |
| 879 | #define SCTP_SS_PRIORITY 0x00000003 |
| 880 | /* Fair Bandwidth */ |
| 881 | #define SCTP_SS_FAIR_BANDWITH 0x00000004 |
| 882 | /* First-come, first-serve */ |
| 883 | #define SCTP_SS_FIRST_COME 0x00000005 |
| 884 | |
| 885 | /******************** System calls *************/ |
| 886 | |
| 887 | struct socket; |
| 888 | |
| 889 | void |
| 890 | usrsctp_init(uint16_t, |
| 891 | int (*)(void *addr, void *buffer, size_t length, uint8_t tos, uint8_t set_df), |
| 892 | void (*)(const char *format, ...)); |
| 893 | |
| 894 | struct socket * |
| 895 | usrsctp_socket(int domain, int type, int protocol, |
| 896 | int (*receive_cb)(struct socket *sock, union sctp_sockstore addr, void *data, |
| 897 | size_t datalen, struct sctp_rcvinfo, int flags, void *ulp_info), |
| 898 | int (*send_cb)(struct socket *sock, uint32_t sb_free), |
| 899 | uint32_t sb_threshold, |
| 900 | void *ulp_info); |
| 901 | |
| 902 | int |
| 903 | usrsctp_setsockopt(struct socket *so, |
| 904 | int level, |
| 905 | int option_name, |
| 906 | const void *option_value, |
| 907 | socklen_t option_len); |
| 908 | |
| 909 | int |
| 910 | usrsctp_getsockopt(struct socket *so, |
| 911 | int level, |
| 912 | int option_name, |
| 913 | void *option_value, |
| 914 | socklen_t *option_len); |
| 915 | |
| 916 | int |
| 917 | usrsctp_getpaddrs(struct socket *so, |
| 918 | sctp_assoc_t id, |
| 919 | struct sockaddr **raddrs); |
| 920 | |
| 921 | void |
| 922 | usrsctp_freepaddrs(struct sockaddr *addrs); |
| 923 | |
| 924 | int |
| 925 | usrsctp_getladdrs(struct socket *so, |
| 926 | sctp_assoc_t id, |
| 927 | struct sockaddr **raddrs); |
| 928 | |
| 929 | void |
| 930 | usrsctp_freeladdrs(struct sockaddr *addrs); |
| 931 | |
| 932 | ssize_t |
| 933 | usrsctp_sendv(struct socket *so, |
| 934 | const void *data, |
| 935 | size_t len, |
| 936 | struct sockaddr *to, |
| 937 | int addrcnt, |
| 938 | void *info, |
| 939 | socklen_t infolen, |
| 940 | unsigned int infotype, |
| 941 | int flags); |
| 942 | |
| 943 | ssize_t |
| 944 | usrsctp_recvv(struct socket *so, |
| 945 | void *dbuf, |
| 946 | size_t len, |
| 947 | struct sockaddr *from, |
| 948 | socklen_t * fromlen, |
| 949 | void *info, |
| 950 | socklen_t *infolen, |
| 951 | unsigned int *infotype, |
| 952 | int *msg_flags); |
| 953 | |
| 954 | int |
| 955 | usrsctp_bind(struct socket *so, |
| 956 | struct sockaddr *name, |
| 957 | socklen_t namelen); |
| 958 | |
| 959 | #define SCTP_BINDX_ADD_ADDR 0x00008001 |
| 960 | #define SCTP_BINDX_REM_ADDR 0x00008002 |
| 961 | |
| 962 | int |
| 963 | usrsctp_bindx(struct socket *so, |
| 964 | struct sockaddr *addrs, |
| 965 | int addrcnt, |
| 966 | int flags); |
| 967 | |
| 968 | int |
| 969 | usrsctp_listen(struct socket *so, |
| 970 | int backlog); |
| 971 | |
| 972 | struct socket * |
| 973 | usrsctp_accept(struct socket *so, |
| 974 | struct sockaddr * aname, |
| 975 | socklen_t * anamelen); |
| 976 | |
| 977 | struct socket * |
| 978 | usrsctp_peeloff(struct socket *, sctp_assoc_t); |
| 979 | |
| 980 | int |
| 981 | usrsctp_connect(struct socket *so, |
| 982 | struct sockaddr *name, |
| 983 | socklen_t namelen); |
| 984 | |
| 985 | int |
| 986 | usrsctp_connectx(struct socket *so, |
| 987 | const struct sockaddr *addrs, int addrcnt, |
| 988 | sctp_assoc_t *id); |
| 989 | |
| 990 | void |
| 991 | usrsctp_close(struct socket *so); |
| 992 | |
| 993 | sctp_assoc_t |
| 994 | usrsctp_getassocid(struct socket *, struct sockaddr *); |
| 995 | |
| 996 | int |
| 997 | usrsctp_finish(void); |
| 998 | |
| 999 | int |
| 1000 | usrsctp_shutdown(struct socket *so, int how); |
| 1001 | |
| 1002 | void |
| 1003 | usrsctp_conninput(void *, const void *, size_t, uint8_t); |
| 1004 | |
| 1005 | int |
| 1006 | usrsctp_set_non_blocking(struct socket *, int); |
| 1007 | |
| 1008 | int |
| 1009 | usrsctp_get_non_blocking(struct socket *); |
| 1010 | |
| 1011 | void |
| 1012 | usrsctp_register_address(void *); |
| 1013 | |
| 1014 | void |
| 1015 | usrsctp_deregister_address(void *); |
| 1016 | |
| 1017 | int |
| 1018 | usrsctp_set_ulpinfo(struct socket *, void *); |
| 1019 | |
| 1020 | int |
| 1021 | usrsctp_set_upcall(struct socket *so, |
| 1022 | void (*upcall)(struct socket *, void *, int), |
| 1023 | void *arg); |
| 1024 | |
| 1025 | int |
| 1026 | usrsctp_get_events(struct socket *so); |
| 1027 | |
| 1028 | void |
| 1029 | usrsctp_handle_timers(int); |
| 1030 | |
| 1031 | int |
| 1032 | usrsctp_open_sctp4_socket(void); |
| 1033 | |
| 1034 | int |
| 1035 | usrsctp_open_udpsctp4_socket(void); |
| 1036 | |
| 1037 | int |
| 1038 | usrsctp_open_sctp6_socket(void); |
| 1039 | |
| 1040 | int |
| 1041 | usrsctp_open_udpsctp6_socket(void); |
| 1042 | |
| 1043 | void |
| 1044 | usrsctp_recv_function_sctp4(void); |
| 1045 | |
| 1046 | void |
| 1047 | usrsctp_recv_function_udpsctp4(void); |
| 1048 | |
| 1049 | void |
| 1050 | usrsctp_recv_function_sctp6(void); |
| 1051 | |
| 1052 | void |
| 1053 | usrsctp_recv_function_udpsctp6(void); |
| 1054 | |
| 1055 | #define SCTP_DUMP_OUTBOUND 1 |
| 1056 | #define SCTP_DUMP_INBOUND 0 |
| 1057 | |
| 1058 | char * |
| 1059 | usrsctp_dumppacket(const void *, size_t, int); |
| 1060 | |
| 1061 | void |
| 1062 | usrsctp_freedumpbuffer(char *); |
| 1063 | |
| 1064 | void |
| 1065 | usrsctp_enable_crc32c_offload(void); |
| 1066 | |
| 1067 | void |
| 1068 | usrsctp_disable_crc32c_offload(void); |
| 1069 | |
| 1070 | uint32_t |
| 1071 | usrsctp_crc32c(void *, size_t); |
| 1072 | |
| 1073 | #define USRSCTP_SYSCTL_DECL(__field) \ |
| 1074 | void usrsctp_sysctl_set_ ## __field(uint32_t value);\ |
| 1075 | uint32_t usrsctp_sysctl_get_ ## __field(void); |
| 1076 | |
| 1077 | USRSCTP_SYSCTL_DECL(sctp_sendspace) |
| 1078 | USRSCTP_SYSCTL_DECL(sctp_recvspace) |
| 1079 | USRSCTP_SYSCTL_DECL(sctp_auto_asconf) |
| 1080 | USRSCTP_SYSCTL_DECL(sctp_multiple_asconfs) |
| 1081 | USRSCTP_SYSCTL_DECL(sctp_ecn_enable) |
| 1082 | USRSCTP_SYSCTL_DECL(sctp_pr_enable) |
| 1083 | USRSCTP_SYSCTL_DECL(sctp_auth_enable) |
| 1084 | USRSCTP_SYSCTL_DECL(sctp_asconf_enable) |
| 1085 | USRSCTP_SYSCTL_DECL(sctp_reconfig_enable) |
| 1086 | USRSCTP_SYSCTL_DECL(sctp_nrsack_enable) |
| 1087 | USRSCTP_SYSCTL_DECL(sctp_pktdrop_enable) |
| 1088 | #if !defined(SCTP_WITH_NO_CSUM) |
| 1089 | USRSCTP_SYSCTL_DECL(sctp_no_csum_on_loopback) |
| 1090 | #endif |
| 1091 | USRSCTP_SYSCTL_DECL(sctp_peer_chunk_oh) |
| 1092 | USRSCTP_SYSCTL_DECL(sctp_max_burst_default) |
| 1093 | USRSCTP_SYSCTL_DECL(sctp_max_chunks_on_queue) |
| 1094 | USRSCTP_SYSCTL_DECL(sctp_hashtblsize) |
| 1095 | USRSCTP_SYSCTL_DECL(sctp_pcbtblsize) |
| 1096 | USRSCTP_SYSCTL_DECL(sctp_min_split_point) |
| 1097 | USRSCTP_SYSCTL_DECL(sctp_chunkscale) |
| 1098 | USRSCTP_SYSCTL_DECL(sctp_delayed_sack_time_default) |
| 1099 | USRSCTP_SYSCTL_DECL(sctp_sack_freq_default) |
| 1100 | USRSCTP_SYSCTL_DECL(sctp_system_free_resc_limit) |
| 1101 | USRSCTP_SYSCTL_DECL(sctp_asoc_free_resc_limit) |
| 1102 | USRSCTP_SYSCTL_DECL(sctp_heartbeat_interval_default) |
| 1103 | USRSCTP_SYSCTL_DECL(sctp_pmtu_raise_time_default) |
| 1104 | USRSCTP_SYSCTL_DECL(sctp_shutdown_guard_time_default) |
| 1105 | USRSCTP_SYSCTL_DECL(sctp_secret_lifetime_default) |
| 1106 | USRSCTP_SYSCTL_DECL(sctp_rto_max_default) |
| 1107 | USRSCTP_SYSCTL_DECL(sctp_rto_min_default) |
| 1108 | USRSCTP_SYSCTL_DECL(sctp_rto_initial_default) |
| 1109 | USRSCTP_SYSCTL_DECL(sctp_init_rto_max_default) |
| 1110 | USRSCTP_SYSCTL_DECL(sctp_valid_cookie_life_default) |
| 1111 | USRSCTP_SYSCTL_DECL(sctp_init_rtx_max_default) |
| 1112 | USRSCTP_SYSCTL_DECL(sctp_assoc_rtx_max_default) |
| 1113 | USRSCTP_SYSCTL_DECL(sctp_path_rtx_max_default) |
| 1114 | USRSCTP_SYSCTL_DECL(sctp_add_more_threshold) |
| 1115 | USRSCTP_SYSCTL_DECL(sctp_nr_incoming_streams_default) |
| 1116 | USRSCTP_SYSCTL_DECL(sctp_nr_outgoing_streams_default) |
| 1117 | USRSCTP_SYSCTL_DECL(sctp_cmt_on_off) |
| 1118 | USRSCTP_SYSCTL_DECL(sctp_cmt_use_dac) |
| 1119 | USRSCTP_SYSCTL_DECL(sctp_use_cwnd_based_maxburst) |
| 1120 | USRSCTP_SYSCTL_DECL(sctp_nat_friendly) |
| 1121 | USRSCTP_SYSCTL_DECL(sctp_L2_abc_variable) |
| 1122 | USRSCTP_SYSCTL_DECL(sctp_mbuf_threshold_count) |
| 1123 | USRSCTP_SYSCTL_DECL(sctp_do_drain) |
| 1124 | USRSCTP_SYSCTL_DECL(sctp_hb_maxburst) |
| 1125 | USRSCTP_SYSCTL_DECL(sctp_abort_if_one_2_one_hits_limit) |
| 1126 | USRSCTP_SYSCTL_DECL(sctp_min_residual) |
| 1127 | USRSCTP_SYSCTL_DECL(sctp_max_retran_chunk) |
| 1128 | USRSCTP_SYSCTL_DECL(sctp_logging_level) |
| 1129 | USRSCTP_SYSCTL_DECL(sctp_default_cc_module) |
| 1130 | USRSCTP_SYSCTL_DECL(sctp_default_frag_interleave) |
| 1131 | USRSCTP_SYSCTL_DECL(sctp_mobility_base) |
| 1132 | USRSCTP_SYSCTL_DECL(sctp_mobility_fasthandoff) |
| 1133 | USRSCTP_SYSCTL_DECL(sctp_inits_include_nat_friendly) |
| 1134 | USRSCTP_SYSCTL_DECL(sctp_udp_tunneling_port) |
| 1135 | USRSCTP_SYSCTL_DECL(sctp_enable_sack_immediately) |
| 1136 | USRSCTP_SYSCTL_DECL(sctp_vtag_time_wait) |
| 1137 | USRSCTP_SYSCTL_DECL(sctp_blackhole) |
| 1138 | USRSCTP_SYSCTL_DECL(sctp_diag_info_code) |
| 1139 | USRSCTP_SYSCTL_DECL(sctp_fr_max_burst_default) |
| 1140 | USRSCTP_SYSCTL_DECL(sctp_path_pf_threshold) |
| 1141 | USRSCTP_SYSCTL_DECL(sctp_default_ss_module) |
| 1142 | USRSCTP_SYSCTL_DECL(sctp_rttvar_bw) |
| 1143 | USRSCTP_SYSCTL_DECL(sctp_rttvar_rtt) |
| 1144 | USRSCTP_SYSCTL_DECL(sctp_rttvar_eqret) |
| 1145 | USRSCTP_SYSCTL_DECL(sctp_steady_step) |
| 1146 | USRSCTP_SYSCTL_DECL(sctp_use_dccc_ecn) |
| 1147 | USRSCTP_SYSCTL_DECL(sctp_buffer_splitting) |
| 1148 | USRSCTP_SYSCTL_DECL(sctp_initial_cwnd) |
| 1149 | #ifdef SCTP_DEBUG |
| 1150 | USRSCTP_SYSCTL_DECL(sctp_debug_on) |
| 1151 | /* More specific values can be found in sctp_constants, but |
| 1152 | * are not considered to be part of the API. |
| 1153 | */ |
| 1154 | #define SCTP_DEBUG_NONE 0x00000000 |
| 1155 | #define SCTP_DEBUG_ALL 0xffffffff |
| 1156 | #endif |
| 1157 | #undef USRSCTP_SYSCTL_DECL |
| 1158 | struct sctp_timeval { |
| 1159 | uint32_t tv_sec; |
| 1160 | uint32_t tv_usec; |
| 1161 | }; |
| 1162 | |
| 1163 | struct sctpstat { |
| 1164 | struct sctp_timeval sctps_discontinuitytime; /* sctpStats 18 (TimeStamp) */ |
| 1165 | /* MIB according to RFC 3873 */ |
| 1166 | uint32_t sctps_currestab; /* sctpStats 1 (Gauge32) */ |
| 1167 | uint32_t sctps_activeestab; /* sctpStats 2 (Counter32) */ |
| 1168 | uint32_t sctps_restartestab; |
| 1169 | uint32_t sctps_collisionestab; |
| 1170 | uint32_t sctps_passiveestab; /* sctpStats 3 (Counter32) */ |
| 1171 | uint32_t sctps_aborted; /* sctpStats 4 (Counter32) */ |
| 1172 | uint32_t sctps_shutdown; /* sctpStats 5 (Counter32) */ |
| 1173 | uint32_t sctps_outoftheblue; /* sctpStats 6 (Counter32) */ |
| 1174 | uint32_t sctps_checksumerrors; /* sctpStats 7 (Counter32) */ |
| 1175 | uint32_t sctps_outcontrolchunks; /* sctpStats 8 (Counter64) */ |
| 1176 | uint32_t sctps_outorderchunks; /* sctpStats 9 (Counter64) */ |
| 1177 | uint32_t sctps_outunorderchunks; /* sctpStats 10 (Counter64) */ |
| 1178 | uint32_t sctps_incontrolchunks; /* sctpStats 11 (Counter64) */ |
| 1179 | uint32_t sctps_inorderchunks; /* sctpStats 12 (Counter64) */ |
| 1180 | uint32_t sctps_inunorderchunks; /* sctpStats 13 (Counter64) */ |
| 1181 | uint32_t sctps_fragusrmsgs; /* sctpStats 14 (Counter64) */ |
| 1182 | uint32_t sctps_reasmusrmsgs; /* sctpStats 15 (Counter64) */ |
| 1183 | uint32_t sctps_outpackets; /* sctpStats 16 (Counter64) */ |
| 1184 | uint32_t sctps_inpackets; /* sctpStats 17 (Counter64) */ |
| 1185 | |
| 1186 | /* input statistics: */ |
| 1187 | uint32_t sctps_recvpackets; /* total input packets */ |
| 1188 | uint32_t sctps_recvdatagrams; /* total input datagrams */ |
| 1189 | uint32_t sctps_recvpktwithdata; /* total packets that had data */ |
| 1190 | uint32_t sctps_recvsacks; /* total input SACK chunks */ |
| 1191 | uint32_t sctps_recvdata; /* total input DATA chunks */ |
| 1192 | uint32_t sctps_recvdupdata; /* total input duplicate DATA chunks */ |
| 1193 | uint32_t sctps_recvheartbeat; /* total input HB chunks */ |
| 1194 | uint32_t sctps_recvheartbeatack; /* total input HB-ACK chunks */ |
| 1195 | uint32_t sctps_recvecne; /* total input ECNE chunks */ |
| 1196 | uint32_t sctps_recvauth; /* total input AUTH chunks */ |
| 1197 | uint32_t sctps_recvauthmissing; /* total input chunks missing AUTH */ |
| 1198 | uint32_t sctps_recvivalhmacid; /* total number of invalid HMAC ids received */ |
| 1199 | uint32_t sctps_recvivalkeyid; /* total number of invalid secret ids received */ |
| 1200 | uint32_t sctps_recvauthfailed; /* total number of auth failed */ |
| 1201 | uint32_t sctps_recvexpress; /* total fast path receives all one chunk */ |
| 1202 | uint32_t sctps_recvexpressm; /* total fast path multi-part data */ |
| 1203 | uint32_t sctps_recvnocrc; |
| 1204 | uint32_t sctps_recvswcrc; |
| 1205 | uint32_t sctps_recvhwcrc; |
| 1206 | |
| 1207 | /* output statistics: */ |
| 1208 | uint32_t sctps_sendpackets; /* total output packets */ |
| 1209 | uint32_t sctps_sendsacks; /* total output SACKs */ |
| 1210 | uint32_t sctps_senddata; /* total output DATA chunks */ |
| 1211 | uint32_t sctps_sendretransdata; /* total output retransmitted DATA chunks */ |
| 1212 | uint32_t sctps_sendfastretrans; /* total output fast retransmitted DATA chunks */ |
| 1213 | uint32_t sctps_sendmultfastretrans; /* total FR's that happened more than once |
| 1214 | * to same chunk (u-del multi-fr algo). |
| 1215 | */ |
| 1216 | uint32_t sctps_sendheartbeat; /* total output HB chunks */ |
| 1217 | uint32_t sctps_sendecne; /* total output ECNE chunks */ |
| 1218 | uint32_t sctps_sendauth; /* total output AUTH chunks FIXME */ |
| 1219 | uint32_t sctps_senderrors; /* ip_output error counter */ |
| 1220 | uint32_t sctps_sendnocrc; |
| 1221 | uint32_t sctps_sendswcrc; |
| 1222 | uint32_t sctps_sendhwcrc; |
| 1223 | /* PCKDROPREP statistics: */ |
| 1224 | uint32_t sctps_pdrpfmbox; /* Packet drop from middle box */ |
| 1225 | uint32_t sctps_pdrpfehos; /* P-drop from end host */ |
| 1226 | uint32_t sctps_pdrpmbda; /* P-drops with data */ |
| 1227 | uint32_t sctps_pdrpmbct; /* P-drops, non-data, non-endhost */ |
| 1228 | uint32_t sctps_pdrpbwrpt; /* P-drop, non-endhost, bandwidth rep only */ |
| 1229 | uint32_t sctps_pdrpcrupt; /* P-drop, not enough for chunk header */ |
| 1230 | uint32_t sctps_pdrpnedat; /* P-drop, not enough data to confirm */ |
| 1231 | uint32_t sctps_pdrppdbrk; /* P-drop, where process_chunk_drop said break */ |
| 1232 | uint32_t sctps_pdrptsnnf; /* P-drop, could not find TSN */ |
| 1233 | uint32_t sctps_pdrpdnfnd; /* P-drop, attempt reverse TSN lookup */ |
| 1234 | uint32_t sctps_pdrpdiwnp; /* P-drop, e-host confirms zero-rwnd */ |
| 1235 | uint32_t sctps_pdrpdizrw; /* P-drop, midbox confirms no space */ |
| 1236 | uint32_t sctps_pdrpbadd; /* P-drop, data did not match TSN */ |
| 1237 | uint32_t sctps_pdrpmark; /* P-drop, TSN's marked for Fast Retran */ |
| 1238 | /* timeouts */ |
| 1239 | uint32_t sctps_timoiterator; /* Number of iterator timers that fired */ |
| 1240 | uint32_t sctps_timodata; /* Number of T3 data time outs */ |
| 1241 | uint32_t sctps_timowindowprobe; /* Number of window probe (T3) timers that fired */ |
| 1242 | uint32_t sctps_timoinit; /* Number of INIT timers that fired */ |
| 1243 | uint32_t sctps_timosack; /* Number of sack timers that fired */ |
| 1244 | uint32_t sctps_timoshutdown; /* Number of shutdown timers that fired */ |
| 1245 | uint32_t sctps_timoheartbeat; /* Number of heartbeat timers that fired */ |
| 1246 | uint32_t sctps_timocookie; /* Number of times a cookie timeout fired */ |
| 1247 | uint32_t sctps_timosecret; /* Number of times an endpoint changed its cookie secret*/ |
| 1248 | uint32_t sctps_timopathmtu; /* Number of PMTU timers that fired */ |
| 1249 | uint32_t sctps_timoshutdownack; /* Number of shutdown ack timers that fired */ |
| 1250 | uint32_t sctps_timoshutdownguard; /* Number of shutdown guard timers that fired */ |
| 1251 | uint32_t sctps_timostrmrst; /* Number of stream reset timers that fired */ |
| 1252 | uint32_t sctps_timoearlyfr; /* Number of early FR timers that fired */ |
| 1253 | uint32_t sctps_timoasconf; /* Number of times an asconf timer fired */ |
| 1254 | uint32_t sctps_timodelprim; /* Number of times a prim_deleted timer fired */ |
| 1255 | uint32_t sctps_timoautoclose; /* Number of times auto close timer fired */ |
| 1256 | uint32_t sctps_timoassockill; /* Number of asoc free timers expired */ |
| 1257 | uint32_t sctps_timoinpkill; /* Number of inp free timers expired */ |
| 1258 | /* former early FR counters */ |
| 1259 | uint32_t sctps_spare[11]; |
| 1260 | /* others */ |
| 1261 | uint32_t sctps_hdrops; /* packet shorter than header */ |
| 1262 | uint32_t sctps_badsum; /* checksum error */ |
| 1263 | uint32_t sctps_noport; /* no endpoint for port */ |
| 1264 | uint32_t sctps_badvtag; /* bad v-tag */ |
| 1265 | uint32_t sctps_badsid; /* bad SID */ |
| 1266 | uint32_t sctps_nomem; /* no memory */ |
| 1267 | uint32_t sctps_fastretransinrtt; /* number of multiple FR in a RTT window */ |
| 1268 | uint32_t sctps_markedretrans; |
| 1269 | uint32_t sctps_naglesent; /* nagle allowed sending */ |
| 1270 | uint32_t sctps_naglequeued; /* nagle doesn't allow sending */ |
| 1271 | uint32_t sctps_maxburstqueued; /* max burst doesn't allow sending */ |
| 1272 | uint32_t sctps_ifnomemqueued; /* look ahead tells us no memory in |
| 1273 | * interface ring buffer OR we had a |
| 1274 | * send error and are queuing one send. |
| 1275 | */ |
| 1276 | uint32_t sctps_windowprobed; /* total number of window probes sent */ |
| 1277 | uint32_t sctps_lowlevelerr; /* total times an output error causes us |
| 1278 | * to clamp down on next user send. |
| 1279 | */ |
| 1280 | uint32_t sctps_lowlevelerrusr; /* total times sctp_senderrors were caused from |
| 1281 | * a user send from a user invoked send not |
| 1282 | * a sack response |
| 1283 | */ |
| 1284 | uint32_t sctps_datadropchklmt; /* Number of in data drops due to chunk limit reached */ |
| 1285 | uint32_t sctps_datadroprwnd; /* Number of in data drops due to rwnd limit reached */ |
| 1286 | uint32_t sctps_ecnereducedcwnd; /* Number of times a ECN reduced the cwnd */ |
| 1287 | uint32_t sctps_vtagexpress; /* Used express lookup via vtag */ |
| 1288 | uint32_t sctps_vtagbogus; /* Collision in express lookup. */ |
| 1289 | uint32_t sctps_primary_randry; /* Number of times the sender ran dry of user data on primary */ |
| 1290 | uint32_t sctps_cmt_randry; /* Same for above */ |
| 1291 | uint32_t sctps_slowpath_sack; /* Sacks the slow way */ |
| 1292 | uint32_t sctps_wu_sacks_sent; /* Window Update only sacks sent */ |
| 1293 | uint32_t sctps_sends_with_flags; /* number of sends with sinfo_flags !=0 */ |
| 1294 | uint32_t sctps_sends_with_unord; /* number of unordered sends */ |
| 1295 | uint32_t sctps_sends_with_eof; /* number of sends with EOF flag set */ |
| 1296 | uint32_t sctps_sends_with_abort; /* number of sends with ABORT flag set */ |
| 1297 | uint32_t sctps_protocol_drain_calls;/* number of times protocol drain called */ |
| 1298 | uint32_t sctps_protocol_drains_done;/* number of times we did a protocol drain */ |
| 1299 | uint32_t sctps_read_peeks; /* Number of times recv was called with peek */ |
| 1300 | uint32_t sctps_cached_chk; /* Number of cached chunks used */ |
| 1301 | uint32_t sctps_cached_strmoq; /* Number of cached stream oq's used */ |
| 1302 | uint32_t sctps_left_abandon; /* Number of unread messages abandoned by close */ |
| 1303 | uint32_t sctps_send_burst_avoid; /* Unused */ |
| 1304 | uint32_t sctps_send_cwnd_avoid; /* Send cwnd full avoidance, already max burst inflight to net */ |
| 1305 | uint32_t sctps_fwdtsn_map_over; /* number of map array over-runs via fwd-tsn's */ |
| 1306 | uint32_t sctps_queue_upd_ecne; /* Number of times we queued or updated an ECN chunk on send queue */ |
| 1307 | uint32_t sctps_reserved[31]; /* Future ABI compat - remove int's from here when adding new */ |
| 1308 | }; |
| 1309 | |
| 1310 | void |
| 1311 | usrsctp_get_stat(struct sctpstat *); |
| 1312 | |
| 1313 | #ifdef _WIN32 |
| 1314 | #ifdef _MSC_VER |
| 1315 | #pragma warning(default: 4200) |
| 1316 | #endif |
| 1317 | #endif |
| 1318 | #ifdef __cplusplus |
| 1319 | } |
| 1320 | #endif |
| 1321 | #endif |