1 /*- 2 * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are met: 6 * 7 * a) Redistributions of source code must retain the above copyright notice, 8 * this list of conditions and the following disclaimer. 9 * 10 * b) Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in 12 * the documentation and/or other materials provided with the distribution. 13 * 14 * c) Neither the name of Cisco Systems, Inc. nor the names of its 15 * contributors may be used to endorse or promote products derived 16 * from this software without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 20 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 28 * THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 /* $KAME: sctp_pcb.h,v 1.21 2005/07/16 01:18:47 suz Exp $ */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #ifndef __sctp_pcb_h__ 37 #define __sctp_pcb_h__ 38 39 #include <netinet/sctp_os.h> 40 #include <netinet/sctp.h> 41 #include <netinet/sctp_constants.h> 42 43 LIST_HEAD(sctppcbhead, sctp_inpcb); 44 LIST_HEAD(sctpasochead, sctp_tcb); 45 LIST_HEAD(sctpladdr, sctp_laddr); 46 LIST_HEAD(sctpvtaghead, sctp_tagblock); 47 LIST_HEAD(sctp_vrflist, sctp_vrf); 48 LIST_HEAD(sctp_ifnlist, sctp_ifn); 49 LIST_HEAD(sctp_ifalist, sctp_ifa); 50 TAILQ_HEAD(sctp_readhead, sctp_queued_to_read); 51 TAILQ_HEAD(sctp_streamhead, sctp_stream_queue_pending); 52 53 #include <netinet/sctp_structs.h> 54 #include <netinet/sctp_auth.h> 55 56 #define SCTP_PCBHASH_ALLADDR(port, mask) (port & mask) 57 #define SCTP_PCBHASH_ASOC(tag, mask) (tag & mask) 58 59 struct sctp_vrf { 60 LIST_ENTRY(sctp_vrf) next_vrf; 61 struct sctp_ifalist *vrf_addr_hash; 62 struct sctp_ifnlist ifnlist; 63 uint32_t vrf_id; 64 uint32_t tbl_id_v4; /* default v4 table id */ 65 uint32_t tbl_id_v6; /* default v6 table id */ 66 uint32_t total_ifa_count; 67 u_long vrf_addr_hashmark; 68 uint32_t refcount; 69 }; 70 71 struct sctp_ifn { 72 struct sctp_ifalist ifalist; 73 struct sctp_vrf *vrf; 74 LIST_ENTRY(sctp_ifn) next_ifn; 75 LIST_ENTRY(sctp_ifn) next_bucket; 76 void *ifn_p; /* never access without appropriate lock */ 77 uint32_t ifn_mtu; 78 uint32_t ifn_type; 79 uint32_t ifn_index; /* shorthand way to look at ifn for reference */ 80 uint32_t refcount; /* number of reference held should be >= 81 * ifa_count */ 82 uint32_t ifa_count; /* IFA's we hold (in our list - ifalist) */ 83 uint32_t num_v6; /* number of v6 addresses */ 84 uint32_t num_v4; /* number of v4 addresses */ 85 uint32_t registered_af; /* registered address family for i/f events */ 86 char ifn_name[SCTP_IFNAMSIZ]; 87 }; 88 89 /* SCTP local IFA flags */ 90 #define SCTP_ADDR_VALID 0x00000001 /* its up and active */ 91 #define SCTP_BEING_DELETED 0x00000002 /* being deleted, when 92 * refcount = 0. Note that it 93 * is pulled from the ifn list 94 * and ifa_p is nulled right 95 * away but it cannot be freed 96 * until the last *net 97 * pointing to it is deleted. */ 98 #define SCTP_ADDR_DEFER_USE 0x00000004 /* Hold off using this one */ 99 #define SCTP_ADDR_IFA_UNUSEABLE 0x00000008 100 101 struct sctp_ifa { 102 LIST_ENTRY(sctp_ifa) next_ifa; 103 LIST_ENTRY(sctp_ifa) next_bucket; 104 struct sctp_ifn *ifn_p; /* back pointer to parent ifn */ 105 void *ifa; /* pointer to ifa, needed for flag update for 106 * that we MUST lock appropriate locks. This 107 * is for V6. */ 108 union sctp_sockstore address; 109 uint32_t refcount; /* number of folks refering to this */ 110 uint32_t flags; 111 uint32_t localifa_flags; 112 uint32_t vrf_id; /* vrf_id of this addr (for deleting) */ 113 uint8_t src_is_loop; 114 uint8_t src_is_priv; 115 uint8_t src_is_glob; 116 uint8_t resv; 117 }; 118 119 struct sctp_laddr { 120 LIST_ENTRY(sctp_laddr) sctp_nxt_addr; /* next in list */ 121 struct sctp_ifa *ifa; 122 uint32_t action; /* Used during asconf and adding if no-zero 123 * src-addr selection will not consider this 124 * address. */ 125 struct timeval start_time; /* time when this address was created */ 126 }; 127 128 struct sctp_block_entry { 129 int error; 130 }; 131 132 struct sctp_timewait { 133 uint32_t tv_sec_at_expire; /* the seconds from boot to expire */ 134 uint32_t v_tag; /* the vtag that can not be reused */ 135 }; 136 137 struct sctp_tagblock { 138 LIST_ENTRY(sctp_tagblock) sctp_nxt_tagblock; 139 struct sctp_timewait vtag_block[SCTP_NUMBER_IN_VTAG_BLOCK]; 140 }; 141 142 struct sctp_epinfo { 143 struct sctpasochead *sctp_asochash; 144 u_long hashasocmark; 145 146 struct sctppcbhead *sctp_ephash; 147 u_long hashmark; 148 149 struct sctpasochead *sctp_restarthash; 150 u_long hashrestartmark; 151 /*- 152 * The TCP model represents a substantial overhead in that we get an 153 * additional hash table to keep explicit connections in. The 154 * listening TCP endpoint will exist in the usual ephash above and 155 * accept only INIT's. It will be incapable of sending off an INIT. 156 * When a dg arrives we must look in the normal ephash. If we find a 157 * TCP endpoint that will tell us to go to the specific endpoint 158 * hash and re-hash to find the right assoc/socket. If we find a UDP 159 * model socket we then must complete the lookup. If this fails, 160 * i.e. no association can be found then we must continue to see if 161 * a sctp_peeloff()'d socket is in the tcpephash (a spun off socket 162 * acts like a TCP model connected socket). 163 */ 164 struct sctppcbhead *sctp_tcpephash; 165 u_long hashtcpmark; 166 uint32_t hashtblsize; 167 168 struct sctp_vrflist *sctp_vrfhash; 169 u_long hashvrfmark; 170 171 struct sctp_ifnlist *vrf_ifn_hash; 172 u_long vrf_ifn_hashmark; 173 174 struct sctppcbhead listhead; 175 struct sctpladdr addr_wq; 176 177 struct sctpiterators iteratorhead; 178 179 /* ep zone info */ 180 sctp_zone_t ipi_zone_ep; 181 sctp_zone_t ipi_zone_asoc; 182 sctp_zone_t ipi_zone_laddr; 183 sctp_zone_t ipi_zone_net; 184 sctp_zone_t ipi_zone_chunk; 185 sctp_zone_t ipi_zone_readq; 186 sctp_zone_t ipi_zone_strmoq; 187 sctp_zone_t ipi_zone_asconf; 188 sctp_zone_t ipi_zone_asconf_ack; 189 190 struct rwlock ipi_ep_mtx; 191 struct mtx it_mtx; 192 struct mtx ipi_iterator_wq_mtx; 193 struct rwlock ipi_addr_mtx; 194 struct mtx ipi_pktlog_mtx; 195 uint32_t ipi_count_ep; 196 197 /* assoc/tcb zone info */ 198 uint32_t ipi_count_asoc; 199 200 /* local addrlist zone info */ 201 uint32_t ipi_count_laddr; 202 203 /* remote addrlist zone info */ 204 uint32_t ipi_count_raddr; 205 206 /* chunk structure list for output */ 207 uint32_t ipi_count_chunk; 208 209 /* socket queue zone info */ 210 uint32_t ipi_count_readq; 211 212 /* socket queue zone info */ 213 uint32_t ipi_count_strmoq; 214 215 /* Number of vrfs */ 216 uint32_t ipi_count_vrfs; 217 218 /* Number of ifns */ 219 uint32_t ipi_count_ifns; 220 221 /* Number of ifas */ 222 uint32_t ipi_count_ifas; 223 224 /* system wide number of free chunks hanging around */ 225 uint32_t ipi_free_chunks; 226 uint32_t ipi_free_strmoq; 227 228 229 struct sctpvtaghead vtag_timewait[SCTP_STACK_VTAG_HASH_SIZE_A]; 230 231 /* address work queue handling */ 232 #if defined(SCTP_USE_THREAD_BASED_ITERATOR) 233 uint32_t iterator_running; 234 SCTP_PROCESS_STRUCT thread_proc; 235 #endif 236 struct sctp_timer addr_wq_timer; 237 238 }; 239 240 /*- 241 * Here we have all the relevant information for each SCTP entity created. We 242 * will need to modify this as approprate. We also need to figure out how to 243 * access /dev/random. 244 */ 245 struct sctp_pcb { 246 unsigned int time_of_secret_change; /* number of seconds from 247 * timeval.tv_sec */ 248 uint32_t secret_key[SCTP_HOW_MANY_SECRETS][SCTP_NUMBER_OF_SECRETS]; 249 unsigned int size_of_a_cookie; 250 251 unsigned int sctp_timeoutticks[SCTP_NUM_TMRS]; 252 unsigned int sctp_minrto; 253 unsigned int sctp_maxrto; 254 unsigned int initial_rto; 255 int initial_init_rto_max; 256 257 unsigned int sctp_sack_freq; 258 uint32_t sctp_sws_sender; 259 uint32_t sctp_sws_receiver; 260 261 uint32_t sctp_default_cc_module; 262 /* authentication related fields */ 263 struct sctp_keyhead shared_keys; 264 sctp_auth_chklist_t *local_auth_chunks; 265 sctp_hmaclist_t *local_hmacs; 266 uint16_t default_keyid; 267 268 /* various thresholds */ 269 /* Max times I will init at a guy */ 270 uint16_t max_init_times; 271 272 /* Max times I will send before we consider someone dead */ 273 uint16_t max_send_times; 274 275 uint16_t def_net_failure; 276 277 /* number of streams to pre-open on a association */ 278 uint16_t pre_open_stream_count; 279 uint16_t max_open_streams_intome; 280 281 /* random number generator */ 282 uint32_t random_counter; 283 uint8_t random_numbers[SCTP_SIGNATURE_ALOC_SIZE]; 284 uint8_t random_store[SCTP_SIGNATURE_ALOC_SIZE]; 285 286 /* 287 * This timer is kept running per endpoint. When it fires it will 288 * change the secret key. The default is once a hour 289 */ 290 struct sctp_timer signature_change; 291 292 /* Zero copy full buffer timer */ 293 struct sctp_timer zero_copy_timer; 294 /* Zero copy app to transport (sendq) read repulse timer */ 295 struct sctp_timer zero_copy_sendq_timer; 296 uint32_t def_cookie_life; 297 /* defaults to 0 */ 298 int auto_close_time; 299 uint32_t initial_sequence_debug; 300 uint32_t adaptation_layer_indicator; 301 uint32_t store_at; 302 uint8_t max_burst; 303 char current_secret_number; 304 char last_secret_number; 305 }; 306 307 #ifndef SCTP_ALIGNMENT 308 #define SCTP_ALIGNMENT 32 309 #endif 310 311 #ifndef SCTP_ALIGNM1 312 #define SCTP_ALIGNM1 (SCTP_ALIGNMENT-1) 313 #endif 314 315 #define sctp_lport ip_inp.inp.inp_lport 316 317 struct sctp_pcbtsn_rlog { 318 uint32_t vtag; 319 uint16_t strm; 320 uint16_t seq; 321 uint16_t sz; 322 uint16_t flgs; 323 }; 324 325 #define SCTP_READ_LOG_SIZE 135 /* we choose the number to make a pcb a page */ 326 327 328 struct sctp_inpcb { 329 /*- 330 * put an inpcb in front of it all, kind of a waste but we need to 331 * for compatability with all the other stuff. 332 */ 333 union { 334 struct inpcb inp; 335 char align[(sizeof(struct in6pcb) + SCTP_ALIGNM1) & 336 ~SCTP_ALIGNM1]; 337 } ip_inp; 338 339 340 /* Socket buffer lock protects read_queue and of course sb_cc */ 341 struct sctp_readhead read_queue; 342 343 LIST_ENTRY(sctp_inpcb) sctp_list; /* lists all endpoints */ 344 /* hash of all endpoints for model */ 345 LIST_ENTRY(sctp_inpcb) sctp_hash; 346 /* count of local addresses bound, 0 if bound all */ 347 int laddr_count; 348 349 /* list of addrs in use by the EP, NULL if bound-all */ 350 struct sctpladdr sctp_addr_list; 351 /* 352 * used for source address selection rotation when we are subset 353 * bound 354 */ 355 struct sctp_laddr *next_addr_touse; 356 357 /* back pointer to our socket */ 358 struct socket *sctp_socket; 359 uint32_t sctp_flags; /* INP state flag set */ 360 uint32_t sctp_features; /* Feature flags */ 361 uint32_t sctp_mobility_features; /* Mobility Feature flags */ 362 struct sctp_pcb sctp_ep;/* SCTP ep data */ 363 /* head of the hash of all associations */ 364 struct sctpasochead *sctp_tcbhash; 365 u_long sctp_hashmark; 366 /* head of the list of all associations */ 367 struct sctpasochead sctp_asoc_list; 368 #ifdef SCTP_TRACK_FREED_ASOCS 369 struct sctpasochead sctp_asoc_free_list; 370 #endif 371 struct sctp_iterator *inp_starting_point_for_iterator; 372 uint32_t sctp_frag_point; 373 uint32_t partial_delivery_point; 374 uint32_t sctp_context; 375 struct sctp_nonpad_sndrcvinfo def_send; 376 /*- 377 * These three are here for the sosend_dgram 378 * (pkt, pkt_last and control). 379 * routine. However, I don't think anyone in 380 * the current FreeBSD kernel calls this. So 381 * they are candidates with sctp_sendm for 382 * de-supporting. 383 */ 384 struct mbuf *pkt, *pkt_last; 385 struct mbuf *control; 386 struct mtx inp_mtx; 387 struct mtx inp_create_mtx; 388 struct mtx inp_rdata_mtx; 389 int32_t refcount; 390 uint32_t def_vrf_id; 391 uint32_t total_sends; 392 uint32_t total_recvs; 393 uint32_t last_abort_code; 394 uint32_t total_nospaces; 395 #ifdef SCTP_ASOCLOG_OF_TSNS 396 struct sctp_pcbtsn_rlog readlog[SCTP_READ_LOG_SIZE]; 397 uint32_t readlog_index; 398 #endif 399 }; 400 401 struct sctp_tcb { 402 struct socket *sctp_socket; /* back pointer to socket */ 403 struct sctp_inpcb *sctp_ep; /* back pointer to ep */ 404 LIST_ENTRY(sctp_tcb) sctp_tcbhash; /* next link in hash 405 * table */ 406 LIST_ENTRY(sctp_tcb) sctp_tcblist; /* list of all of the 407 * TCB's */ 408 LIST_ENTRY(sctp_tcb) sctp_tcbrestarhash; /* next link in restart 409 * hash table */ 410 LIST_ENTRY(sctp_tcb) sctp_asocs; /* vtag hash list */ 411 struct sctp_block_entry *block_entry; /* pointer locked by socket 412 * send buffer */ 413 struct sctp_association asoc; 414 /*- 415 * freed_by_sorcv_sincelast is protected by the sockbuf_lock NOT the 416 * tcb_lock. Its special in this way to help avoid extra mutex calls 417 * in the reading of data. 418 */ 419 uint32_t freed_by_sorcv_sincelast; 420 uint32_t total_sends; 421 uint32_t total_recvs; 422 int freed_from_where; 423 uint16_t rport; /* remote port in network format */ 424 uint16_t resv; 425 struct mtx tcb_mtx; 426 struct mtx tcb_send_mtx; 427 }; 428 429 430 431 #include <netinet/sctp_lock_bsd.h> 432 433 434 #if defined(_KERNEL) 435 436 extern struct sctp_epinfo sctppcbinfo; 437 438 #ifdef INET6 439 int SCTP6_ARE_ADDR_EQUAL(struct sockaddr_in6 *a, struct sockaddr_in6 *b); 440 441 #endif 442 443 void sctp_fill_pcbinfo(struct sctp_pcbinfo *); 444 445 struct sctp_ifn * 446 sctp_find_ifn(void *ifn, uint32_t ifn_index); 447 448 struct sctp_vrf *sctp_allocate_vrf(int vrfid); 449 struct sctp_vrf *sctp_find_vrf(uint32_t vrfid); 450 void sctp_free_vrf(struct sctp_vrf *vrf); 451 452 /*- 453 * Change address state, can be used if 454 * O/S supports telling transports about 455 * changes to IFA/IFN's (link layer triggers). 456 * If a ifn goes down, we will do src-addr-selection 457 * and NOT use that, as a source address. This does 458 * not stop the routing system from routing out 459 * that interface, but we won't put it as a source. 460 */ 461 void sctp_mark_ifa_addr_down(uint32_t vrf_id, struct sockaddr *addr, const char *if_name, uint32_t ifn_index); 462 void sctp_mark_ifa_addr_up(uint32_t vrf_id, struct sockaddr *addr, const char *if_name, uint32_t ifn_index); 463 464 struct sctp_ifa * 465 sctp_add_addr_to_vrf(uint32_t vrfid, 466 void *ifn, uint32_t ifn_index, uint32_t ifn_type, 467 const char *if_name, 468 void *ifa, struct sockaddr *addr, uint32_t ifa_flags, 469 int dynamic_add); 470 471 void sctp_update_ifn_mtu(uint32_t ifn_index, uint32_t mtu); 472 473 void sctp_free_ifn(struct sctp_ifn *sctp_ifnp); 474 void sctp_free_ifa(struct sctp_ifa *sctp_ifap); 475 476 477 void 478 sctp_del_addr_from_vrf(uint32_t vrfid, struct sockaddr *addr, 479 uint32_t ifn_index, const char *if_name); 480 481 482 483 struct sctp_nets *sctp_findnet(struct sctp_tcb *, struct sockaddr *); 484 485 struct sctp_inpcb *sctp_pcb_findep(struct sockaddr *, int, int, uint32_t); 486 487 int 488 sctp_inpcb_bind(struct socket *, struct sockaddr *, 489 struct sctp_ifa *, struct thread *); 490 491 struct sctp_tcb * 492 sctp_findassociation_addr(struct mbuf *, int, int, 493 struct sctphdr *, struct sctp_chunkhdr *, struct sctp_inpcb **, 494 struct sctp_nets **, uint32_t vrf_id); 495 496 struct sctp_tcb * 497 sctp_findassociation_addr_sa(struct sockaddr *, 498 struct sockaddr *, struct sctp_inpcb **, struct sctp_nets **, int, uint32_t); 499 500 void 501 sctp_move_pcb_and_assoc(struct sctp_inpcb *, struct sctp_inpcb *, 502 struct sctp_tcb *); 503 504 /*- 505 * For this call ep_addr, the to is the destination endpoint address of the 506 * peer (relative to outbound). The from field is only used if the TCP model 507 * is enabled and helps distingush amongst the subset bound (non-boundall). 508 * The TCP model MAY change the actual ep field, this is why it is passed. 509 */ 510 struct sctp_tcb * 511 sctp_findassociation_ep_addr(struct sctp_inpcb **, 512 struct sockaddr *, struct sctp_nets **, struct sockaddr *, 513 struct sctp_tcb *); 514 515 struct sctp_tcb * 516 sctp_findassociation_ep_asocid(struct sctp_inpcb *, 517 sctp_assoc_t, int); 518 519 struct sctp_tcb * 520 sctp_findassociation_ep_asconf(struct mbuf *, int, int, 521 struct sctphdr *, struct sctp_inpcb **, struct sctp_nets **); 522 523 int sctp_inpcb_alloc(struct socket *so, uint32_t vrf_id); 524 525 int sctp_is_address_on_local_host(struct sockaddr *addr, uint32_t vrf_id); 526 527 void sctp_inpcb_free(struct sctp_inpcb *, int, int); 528 529 struct sctp_tcb * 530 sctp_aloc_assoc(struct sctp_inpcb *, struct sockaddr *, 531 int, int *, uint32_t, uint32_t, struct thread *); 532 533 int sctp_free_assoc(struct sctp_inpcb *, struct sctp_tcb *, int, int); 534 535 536 void sctp_delete_from_timewait(uint32_t); 537 538 int sctp_is_in_timewait(uint32_t tag); 539 540 void 541 sctp_add_vtag_to_timewait(uint32_t, uint32_t); 542 543 void sctp_add_local_addr_ep(struct sctp_inpcb *, struct sctp_ifa *, uint32_t); 544 545 int sctp_insert_laddr(struct sctpladdr *, struct sctp_ifa *, uint32_t); 546 547 void sctp_remove_laddr(struct sctp_laddr *); 548 549 void sctp_del_local_addr_ep(struct sctp_inpcb *, struct sctp_ifa *); 550 551 int sctp_add_remote_addr(struct sctp_tcb *, struct sockaddr *, int, int); 552 553 void sctp_remove_net(struct sctp_tcb *, struct sctp_nets *); 554 555 int sctp_del_remote_addr(struct sctp_tcb *, struct sockaddr *); 556 557 void sctp_pcb_init(void); 558 559 560 void sctp_add_local_addr_restricted(struct sctp_tcb *, struct sctp_ifa *); 561 void sctp_del_local_addr_restricted(struct sctp_tcb *, struct sctp_ifa *); 562 563 int 564 sctp_load_addresses_from_init(struct sctp_tcb *, struct mbuf *, int, int, 565 int, struct sctphdr *, struct sockaddr *); 566 567 int 568 sctp_set_primary_addr(struct sctp_tcb *, struct sockaddr *, 569 struct sctp_nets *); 570 571 int sctp_is_vtag_good(struct sctp_inpcb *, uint32_t, struct timeval *, int); 572 573 /* void sctp_drain(void); */ 574 575 int sctp_destination_is_reachable(struct sctp_tcb *, struct sockaddr *); 576 577 /*- 578 * Null in last arg inpcb indicate run on ALL ep's. Specific inp in last arg 579 * indicates run on ONLY assoc's of the specified endpoint. 580 */ 581 int 582 sctp_initiate_iterator(inp_func inpf, 583 asoc_func af, 584 inp_func inpe, 585 uint32_t, uint32_t, 586 uint32_t, void *, 587 uint32_t, 588 end_func ef, 589 struct sctp_inpcb *, 590 uint8_t co_off); 591 592 #endif /* _KERNEL */ 593 #endif /* !__sctp_pcb_h__ */ 594