1 /*- 2 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 4 * Copyright (c) 2008-2012, 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 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #ifndef _NETINET_SCTP_STRUCTS_H_ 37 #define _NETINET_SCTP_STRUCTS_H_ 38 39 #include <netinet/sctp_os.h> 40 #include <netinet/sctp_header.h> 41 #include <netinet/sctp_auth.h> 42 43 struct sctp_timer { 44 sctp_os_timer_t timer; 45 46 int type; 47 /* 48 * Depending on the timer type these will be setup and cast with the 49 * appropriate entity. 50 */ 51 void *ep; 52 void *tcb; 53 void *net; 54 void *vnet; 55 56 /* for sanity checking */ 57 void *self; 58 uint32_t ticks; 59 uint32_t stopped_from; 60 }; 61 62 63 struct sctp_foo_stuff { 64 struct sctp_inpcb *inp; 65 uint32_t lineno; 66 uint32_t ticks; 67 int updown; 68 }; 69 70 71 /* 72 * This is the information we track on each interface that we know about from 73 * the distant end. 74 */ 75 TAILQ_HEAD(sctpnetlisthead, sctp_nets); 76 77 struct sctp_stream_reset_list { 78 TAILQ_ENTRY(sctp_stream_reset_list) next_resp; 79 uint32_t tsn; 80 uint32_t number_entries; 81 uint16_t list_of_streams[]; 82 }; 83 84 TAILQ_HEAD(sctp_resethead, sctp_stream_reset_list); 85 86 /* 87 * Users of the iterator need to malloc a iterator with a call to 88 * sctp_initiate_iterator(inp_func, assoc_func, inp_func, pcb_flags, pcb_features, 89 * asoc_state, void-ptr-arg, uint32-arg, end_func, inp); 90 * 91 * Use the following two defines if you don't care what pcb flags are on the EP 92 * and/or you don't care what state the association is in. 93 * 94 * Note that if you specify an INP as the last argument then ONLY each 95 * association of that single INP will be executed upon. Note that the pcb 96 * flags STILL apply so if the inp you specify has different pcb_flags then 97 * what you put in pcb_flags nothing will happen. use SCTP_PCB_ANY_FLAGS to 98 * assure the inp you specify gets treated. 99 */ 100 #define SCTP_PCB_ANY_FLAGS 0x00000000 101 #define SCTP_PCB_ANY_FEATURES 0x00000000 102 #define SCTP_ASOC_ANY_STATE 0x00000000 103 104 typedef void (*asoc_func) (struct sctp_inpcb *, struct sctp_tcb *, void *ptr, 105 uint32_t val); 106 typedef int (*inp_func) (struct sctp_inpcb *, void *ptr, uint32_t val); 107 typedef void (*end_func) (void *ptr, uint32_t val); 108 109 #if defined(__FreeBSD__) && defined(SCTP_MCORE_INPUT) && defined(SMP) 110 /* whats on the mcore control struct */ 111 struct sctp_mcore_queue { 112 TAILQ_ENTRY(sctp_mcore_queue) next; 113 struct vnet *vn; 114 struct mbuf *m; 115 int off; 116 int v6; 117 }; 118 119 TAILQ_HEAD(sctp_mcore_qhead, sctp_mcore_queue); 120 121 struct sctp_mcore_ctrl { 122 SCTP_PROCESS_STRUCT thread_proc; 123 struct sctp_mcore_qhead que; 124 struct mtx core_mtx; 125 struct mtx que_mtx; 126 int running; 127 int cpuid; 128 }; 129 130 131 #endif 132 133 134 struct sctp_iterator { 135 TAILQ_ENTRY(sctp_iterator) sctp_nxt_itr; 136 struct vnet *vn; 137 struct sctp_timer tmr; 138 struct sctp_inpcb *inp; /* current endpoint */ 139 struct sctp_tcb *stcb; /* current* assoc */ 140 struct sctp_inpcb *next_inp; /* special hook to skip to */ 141 asoc_func function_assoc; /* per assoc function */ 142 inp_func function_inp; /* per endpoint function */ 143 inp_func function_inp_end; /* end INP function */ 144 end_func function_atend;/* iterator completion function */ 145 void *pointer; /* pointer for apply func to use */ 146 uint32_t val; /* value for apply func to use */ 147 uint32_t pcb_flags; /* endpoint flags being checked */ 148 uint32_t pcb_features; /* endpoint features being checked */ 149 uint32_t asoc_state; /* assoc state being checked */ 150 uint32_t iterator_flags; 151 uint8_t no_chunk_output; 152 uint8_t done_current_ep; 153 }; 154 155 /* iterator_flags values */ 156 #define SCTP_ITERATOR_DO_ALL_INP 0x00000001 157 #define SCTP_ITERATOR_DO_SINGLE_INP 0x00000002 158 159 160 TAILQ_HEAD(sctpiterators, sctp_iterator); 161 162 struct sctp_copy_all { 163 struct sctp_inpcb *inp; /* ep */ 164 struct mbuf *m; 165 struct sctp_sndrcvinfo sndrcv; 166 int sndlen; 167 int cnt_sent; 168 int cnt_failed; 169 }; 170 171 struct sctp_asconf_iterator { 172 struct sctpladdr list_of_work; 173 int cnt; 174 }; 175 176 struct iterator_control { 177 struct mtx ipi_iterator_wq_mtx; 178 struct mtx it_mtx; 179 SCTP_PROCESS_STRUCT thread_proc; 180 struct sctpiterators iteratorhead; 181 struct sctp_iterator *cur_it; 182 uint32_t iterator_running; 183 uint32_t iterator_flags; 184 }; 185 186 #define SCTP_ITERATOR_STOP_CUR_IT 0x00000004 187 #define SCTP_ITERATOR_STOP_CUR_INP 0x00000008 188 189 struct sctp_net_route { 190 sctp_rtentry_t *ro_rt; 191 void *ro_lle; 192 void *ro_ia; 193 int ro_flags; 194 union sctp_sockstore _l_addr; /* remote peer addr */ 195 struct sctp_ifa *_s_addr; /* our selected src addr */ 196 }; 197 198 struct htcp { 199 uint16_t alpha; /* Fixed point arith, << 7 */ 200 uint8_t beta; /* Fixed point arith, << 7 */ 201 uint8_t modeswitch; /* Delay modeswitch until we had at least one 202 * congestion event */ 203 uint32_t last_cong; /* Time since last congestion event end */ 204 uint32_t undo_last_cong; 205 uint16_t bytes_acked; 206 uint32_t bytecount; 207 uint32_t minRTT; 208 uint32_t maxRTT; 209 210 uint32_t undo_maxRTT; 211 uint32_t undo_old_maxB; 212 213 /* Bandwidth estimation */ 214 uint32_t minB; 215 uint32_t maxB; 216 uint32_t old_maxB; 217 uint32_t Bi; 218 uint32_t lasttime; 219 }; 220 221 struct rtcc_cc { 222 struct timeval tls; /* The time we started the sending */ 223 uint64_t lbw; /* Our last estimated bw */ 224 uint64_t lbw_rtt; /* RTT at bw estimate */ 225 uint64_t bw_bytes; /* The total bytes since this sending began */ 226 uint64_t bw_tot_time; /* The total time since sending began */ 227 uint64_t new_tot_time; /* temp holding the new value */ 228 uint64_t bw_bytes_at_last_rttc; /* What bw_bytes was at last rtt calc */ 229 uint32_t cwnd_at_bw_set;/* Cwnd at last bw saved - lbw */ 230 uint32_t vol_reduce; /* cnt of voluntary reductions */ 231 uint16_t steady_step; /* The number required to be in steady state */ 232 uint16_t step_cnt; /* The current number */ 233 uint8_t ret_from_eq; /* When all things are equal what do I return 234 * 0/1 - 1 no cc advance */ 235 uint8_t use_dccc_ecn; /* Flag to enable DCCC ECN */ 236 uint8_t tls_needs_set; /* Flag to indicate we need to set tls 0 or 1 237 * means set at send 2 not */ 238 uint8_t last_step_state;/* Last state if steady state stepdown is on */ 239 uint8_t rtt_set_this_sack; /* Flag saying this sack had RTT calc 240 * on it */ 241 uint8_t last_inst_ind; /* Last saved inst indication */ 242 }; 243 244 245 struct sctp_nets { 246 TAILQ_ENTRY(sctp_nets) sctp_next; /* next link */ 247 248 /* 249 * Things on the top half may be able to be split into a common 250 * structure shared by all. 251 */ 252 struct sctp_timer pmtu_timer; 253 struct sctp_timer hb_timer; 254 255 /* 256 * The following two in combination equate to a route entry for v6 257 * or v4. 258 */ 259 struct sctp_net_route ro; 260 261 /* mtu discovered so far */ 262 uint32_t mtu; 263 uint32_t ssthresh; /* not sure about this one for split */ 264 uint32_t last_cwr_tsn; 265 uint32_t cwr_window_tsn; 266 uint32_t ecn_ce_pkt_cnt; 267 uint32_t lost_cnt; 268 /* smoothed average things for RTT and RTO itself */ 269 int lastsa; 270 int lastsv; 271 uint64_t rtt; /* last measured rtt value in us */ 272 unsigned int RTO; 273 274 /* This is used for SHUTDOWN/SHUTDOWN-ACK/SEND or INIT timers */ 275 struct sctp_timer rxt_timer; 276 277 /* last time in seconds I sent to it */ 278 struct timeval last_sent_time; 279 union cc_control_data { 280 struct htcp htcp_ca; /* JRS - struct used in HTCP algorithm */ 281 struct rtcc_cc rtcc; /* rtcc module cc stuff */ 282 } cc_mod; 283 int ref_count; 284 285 /* Congestion stats per destination */ 286 /* 287 * flight size variables and such, sorry Vern, I could not avoid 288 * this if I wanted performance :> 289 */ 290 uint32_t flight_size; 291 uint32_t cwnd; /* actual cwnd */ 292 uint32_t prev_cwnd; /* cwnd before any processing */ 293 uint32_t ecn_prev_cwnd; /* ECN prev cwnd at first ecn_echo seen in new 294 * window */ 295 uint32_t partial_bytes_acked; /* in CA tracks when to incr a MTU */ 296 /* tracking variables to avoid the aloc/free in sack processing */ 297 unsigned int net_ack; 298 unsigned int net_ack2; 299 300 /* 301 * JRS - 5/8/07 - Variable to track last time a destination was 302 * active for CMT PF 303 */ 304 uint32_t last_active; 305 306 /* 307 * CMT variables (iyengar@cis.udel.edu) 308 */ 309 uint32_t this_sack_highest_newack; /* tracks highest TSN newly 310 * acked for a given dest in 311 * the current SACK. Used in 312 * SFR and HTNA algos */ 313 uint32_t pseudo_cumack; /* CMT CUC algorithm. Maintains next expected 314 * pseudo-cumack for this destination */ 315 uint32_t rtx_pseudo_cumack; /* CMT CUC algorithm. Maintains next 316 * expected pseudo-cumack for this 317 * destination */ 318 319 /* CMT fast recovery variables */ 320 uint32_t fast_recovery_tsn; 321 uint32_t heartbeat_random1; 322 uint32_t heartbeat_random2; 323 #ifdef INET6 324 uint32_t flowlabel; 325 #endif 326 uint8_t dscp; 327 328 struct timeval start_time; /* time when this net was created */ 329 uint32_t marked_retrans;/* number or DATA chunks marked for timer 330 * based retransmissions */ 331 uint32_t marked_fastretrans; 332 uint32_t heart_beat_delay; /* Heart Beat delay in ms */ 333 334 /* if this guy is ok or not ... status */ 335 uint16_t dest_state; 336 /* number of timeouts to consider the destination unreachable */ 337 uint16_t failure_threshold; 338 /* number of timeouts to consider the destination potentially failed */ 339 uint16_t pf_threshold; 340 /* error stats on the destination */ 341 uint16_t error_count; 342 /* UDP port number in case of UDP tunneling */ 343 uint16_t port; 344 345 uint8_t fast_retran_loss_recovery; 346 uint8_t will_exit_fast_recovery; 347 /* Flags that probably can be combined into dest_state */ 348 uint8_t fast_retran_ip; /* fast retransmit in progress */ 349 uint8_t hb_responded; 350 uint8_t saw_newack; /* CMT's SFR algorithm flag */ 351 uint8_t src_addr_selected; /* if we split we move */ 352 uint8_t indx_of_eligible_next_to_use; 353 uint8_t addr_is_local; /* its a local address (if known) could move 354 * in split */ 355 356 /* 357 * CMT variables (iyengar@cis.udel.edu) 358 */ 359 uint8_t find_pseudo_cumack; /* CMT CUC algorithm. Flag used to 360 * find a new pseudocumack. This flag 361 * is set after a new pseudo-cumack 362 * has been received and indicates 363 * that the sender should find the 364 * next pseudo-cumack expected for 365 * this destination */ 366 uint8_t find_rtx_pseudo_cumack; /* CMT CUCv2 algorithm. Flag used to 367 * find a new rtx-pseudocumack. This 368 * flag is set after a new 369 * rtx-pseudo-cumack has been received 370 * and indicates that the sender 371 * should find the next 372 * rtx-pseudo-cumack expected for this 373 * destination */ 374 uint8_t new_pseudo_cumack; /* CMT CUC algorithm. Flag used to 375 * indicate if a new pseudo-cumack or 376 * rtx-pseudo-cumack has been received */ 377 uint8_t window_probe; /* Doing a window probe? */ 378 uint8_t RTO_measured; /* Have we done the first measure */ 379 uint8_t last_hs_used; /* index into the last HS table entry we used */ 380 uint8_t lan_type; 381 uint8_t rto_needed; 382 uint32_t flowid; 383 #ifdef INVARIANTS 384 uint8_t flowidset; 385 #endif 386 }; 387 388 389 struct sctp_data_chunkrec { 390 uint32_t TSN_seq; /* the TSN of this transmit */ 391 uint16_t stream_seq; /* the stream sequence number of this transmit */ 392 uint16_t stream_number; /* the stream number of this guy */ 393 uint32_t payloadtype; 394 uint32_t context; /* from send */ 395 uint32_t cwnd_at_send; 396 /* 397 * part of the Highest sacked algorithm to be able to stroke counts 398 * on ones that are FR'd. 399 */ 400 uint32_t fast_retran_tsn; /* sending_seq at the time of FR */ 401 struct timeval timetodrop; /* time we drop it from queue */ 402 uint8_t doing_fast_retransmit; 403 uint8_t rcv_flags; /* flags pulled from data chunk on inbound for 404 * outbound holds sending flags for PR-SCTP. */ 405 uint8_t state_flags; 406 uint8_t chunk_was_revoked; 407 uint8_t fwd_tsn_cnt; 408 }; 409 410 TAILQ_HEAD(sctpchunk_listhead, sctp_tmit_chunk); 411 412 /* The lower byte is used to enumerate PR_SCTP policies */ 413 #define CHUNK_FLAGS_PR_SCTP_TTL SCTP_PR_SCTP_TTL 414 #define CHUNK_FLAGS_PR_SCTP_BUF SCTP_PR_SCTP_BUF 415 #define CHUNK_FLAGS_PR_SCTP_RTX SCTP_PR_SCTP_RTX 416 417 /* The upper byte is used as a bit mask */ 418 #define CHUNK_FLAGS_FRAGMENT_OK 0x0100 419 420 struct chk_id { 421 uint16_t id; 422 uint16_t can_take_data; 423 }; 424 425 426 struct sctp_tmit_chunk { 427 union { 428 struct sctp_data_chunkrec data; 429 struct chk_id chunk_id; 430 } rec; 431 struct sctp_association *asoc; /* bp to asoc this belongs to */ 432 struct timeval sent_rcv_time; /* filled in if RTT being calculated */ 433 struct mbuf *data; /* pointer to mbuf chain of data */ 434 struct mbuf *last_mbuf; /* pointer to last mbuf in chain */ 435 struct sctp_nets *whoTo; 436 TAILQ_ENTRY(sctp_tmit_chunk) sctp_next; /* next link */ 437 int32_t sent; /* the send status */ 438 uint16_t snd_count; /* number of times I sent */ 439 uint16_t flags; /* flags, such as FRAGMENT_OK */ 440 uint16_t send_size; 441 uint16_t book_size; 442 uint16_t mbcnt; 443 uint16_t auth_keyid; 444 uint8_t holds_key_ref; /* flag if auth keyid refcount is held */ 445 uint8_t pad_inplace; 446 uint8_t do_rtt; 447 uint8_t book_size_scale; 448 uint8_t no_fr_allowed; 449 uint8_t copy_by_ref; 450 uint8_t window_probe; 451 }; 452 453 /* 454 * The first part of this structure MUST be the entire sinfo structure. Maybe 455 * I should have made it a sub structure... we can circle back later and do 456 * that if we want. 457 */ 458 struct sctp_queued_to_read { /* sinfo structure Pluse more */ 459 uint16_t sinfo_stream; /* off the wire */ 460 uint16_t sinfo_ssn; /* off the wire */ 461 uint16_t sinfo_flags; /* SCTP_UNORDERED from wire use SCTP_EOF for 462 * EOR */ 463 uint32_t sinfo_ppid; /* off the wire */ 464 uint32_t sinfo_context; /* pick this up from assoc def context? */ 465 uint32_t sinfo_timetolive; /* not used by kernel */ 466 uint32_t sinfo_tsn; /* Use this in reassembly as first TSN */ 467 uint32_t sinfo_cumtsn; /* Use this in reassembly as last TSN */ 468 sctp_assoc_t sinfo_assoc_id; /* our assoc id */ 469 /* Non sinfo stuff */ 470 uint32_t length; /* length of data */ 471 uint32_t held_length; /* length held in sb */ 472 struct sctp_nets *whoFrom; /* where it came from */ 473 struct mbuf *data; /* front of the mbuf chain of data with 474 * PKT_HDR */ 475 struct mbuf *tail_mbuf; /* used for multi-part data */ 476 struct mbuf *aux_data; /* used to hold/cache control if o/s does not 477 * take it from us */ 478 struct sctp_tcb *stcb; /* assoc, used for window update */ 479 TAILQ_ENTRY(sctp_queued_to_read) next; 480 uint16_t port_from; 481 uint16_t spec_flags; /* Flags to hold the notification field */ 482 uint8_t do_not_ref_stcb; 483 uint8_t end_added; 484 uint8_t pdapi_aborted; 485 uint8_t some_taken; 486 }; 487 488 /* This data structure will be on the outbound 489 * stream queues. Data will be pulled off from 490 * the front of the mbuf data and chunk-ified 491 * by the output routines. We will custom 492 * fit every chunk we pull to the send/sent 493 * queue to make up the next full packet 494 * if we can. An entry cannot be removed 495 * from the stream_out queue until 496 * the msg_is_complete flag is set. This 497 * means at times data/tail_mbuf MIGHT 498 * be NULL.. If that occurs it happens 499 * for one of two reasons. Either the user 500 * is blocked on a send() call and has not 501 * awoken to copy more data down... OR 502 * the user is in the explict MSG_EOR mode 503 * and wrote some data, but has not completed 504 * sending. 505 */ 506 struct sctp_stream_queue_pending { 507 struct mbuf *data; 508 struct mbuf *tail_mbuf; 509 struct timeval ts; 510 struct sctp_nets *net; 511 TAILQ_ENTRY(sctp_stream_queue_pending) next; 512 TAILQ_ENTRY(sctp_stream_queue_pending) ss_next; 513 uint32_t length; 514 uint32_t timetolive; 515 uint32_t ppid; 516 uint32_t context; 517 uint16_t sinfo_flags; 518 uint16_t stream; 519 uint16_t act_flags; 520 uint16_t auth_keyid; 521 uint8_t holds_key_ref; 522 uint8_t msg_is_complete; 523 uint8_t some_taken; 524 uint8_t sender_all_done; 525 uint8_t put_last_out; 526 uint8_t discard_rest; 527 }; 528 529 /* 530 * this struct contains info that is used to track inbound stream data and 531 * help with ordering. 532 */ 533 TAILQ_HEAD(sctpwheelunrel_listhead, sctp_stream_in); 534 struct sctp_stream_in { 535 struct sctp_readhead inqueue; 536 uint16_t stream_no; 537 uint16_t last_sequence_delivered; /* used for re-order */ 538 uint8_t delivery_started; 539 }; 540 541 TAILQ_HEAD(sctpwheel_listhead, sctp_stream_out); 542 TAILQ_HEAD(sctplist_listhead, sctp_stream_queue_pending); 543 544 /* Round-robin schedulers */ 545 struct ss_rr { 546 /* next link in wheel */ 547 TAILQ_ENTRY(sctp_stream_out) next_spoke; 548 }; 549 550 /* Priority scheduler */ 551 struct ss_prio { 552 /* next link in wheel */ 553 TAILQ_ENTRY(sctp_stream_out) next_spoke; 554 /* priority id */ 555 uint16_t priority; 556 }; 557 558 /* Fair Bandwidth scheduler */ 559 struct ss_fb { 560 /* next link in wheel */ 561 TAILQ_ENTRY(sctp_stream_out) next_spoke; 562 /* stores message size */ 563 int32_t rounds; 564 }; 565 566 /* 567 * This union holds all data necessary for 568 * different stream schedulers. 569 */ 570 union scheduling_data { 571 struct sctpwheel_listhead out_wheel; 572 struct sctplist_listhead out_list; 573 }; 574 575 /* 576 * This union holds all parameters per stream 577 * necessary for different stream schedulers. 578 */ 579 union scheduling_parameters { 580 struct ss_rr rr; 581 struct ss_prio prio; 582 struct ss_fb fb; 583 }; 584 585 /* This struct is used to track the traffic on outbound streams */ 586 struct sctp_stream_out { 587 struct sctp_streamhead outqueue; 588 union scheduling_parameters ss_params; 589 uint32_t chunks_on_queues; 590 #if defined(SCTP_DETAILED_STR_STATS) 591 uint32_t abandoned_unsent[SCTP_PR_SCTP_MAX + 1]; 592 uint32_t abandoned_sent[SCTP_PR_SCTP_MAX + 1]; 593 #else 594 /* Only the aggregation */ 595 uint32_t abandoned_unsent[1]; 596 uint32_t abandoned_sent[1]; 597 #endif 598 uint16_t stream_no; 599 uint16_t next_sequence_send; /* next one I expect to send out */ 600 uint8_t last_msg_incomplete; 601 }; 602 603 /* used to keep track of the addresses yet to try to add/delete */ 604 TAILQ_HEAD(sctp_asconf_addrhead, sctp_asconf_addr); 605 struct sctp_asconf_addr { 606 TAILQ_ENTRY(sctp_asconf_addr) next; 607 struct sctp_asconf_addr_param ap; 608 struct sctp_ifa *ifa; /* save the ifa for add/del ip */ 609 uint8_t sent; /* has this been sent yet? */ 610 uint8_t special_del; /* not to be used in lookup */ 611 }; 612 613 struct sctp_scoping { 614 uint8_t ipv4_addr_legal; 615 uint8_t ipv6_addr_legal; 616 uint8_t loopback_scope; 617 uint8_t ipv4_local_scope; 618 uint8_t local_scope; 619 uint8_t site_scope; 620 }; 621 622 #define SCTP_TSN_LOG_SIZE 40 623 624 struct sctp_tsn_log { 625 void *stcb; 626 uint32_t tsn; 627 uint16_t strm; 628 uint16_t seq; 629 uint16_t sz; 630 uint16_t flgs; 631 uint16_t in_pos; 632 uint16_t in_out; 633 }; 634 635 #define SCTP_FS_SPEC_LOG_SIZE 200 636 struct sctp_fs_spec_log { 637 uint32_t sent; 638 uint32_t total_flight; 639 uint32_t tsn; 640 uint16_t book; 641 uint8_t incr; 642 uint8_t decr; 643 }; 644 645 /* This struct is here to cut out the compatiabilty 646 * pad that bulks up both the inp and stcb. The non 647 * pad portion MUST stay in complete sync with 648 * sctp_sndrcvinfo... i.e. if sinfo_xxxx is added 649 * this must be done here too. 650 */ 651 struct sctp_nonpad_sndrcvinfo { 652 uint16_t sinfo_stream; 653 uint16_t sinfo_ssn; 654 uint16_t sinfo_flags; 655 uint32_t sinfo_ppid; 656 uint32_t sinfo_context; 657 uint32_t sinfo_timetolive; 658 uint32_t sinfo_tsn; 659 uint32_t sinfo_cumtsn; 660 sctp_assoc_t sinfo_assoc_id; 661 uint16_t sinfo_keynumber; 662 uint16_t sinfo_keynumber_valid; 663 }; 664 665 /* 666 * JRS - Structure to hold function pointers to the functions responsible 667 * for congestion control. 668 */ 669 670 struct sctp_cc_functions { 671 void (*sctp_set_initial_cc_param) (struct sctp_tcb *stcb, struct sctp_nets *net); 672 void (*sctp_cwnd_update_after_sack) (struct sctp_tcb *stcb, 673 struct sctp_association *asoc, 674 int accum_moved, int reneged_all, int will_exit); 675 void (*sctp_cwnd_update_exit_pf) (struct sctp_tcb *stcb, struct sctp_nets *net); 676 void (*sctp_cwnd_update_after_fr) (struct sctp_tcb *stcb, 677 struct sctp_association *asoc); 678 void (*sctp_cwnd_update_after_timeout) (struct sctp_tcb *stcb, 679 struct sctp_nets *net); 680 void (*sctp_cwnd_update_after_ecn_echo) (struct sctp_tcb *stcb, 681 struct sctp_nets *net, int in_window, int num_pkt_lost); 682 void (*sctp_cwnd_update_after_packet_dropped) (struct sctp_tcb *stcb, 683 struct sctp_nets *net, struct sctp_pktdrop_chunk *cp, 684 uint32_t * bottle_bw, uint32_t * on_queue); 685 void (*sctp_cwnd_update_after_output) (struct sctp_tcb *stcb, 686 struct sctp_nets *net, int burst_limit); 687 void (*sctp_cwnd_update_packet_transmitted) (struct sctp_tcb *stcb, 688 struct sctp_nets *net); 689 void (*sctp_cwnd_update_tsn_acknowledged) (struct sctp_nets *net, 690 struct sctp_tmit_chunk *); 691 void (*sctp_cwnd_new_transmission_begins) (struct sctp_tcb *stcb, 692 struct sctp_nets *net); 693 void (*sctp_cwnd_prepare_net_for_sack) (struct sctp_tcb *stcb, 694 struct sctp_nets *net); 695 int (*sctp_cwnd_socket_option) (struct sctp_tcb *stcb, int set, struct sctp_cc_option *); 696 void (*sctp_rtt_calculated) (struct sctp_tcb *, struct sctp_nets *, struct timeval *); 697 }; 698 699 /* 700 * RS - Structure to hold function pointers to the functions responsible 701 * for stream scheduling. 702 */ 703 struct sctp_ss_functions { 704 void (*sctp_ss_init) (struct sctp_tcb *stcb, struct sctp_association *asoc, 705 int holds_lock); 706 void (*sctp_ss_clear) (struct sctp_tcb *stcb, struct sctp_association *asoc, 707 int clear_values, int holds_lock); 708 void (*sctp_ss_init_stream) (struct sctp_stream_out *strq, struct sctp_stream_out *with_strq); 709 void (*sctp_ss_add_to_stream) (struct sctp_tcb *stcb, struct sctp_association *asoc, 710 struct sctp_stream_out *strq, struct sctp_stream_queue_pending *sp, int holds_lock); 711 int (*sctp_ss_is_empty) (struct sctp_tcb *stcb, struct sctp_association *asoc); 712 void (*sctp_ss_remove_from_stream) (struct sctp_tcb *stcb, struct sctp_association *asoc, 713 struct sctp_stream_out *strq, struct sctp_stream_queue_pending *sp, int holds_lock); 714 struct sctp_stream_out *(*sctp_ss_select_stream) (struct sctp_tcb *stcb, 715 struct sctp_nets *net, struct sctp_association *asoc); 716 void (*sctp_ss_scheduled) (struct sctp_tcb *stcb, struct sctp_nets *net, 717 struct sctp_association *asoc, struct sctp_stream_out *strq, int moved_how_much); 718 void (*sctp_ss_packet_done) (struct sctp_tcb *stcb, struct sctp_nets *net, 719 struct sctp_association *asoc); 720 int (*sctp_ss_get_value) (struct sctp_tcb *stcb, struct sctp_association *asoc, 721 struct sctp_stream_out *strq, uint16_t * value); 722 int (*sctp_ss_set_value) (struct sctp_tcb *stcb, struct sctp_association *asoc, 723 struct sctp_stream_out *strq, uint16_t value); 724 }; 725 726 /* used to save ASCONF chunks for retransmission */ 727 TAILQ_HEAD(sctp_asconf_head, sctp_asconf); 728 struct sctp_asconf { 729 TAILQ_ENTRY(sctp_asconf) next; 730 uint32_t serial_number; 731 uint16_t snd_count; 732 struct mbuf *data; 733 uint16_t len; 734 }; 735 736 /* used to save ASCONF-ACK chunks for retransmission */ 737 TAILQ_HEAD(sctp_asconf_ackhead, sctp_asconf_ack); 738 struct sctp_asconf_ack { 739 TAILQ_ENTRY(sctp_asconf_ack) next; 740 uint32_t serial_number; 741 struct sctp_nets *last_sent_to; 742 struct mbuf *data; 743 uint16_t len; 744 }; 745 746 /* 747 * Here we have information about each individual association that we track. 748 * We probably in production would be more dynamic. But for ease of 749 * implementation we will have a fixed array that we hunt for in a linear 750 * fashion. 751 */ 752 struct sctp_association { 753 /* association state */ 754 int state; 755 756 /* queue of pending addrs to add/delete */ 757 struct sctp_asconf_addrhead asconf_queue; 758 759 struct timeval time_entered; /* time we entered state */ 760 struct timeval time_last_rcvd; 761 struct timeval time_last_sent; 762 struct timeval time_last_sat_advance; 763 struct sctp_nonpad_sndrcvinfo def_send; 764 765 /* timers and such */ 766 struct sctp_timer dack_timer; /* Delayed ack timer */ 767 struct sctp_timer asconf_timer; /* asconf */ 768 struct sctp_timer strreset_timer; /* stream reset */ 769 struct sctp_timer shut_guard_timer; /* shutdown guard */ 770 struct sctp_timer autoclose_timer; /* automatic close timer */ 771 struct sctp_timer delayed_event_timer; /* timer for delayed events */ 772 struct sctp_timer delete_prim_timer; /* deleting primary dst */ 773 774 /* list of restricted local addresses */ 775 struct sctpladdr sctp_restricted_addrs; 776 777 /* last local address pending deletion (waiting for an address add) */ 778 struct sctp_ifa *asconf_addr_del_pending; 779 /* Deleted primary destination (used to stop timer) */ 780 struct sctp_nets *deleted_primary; 781 782 struct sctpnetlisthead nets; /* remote address list */ 783 784 /* Free chunk list */ 785 struct sctpchunk_listhead free_chunks; 786 787 /* Control chunk queue */ 788 struct sctpchunk_listhead control_send_queue; 789 790 /* ASCONF chunk queue */ 791 struct sctpchunk_listhead asconf_send_queue; 792 793 /* 794 * Once a TSN hits the wire it is moved to the sent_queue. We 795 * maintain two counts here (don't know if any but retran_cnt is 796 * needed). The idea is that the sent_queue_retran_cnt reflects how 797 * many chunks have been marked for retranmission by either T3-rxt 798 * or FR. 799 */ 800 struct sctpchunk_listhead sent_queue; 801 struct sctpchunk_listhead send_queue; 802 803 /* re-assembly queue for fragmented chunks on the inbound path */ 804 struct sctpchunk_listhead reasmqueue; 805 806 /* Scheduling queues */ 807 union scheduling_data ss_data; 808 809 /* 810 * This pointer will be set to NULL most of the time. But when we 811 * have a fragmented message, where we could not get out all of the 812 * message at the last send then this will point to the stream to go 813 * get data from. 814 */ 815 struct sctp_stream_out *locked_on_sending; 816 817 /* If an iterator is looking at me, this is it */ 818 struct sctp_iterator *stcb_starting_point_for_iterator; 819 820 /* ASCONF save the last ASCONF-ACK so we can resend it if necessary */ 821 struct sctp_asconf_ackhead asconf_ack_sent; 822 823 /* 824 * pointer to last stream reset queued to control queue by us with 825 * requests. 826 */ 827 struct sctp_tmit_chunk *str_reset; 828 /* 829 * if Source Address Selection happening, this will rotate through 830 * the link list. 831 */ 832 struct sctp_laddr *last_used_address; 833 834 /* stream arrays */ 835 struct sctp_stream_in *strmin; 836 struct sctp_stream_out *strmout; 837 uint8_t *mapping_array; 838 /* primary destination to use */ 839 struct sctp_nets *primary_destination; 840 struct sctp_nets *alternate; /* If primary is down or PF */ 841 /* For CMT */ 842 struct sctp_nets *last_net_cmt_send_started; 843 /* last place I got a data chunk from */ 844 struct sctp_nets *last_data_chunk_from; 845 /* last place I got a control from */ 846 struct sctp_nets *last_control_chunk_from; 847 848 /* circular looking for output selection */ 849 struct sctp_stream_out *last_out_stream; 850 851 /* 852 * wait to the point the cum-ack passes req->send_reset_at_tsn for 853 * any req on the list. 854 */ 855 struct sctp_resethead resetHead; 856 857 /* queue of chunks waiting to be sent into the local stack */ 858 struct sctp_readhead pending_reply_queue; 859 860 /* JRS - the congestion control functions are in this struct */ 861 struct sctp_cc_functions cc_functions; 862 /* 863 * JRS - value to store the currently loaded congestion control 864 * module 865 */ 866 uint32_t congestion_control_module; 867 /* RS - the stream scheduling functions are in this struct */ 868 struct sctp_ss_functions ss_functions; 869 /* RS - value to store the currently loaded stream scheduling module */ 870 uint32_t stream_scheduling_module; 871 872 uint32_t vrf_id; 873 874 uint32_t cookie_preserve_req; 875 /* ASCONF next seq I am sending out, inits at init-tsn */ 876 uint32_t asconf_seq_out; 877 uint32_t asconf_seq_out_acked; 878 /* ASCONF last received ASCONF from peer, starts at peer's TSN-1 */ 879 uint32_t asconf_seq_in; 880 881 /* next seq I am sending in str reset messages */ 882 uint32_t str_reset_seq_out; 883 /* next seq I am expecting in str reset messages */ 884 uint32_t str_reset_seq_in; 885 886 /* various verification tag information */ 887 uint32_t my_vtag; /* The tag to be used. if assoc is re-initited 888 * by remote end, and I have unlocked this 889 * will be regenerated to a new random value. */ 890 uint32_t peer_vtag; /* The peers last tag */ 891 892 uint32_t my_vtag_nonce; 893 uint32_t peer_vtag_nonce; 894 895 uint32_t assoc_id; 896 897 /* This is the SCTP fragmentation threshold */ 898 uint32_t smallest_mtu; 899 900 /* 901 * Special hook for Fast retransmit, allows us to track the highest 902 * TSN that is NEW in this SACK if gap ack blocks are present. 903 */ 904 uint32_t this_sack_highest_gap; 905 906 /* 907 * The highest consecutive TSN that has been acked by peer on my 908 * sends 909 */ 910 uint32_t last_acked_seq; 911 912 /* The next TSN that I will use in sending. */ 913 uint32_t sending_seq; 914 915 /* Original seq number I used ??questionable to keep?? */ 916 uint32_t init_seq_number; 917 918 919 /* The Advanced Peer Ack Point, as required by the PR-SCTP */ 920 /* (A1 in Section 4.2) */ 921 uint32_t advanced_peer_ack_point; 922 923 /* 924 * The highest consequetive TSN at the bottom of the mapping array 925 * (for his sends). 926 */ 927 uint32_t cumulative_tsn; 928 /* 929 * Used to track the mapping array and its offset bits. This MAY be 930 * lower then cumulative_tsn. 931 */ 932 uint32_t mapping_array_base_tsn; 933 /* 934 * used to track highest TSN we have received and is listed in the 935 * mapping array. 936 */ 937 uint32_t highest_tsn_inside_map; 938 939 /* EY - new NR variables used for nr_sack based on mapping_array */ 940 uint8_t *nr_mapping_array; 941 uint32_t highest_tsn_inside_nr_map; 942 943 uint32_t fast_recovery_tsn; 944 uint32_t sat_t3_recovery_tsn; 945 uint32_t tsn_last_delivered; 946 /* 947 * For the pd-api we should re-write this a bit more efficent. We 948 * could have multiple sctp_queued_to_read's that we are building at 949 * once. Now we only do this when we get ready to deliver to the 950 * socket buffer. Note that we depend on the fact that the struct is 951 * "stuck" on the read queue until we finish all the pd-api. 952 */ 953 struct sctp_queued_to_read *control_pdapi; 954 955 uint32_t tsn_of_pdapi_last_delivered; 956 uint32_t pdapi_ppid; 957 uint32_t context; 958 uint32_t last_reset_action[SCTP_MAX_RESET_PARAMS]; 959 uint32_t last_sending_seq[SCTP_MAX_RESET_PARAMS]; 960 uint32_t last_base_tsnsent[SCTP_MAX_RESET_PARAMS]; 961 #ifdef SCTP_ASOCLOG_OF_TSNS 962 /* 963 * special log - This adds considerable size to the asoc, but 964 * provides a log that you can use to detect problems via kgdb. 965 */ 966 struct sctp_tsn_log in_tsnlog[SCTP_TSN_LOG_SIZE]; 967 struct sctp_tsn_log out_tsnlog[SCTP_TSN_LOG_SIZE]; 968 uint32_t cumack_log[SCTP_TSN_LOG_SIZE]; 969 uint32_t cumack_logsnt[SCTP_TSN_LOG_SIZE]; 970 uint16_t tsn_in_at; 971 uint16_t tsn_out_at; 972 uint16_t tsn_in_wrapped; 973 uint16_t tsn_out_wrapped; 974 uint16_t cumack_log_at; 975 uint16_t cumack_log_atsnt; 976 #endif /* SCTP_ASOCLOG_OF_TSNS */ 977 #ifdef SCTP_FS_SPEC_LOG 978 struct sctp_fs_spec_log fslog[SCTP_FS_SPEC_LOG_SIZE]; 979 uint16_t fs_index; 980 #endif 981 982 /* 983 * window state information and smallest MTU that I use to bound 984 * segmentation 985 */ 986 uint32_t peers_rwnd; 987 uint32_t my_rwnd; 988 uint32_t my_last_reported_rwnd; 989 uint32_t sctp_frag_point; 990 991 uint32_t total_output_queue_size; 992 993 uint32_t sb_cc; /* shadow of sb_cc */ 994 uint32_t sb_send_resv; /* amount reserved on a send */ 995 uint32_t my_rwnd_control_len; /* shadow of sb_mbcnt used for rwnd 996 * control */ 997 #ifdef INET6 998 uint32_t default_flowlabel; 999 #endif 1000 uint32_t pr_sctp_cnt; 1001 int ctrl_queue_cnt; /* could be removed REM - NO IT CAN'T!! RRS */ 1002 /* 1003 * All outbound datagrams queue into this list from the individual 1004 * stream queue. Here they get assigned a TSN and then await 1005 * sending. The stream seq comes when it is first put in the 1006 * individual str queue 1007 */ 1008 unsigned int stream_queue_cnt; 1009 unsigned int send_queue_cnt; 1010 unsigned int sent_queue_cnt; 1011 unsigned int sent_queue_cnt_removeable; 1012 /* 1013 * Number on sent queue that are marked for retran until this value 1014 * is 0 we only send one packet of retran'ed data. 1015 */ 1016 unsigned int sent_queue_retran_cnt; 1017 1018 unsigned int size_on_reasm_queue; 1019 unsigned int cnt_on_reasm_queue; 1020 unsigned int fwd_tsn_cnt; 1021 /* amount of data (bytes) currently in flight (on all destinations) */ 1022 unsigned int total_flight; 1023 /* Total book size in flight */ 1024 unsigned int total_flight_count; /* count of chunks used with 1025 * book total */ 1026 /* count of destinaton nets and list of destination nets */ 1027 unsigned int numnets; 1028 1029 /* Total error count on this association */ 1030 unsigned int overall_error_count; 1031 1032 unsigned int cnt_msg_on_sb; 1033 1034 /* All stream count of chunks for delivery */ 1035 unsigned int size_on_all_streams; 1036 unsigned int cnt_on_all_streams; 1037 1038 /* Heart Beat delay in ms */ 1039 uint32_t heart_beat_delay; 1040 1041 /* autoclose */ 1042 unsigned int sctp_autoclose_ticks; 1043 1044 /* how many preopen streams we have */ 1045 unsigned int pre_open_streams; 1046 1047 /* How many streams I support coming into me */ 1048 unsigned int max_inbound_streams; 1049 1050 /* the cookie life I award for any cookie, in seconds */ 1051 unsigned int cookie_life; 1052 /* time to delay acks for */ 1053 unsigned int delayed_ack; 1054 unsigned int old_delayed_ack; 1055 unsigned int sack_freq; 1056 unsigned int data_pkts_seen; 1057 1058 unsigned int numduptsns; 1059 int dup_tsns[SCTP_MAX_DUP_TSNS]; 1060 unsigned int initial_init_rto_max; /* initial RTO for INIT's */ 1061 unsigned int initial_rto; /* initial send RTO */ 1062 unsigned int minrto; /* per assoc RTO-MIN */ 1063 unsigned int maxrto; /* per assoc RTO-MAX */ 1064 1065 /* authentication fields */ 1066 sctp_auth_chklist_t *local_auth_chunks; 1067 sctp_auth_chklist_t *peer_auth_chunks; 1068 sctp_hmaclist_t *local_hmacs; /* local HMACs supported */ 1069 sctp_hmaclist_t *peer_hmacs; /* peer HMACs supported */ 1070 struct sctp_keyhead shared_keys; /* assoc's shared keys */ 1071 sctp_authinfo_t authinfo; /* randoms, cached keys */ 1072 /* 1073 * refcnt to block freeing when a sender or receiver is off coping 1074 * user data in. 1075 */ 1076 uint32_t refcnt; 1077 uint32_t chunks_on_out_queue; /* total chunks floating around, 1078 * locked by send socket buffer */ 1079 uint32_t peers_adaptation; 1080 uint16_t peer_hmac_id; /* peer HMAC id to send */ 1081 1082 /* 1083 * Being that we have no bag to collect stale cookies, and that we 1084 * really would not want to anyway.. we will count them in this 1085 * counter. We of course feed them to the pigeons right away (I have 1086 * always thought of pigeons as flying rats). 1087 */ 1088 uint16_t stale_cookie_count; 1089 1090 /* 1091 * For the partial delivery API, if up, invoked this is what last 1092 * TSN I delivered 1093 */ 1094 uint16_t str_of_pdapi; 1095 uint16_t ssn_of_pdapi; 1096 1097 /* counts of actual built streams. Allocation may be more however */ 1098 /* could re-arrange to optimize space here. */ 1099 uint16_t streamincnt; 1100 uint16_t streamoutcnt; 1101 uint16_t strm_realoutsize; 1102 uint16_t strm_pending_add_size; 1103 /* my maximum number of retrans of INIT and SEND */ 1104 /* copied from SCTP but should be individually setable */ 1105 uint16_t max_init_times; 1106 uint16_t max_send_times; 1107 1108 uint16_t def_net_failure; 1109 1110 uint16_t def_net_pf_threshold; 1111 1112 /* 1113 * lock flag: 0 is ok to send, 1+ (duals as a retran count) is 1114 * awaiting ACK 1115 */ 1116 uint16_t mapping_array_size; 1117 1118 uint16_t last_strm_seq_delivered; 1119 uint16_t last_strm_no_delivered; 1120 1121 uint16_t last_revoke_count; 1122 int16_t num_send_timers_up; 1123 1124 uint16_t stream_locked_on; 1125 uint16_t ecn_echo_cnt_onq; 1126 1127 uint16_t free_chunk_cnt; 1128 uint8_t stream_locked; 1129 uint8_t authenticated; /* packet authenticated ok */ 1130 /* 1131 * This flag indicates that a SACK need to be sent. Initially this 1132 * is 1 to send the first sACK immediately. 1133 */ 1134 uint8_t send_sack; 1135 1136 /* max burst of new packets into the network */ 1137 uint32_t max_burst; 1138 /* max burst of fast retransmit packets */ 1139 uint32_t fr_max_burst; 1140 1141 uint8_t sat_network; /* RTT is in range of sat net or greater */ 1142 uint8_t sat_network_lockout; /* lockout code */ 1143 uint8_t burst_limit_applied; /* Burst limit in effect at last send? */ 1144 /* flag goes on when we are doing a partial delivery api */ 1145 uint8_t hb_random_values[4]; 1146 uint8_t fragmented_delivery_inprogress; 1147 uint8_t fragment_flags; 1148 uint8_t last_flags_delivered; 1149 uint8_t hb_ect_randombit; 1150 uint8_t hb_random_idx; 1151 uint8_t default_dscp; 1152 uint8_t asconf_del_pending; /* asconf delete last addr pending */ 1153 1154 /* 1155 * This value, plus all other ack'd but above cum-ack is added 1156 * together to cross check against the bit that we have yet to 1157 * define (probably in the SACK). When the cum-ack is updated, this 1158 * sum is updated as well. 1159 */ 1160 1161 /* Flags whether an extension is supported or not */ 1162 uint8_t ecn_supported; 1163 uint8_t prsctp_supported; 1164 uint8_t auth_supported; 1165 uint8_t asconf_supported; 1166 uint8_t reconfig_supported; 1167 uint8_t nrsack_supported; 1168 uint8_t pktdrop_supported; 1169 1170 /* Did the peer make the stream config (add out) request */ 1171 uint8_t peer_req_out; 1172 1173 uint8_t local_strreset_support; 1174 1175 uint8_t peer_supports_nat; 1176 1177 struct sctp_scoping scope; 1178 /* flags to handle send alternate net tracking */ 1179 uint8_t used_alt_onsack; 1180 uint8_t used_alt_asconfack; 1181 uint8_t fast_retran_loss_recovery; 1182 uint8_t sat_t3_loss_recovery; 1183 uint8_t dropped_special_cnt; 1184 uint8_t seen_a_sack_this_pkt; 1185 uint8_t stream_reset_outstanding; 1186 uint8_t stream_reset_out_is_outstanding; 1187 uint8_t delayed_connection; 1188 uint8_t ifp_had_enobuf; 1189 uint8_t saw_sack_with_frags; 1190 uint8_t saw_sack_with_nr_frags; 1191 uint8_t in_asocid_hash; 1192 uint8_t assoc_up_sent; 1193 uint8_t adaptation_needed; 1194 uint8_t adaptation_sent; 1195 /* CMT variables */ 1196 uint8_t cmt_dac_pkts_rcvd; 1197 uint8_t sctp_cmt_on_off; 1198 uint8_t iam_blocking; 1199 uint8_t cookie_how[8]; 1200 /* JRS 5/21/07 - CMT PF variable */ 1201 uint8_t sctp_cmt_pf; 1202 uint8_t use_precise_time; 1203 uint64_t sctp_features; 1204 uint16_t port; /* remote UDP encapsulation port */ 1205 /* 1206 * The mapping array is used to track out of order sequences above 1207 * last_acked_seq. 0 indicates packet missing 1 indicates packet 1208 * rec'd. We slide it up every time we raise last_acked_seq and 0 1209 * trailing locactions out. If I get a TSN above the array 1210 * mappingArraySz, I discard the datagram and let retransmit happen. 1211 */ 1212 uint32_t marked_retrans; 1213 uint32_t timoinit; 1214 uint32_t timodata; 1215 uint32_t timosack; 1216 uint32_t timoshutdown; 1217 uint32_t timoheartbeat; 1218 uint32_t timocookie; 1219 uint32_t timoshutdownack; 1220 struct timeval start_time; 1221 struct timeval discontinuity_time; 1222 uint64_t abandoned_unsent[SCTP_PR_SCTP_MAX + 1]; 1223 uint64_t abandoned_sent[SCTP_PR_SCTP_MAX + 1]; 1224 }; 1225 1226 #endif 1227