1 /*- 2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved. 4 * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are met: 8 * 9 * a) Redistributions of source code must retain the above copyright notice, 10 * this list of conditions and the following disclaimer. 11 * 12 * b) Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the distribution. 15 * 16 * c) Neither the name of Cisco Systems, Inc. nor the names of its 17 * contributors may be used to endorse or promote products derived 18 * from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 /* $KAME: sctp_uio.h,v 1.11 2005/03/06 16:04:18 itojun Exp $ */ 34 #include <sys/cdefs.h> 35 __FBSDID("$FreeBSD$"); 36 37 #ifndef __sctp_uio_h__ 38 #define __sctp_uio_h__ 39 40 41 #if ! defined(_KERNEL) 42 #include <stdint.h> 43 #endif 44 #include <sys/types.h> 45 #include <sys/socket.h> 46 #include <netinet/in.h> 47 48 typedef uint32_t sctp_assoc_t; 49 50 #define SCTP_FUTURE_ASSOC 0 51 #define SCTP_CURRENT_ASSOC 1 52 #define SCTP_ALL_ASSOC 2 53 54 struct sctp_event { 55 sctp_assoc_t se_assoc_id; 56 uint16_t se_type; 57 uint8_t se_on; 58 }; 59 60 /* Compatibility to previous define's */ 61 #define sctp_stream_reset_events sctp_stream_reset_event 62 63 /* On/Off setup for subscription to events */ 64 struct sctp_event_subscribe { 65 uint8_t sctp_data_io_event; 66 uint8_t sctp_association_event; 67 uint8_t sctp_address_event; 68 uint8_t sctp_send_failure_event; 69 uint8_t sctp_peer_error_event; 70 uint8_t sctp_shutdown_event; 71 uint8_t sctp_partial_delivery_event; 72 uint8_t sctp_adaptation_layer_event; 73 uint8_t sctp_authentication_event; 74 uint8_t sctp_sender_dry_event; 75 uint8_t sctp_stream_reset_event; 76 }; 77 78 /* ancillary data types */ 79 #define SCTP_INIT 0x0001 80 #define SCTP_SNDRCV 0x0002 81 #define SCTP_EXTRCV 0x0003 82 #define SCTP_SNDINFO 0x0004 83 #define SCTP_RCVINFO 0x0005 84 #define SCTP_NXTINFO 0x0006 85 #define SCTP_PRINFO 0x0007 86 #define SCTP_AUTHINFO 0x0008 87 #define SCTP_DSTADDRV4 0x0009 88 #define SCTP_DSTADDRV6 0x000a 89 90 /* 91 * ancillary data structures 92 */ 93 struct sctp_initmsg { 94 uint16_t sinit_num_ostreams; 95 uint16_t sinit_max_instreams; 96 uint16_t sinit_max_attempts; 97 uint16_t sinit_max_init_timeo; 98 }; 99 100 /* We add 96 bytes to the size of sctp_sndrcvinfo. 101 * This makes the current structure 128 bytes long 102 * which is nicely 64 bit aligned but also has room 103 * for us to add more and keep ABI compatibility. 104 * For example, already we have the sctp_extrcvinfo 105 * when enabled which is 48 bytes. 106 */ 107 108 /* 109 * The assoc up needs a verfid 110 * all sendrcvinfo's need a verfid for SENDING only. 111 */ 112 113 114 #define SCTP_ALIGN_RESV_PAD 92 115 #define SCTP_ALIGN_RESV_PAD_SHORT 76 116 117 struct sctp_sndrcvinfo { 118 uint16_t sinfo_stream; 119 uint16_t sinfo_ssn; 120 uint16_t sinfo_flags; 121 uint32_t sinfo_ppid; 122 uint32_t sinfo_context; 123 uint32_t sinfo_timetolive; 124 uint32_t sinfo_tsn; 125 uint32_t sinfo_cumtsn; 126 sctp_assoc_t sinfo_assoc_id; 127 uint16_t sinfo_keynumber; 128 uint16_t sinfo_keynumber_valid; 129 uint8_t __reserve_pad[SCTP_ALIGN_RESV_PAD]; 130 }; 131 132 struct sctp_extrcvinfo { 133 uint16_t sinfo_stream; 134 uint16_t sinfo_ssn; 135 uint16_t sinfo_flags; 136 uint32_t sinfo_ppid; 137 uint32_t sinfo_context; 138 uint32_t sinfo_timetolive; 139 uint32_t sinfo_tsn; 140 uint32_t sinfo_cumtsn; 141 sctp_assoc_t sinfo_assoc_id; 142 uint16_t sreinfo_next_flags; 143 uint16_t sreinfo_next_stream; 144 uint32_t sreinfo_next_aid; 145 uint32_t sreinfo_next_length; 146 uint32_t sreinfo_next_ppid; 147 uint16_t sinfo_keynumber; 148 uint16_t sinfo_keynumber_valid; 149 uint8_t __reserve_pad[SCTP_ALIGN_RESV_PAD_SHORT]; 150 }; 151 152 struct sctp_sndinfo { 153 uint16_t snd_sid; 154 uint16_t snd_flags; 155 uint32_t snd_ppid; 156 uint32_t snd_context; 157 sctp_assoc_t snd_assoc_id; 158 }; 159 160 struct sctp_prinfo { 161 uint16_t pr_policy; 162 uint32_t pr_value; 163 }; 164 165 struct sctp_default_prinfo { 166 uint16_t pr_policy; 167 uint32_t pr_value; 168 sctp_assoc_t pr_assoc_id; 169 }; 170 171 struct sctp_authinfo { 172 uint16_t auth_keyid; 173 }; 174 175 struct sctp_rcvinfo { 176 uint16_t rcv_sid; 177 uint16_t rcv_ssn; 178 uint16_t rcv_flags; 179 uint32_t rcv_ppid; 180 uint32_t rcv_tsn; 181 uint32_t rcv_cumtsn; 182 uint32_t rcv_context; 183 sctp_assoc_t rcv_assoc_id; 184 }; 185 186 struct sctp_nxtinfo { 187 uint16_t nxt_sid; 188 uint16_t nxt_flags; 189 uint32_t nxt_ppid; 190 uint32_t nxt_length; 191 sctp_assoc_t nxt_assoc_id; 192 }; 193 194 #define SCTP_NO_NEXT_MSG 0x0000 195 #define SCTP_NEXT_MSG_AVAIL 0x0001 196 #define SCTP_NEXT_MSG_ISCOMPLETE 0x0002 197 #define SCTP_NEXT_MSG_IS_UNORDERED 0x0004 198 #define SCTP_NEXT_MSG_IS_NOTIFICATION 0x0008 199 200 struct sctp_recvv_rn { 201 struct sctp_rcvinfo recvv_rcvinfo; 202 struct sctp_nxtinfo recvv_nxtinfo; 203 }; 204 205 #define SCTP_RECVV_NOINFO 0 206 #define SCTP_RECVV_RCVINFO 1 207 #define SCTP_RECVV_NXTINFO 2 208 #define SCTP_RECVV_RN 3 209 210 #define SCTP_SENDV_NOINFO 0 211 #define SCTP_SENDV_SNDINFO 1 212 #define SCTP_SENDV_PRINFO 2 213 #define SCTP_SENDV_AUTHINFO 3 214 #define SCTP_SENDV_SPA 4 215 216 struct sctp_sendv_spa { 217 uint32_t sendv_flags; 218 struct sctp_sndinfo sendv_sndinfo; 219 struct sctp_prinfo sendv_prinfo; 220 struct sctp_authinfo sendv_authinfo; 221 }; 222 223 #define SCTP_SEND_SNDINFO_VALID 0x00000001 224 #define SCTP_SEND_PRINFO_VALID 0x00000002 225 #define SCTP_SEND_AUTHINFO_VALID 0x00000004 226 227 struct sctp_snd_all_completes { 228 uint16_t sall_stream; 229 uint16_t sall_flags; 230 uint32_t sall_ppid; 231 uint32_t sall_context; 232 uint32_t sall_num_sent; 233 uint32_t sall_num_failed; 234 }; 235 236 /* Flags that go into the sinfo->sinfo_flags field */ 237 #define SCTP_NOTIFICATION 0x0010 /* next message is a notification */ 238 #define SCTP_COMPLETE 0x0020 /* next message is complete */ 239 #define SCTP_EOF 0x0100 /* Start shutdown procedures */ 240 #define SCTP_ABORT 0x0200 /* Send an ABORT to peer */ 241 #define SCTP_UNORDERED 0x0400 /* Message is un-ordered */ 242 #define SCTP_ADDR_OVER 0x0800 /* Override the primary-address */ 243 #define SCTP_SENDALL 0x1000 /* Send this on all associations */ 244 #define SCTP_EOR 0x2000 /* end of message signal */ 245 #define SCTP_SACK_IMMEDIATELY 0x4000 /* Set I-Bit */ 246 247 #define INVALID_SINFO_FLAG(x) (((x) & 0xfffffff0 \ 248 & ~(SCTP_EOF | SCTP_ABORT | SCTP_UNORDERED |\ 249 SCTP_ADDR_OVER | SCTP_SENDALL | SCTP_EOR |\ 250 SCTP_SACK_IMMEDIATELY)) != 0) 251 /* for the endpoint */ 252 253 /* The lower byte is an enumeration of PR-SCTP policies */ 254 #define SCTP_PR_SCTP_NONE 0x0000/* Reliable transfer */ 255 #define SCTP_PR_SCTP_TTL 0x0001/* Time based PR-SCTP */ 256 #define SCTP_PR_SCTP_BUF 0x0002/* Buffer based PR-SCTP */ 257 #define SCTP_PR_SCTP_RTX 0x0003/* Number of retransmissions based PR-SCTP */ 258 259 #define PR_SCTP_POLICY(x) ((x) & 0x0f) 260 #define PR_SCTP_ENABLED(x) (PR_SCTP_POLICY(x) != SCTP_PR_SCTP_NONE) 261 #define PR_SCTP_TTL_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_TTL) 262 #define PR_SCTP_BUF_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_BUF) 263 #define PR_SCTP_RTX_ENABLED(x) (PR_SCTP_POLICY(x) == SCTP_PR_SCTP_RTX) 264 #define PR_SCTP_INVALID_POLICY(x) (PR_SCTP_POLICY(x) > SCTP_PR_SCTP_RTX) 265 /* Stat's */ 266 struct sctp_pcbinfo { 267 uint32_t ep_count; 268 uint32_t asoc_count; 269 uint32_t laddr_count; 270 uint32_t raddr_count; 271 uint32_t chk_count; 272 uint32_t readq_count; 273 uint32_t free_chunks; 274 uint32_t stream_oque; 275 }; 276 277 struct sctp_sockstat { 278 sctp_assoc_t ss_assoc_id; 279 uint32_t ss_total_sndbuf; 280 uint32_t ss_total_recv_buf; 281 }; 282 283 /* 284 * notification event structures 285 */ 286 287 /* 288 * association change event 289 */ 290 struct sctp_assoc_change { 291 uint16_t sac_type; 292 uint16_t sac_flags; 293 uint32_t sac_length; 294 uint16_t sac_state; 295 uint16_t sac_error; 296 uint16_t sac_outbound_streams; 297 uint16_t sac_inbound_streams; 298 sctp_assoc_t sac_assoc_id; 299 }; 300 301 /* sac_state values */ 302 #define SCTP_COMM_UP 0x0001 303 #define SCTP_COMM_LOST 0x0002 304 #define SCTP_RESTART 0x0003 305 #define SCTP_SHUTDOWN_COMP 0x0004 306 #define SCTP_CANT_STR_ASSOC 0x0005 307 308 309 /* 310 * Address event 311 */ 312 struct sctp_paddr_change { 313 uint16_t spc_type; 314 uint16_t spc_flags; 315 uint32_t spc_length; 316 struct sockaddr_storage spc_aaddr; 317 uint32_t spc_state; 318 uint32_t spc_error; 319 sctp_assoc_t spc_assoc_id; 320 uint8_t spc_padding[4]; 321 }; 322 323 /* paddr state values */ 324 #define SCTP_ADDR_AVAILABLE 0x0001 325 #define SCTP_ADDR_UNREACHABLE 0x0002 326 #define SCTP_ADDR_REMOVED 0x0003 327 #define SCTP_ADDR_ADDED 0x0004 328 #define SCTP_ADDR_MADE_PRIM 0x0005 329 #define SCTP_ADDR_CONFIRMED 0x0006 330 331 #define SCTP_ACTIVE 0x0001 /* SCTP_ADDR_REACHABLE */ 332 #define SCTP_INACTIVE 0x0002 /* neither SCTP_ADDR_REACHABLE nor 333 * SCTP_ADDR_UNCONFIRMED */ 334 #define SCTP_UNCONFIRMED 0x0200 /* SCTP_ADDR_UNCONFIRMED */ 335 336 /* remote error events */ 337 struct sctp_remote_error { 338 uint16_t sre_type; 339 uint16_t sre_flags; 340 uint32_t sre_length; 341 uint16_t sre_error; 342 sctp_assoc_t sre_assoc_id; 343 uint8_t sre_data[4]; 344 }; 345 346 /* data send failure event */ 347 struct sctp_send_failed { 348 uint16_t ssf_type; 349 uint16_t ssf_flags; 350 uint32_t ssf_length; 351 uint32_t ssf_error; 352 struct sctp_sndrcvinfo ssf_info; 353 sctp_assoc_t ssf_assoc_id; 354 uint8_t ssf_data[]; 355 }; 356 357 /* flag that indicates state of data */ 358 #define SCTP_DATA_UNSENT 0x0001 /* inqueue never on wire */ 359 #define SCTP_DATA_SENT 0x0002 /* on wire at failure */ 360 361 /* shutdown event */ 362 struct sctp_shutdown_event { 363 uint16_t sse_type; 364 uint16_t sse_flags; 365 uint32_t sse_length; 366 sctp_assoc_t sse_assoc_id; 367 }; 368 369 /* Adaptation layer indication stuff */ 370 struct sctp_adaptation_event { 371 uint16_t sai_type; 372 uint16_t sai_flags; 373 uint32_t sai_length; 374 uint32_t sai_adaptation_ind; 375 sctp_assoc_t sai_assoc_id; 376 }; 377 378 struct sctp_setadaptation { 379 uint32_t ssb_adaptation_ind; 380 }; 381 382 /* compatible old spelling */ 383 struct sctp_adaption_event { 384 uint16_t sai_type; 385 uint16_t sai_flags; 386 uint32_t sai_length; 387 uint32_t sai_adaption_ind; 388 sctp_assoc_t sai_assoc_id; 389 }; 390 391 struct sctp_setadaption { 392 uint32_t ssb_adaption_ind; 393 }; 394 395 396 /* 397 * Partial Delivery API event 398 */ 399 struct sctp_pdapi_event { 400 uint16_t pdapi_type; 401 uint16_t pdapi_flags; 402 uint32_t pdapi_length; 403 uint32_t pdapi_indication; 404 uint16_t pdapi_stream; 405 uint16_t pdapi_seq; 406 sctp_assoc_t pdapi_assoc_id; 407 }; 408 409 /* indication values */ 410 #define SCTP_PARTIAL_DELIVERY_ABORTED 0x0001 411 412 413 /* 414 * authentication key event 415 */ 416 struct sctp_authkey_event { 417 uint16_t auth_type; 418 uint16_t auth_flags; 419 uint32_t auth_length; 420 uint16_t auth_keynumber; 421 uint16_t auth_altkeynumber; 422 uint32_t auth_indication; 423 sctp_assoc_t auth_assoc_id; 424 }; 425 426 /* indication values */ 427 #define SCTP_AUTH_NEWKEY 0x0001 428 #define SCTP_AUTH_NO_AUTH 0x0002 429 #define SCTP_AUTH_FREE_KEY 0x0003 430 431 432 struct sctp_sender_dry_event { 433 uint16_t sender_dry_type; 434 uint16_t sender_dry_flags; 435 uint32_t sender_dry_length; 436 sctp_assoc_t sender_dry_assoc_id; 437 }; 438 439 440 /* 441 * Stream reset event - subscribe to SCTP_STREAM_RESET_EVENT 442 */ 443 struct sctp_stream_reset_event { 444 uint16_t strreset_type; 445 uint16_t strreset_flags; 446 uint32_t strreset_length; 447 sctp_assoc_t strreset_assoc_id; 448 uint16_t strreset_stream_list[]; 449 }; 450 451 /* flags in stream_reset_event (strreset_flags) */ 452 #define SCTP_STREAM_RESET_DENIED 0x0004 /* SCTP_STRRESET_FAILED */ 453 #define SCTP_STREAM_RESET_FAILED 0x0008 /* SCTP_STRRESET_FAILED */ 454 #define SCTP_STREAM_CHANGED_DENIED 0x0010 455 456 /* 457 * Assoc reset event - subscribe to SCTP_ASSOC_RESET_EVENT 458 */ 459 struct sctp_assoc_reset_event { 460 uint16_t assocreset_type; 461 uint16_t assocreset_flags; 462 uint32_t assocreset_length; 463 sctp_assoc_t assocreset_assoc_id; 464 uint32_t assocreset_local_tsn; 465 uint32_t assocreset_remote_tsn; 466 }; 467 468 #define SCTP_ASSOC_RESET_DENIED 0x0004 469 #define SCTP_ASSOC_RESET_FAILED 0x0008 470 471 /* 472 * Stream change event - subscribe to SCTP_STREAM_CHANGE_EVENT 473 */ 474 struct sctp_stream_change_event { 475 uint16_t strchange_type; 476 uint16_t strchange_flags; 477 uint32_t strchange_length; 478 sctp_assoc_t strchange_assoc_id; 479 uint16_t strchange_instrms; 480 uint16_t strchange_outstrms; 481 }; 482 483 #define SCTP_STREAM_CHANGE_DENIED 0x0004 484 #define SCTP_STREAM_CHANGE_FAILED 0x0008 485 486 487 /* SCTP notification event */ 488 struct sctp_tlv { 489 uint16_t sn_type; 490 uint16_t sn_flags; 491 uint32_t sn_length; 492 }; 493 494 union sctp_notification { 495 struct sctp_tlv sn_header; 496 struct sctp_assoc_change sn_assoc_change; 497 struct sctp_paddr_change sn_paddr_change; 498 struct sctp_remote_error sn_remote_error; 499 struct sctp_send_failed sn_send_failed; 500 struct sctp_shutdown_event sn_shutdown_event; 501 struct sctp_adaptation_event sn_adaptation_event; 502 /* compatibility same as above */ 503 struct sctp_adaption_event sn_adaption_event; 504 struct sctp_pdapi_event sn_pdapi_event; 505 struct sctp_authkey_event sn_auth_event; 506 struct sctp_sender_dry_event sn_sender_dry_event; 507 struct sctp_stream_reset_event sn_strreset_event; 508 struct sctp_assoc_reset_event sn_assocreset_event; 509 struct sctp_stream_change_event sn_strchange_event; 510 511 }; 512 513 /* notification types */ 514 #define SCTP_ASSOC_CHANGE 0x0001 515 #define SCTP_PEER_ADDR_CHANGE 0x0002 516 #define SCTP_REMOTE_ERROR 0x0003 517 #define SCTP_SEND_FAILED 0x0004 518 #define SCTP_SHUTDOWN_EVENT 0x0005 519 #define SCTP_ADAPTATION_INDICATION 0x0006 520 /* same as above */ 521 #define SCTP_ADAPTION_INDICATION 0x0006 522 #define SCTP_PARTIAL_DELIVERY_EVENT 0x0007 523 #define SCTP_AUTHENTICATION_EVENT 0x0008 524 #define SCTP_STREAM_RESET_EVENT 0x0009 525 #define SCTP_SENDER_DRY_EVENT 0x000a 526 #define SCTP_NOTIFICATIONS_STOPPED_EVENT 0x000b /* we don't send this */ 527 #define SCTP_ASSOC_RESET_EVENT 0x000c 528 #define SCTP_STREAM_CHANGE_EVENT 0x000d 529 530 /* 531 * socket option structs 532 */ 533 534 struct sctp_paddrparams { 535 struct sockaddr_storage spp_address; 536 sctp_assoc_t spp_assoc_id; 537 uint32_t spp_hbinterval; 538 uint32_t spp_pathmtu; 539 uint32_t spp_flags; 540 uint32_t spp_ipv6_flowlabel; 541 uint16_t spp_pathmaxrxt; 542 uint8_t spp_dscp; 543 }; 544 545 #define spp_ipv4_tos spp_dscp 546 547 #define SPP_HB_ENABLE 0x00000001 548 #define SPP_HB_DISABLE 0x00000002 549 #define SPP_HB_DEMAND 0x00000004 550 #define SPP_PMTUD_ENABLE 0x00000008 551 #define SPP_PMTUD_DISABLE 0x00000010 552 #define SPP_HB_TIME_IS_ZERO 0x00000080 553 #define SPP_IPV6_FLOWLABEL 0x00000100 554 #define SPP_DSCP 0x00000200 555 #define SPP_IPV4_TOS SPP_DSCP 556 557 struct sctp_paddrthlds { 558 struct sockaddr_storage spt_address; 559 sctp_assoc_t spt_assoc_id; 560 uint16_t spt_pathmaxrxt; 561 uint16_t spt_pathpfthld; 562 }; 563 564 struct sctp_paddrinfo { 565 struct sockaddr_storage spinfo_address; 566 sctp_assoc_t spinfo_assoc_id; 567 int32_t spinfo_state; 568 uint32_t spinfo_cwnd; 569 uint32_t spinfo_srtt; 570 uint32_t spinfo_rto; 571 uint32_t spinfo_mtu; 572 }; 573 574 struct sctp_rtoinfo { 575 sctp_assoc_t srto_assoc_id; 576 uint32_t srto_initial; 577 uint32_t srto_max; 578 uint32_t srto_min; 579 }; 580 581 struct sctp_assocparams { 582 sctp_assoc_t sasoc_assoc_id; 583 uint32_t sasoc_peer_rwnd; 584 uint32_t sasoc_local_rwnd; 585 uint32_t sasoc_cookie_life; 586 uint16_t sasoc_asocmaxrxt; 587 uint16_t sasoc_number_peer_destinations; 588 }; 589 590 struct sctp_setprim { 591 struct sockaddr_storage ssp_addr; 592 sctp_assoc_t ssp_assoc_id; 593 uint8_t ssp_padding[4]; 594 }; 595 596 struct sctp_setpeerprim { 597 struct sockaddr_storage sspp_addr; 598 sctp_assoc_t sspp_assoc_id; 599 uint8_t sspp_padding[4]; 600 }; 601 602 struct sctp_getaddresses { 603 sctp_assoc_t sget_assoc_id; 604 /* addr is filled in for N * sockaddr_storage */ 605 struct sockaddr addr[1]; 606 }; 607 608 struct sctp_setstrm_timeout { 609 sctp_assoc_t ssto_assoc_id; 610 uint32_t ssto_timeout; 611 uint32_t ssto_streamid_start; 612 uint32_t ssto_streamid_end; 613 }; 614 615 struct sctp_status { 616 sctp_assoc_t sstat_assoc_id; 617 int32_t sstat_state; 618 uint32_t sstat_rwnd; 619 uint16_t sstat_unackdata; 620 uint16_t sstat_penddata; 621 uint16_t sstat_instrms; 622 uint16_t sstat_outstrms; 623 uint32_t sstat_fragmentation_point; 624 struct sctp_paddrinfo sstat_primary; 625 }; 626 627 /* 628 * AUTHENTICATION support 629 */ 630 /* SCTP_AUTH_CHUNK */ 631 struct sctp_authchunk { 632 uint8_t sauth_chunk; 633 }; 634 635 /* SCTP_AUTH_KEY */ 636 struct sctp_authkey { 637 sctp_assoc_t sca_assoc_id; 638 uint16_t sca_keynumber; 639 uint16_t sca_keylength; 640 uint8_t sca_key[]; 641 }; 642 643 /* SCTP_HMAC_IDENT */ 644 struct sctp_hmacalgo { 645 uint32_t shmac_number_of_idents; 646 uint16_t shmac_idents[]; 647 }; 648 649 /* AUTH hmac_id */ 650 #define SCTP_AUTH_HMAC_ID_RSVD 0x0000 651 #define SCTP_AUTH_HMAC_ID_SHA1 0x0001 /* default, mandatory */ 652 #define SCTP_AUTH_HMAC_ID_SHA256 0x0003 653 #define SCTP_AUTH_HMAC_ID_SHA224 0x0004 654 #define SCTP_AUTH_HMAC_ID_SHA384 0x0005 655 #define SCTP_AUTH_HMAC_ID_SHA512 0x0006 656 657 658 /* SCTP_AUTH_ACTIVE_KEY / SCTP_AUTH_DELETE_KEY */ 659 struct sctp_authkeyid { 660 sctp_assoc_t scact_assoc_id; 661 uint16_t scact_keynumber; 662 }; 663 664 /* SCTP_PEER_AUTH_CHUNKS / SCTP_LOCAL_AUTH_CHUNKS */ 665 struct sctp_authchunks { 666 sctp_assoc_t gauth_assoc_id; 667 uint8_t gauth_chunks[]; 668 }; 669 670 struct sctp_assoc_value { 671 sctp_assoc_t assoc_id; 672 uint32_t assoc_value; 673 }; 674 675 struct sctp_cc_option { 676 int option; 677 struct sctp_assoc_value aid_value; 678 }; 679 680 struct sctp_stream_value { 681 sctp_assoc_t assoc_id; 682 uint16_t stream_id; 683 uint16_t stream_value; 684 }; 685 686 struct sctp_assoc_ids { 687 uint32_t gaids_number_of_ids; 688 sctp_assoc_t gaids_assoc_id[]; 689 }; 690 691 struct sctp_sack_info { 692 sctp_assoc_t sack_assoc_id; 693 uint32_t sack_delay; 694 uint32_t sack_freq; 695 }; 696 697 struct sctp_timeouts { 698 sctp_assoc_t stimo_assoc_id; 699 uint32_t stimo_init; 700 uint32_t stimo_data; 701 uint32_t stimo_sack; 702 uint32_t stimo_shutdown; 703 uint32_t stimo_heartbeat; 704 uint32_t stimo_cookie; 705 uint32_t stimo_shutdownack; 706 }; 707 708 struct sctp_udpencaps { 709 struct sockaddr_storage sue_address; 710 sctp_assoc_t sue_assoc_id; 711 uint16_t sue_port; 712 }; 713 714 struct sctp_cwnd_args { 715 struct sctp_nets *net; /* network to *//* FIXME: LP64 issue */ 716 uint32_t cwnd_new_value;/* cwnd in k */ 717 uint32_t pseudo_cumack; 718 uint16_t inflight; /* flightsize in k */ 719 uint16_t cwnd_augment; /* increment to it */ 720 uint8_t meets_pseudo_cumack; 721 uint8_t need_new_pseudo_cumack; 722 uint8_t cnt_in_send; 723 uint8_t cnt_in_str; 724 }; 725 726 struct sctp_blk_args { 727 uint32_t onsb; /* in 1k bytes */ 728 uint32_t sndlen; /* len of send being attempted */ 729 uint32_t peer_rwnd; /* rwnd of peer */ 730 uint16_t send_sent_qcnt;/* chnk cnt */ 731 uint16_t stream_qcnt; /* chnk cnt */ 732 uint16_t chunks_on_oque;/* chunks out */ 733 uint16_t flight_size; /* flight size in k */ 734 }; 735 736 /* 737 * Max we can reset in one setting, note this is dictated not by the define 738 * but the size of a mbuf cluster so don't change this define and think you 739 * can specify more. You must do multiple resets if you want to reset more 740 * than SCTP_MAX_EXPLICIT_STR_RESET. 741 */ 742 #define SCTP_MAX_EXPLICT_STR_RESET 1000 743 744 struct sctp_reset_streams { 745 sctp_assoc_t srs_assoc_id; 746 uint16_t srs_flags; 747 uint16_t srs_number_streams; /* 0 == ALL */ 748 uint16_t srs_stream_list[]; /* list if strrst_num_streams is not 0 */ 749 }; 750 751 struct sctp_add_streams { 752 sctp_assoc_t sas_assoc_id; 753 uint16_t sas_instrms; 754 uint16_t sas_outstrms; 755 }; 756 757 struct sctp_get_nonce_values { 758 sctp_assoc_t gn_assoc_id; 759 uint32_t gn_peers_tag; 760 uint32_t gn_local_tag; 761 }; 762 763 /* Debugging logs */ 764 struct sctp_str_log { 765 void *stcb; /* FIXME: LP64 issue */ 766 uint32_t n_tsn; 767 uint32_t e_tsn; 768 uint16_t n_sseq; 769 uint16_t e_sseq; 770 uint16_t strm; 771 }; 772 773 struct sctp_sb_log { 774 void *stcb; /* FIXME: LP64 issue */ 775 uint32_t so_sbcc; 776 uint32_t stcb_sbcc; 777 uint32_t incr; 778 }; 779 780 struct sctp_fr_log { 781 uint32_t largest_tsn; 782 uint32_t largest_new_tsn; 783 uint32_t tsn; 784 }; 785 786 struct sctp_fr_map { 787 uint32_t base; 788 uint32_t cum; 789 uint32_t high; 790 }; 791 792 struct sctp_rwnd_log { 793 uint32_t rwnd; 794 uint32_t send_size; 795 uint32_t overhead; 796 uint32_t new_rwnd; 797 }; 798 799 struct sctp_mbcnt_log { 800 uint32_t total_queue_size; 801 uint32_t size_change; 802 uint32_t total_queue_mb_size; 803 uint32_t mbcnt_change; 804 }; 805 806 struct sctp_sack_log { 807 uint32_t cumack; 808 uint32_t oldcumack; 809 uint32_t tsn; 810 uint16_t numGaps; 811 uint16_t numDups; 812 }; 813 814 struct sctp_lock_log { 815 void *sock; /* FIXME: LP64 issue */ 816 void *inp; /* FIXME: LP64 issue */ 817 uint8_t tcb_lock; 818 uint8_t inp_lock; 819 uint8_t info_lock; 820 uint8_t sock_lock; 821 uint8_t sockrcvbuf_lock; 822 uint8_t socksndbuf_lock; 823 uint8_t create_lock; 824 uint8_t resv; 825 }; 826 827 struct sctp_rto_log { 828 void *net; /* FIXME: LP64 issue */ 829 uint32_t rtt; 830 }; 831 832 struct sctp_nagle_log { 833 void *stcb; /* FIXME: LP64 issue */ 834 uint32_t total_flight; 835 uint32_t total_in_queue; 836 uint16_t count_in_queue; 837 uint16_t count_in_flight; 838 }; 839 840 struct sctp_sbwake_log { 841 void *stcb; /* FIXME: LP64 issue */ 842 uint16_t send_q; 843 uint16_t sent_q; 844 uint16_t flight; 845 uint16_t wake_cnt; 846 uint8_t stream_qcnt; /* chnk cnt */ 847 uint8_t chunks_on_oque; /* chunks out */ 848 uint8_t sbflags; 849 uint8_t sctpflags; 850 }; 851 852 struct sctp_misc_info { 853 uint32_t log1; 854 uint32_t log2; 855 uint32_t log3; 856 uint32_t log4; 857 }; 858 859 struct sctp_log_closing { 860 void *inp; /* FIXME: LP64 issue */ 861 void *stcb; /* FIXME: LP64 issue */ 862 uint32_t sctp_flags; 863 uint16_t state; 864 int16_t loc; 865 }; 866 867 struct sctp_mbuf_log { 868 struct mbuf *mp; /* FIXME: LP64 issue */ 869 caddr_t ext; 870 caddr_t data; 871 uint16_t size; 872 uint8_t refcnt; 873 uint8_t mbuf_flags; 874 }; 875 876 struct sctp_cwnd_log { 877 uint64_t time_event; 878 uint8_t from; 879 uint8_t event_type; 880 uint8_t resv[2]; 881 union { 882 struct sctp_log_closing close; 883 struct sctp_blk_args blk; 884 struct sctp_cwnd_args cwnd; 885 struct sctp_str_log strlog; 886 struct sctp_fr_log fr; 887 struct sctp_fr_map map; 888 struct sctp_rwnd_log rwnd; 889 struct sctp_mbcnt_log mbcnt; 890 struct sctp_sack_log sack; 891 struct sctp_lock_log lock; 892 struct sctp_rto_log rto; 893 struct sctp_sb_log sb; 894 struct sctp_nagle_log nagle; 895 struct sctp_sbwake_log wake; 896 struct sctp_mbuf_log mb; 897 struct sctp_misc_info misc; 898 } x; 899 }; 900 901 struct sctp_cwnd_log_req { 902 int32_t num_in_log; /* Number in log */ 903 int32_t num_ret; /* Number returned */ 904 int32_t start_at; /* start at this one */ 905 int32_t end_at; /* end at this one */ 906 struct sctp_cwnd_log log[]; 907 }; 908 909 struct sctp_timeval { 910 uint32_t tv_sec; 911 uint32_t tv_usec; 912 }; 913 914 struct sctpstat { 915 struct sctp_timeval sctps_discontinuitytime; /* sctpStats 18 916 * (TimeStamp) */ 917 /* MIB according to RFC 3873 */ 918 uint32_t sctps_currestab; /* sctpStats 1 (Gauge32) */ 919 uint32_t sctps_activeestab; /* sctpStats 2 (Counter32) */ 920 uint32_t sctps_restartestab; 921 uint32_t sctps_collisionestab; 922 uint32_t sctps_passiveestab; /* sctpStats 3 (Counter32) */ 923 uint32_t sctps_aborted; /* sctpStats 4 (Counter32) */ 924 uint32_t sctps_shutdown;/* sctpStats 5 (Counter32) */ 925 uint32_t sctps_outoftheblue; /* sctpStats 6 (Counter32) */ 926 uint32_t sctps_checksumerrors; /* sctpStats 7 (Counter32) */ 927 uint32_t sctps_outcontrolchunks; /* sctpStats 8 (Counter64) */ 928 uint32_t sctps_outorderchunks; /* sctpStats 9 (Counter64) */ 929 uint32_t sctps_outunorderchunks; /* sctpStats 10 (Counter64) */ 930 uint32_t sctps_incontrolchunks; /* sctpStats 11 (Counter64) */ 931 uint32_t sctps_inorderchunks; /* sctpStats 12 (Counter64) */ 932 uint32_t sctps_inunorderchunks; /* sctpStats 13 (Counter64) */ 933 uint32_t sctps_fragusrmsgs; /* sctpStats 14 (Counter64) */ 934 uint32_t sctps_reasmusrmsgs; /* sctpStats 15 (Counter64) */ 935 uint32_t sctps_outpackets; /* sctpStats 16 (Counter64) */ 936 uint32_t sctps_inpackets; /* sctpStats 17 (Counter64) */ 937 938 /* input statistics: */ 939 uint32_t sctps_recvpackets; /* total input packets */ 940 uint32_t sctps_recvdatagrams; /* total input datagrams */ 941 uint32_t sctps_recvpktwithdata; /* total packets that had data */ 942 uint32_t sctps_recvsacks; /* total input SACK chunks */ 943 uint32_t sctps_recvdata;/* total input DATA chunks */ 944 uint32_t sctps_recvdupdata; /* total input duplicate DATA chunks */ 945 uint32_t sctps_recvheartbeat; /* total input HB chunks */ 946 uint32_t sctps_recvheartbeatack; /* total input HB-ACK chunks */ 947 uint32_t sctps_recvecne;/* total input ECNE chunks */ 948 uint32_t sctps_recvauth;/* total input AUTH chunks */ 949 uint32_t sctps_recvauthmissing; /* total input chunks missing AUTH */ 950 uint32_t sctps_recvivalhmacid; /* total number of invalid HMAC ids 951 * received */ 952 uint32_t sctps_recvivalkeyid; /* total number of invalid secret ids 953 * received */ 954 uint32_t sctps_recvauthfailed; /* total number of auth failed */ 955 uint32_t sctps_recvexpress; /* total fast path receives all one 956 * chunk */ 957 uint32_t sctps_recvexpressm; /* total fast path multi-part data */ 958 uint32_t sctps_recvnocrc; 959 uint32_t sctps_recvswcrc; 960 uint32_t sctps_recvhwcrc; 961 962 /* output statistics: */ 963 uint32_t sctps_sendpackets; /* total output packets */ 964 uint32_t sctps_sendsacks; /* total output SACKs */ 965 uint32_t sctps_senddata;/* total output DATA chunks */ 966 uint32_t sctps_sendretransdata; /* total output retransmitted DATA 967 * chunks */ 968 uint32_t sctps_sendfastretrans; /* total output fast retransmitted 969 * DATA chunks */ 970 uint32_t sctps_sendmultfastretrans; /* total FR's that happened 971 * more than once to same 972 * chunk (u-del multi-fr 973 * algo). */ 974 uint32_t sctps_sendheartbeat; /* total output HB chunks */ 975 uint32_t sctps_sendecne;/* total output ECNE chunks */ 976 uint32_t sctps_sendauth;/* total output AUTH chunks FIXME */ 977 uint32_t sctps_senderrors; /* ip_output error counter */ 978 uint32_t sctps_sendnocrc; 979 uint32_t sctps_sendswcrc; 980 uint32_t sctps_sendhwcrc; 981 /* PCKDROPREP statistics: */ 982 uint32_t sctps_pdrpfmbox; /* Packet drop from middle box */ 983 uint32_t sctps_pdrpfehos; /* P-drop from end host */ 984 uint32_t sctps_pdrpmbda;/* P-drops with data */ 985 uint32_t sctps_pdrpmbct;/* P-drops, non-data, non-endhost */ 986 uint32_t sctps_pdrpbwrpt; /* P-drop, non-endhost, bandwidth rep 987 * only */ 988 uint32_t sctps_pdrpcrupt; /* P-drop, not enough for chunk header */ 989 uint32_t sctps_pdrpnedat; /* P-drop, not enough data to confirm */ 990 uint32_t sctps_pdrppdbrk; /* P-drop, where process_chunk_drop 991 * said break */ 992 uint32_t sctps_pdrptsnnf; /* P-drop, could not find TSN */ 993 uint32_t sctps_pdrpdnfnd; /* P-drop, attempt reverse TSN lookup */ 994 uint32_t sctps_pdrpdiwnp; /* P-drop, e-host confirms zero-rwnd */ 995 uint32_t sctps_pdrpdizrw; /* P-drop, midbox confirms no space */ 996 uint32_t sctps_pdrpbadd;/* P-drop, data did not match TSN */ 997 uint32_t sctps_pdrpmark;/* P-drop, TSN's marked for Fast Retran */ 998 /* timeouts */ 999 uint32_t sctps_timoiterator; /* Number of iterator timers that 1000 * fired */ 1001 uint32_t sctps_timodata;/* Number of T3 data time outs */ 1002 uint32_t sctps_timowindowprobe; /* Number of window probe (T3) timers 1003 * that fired */ 1004 uint32_t sctps_timoinit;/* Number of INIT timers that fired */ 1005 uint32_t sctps_timosack;/* Number of sack timers that fired */ 1006 uint32_t sctps_timoshutdown; /* Number of shutdown timers that 1007 * fired */ 1008 uint32_t sctps_timoheartbeat; /* Number of heartbeat timers that 1009 * fired */ 1010 uint32_t sctps_timocookie; /* Number of times a cookie timeout 1011 * fired */ 1012 uint32_t sctps_timosecret; /* Number of times an endpoint changed 1013 * its cookie secret */ 1014 uint32_t sctps_timopathmtu; /* Number of PMTU timers that fired */ 1015 uint32_t sctps_timoshutdownack; /* Number of shutdown ack timers that 1016 * fired */ 1017 uint32_t sctps_timoshutdownguard; /* Number of shutdown guard 1018 * timers that fired */ 1019 uint32_t sctps_timostrmrst; /* Number of stream reset timers that 1020 * fired */ 1021 uint32_t sctps_timoearlyfr; /* Number of early FR timers that 1022 * fired */ 1023 uint32_t sctps_timoasconf; /* Number of times an asconf timer 1024 * fired */ 1025 uint32_t sctps_timodelprim; /* Number of times a prim_deleted 1026 * timer fired */ 1027 uint32_t sctps_timoautoclose; /* Number of times auto close timer 1028 * fired */ 1029 uint32_t sctps_timoassockill; /* Number of asoc free timers expired */ 1030 uint32_t sctps_timoinpkill; /* Number of inp free timers expired */ 1031 /* former early FR counters */ 1032 uint32_t sctps_spare[11]; 1033 /* others */ 1034 uint32_t sctps_hdrops; /* packet shorter than header */ 1035 uint32_t sctps_badsum; /* checksum error */ 1036 uint32_t sctps_noport; /* no endpoint for port */ 1037 uint32_t sctps_badvtag; /* bad v-tag */ 1038 uint32_t sctps_badsid; /* bad SID */ 1039 uint32_t sctps_nomem; /* no memory */ 1040 uint32_t sctps_fastretransinrtt; /* number of multiple FR in a 1041 * RTT window */ 1042 uint32_t sctps_markedretrans; 1043 uint32_t sctps_naglesent; /* nagle allowed sending */ 1044 uint32_t sctps_naglequeued; /* nagle doesn't allow sending */ 1045 uint32_t sctps_maxburstqueued; /* max burst doesn't allow sending */ 1046 uint32_t sctps_ifnomemqueued; /* look ahead tells us no memory in 1047 * interface ring buffer OR we had a 1048 * send error and are queuing one 1049 * send. */ 1050 uint32_t sctps_windowprobed; /* total number of window probes sent */ 1051 uint32_t sctps_lowlevelerr; /* total times an output error causes 1052 * us to clamp down on next user send. */ 1053 uint32_t sctps_lowlevelerrusr; /* total times sctp_senderrors were 1054 * caused from a user send from a user 1055 * invoked send not a sack response */ 1056 uint32_t sctps_datadropchklmt; /* Number of in data drops due to 1057 * chunk limit reached */ 1058 uint32_t sctps_datadroprwnd; /* Number of in data drops due to rwnd 1059 * limit reached */ 1060 uint32_t sctps_ecnereducedcwnd; /* Number of times a ECN reduced the 1061 * cwnd */ 1062 uint32_t sctps_vtagexpress; /* Used express lookup via vtag */ 1063 uint32_t sctps_vtagbogus; /* Collision in express lookup. */ 1064 uint32_t sctps_primary_randry; /* Number of times the sender ran dry 1065 * of user data on primary */ 1066 uint32_t sctps_cmt_randry; /* Same for above */ 1067 uint32_t sctps_slowpath_sack; /* Sacks the slow way */ 1068 uint32_t sctps_wu_sacks_sent; /* Window Update only sacks sent */ 1069 uint32_t sctps_sends_with_flags; /* number of sends with 1070 * sinfo_flags !=0 */ 1071 uint32_t sctps_sends_with_unord; /* number of unordered sends */ 1072 uint32_t sctps_sends_with_eof; /* number of sends with EOF flag set */ 1073 uint32_t sctps_sends_with_abort; /* number of sends with ABORT 1074 * flag set */ 1075 uint32_t sctps_protocol_drain_calls; /* number of times protocol 1076 * drain called */ 1077 uint32_t sctps_protocol_drains_done; /* number of times we did a 1078 * protocol drain */ 1079 uint32_t sctps_read_peeks; /* Number of times recv was called 1080 * with peek */ 1081 uint32_t sctps_cached_chk; /* Number of cached chunks used */ 1082 uint32_t sctps_cached_strmoq; /* Number of cached stream oq's used */ 1083 uint32_t sctps_left_abandon; /* Number of unread messages abandoned 1084 * by close */ 1085 uint32_t sctps_send_burst_avoid; /* Unused */ 1086 uint32_t sctps_send_cwnd_avoid; /* Send cwnd full avoidance, already 1087 * max burst inflight to net */ 1088 uint32_t sctps_fwdtsn_map_over; /* number of map array over-runs via 1089 * fwd-tsn's */ 1090 uint32_t sctps_queue_upd_ecne; /* Number of times we queued or 1091 * updated an ECN chunk on send queue */ 1092 uint32_t sctps_reserved[31]; /* Future ABI compat - remove int's 1093 * from here when adding new */ 1094 }; 1095 1096 #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1) 1097 #define SCTP_STAT_DECR(_x) SCTP_STAT_DECR_BY(_x,1) 1098 #if defined(__FreeBSD__) && defined(SMP) && defined(SCTP_USE_PERCPU_STAT) 1099 #define SCTP_STAT_INCR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x += _d) 1100 #define SCTP_STAT_DECR_BY(_x,_d) (SCTP_BASE_STATS[PCPU_GET(cpuid)]._x -= _d) 1101 #else 1102 #define SCTP_STAT_INCR_BY(_x,_d) atomic_add_int(&SCTP_BASE_STAT(_x), _d) 1103 #define SCTP_STAT_DECR_BY(_x,_d) atomic_subtract_int(&SCTP_BASE_STAT(_x), _d) 1104 #endif 1105 /* The following macros are for handling MIB values, */ 1106 #define SCTP_STAT_INCR_COUNTER32(_x) SCTP_STAT_INCR(_x) 1107 #define SCTP_STAT_INCR_COUNTER64(_x) SCTP_STAT_INCR(_x) 1108 #define SCTP_STAT_INCR_GAUGE32(_x) SCTP_STAT_INCR(_x) 1109 #define SCTP_STAT_DECR_COUNTER32(_x) SCTP_STAT_DECR(_x) 1110 #define SCTP_STAT_DECR_COUNTER64(_x) SCTP_STAT_DECR(_x) 1111 #define SCTP_STAT_DECR_GAUGE32(_x) SCTP_STAT_DECR(_x) 1112 1113 union sctp_sockstore { 1114 #if defined(INET) || !defined(_KERNEL) 1115 struct sockaddr_in sin; 1116 #endif 1117 #if defined(INET6) || !defined(_KERNEL) 1118 struct sockaddr_in6 sin6; 1119 #endif 1120 struct sockaddr sa; 1121 }; 1122 1123 1124 /***********************************/ 1125 /* And something for us old timers */ 1126 /***********************************/ 1127 1128 #ifndef ntohll 1129 #include <sys/endian.h> 1130 #define ntohll(x) be64toh(x) 1131 #endif 1132 1133 #ifndef htonll 1134 #include <sys/endian.h> 1135 #define htonll(x) htobe64(x) 1136 #endif 1137 /***********************************/ 1138 1139 1140 struct xsctp_inpcb { 1141 uint32_t last; 1142 uint32_t flags; 1143 uint32_t features; 1144 uint32_t total_sends; 1145 uint32_t total_recvs; 1146 uint32_t total_nospaces; 1147 uint32_t fragmentation_point; 1148 uint16_t local_port; 1149 uint16_t qlen; 1150 uint16_t maxqlen; 1151 uint32_t extra_padding[32]; /* future */ 1152 }; 1153 1154 struct xsctp_tcb { 1155 union sctp_sockstore primary_addr; /* sctpAssocEntry 5/6 */ 1156 uint32_t last; 1157 uint32_t heartbeat_interval; /* sctpAssocEntry 7 */ 1158 uint32_t state; /* sctpAssocEntry 8 */ 1159 uint32_t in_streams; /* sctpAssocEntry 9 */ 1160 uint32_t out_streams; /* sctpAssocEntry 10 */ 1161 uint32_t max_nr_retrans;/* sctpAssocEntry 11 */ 1162 uint32_t primary_process; /* sctpAssocEntry 12 */ 1163 uint32_t T1_expireries; /* sctpAssocEntry 13 */ 1164 uint32_t T2_expireries; /* sctpAssocEntry 14 */ 1165 uint32_t retransmitted_tsns; /* sctpAssocEntry 15 */ 1166 uint32_t total_sends; 1167 uint32_t total_recvs; 1168 uint32_t local_tag; 1169 uint32_t remote_tag; 1170 uint32_t initial_tsn; 1171 uint32_t highest_tsn; 1172 uint32_t cumulative_tsn; 1173 uint32_t cumulative_tsn_ack; 1174 uint32_t mtu; 1175 uint32_t refcnt; 1176 uint16_t local_port; /* sctpAssocEntry 3 */ 1177 uint16_t remote_port; /* sctpAssocEntry 4 */ 1178 struct sctp_timeval start_time; /* sctpAssocEntry 16 */ 1179 struct sctp_timeval discontinuity_time; /* sctpAssocEntry 17 */ 1180 uint32_t peers_rwnd; 1181 sctp_assoc_t assoc_id; /* sctpAssocEntry 1 */ 1182 uint32_t extra_padding[32]; /* future */ 1183 }; 1184 1185 struct xsctp_laddr { 1186 union sctp_sockstore address; /* sctpAssocLocalAddrEntry 1/2 */ 1187 uint32_t last; 1188 struct sctp_timeval start_time; /* sctpAssocLocalAddrEntry 3 */ 1189 uint32_t extra_padding[32]; /* future */ 1190 }; 1191 1192 struct xsctp_raddr { 1193 union sctp_sockstore address; /* sctpAssocLocalRemEntry 1/2 */ 1194 uint32_t last; 1195 uint32_t rto; /* sctpAssocLocalRemEntry 5 */ 1196 uint32_t max_path_rtx; /* sctpAssocLocalRemEntry 6 */ 1197 uint32_t rtx; /* sctpAssocLocalRemEntry 7 */ 1198 uint32_t error_counter; /* */ 1199 uint32_t cwnd; /* */ 1200 uint32_t flight_size; /* */ 1201 uint32_t mtu; /* */ 1202 uint8_t active; /* sctpAssocLocalRemEntry 3 */ 1203 uint8_t confirmed; /* */ 1204 uint8_t heartbeat_enabled; /* sctpAssocLocalRemEntry 4 */ 1205 uint8_t potentially_failed; 1206 struct sctp_timeval start_time; /* sctpAssocLocalRemEntry 8 */ 1207 uint32_t rtt; 1208 uint32_t heartbeat_interval; 1209 uint32_t extra_padding[31]; /* future */ 1210 }; 1211 1212 #define SCTP_MAX_LOGGING_SIZE 30000 1213 #define SCTP_TRACE_PARAMS 6 /* This number MUST be even */ 1214 1215 struct sctp_log_entry { 1216 uint64_t timestamp; 1217 uint32_t subsys; 1218 uint32_t padding; 1219 uint32_t params[SCTP_TRACE_PARAMS]; 1220 }; 1221 1222 struct sctp_log { 1223 struct sctp_log_entry entry[SCTP_MAX_LOGGING_SIZE]; 1224 uint32_t index; 1225 uint32_t padding; 1226 }; 1227 1228 /* 1229 * Kernel defined for sctp_send 1230 */ 1231 #if defined(_KERNEL) || defined(__Userspace__) 1232 int 1233 sctp_lower_sosend(struct socket *so, 1234 struct sockaddr *addr, 1235 struct uio *uio, 1236 struct mbuf *i_pak, 1237 struct mbuf *control, 1238 int flags, 1239 struct sctp_sndrcvinfo *srcv 1240 ,struct thread *p 1241 ); 1242 1243 int 1244 sctp_sorecvmsg(struct socket *so, 1245 struct uio *uio, 1246 struct mbuf **mp, 1247 struct sockaddr *from, 1248 int fromlen, 1249 int *msg_flags, 1250 struct sctp_sndrcvinfo *sinfo, 1251 int filling_sinfo); 1252 1253 #endif 1254 1255 /* 1256 * API system calls 1257 */ 1258 #if !(defined(_KERNEL)) && !(defined(__Userspace__)) 1259 1260 __BEGIN_DECLS 1261 int sctp_peeloff __P((int, sctp_assoc_t)); 1262 int sctp_bindx __P((int, struct sockaddr *, int, int)); 1263 int sctp_connectx __P((int, const struct sockaddr *, int, sctp_assoc_t *)); 1264 int sctp_getaddrlen __P((sa_family_t)); 1265 int sctp_getpaddrs __P((int, sctp_assoc_t, struct sockaddr **)); 1266 void sctp_freepaddrs __P((struct sockaddr *)); 1267 int sctp_getladdrs __P((int, sctp_assoc_t, struct sockaddr **)); 1268 void sctp_freeladdrs __P((struct sockaddr *)); 1269 int sctp_opt_info __P((int, sctp_assoc_t, int, void *, socklen_t *)); 1270 1271 /* deprecated */ 1272 ssize_t sctp_sendmsg 1273 __P((int, const void *, size_t, const struct sockaddr *, 1274 socklen_t, uint32_t, uint32_t, uint16_t, uint32_t, uint32_t)); 1275 1276 /* deprecated */ 1277 ssize_t sctp_send __P((int, const void *, size_t, 1278 const struct sctp_sndrcvinfo *, int)); 1279 1280 /* deprecated */ 1281 ssize_t sctp_sendx __P((int, const void *, size_t, struct sockaddr *, 1282 int, struct sctp_sndrcvinfo *, int)); 1283 1284 /* deprecated */ 1285 ssize_t sctp_sendmsgx __P((int sd, const void *, size_t, struct sockaddr *, 1286 int, uint32_t, uint32_t, uint16_t, uint32_t, uint32_t)); 1287 1288 sctp_assoc_t sctp_getassocid __P((int, struct sockaddr *)); 1289 1290 /* deprecated */ 1291 ssize_t sctp_recvmsg __P((int, void *, size_t, struct sockaddr *, socklen_t *, 1292 struct sctp_sndrcvinfo *, int *)); 1293 1294 ssize_t sctp_sendv __P((int, const struct iovec *, int, struct sockaddr *, 1295 int, void *, socklen_t, unsigned int, int)); 1296 1297 ssize_t sctp_recvv __P((int, const struct iovec *, int, struct sockaddr *, 1298 socklen_t *, void *, socklen_t *, unsigned int *, int *)); 1299 1300 __END_DECLS 1301 1302 #endif /* !_KERNEL */ 1303 #endif /* !__sctp_uio_h__ */ 1304