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 #include <netinet/sctp_os.h> 37 #include <netinet/sctp_var.h> 38 #include <netinet/sctp_sysctl.h> 39 #include <netinet/sctp_pcb.h> 40 #include <netinet/sctp_header.h> 41 #include <netinet/sctputil.h> 42 #include <netinet/sctp_output.h> 43 #include <netinet/sctp_input.h> 44 #include <netinet/sctp_auth.h> 45 #include <netinet/sctp_indata.h> 46 #include <netinet/sctp_asconf.h> 47 #include <netinet/sctp_bsd_addr.h> 48 #include <netinet/sctp_timer.h> 49 #include <netinet/sctp_crc32.h> 50 #if defined(INET) || defined(INET6) 51 #include <netinet/udp.h> 52 #endif 53 #include <sys/smp.h> 54 55 56 57 static void 58 sctp_stop_all_cookie_timers(struct sctp_tcb *stcb) 59 { 60 struct sctp_nets *net; 61 62 /* 63 * This now not only stops all cookie timers it also stops any INIT 64 * timers as well. This will make sure that the timers are stopped 65 * in all collision cases. 66 */ 67 SCTP_TCB_LOCK_ASSERT(stcb); 68 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 69 if (net->rxt_timer.type == SCTP_TIMER_TYPE_COOKIE) { 70 sctp_timer_stop(SCTP_TIMER_TYPE_COOKIE, 71 stcb->sctp_ep, 72 stcb, 73 net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_1); 74 } else if (net->rxt_timer.type == SCTP_TIMER_TYPE_INIT) { 75 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, 76 stcb->sctp_ep, 77 stcb, 78 net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_2); 79 } 80 } 81 } 82 83 /* INIT handler */ 84 static void 85 sctp_handle_init(struct mbuf *m, int iphlen, int offset, 86 struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, 87 struct sctp_init_chunk *cp, struct sctp_inpcb *inp, 88 struct sctp_tcb *stcb, struct sctp_nets *net, int *abort_no_unlock, 89 uint8_t mflowtype, uint32_t mflowid, 90 uint32_t vrf_id, uint16_t port) 91 { 92 struct sctp_init *init; 93 struct mbuf *op_err; 94 95 SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_init: handling INIT tcb:%p\n", 96 (void *)stcb); 97 if (stcb == NULL) { 98 SCTP_INP_RLOCK(inp); 99 } 100 /* validate length */ 101 if (ntohs(cp->ch.chunk_length) < sizeof(struct sctp_init_chunk)) { 102 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 103 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 104 mflowtype, mflowid, 105 vrf_id, port); 106 if (stcb) 107 *abort_no_unlock = 1; 108 goto outnow; 109 } 110 /* validate parameters */ 111 init = &cp->init; 112 if (init->initiate_tag == 0) { 113 /* protocol error... send abort */ 114 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 115 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 116 mflowtype, mflowid, 117 vrf_id, port); 118 if (stcb) 119 *abort_no_unlock = 1; 120 goto outnow; 121 } 122 if (ntohl(init->a_rwnd) < SCTP_MIN_RWND) { 123 /* invalid parameter... send abort */ 124 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 125 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 126 mflowtype, mflowid, 127 vrf_id, port); 128 if (stcb) 129 *abort_no_unlock = 1; 130 goto outnow; 131 } 132 if (init->num_inbound_streams == 0) { 133 /* protocol error... send abort */ 134 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 135 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 136 mflowtype, mflowid, 137 vrf_id, port); 138 if (stcb) 139 *abort_no_unlock = 1; 140 goto outnow; 141 } 142 if (init->num_outbound_streams == 0) { 143 /* protocol error... send abort */ 144 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 145 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 146 mflowtype, mflowid, 147 vrf_id, port); 148 if (stcb) 149 *abort_no_unlock = 1; 150 goto outnow; 151 } 152 if (sctp_validate_init_auth_params(m, offset + sizeof(*cp), 153 offset + ntohs(cp->ch.chunk_length))) { 154 /* auth parameter(s) error... send abort */ 155 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 156 "Problem with AUTH parameters"); 157 sctp_abort_association(inp, stcb, m, iphlen, src, dst, sh, op_err, 158 mflowtype, mflowid, 159 vrf_id, port); 160 if (stcb) 161 *abort_no_unlock = 1; 162 goto outnow; 163 } 164 /* 165 * We are only accepting if we have a socket with positive 166 * so_qlimit. 167 */ 168 if ((stcb == NULL) && 169 ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 170 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) || 171 (inp->sctp_socket == NULL) || 172 (inp->sctp_socket->so_qlimit == 0))) { 173 /* 174 * FIX ME ?? What about TCP model and we have a 175 * match/restart case? Actually no fix is needed. the lookup 176 * will always find the existing assoc so stcb would not be 177 * NULL. It may be questionable to do this since we COULD 178 * just send back the INIT-ACK and hope that the app did 179 * accept()'s by the time the COOKIE was sent. But there is 180 * a price to pay for COOKIE generation and I don't want to 181 * pay it on the chance that the app will actually do some 182 * accepts(). The App just looses and should NOT be in this 183 * state :-) 184 */ 185 if (SCTP_BASE_SYSCTL(sctp_blackhole) == 0) { 186 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 187 "No listener"); 188 sctp_send_abort(m, iphlen, src, dst, sh, 0, op_err, 189 mflowtype, mflowid, inp->fibnum, 190 vrf_id, port); 191 } 192 goto outnow; 193 } 194 if ((stcb != NULL) && 195 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT)) { 196 SCTPDBG(SCTP_DEBUG_INPUT3, "sctp_handle_init: sending SHUTDOWN-ACK\n"); 197 sctp_send_shutdown_ack(stcb, NULL); 198 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 199 } else { 200 SCTPDBG(SCTP_DEBUG_INPUT3, "sctp_handle_init: sending INIT-ACK\n"); 201 sctp_send_initiate_ack(inp, stcb, net, m, iphlen, offset, 202 src, dst, sh, cp, 203 mflowtype, mflowid, 204 vrf_id, port, 205 ((stcb == NULL) ? SCTP_HOLDS_LOCK : SCTP_NOT_LOCKED)); 206 } 207 outnow: 208 if (stcb == NULL) { 209 SCTP_INP_RUNLOCK(inp); 210 } 211 } 212 213 /* 214 * process peer "INIT/INIT-ACK" chunk returns value < 0 on error 215 */ 216 217 int 218 sctp_is_there_unsent_data(struct sctp_tcb *stcb, int so_locked 219 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 220 SCTP_UNUSED 221 #endif 222 ) 223 { 224 int unsent_data = 0; 225 unsigned int i; 226 struct sctp_stream_queue_pending *sp; 227 struct sctp_association *asoc; 228 229 /* 230 * This function returns the number of streams that have true unsent 231 * data on them. Note that as it looks through it will clean up any 232 * places that have old data that has been sent but left at top of 233 * stream queue. 234 */ 235 asoc = &stcb->asoc; 236 SCTP_TCB_SEND_LOCK(stcb); 237 if (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 238 /* Check to see if some data queued */ 239 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 240 /* sa_ignore FREED_MEMORY */ 241 sp = TAILQ_FIRST(&stcb->asoc.strmout[i].outqueue); 242 if (sp == NULL) { 243 continue; 244 } 245 if ((sp->msg_is_complete) && 246 (sp->length == 0) && 247 (sp->sender_all_done)) { 248 /* 249 * We are doing differed cleanup. Last time 250 * through when we took all the data the 251 * sender_all_done was not set. 252 */ 253 if (sp->put_last_out == 0) { 254 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 255 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n", 256 sp->sender_all_done, 257 sp->length, 258 sp->msg_is_complete, 259 sp->put_last_out); 260 } 261 atomic_subtract_int(&stcb->asoc.stream_queue_cnt, 1); 262 TAILQ_REMOVE(&stcb->asoc.strmout[i].outqueue, sp, next); 263 if (sp->net) { 264 sctp_free_remote_addr(sp->net); 265 sp->net = NULL; 266 } 267 if (sp->data) { 268 sctp_m_freem(sp->data); 269 sp->data = NULL; 270 } 271 sctp_free_a_strmoq(stcb, sp, so_locked); 272 } else { 273 unsent_data++; 274 break; 275 } 276 } 277 } 278 SCTP_TCB_SEND_UNLOCK(stcb); 279 return (unsent_data); 280 } 281 282 static int 283 sctp_process_init(struct sctp_init_chunk *cp, struct sctp_tcb *stcb) 284 { 285 struct sctp_init *init; 286 struct sctp_association *asoc; 287 struct sctp_nets *lnet; 288 unsigned int i; 289 290 init = &cp->init; 291 asoc = &stcb->asoc; 292 /* save off parameters */ 293 asoc->peer_vtag = ntohl(init->initiate_tag); 294 asoc->peers_rwnd = ntohl(init->a_rwnd); 295 /* init tsn's */ 296 asoc->highest_tsn_inside_map = asoc->asconf_seq_in = ntohl(init->initial_tsn) - 1; 297 298 if (!TAILQ_EMPTY(&asoc->nets)) { 299 /* update any ssthresh's that may have a default */ 300 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 301 lnet->ssthresh = asoc->peers_rwnd; 302 if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_CWND_MONITOR_ENABLE | SCTP_CWND_LOGGING_ENABLE)) { 303 sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_INITIALIZATION); 304 } 305 } 306 } 307 SCTP_TCB_SEND_LOCK(stcb); 308 if (asoc->pre_open_streams > ntohs(init->num_inbound_streams)) { 309 unsigned int newcnt; 310 struct sctp_stream_out *outs; 311 struct sctp_stream_queue_pending *sp, *nsp; 312 struct sctp_tmit_chunk *chk, *nchk; 313 314 /* abandon the upper streams */ 315 newcnt = ntohs(init->num_inbound_streams); 316 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 317 if (chk->rec.data.stream_number >= newcnt) { 318 TAILQ_REMOVE(&asoc->send_queue, chk, sctp_next); 319 asoc->send_queue_cnt--; 320 if (asoc->strmout[chk->rec.data.stream_number].chunks_on_queues > 0) { 321 asoc->strmout[chk->rec.data.stream_number].chunks_on_queues--; 322 #ifdef INVARIANTS 323 } else { 324 panic("No chunks on the queues for sid %u.", chk->rec.data.stream_number); 325 #endif 326 } 327 if (chk->data != NULL) { 328 sctp_free_bufspace(stcb, asoc, chk, 1); 329 sctp_ulp_notify(SCTP_NOTIFY_UNSENT_DG_FAIL, stcb, 330 0, chk, SCTP_SO_NOT_LOCKED); 331 if (chk->data) { 332 sctp_m_freem(chk->data); 333 chk->data = NULL; 334 } 335 } 336 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 337 /* sa_ignore FREED_MEMORY */ 338 } 339 } 340 if (asoc->strmout) { 341 for (i = newcnt; i < asoc->pre_open_streams; i++) { 342 outs = &asoc->strmout[i]; 343 TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) { 344 TAILQ_REMOVE(&outs->outqueue, sp, next); 345 asoc->stream_queue_cnt--; 346 sctp_ulp_notify(SCTP_NOTIFY_SPECIAL_SP_FAIL, 347 stcb, 0, sp, SCTP_SO_NOT_LOCKED); 348 if (sp->data) { 349 sctp_m_freem(sp->data); 350 sp->data = NULL; 351 } 352 if (sp->net) { 353 sctp_free_remote_addr(sp->net); 354 sp->net = NULL; 355 } 356 /* Free the chunk */ 357 sctp_free_a_strmoq(stcb, sp, SCTP_SO_NOT_LOCKED); 358 /* sa_ignore FREED_MEMORY */ 359 } 360 outs->state = SCTP_STREAM_CLOSED; 361 } 362 } 363 /* cut back the count */ 364 asoc->pre_open_streams = newcnt; 365 } 366 SCTP_TCB_SEND_UNLOCK(stcb); 367 asoc->streamoutcnt = asoc->pre_open_streams; 368 if (asoc->strmout) { 369 for (i = 0; i < asoc->streamoutcnt; i++) { 370 asoc->strmout[i].state = SCTP_STREAM_OPEN; 371 } 372 } 373 /* EY - nr_sack: initialize highest tsn in nr_mapping_array */ 374 asoc->highest_tsn_inside_nr_map = asoc->highest_tsn_inside_map; 375 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 376 sctp_log_map(0, 5, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 377 } 378 /* This is the next one we expect */ 379 asoc->str_reset_seq_in = asoc->asconf_seq_in + 1; 380 381 asoc->mapping_array_base_tsn = ntohl(init->initial_tsn); 382 asoc->tsn_last_delivered = asoc->cumulative_tsn = asoc->asconf_seq_in; 383 384 asoc->advanced_peer_ack_point = asoc->last_acked_seq; 385 /* open the requested streams */ 386 387 if (asoc->strmin != NULL) { 388 /* Free the old ones */ 389 for (i = 0; i < asoc->streamincnt; i++) { 390 sctp_clean_up_stream(stcb, &asoc->strmin[i].inqueue); 391 sctp_clean_up_stream(stcb, &asoc->strmin[i].uno_inqueue); 392 } 393 SCTP_FREE(asoc->strmin, SCTP_M_STRMI); 394 } 395 if (asoc->max_inbound_streams > ntohs(init->num_outbound_streams)) { 396 asoc->streamincnt = ntohs(init->num_outbound_streams); 397 } else { 398 asoc->streamincnt = asoc->max_inbound_streams; 399 } 400 SCTP_MALLOC(asoc->strmin, struct sctp_stream_in *, asoc->streamincnt * 401 sizeof(struct sctp_stream_in), SCTP_M_STRMI); 402 if (asoc->strmin == NULL) { 403 /* we didn't get memory for the streams! */ 404 SCTPDBG(SCTP_DEBUG_INPUT2, "process_init: couldn't get memory for the streams!\n"); 405 return (-1); 406 } 407 for (i = 0; i < asoc->streamincnt; i++) { 408 asoc->strmin[i].stream_no = i; 409 asoc->strmin[i].last_sequence_delivered = 0xffffffff; 410 TAILQ_INIT(&asoc->strmin[i].inqueue); 411 TAILQ_INIT(&asoc->strmin[i].uno_inqueue); 412 asoc->strmin[i].pd_api_started = 0; 413 asoc->strmin[i].delivery_started = 0; 414 } 415 /* 416 * load_address_from_init will put the addresses into the 417 * association when the COOKIE is processed or the INIT-ACK is 418 * processed. Both types of COOKIE's existing and new call this 419 * routine. It will remove addresses that are no longer in the 420 * association (for the restarting case where addresses are 421 * removed). Up front when the INIT arrives we will discard it if it 422 * is a restart and new addresses have been added. 423 */ 424 /* sa_ignore MEMLEAK */ 425 return (0); 426 } 427 428 /* 429 * INIT-ACK message processing/consumption returns value < 0 on error 430 */ 431 static int 432 sctp_process_init_ack(struct mbuf *m, int iphlen, int offset, 433 struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, 434 struct sctp_init_ack_chunk *cp, struct sctp_tcb *stcb, 435 struct sctp_nets *net, int *abort_no_unlock, 436 uint8_t mflowtype, uint32_t mflowid, 437 uint32_t vrf_id) 438 { 439 struct sctp_association *asoc; 440 struct mbuf *op_err; 441 int retval, abort_flag; 442 uint32_t initack_limit; 443 int nat_friendly = 0; 444 445 /* First verify that we have no illegal param's */ 446 abort_flag = 0; 447 448 op_err = sctp_arethere_unrecognized_parameters(m, 449 (offset + sizeof(struct sctp_init_chunk)), 450 &abort_flag, (struct sctp_chunkhdr *)cp, &nat_friendly); 451 if (abort_flag) { 452 /* Send an abort and notify peer */ 453 sctp_abort_an_association(stcb->sctp_ep, stcb, op_err, SCTP_SO_NOT_LOCKED); 454 *abort_no_unlock = 1; 455 return (-1); 456 } 457 asoc = &stcb->asoc; 458 asoc->peer_supports_nat = (uint8_t) nat_friendly; 459 /* process the peer's parameters in the INIT-ACK */ 460 retval = sctp_process_init((struct sctp_init_chunk *)cp, stcb); 461 if (retval < 0) { 462 return (retval); 463 } 464 initack_limit = offset + ntohs(cp->ch.chunk_length); 465 /* load all addresses */ 466 if ((retval = sctp_load_addresses_from_init(stcb, m, 467 (offset + sizeof(struct sctp_init_chunk)), initack_limit, 468 src, dst, NULL))) { 469 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 470 "Problem with address parameters"); 471 SCTPDBG(SCTP_DEBUG_INPUT1, 472 "Load addresses from INIT causes an abort %d\n", 473 retval); 474 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 475 src, dst, sh, op_err, 476 mflowtype, mflowid, 477 vrf_id, net->port); 478 *abort_no_unlock = 1; 479 return (-1); 480 } 481 /* if the peer doesn't support asconf, flush the asconf queue */ 482 if (asoc->asconf_supported == 0) { 483 struct sctp_asconf_addr *param, *nparam; 484 485 TAILQ_FOREACH_SAFE(param, &asoc->asconf_queue, next, nparam) { 486 TAILQ_REMOVE(&asoc->asconf_queue, param, next); 487 SCTP_FREE(param, SCTP_M_ASC_ADDR); 488 } 489 } 490 stcb->asoc.peer_hmac_id = sctp_negotiate_hmacid(stcb->asoc.peer_hmacs, 491 stcb->asoc.local_hmacs); 492 if (op_err) { 493 sctp_queue_op_err(stcb, op_err); 494 /* queuing will steal away the mbuf chain to the out queue */ 495 op_err = NULL; 496 } 497 /* extract the cookie and queue it to "echo" it back... */ 498 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 499 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 500 stcb->asoc.overall_error_count, 501 0, 502 SCTP_FROM_SCTP_INPUT, 503 __LINE__); 504 } 505 stcb->asoc.overall_error_count = 0; 506 net->error_count = 0; 507 508 /* 509 * Cancel the INIT timer, We do this first before queueing the 510 * cookie. We always cancel at the primary to assue that we are 511 * canceling the timer started by the INIT which always goes to the 512 * primary. 513 */ 514 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, stcb->sctp_ep, stcb, 515 asoc->primary_destination, SCTP_FROM_SCTP_INPUT + SCTP_LOC_3); 516 517 /* calculate the RTO */ 518 net->RTO = sctp_calculate_rto(stcb, asoc, net, &asoc->time_entered, sctp_align_safe_nocopy, 519 SCTP_RTT_FROM_NON_DATA); 520 retval = sctp_send_cookie_echo(m, offset, stcb, net); 521 if (retval < 0) { 522 /* 523 * No cookie, we probably should send a op error. But in any 524 * case if there is no cookie in the INIT-ACK, we can 525 * abandon the peer, its broke. 526 */ 527 if (retval == -3) { 528 uint16_t len; 529 530 len = (uint16_t) (sizeof(struct sctp_error_missing_param) + sizeof(uint16_t)); 531 /* We abort with an error of missing mandatory param */ 532 op_err = sctp_get_mbuf_for_msg(len, 0, M_NOWAIT, 1, MT_DATA); 533 if (op_err != NULL) { 534 struct sctp_error_missing_param *cause; 535 536 SCTP_BUF_LEN(op_err) = len; 537 cause = mtod(op_err, struct sctp_error_missing_param *); 538 /* Subtract the reserved param */ 539 cause->cause.code = htons(SCTP_CAUSE_MISSING_PARAM); 540 cause->cause.length = htons(len); 541 cause->num_missing_params = htonl(1); 542 cause->type[0] = htons(SCTP_STATE_COOKIE); 543 } 544 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 545 src, dst, sh, op_err, 546 mflowtype, mflowid, 547 vrf_id, net->port); 548 *abort_no_unlock = 1; 549 } 550 return (retval); 551 } 552 return (0); 553 } 554 555 static void 556 sctp_handle_heartbeat_ack(struct sctp_heartbeat_chunk *cp, 557 struct sctp_tcb *stcb, struct sctp_nets *net) 558 { 559 union sctp_sockstore store; 560 struct sctp_nets *r_net, *f_net; 561 struct timeval tv; 562 int req_prim = 0; 563 uint16_t old_error_counter; 564 565 if (ntohs(cp->ch.chunk_length) != sizeof(struct sctp_heartbeat_chunk)) { 566 /* Invalid length */ 567 return; 568 } 569 memset(&store, 0, sizeof(store)); 570 switch (cp->heartbeat.hb_info.addr_family) { 571 #ifdef INET 572 case AF_INET: 573 if (cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in)) { 574 store.sin.sin_family = cp->heartbeat.hb_info.addr_family; 575 store.sin.sin_len = cp->heartbeat.hb_info.addr_len; 576 store.sin.sin_port = stcb->rport; 577 memcpy(&store.sin.sin_addr, cp->heartbeat.hb_info.address, 578 sizeof(store.sin.sin_addr)); 579 } else { 580 return; 581 } 582 break; 583 #endif 584 #ifdef INET6 585 case AF_INET6: 586 if (cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in6)) { 587 store.sin6.sin6_family = cp->heartbeat.hb_info.addr_family; 588 store.sin6.sin6_len = cp->heartbeat.hb_info.addr_len; 589 store.sin6.sin6_port = stcb->rport; 590 memcpy(&store.sin6.sin6_addr, cp->heartbeat.hb_info.address, sizeof(struct in6_addr)); 591 } else { 592 return; 593 } 594 break; 595 #endif 596 default: 597 return; 598 } 599 r_net = sctp_findnet(stcb, &store.sa); 600 if (r_net == NULL) { 601 SCTPDBG(SCTP_DEBUG_INPUT1, "Huh? I can't find the address I sent it to, discard\n"); 602 return; 603 } 604 if ((r_net && (r_net->dest_state & SCTP_ADDR_UNCONFIRMED)) && 605 (r_net->heartbeat_random1 == cp->heartbeat.hb_info.random_value1) && 606 (r_net->heartbeat_random2 == cp->heartbeat.hb_info.random_value2)) { 607 /* 608 * If the its a HB and it's random value is correct when can 609 * confirm the destination. 610 */ 611 r_net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 612 if (r_net->dest_state & SCTP_ADDR_REQ_PRIMARY) { 613 stcb->asoc.primary_destination = r_net; 614 r_net->dest_state &= ~SCTP_ADDR_REQ_PRIMARY; 615 f_net = TAILQ_FIRST(&stcb->asoc.nets); 616 if (f_net != r_net) { 617 /* 618 * first one on the list is NOT the primary 619 * sctp_cmpaddr() is much more efficent if 620 * the primary is the first on the list, 621 * make it so. 622 */ 623 TAILQ_REMOVE(&stcb->asoc.nets, r_net, sctp_next); 624 TAILQ_INSERT_HEAD(&stcb->asoc.nets, r_net, sctp_next); 625 } 626 req_prim = 1; 627 } 628 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 629 stcb, 0, (void *)r_net, SCTP_SO_NOT_LOCKED); 630 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, 631 r_net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_4); 632 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, r_net); 633 } 634 old_error_counter = r_net->error_count; 635 r_net->error_count = 0; 636 r_net->hb_responded = 1; 637 tv.tv_sec = cp->heartbeat.hb_info.time_value_1; 638 tv.tv_usec = cp->heartbeat.hb_info.time_value_2; 639 /* Now lets do a RTO with this */ 640 r_net->RTO = sctp_calculate_rto(stcb, &stcb->asoc, r_net, &tv, sctp_align_safe_nocopy, 641 SCTP_RTT_FROM_NON_DATA); 642 if (!(r_net->dest_state & SCTP_ADDR_REACHABLE)) { 643 r_net->dest_state |= SCTP_ADDR_REACHABLE; 644 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 645 0, (void *)r_net, SCTP_SO_NOT_LOCKED); 646 } 647 if (r_net->dest_state & SCTP_ADDR_PF) { 648 r_net->dest_state &= ~SCTP_ADDR_PF; 649 stcb->asoc.cc_functions.sctp_cwnd_update_exit_pf(stcb, net); 650 } 651 if (old_error_counter > 0) { 652 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, 653 stcb, r_net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_5); 654 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, r_net); 655 } 656 if (r_net == stcb->asoc.primary_destination) { 657 if (stcb->asoc.alternate) { 658 /* release the alternate, primary is good */ 659 sctp_free_remote_addr(stcb->asoc.alternate); 660 stcb->asoc.alternate = NULL; 661 } 662 } 663 /* Mobility adaptation */ 664 if (req_prim) { 665 if ((sctp_is_mobility_feature_on(stcb->sctp_ep, 666 SCTP_MOBILITY_BASE) || 667 sctp_is_mobility_feature_on(stcb->sctp_ep, 668 SCTP_MOBILITY_FASTHANDOFF)) && 669 sctp_is_mobility_feature_on(stcb->sctp_ep, 670 SCTP_MOBILITY_PRIM_DELETED)) { 671 672 sctp_timer_stop(SCTP_TIMER_TYPE_PRIM_DELETED, 673 stcb->sctp_ep, stcb, NULL, 674 SCTP_FROM_SCTP_INPUT + SCTP_LOC_6); 675 if (sctp_is_mobility_feature_on(stcb->sctp_ep, 676 SCTP_MOBILITY_FASTHANDOFF)) { 677 sctp_assoc_immediate_retrans(stcb, 678 stcb->asoc.primary_destination); 679 } 680 if (sctp_is_mobility_feature_on(stcb->sctp_ep, 681 SCTP_MOBILITY_BASE)) { 682 sctp_move_chunks_from_net(stcb, 683 stcb->asoc.deleted_primary); 684 } 685 sctp_delete_prim_timer(stcb->sctp_ep, stcb, 686 stcb->asoc.deleted_primary); 687 } 688 } 689 } 690 691 static int 692 sctp_handle_nat_colliding_state(struct sctp_tcb *stcb) 693 { 694 /* 695 * return 0 means we want you to proceed with the abort non-zero 696 * means no abort processing 697 */ 698 struct sctpasochead *head; 699 700 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_WAIT) { 701 /* generate a new vtag and send init */ 702 LIST_REMOVE(stcb, sctp_asocs); 703 stcb->asoc.my_vtag = sctp_select_a_tag(stcb->sctp_ep, stcb->sctp_ep->sctp_lport, stcb->rport, 1); 704 head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, SCTP_BASE_INFO(hashasocmark))]; 705 /* 706 * put it in the bucket in the vtag hash of assoc's for the 707 * system 708 */ 709 LIST_INSERT_HEAD(head, stcb, sctp_asocs); 710 sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 711 return (1); 712 } 713 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) { 714 /* 715 * treat like a case where the cookie expired i.e.: - dump 716 * current cookie. - generate a new vtag. - resend init. 717 */ 718 /* generate a new vtag and send init */ 719 LIST_REMOVE(stcb, sctp_asocs); 720 stcb->asoc.state &= ~SCTP_STATE_COOKIE_ECHOED; 721 stcb->asoc.state |= SCTP_STATE_COOKIE_WAIT; 722 sctp_stop_all_cookie_timers(stcb); 723 sctp_toss_old_cookies(stcb, &stcb->asoc); 724 stcb->asoc.my_vtag = sctp_select_a_tag(stcb->sctp_ep, stcb->sctp_ep->sctp_lport, stcb->rport, 1); 725 head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, SCTP_BASE_INFO(hashasocmark))]; 726 /* 727 * put it in the bucket in the vtag hash of assoc's for the 728 * system 729 */ 730 LIST_INSERT_HEAD(head, stcb, sctp_asocs); 731 sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 732 return (1); 733 } 734 return (0); 735 } 736 737 static int 738 sctp_handle_nat_missing_state(struct sctp_tcb *stcb, 739 struct sctp_nets *net) 740 { 741 /* 742 * return 0 means we want you to proceed with the abort non-zero 743 * means no abort processing 744 */ 745 if (stcb->asoc.auth_supported == 0) { 746 SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_nat_missing_state: Peer does not support AUTH, cannot send an asconf\n"); 747 return (0); 748 } 749 sctp_asconf_send_nat_state_update(stcb, net); 750 return (1); 751 } 752 753 754 static void 755 sctp_handle_abort(struct sctp_abort_chunk *abort, 756 struct sctp_tcb *stcb, struct sctp_nets *net) 757 { 758 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 759 struct socket *so; 760 761 #endif 762 uint16_t len; 763 uint16_t error; 764 765 SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_abort: handling ABORT\n"); 766 if (stcb == NULL) 767 return; 768 769 len = ntohs(abort->ch.chunk_length); 770 if (len > sizeof(struct sctp_chunkhdr)) { 771 /* 772 * Need to check the cause codes for our two magic nat 773 * aborts which don't kill the assoc necessarily. 774 */ 775 struct sctp_gen_error_cause *cause; 776 777 cause = (struct sctp_gen_error_cause *)(abort + 1); 778 error = ntohs(cause->code); 779 if (error == SCTP_CAUSE_NAT_COLLIDING_STATE) { 780 SCTPDBG(SCTP_DEBUG_INPUT2, "Received Colliding state abort flags:%x\n", 781 abort->ch.chunk_flags); 782 if (sctp_handle_nat_colliding_state(stcb)) { 783 return; 784 } 785 } else if (error == SCTP_CAUSE_NAT_MISSING_STATE) { 786 SCTPDBG(SCTP_DEBUG_INPUT2, "Received missing state abort flags:%x\n", 787 abort->ch.chunk_flags); 788 if (sctp_handle_nat_missing_state(stcb, net)) { 789 return; 790 } 791 } 792 } else { 793 error = 0; 794 } 795 /* stop any receive timers */ 796 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, net, 797 SCTP_FROM_SCTP_INPUT + SCTP_LOC_7); 798 /* notify user of the abort and clean up... */ 799 sctp_abort_notification(stcb, 1, error, abort, SCTP_SO_NOT_LOCKED); 800 /* free the tcb */ 801 SCTP_STAT_INCR_COUNTER32(sctps_aborted); 802 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 803 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 804 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 805 } 806 #ifdef SCTP_ASOCLOG_OF_TSNS 807 sctp_print_out_track_log(stcb); 808 #endif 809 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 810 so = SCTP_INP_SO(stcb->sctp_ep); 811 atomic_add_int(&stcb->asoc.refcnt, 1); 812 SCTP_TCB_UNLOCK(stcb); 813 SCTP_SOCKET_LOCK(so, 1); 814 SCTP_TCB_LOCK(stcb); 815 atomic_subtract_int(&stcb->asoc.refcnt, 1); 816 #endif 817 stcb->asoc.state |= SCTP_STATE_WAS_ABORTED; 818 (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 819 SCTP_FROM_SCTP_INPUT + SCTP_LOC_8); 820 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 821 SCTP_SOCKET_UNLOCK(so, 1); 822 #endif 823 SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_abort: finished\n"); 824 } 825 826 static void 827 sctp_start_net_timers(struct sctp_tcb *stcb) 828 { 829 uint32_t cnt_hb_sent; 830 struct sctp_nets *net; 831 832 cnt_hb_sent = 0; 833 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 834 /* 835 * For each network start: 1) A pmtu timer. 2) A HB timer 3) 836 * If the dest in unconfirmed send a hb as well if under 837 * max_hb_burst have been sent. 838 */ 839 sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, stcb->sctp_ep, stcb, net); 840 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net); 841 if ((net->dest_state & SCTP_ADDR_UNCONFIRMED) && 842 (cnt_hb_sent < SCTP_BASE_SYSCTL(sctp_hb_maxburst))) { 843 sctp_send_hb(stcb, net, SCTP_SO_NOT_LOCKED); 844 cnt_hb_sent++; 845 } 846 } 847 if (cnt_hb_sent) { 848 sctp_chunk_output(stcb->sctp_ep, stcb, 849 SCTP_OUTPUT_FROM_COOKIE_ACK, 850 SCTP_SO_NOT_LOCKED); 851 } 852 } 853 854 855 static void 856 sctp_handle_shutdown(struct sctp_shutdown_chunk *cp, 857 struct sctp_tcb *stcb, struct sctp_nets *net, int *abort_flag) 858 { 859 struct sctp_association *asoc; 860 int some_on_streamwheel; 861 int old_state; 862 863 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 864 struct socket *so; 865 866 #endif 867 868 SCTPDBG(SCTP_DEBUG_INPUT2, 869 "sctp_handle_shutdown: handling SHUTDOWN\n"); 870 if (stcb == NULL) 871 return; 872 asoc = &stcb->asoc; 873 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 874 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 875 return; 876 } 877 if (ntohs(cp->ch.chunk_length) != sizeof(struct sctp_shutdown_chunk)) { 878 /* Shutdown NOT the expected size */ 879 return; 880 } 881 old_state = SCTP_GET_STATE(asoc); 882 sctp_update_acked(stcb, cp, abort_flag); 883 if (*abort_flag) { 884 return; 885 } 886 if (asoc->control_pdapi) { 887 /* 888 * With a normal shutdown we assume the end of last record. 889 */ 890 SCTP_INP_READ_LOCK(stcb->sctp_ep); 891 if (asoc->control_pdapi->on_strm_q) { 892 struct sctp_stream_in *strm; 893 894 strm = &asoc->strmin[asoc->control_pdapi->sinfo_stream]; 895 if (asoc->control_pdapi->on_strm_q == SCTP_ON_UNORDERED) { 896 /* Unordered */ 897 TAILQ_REMOVE(&strm->uno_inqueue, asoc->control_pdapi, next_instrm); 898 asoc->control_pdapi->on_strm_q = 0; 899 } else if (asoc->control_pdapi->on_strm_q == SCTP_ON_ORDERED) { 900 /* Ordered */ 901 TAILQ_REMOVE(&strm->inqueue, asoc->control_pdapi, next_instrm); 902 asoc->control_pdapi->on_strm_q = 0; 903 #ifdef INVARIANTS 904 } else { 905 panic("Unknown state on ctrl:%p on_strm_q:%d", 906 asoc->control_pdapi, 907 asoc->control_pdapi->on_strm_q); 908 #endif 909 } 910 } 911 asoc->control_pdapi->end_added = 1; 912 asoc->control_pdapi->pdapi_aborted = 1; 913 asoc->control_pdapi = NULL; 914 SCTP_INP_READ_UNLOCK(stcb->sctp_ep); 915 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 916 so = SCTP_INP_SO(stcb->sctp_ep); 917 atomic_add_int(&stcb->asoc.refcnt, 1); 918 SCTP_TCB_UNLOCK(stcb); 919 SCTP_SOCKET_LOCK(so, 1); 920 SCTP_TCB_LOCK(stcb); 921 atomic_subtract_int(&stcb->asoc.refcnt, 1); 922 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 923 /* assoc was freed while we were unlocked */ 924 SCTP_SOCKET_UNLOCK(so, 1); 925 return; 926 } 927 #endif 928 if (stcb->sctp_socket) { 929 sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket); 930 } 931 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 932 SCTP_SOCKET_UNLOCK(so, 1); 933 #endif 934 } 935 /* goto SHUTDOWN_RECEIVED state to block new requests */ 936 if (stcb->sctp_socket) { 937 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 938 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT) && 939 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT)) { 940 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_RECEIVED); 941 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 942 /* 943 * notify upper layer that peer has initiated a 944 * shutdown 945 */ 946 sctp_ulp_notify(SCTP_NOTIFY_PEER_SHUTDOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 947 948 /* reset time */ 949 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 950 } 951 } 952 if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) { 953 /* 954 * stop the shutdown timer, since we WILL move to 955 * SHUTDOWN-ACK-SENT. 956 */ 957 sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 958 net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_9); 959 } 960 /* Now is there unsent data on a stream somewhere? */ 961 some_on_streamwheel = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED); 962 963 if (!TAILQ_EMPTY(&asoc->send_queue) || 964 !TAILQ_EMPTY(&asoc->sent_queue) || 965 some_on_streamwheel) { 966 /* By returning we will push more data out */ 967 return; 968 } else { 969 /* no outstanding data to send, so move on... */ 970 /* send SHUTDOWN-ACK */ 971 /* move to SHUTDOWN-ACK-SENT state */ 972 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 973 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 974 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 975 } 976 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 977 if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT) { 978 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_ACK_SENT); 979 sctp_stop_timers_for_shutdown(stcb); 980 sctp_send_shutdown_ack(stcb, net); 981 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK, 982 stcb->sctp_ep, stcb, net); 983 } else if (old_state == SCTP_STATE_SHUTDOWN_ACK_SENT) { 984 sctp_send_shutdown_ack(stcb, net); 985 } 986 } 987 } 988 989 static void 990 sctp_handle_shutdown_ack(struct sctp_shutdown_ack_chunk *cp SCTP_UNUSED, 991 struct sctp_tcb *stcb, 992 struct sctp_nets *net) 993 { 994 struct sctp_association *asoc; 995 996 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 997 struct socket *so; 998 999 so = SCTP_INP_SO(stcb->sctp_ep); 1000 #endif 1001 SCTPDBG(SCTP_DEBUG_INPUT2, 1002 "sctp_handle_shutdown_ack: handling SHUTDOWN ACK\n"); 1003 if (stcb == NULL) 1004 return; 1005 1006 asoc = &stcb->asoc; 1007 /* process according to association state */ 1008 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 1009 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 1010 /* unexpected SHUTDOWN-ACK... do OOTB handling... */ 1011 sctp_send_shutdown_complete(stcb, net, 1); 1012 SCTP_TCB_UNLOCK(stcb); 1013 return; 1014 } 1015 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 1016 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 1017 /* unexpected SHUTDOWN-ACK... so ignore... */ 1018 SCTP_TCB_UNLOCK(stcb); 1019 return; 1020 } 1021 if (asoc->control_pdapi) { 1022 /* 1023 * With a normal shutdown we assume the end of last record. 1024 */ 1025 SCTP_INP_READ_LOCK(stcb->sctp_ep); 1026 asoc->control_pdapi->end_added = 1; 1027 asoc->control_pdapi->pdapi_aborted = 1; 1028 asoc->control_pdapi = NULL; 1029 SCTP_INP_READ_UNLOCK(stcb->sctp_ep); 1030 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1031 atomic_add_int(&stcb->asoc.refcnt, 1); 1032 SCTP_TCB_UNLOCK(stcb); 1033 SCTP_SOCKET_LOCK(so, 1); 1034 SCTP_TCB_LOCK(stcb); 1035 atomic_subtract_int(&stcb->asoc.refcnt, 1); 1036 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 1037 /* assoc was freed while we were unlocked */ 1038 SCTP_SOCKET_UNLOCK(so, 1); 1039 return; 1040 } 1041 #endif 1042 sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket); 1043 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1044 SCTP_SOCKET_UNLOCK(so, 1); 1045 #endif 1046 } 1047 #ifdef INVARIANTS 1048 if (!TAILQ_EMPTY(&asoc->send_queue) || 1049 !TAILQ_EMPTY(&asoc->sent_queue) || 1050 !stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 1051 panic("Queues are not empty when handling SHUTDOWN-ACK"); 1052 } 1053 #endif 1054 /* stop the timer */ 1055 sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, net, 1056 SCTP_FROM_SCTP_INPUT + SCTP_LOC_10); 1057 /* send SHUTDOWN-COMPLETE */ 1058 sctp_send_shutdown_complete(stcb, net, 0); 1059 /* notify upper layer protocol */ 1060 if (stcb->sctp_socket) { 1061 if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1062 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 1063 stcb->sctp_socket->so_snd.sb_cc = 0; 1064 } 1065 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 1066 } 1067 SCTP_STAT_INCR_COUNTER32(sctps_shutdown); 1068 /* free the TCB but first save off the ep */ 1069 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1070 atomic_add_int(&stcb->asoc.refcnt, 1); 1071 SCTP_TCB_UNLOCK(stcb); 1072 SCTP_SOCKET_LOCK(so, 1); 1073 SCTP_TCB_LOCK(stcb); 1074 atomic_subtract_int(&stcb->asoc.refcnt, 1); 1075 #endif 1076 (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 1077 SCTP_FROM_SCTP_INPUT + SCTP_LOC_11); 1078 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1079 SCTP_SOCKET_UNLOCK(so, 1); 1080 #endif 1081 } 1082 1083 /* 1084 * Skip past the param header and then we will find the chunk that caused the 1085 * problem. There are two possiblities ASCONF or FWD-TSN other than that and 1086 * our peer must be broken. 1087 */ 1088 static void 1089 sctp_process_unrecog_chunk(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr, 1090 struct sctp_nets *net) 1091 { 1092 struct sctp_chunkhdr *chk; 1093 1094 chk = (struct sctp_chunkhdr *)((caddr_t)phdr + sizeof(*phdr)); 1095 switch (chk->chunk_type) { 1096 case SCTP_ASCONF_ACK: 1097 case SCTP_ASCONF: 1098 sctp_asconf_cleanup(stcb, net); 1099 break; 1100 case SCTP_IFORWARD_CUM_TSN: 1101 case SCTP_FORWARD_CUM_TSN: 1102 stcb->asoc.prsctp_supported = 0; 1103 break; 1104 default: 1105 SCTPDBG(SCTP_DEBUG_INPUT2, 1106 "Peer does not support chunk type %d(%x)??\n", 1107 chk->chunk_type, (uint32_t) chk->chunk_type); 1108 break; 1109 } 1110 } 1111 1112 /* 1113 * Skip past the param header and then we will find the param that caused the 1114 * problem. There are a number of param's in a ASCONF OR the prsctp param 1115 * these will turn of specific features. 1116 * XXX: Is this the right thing to do? 1117 */ 1118 static void 1119 sctp_process_unrecog_param(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr) 1120 { 1121 struct sctp_paramhdr *pbad; 1122 1123 pbad = phdr + 1; 1124 switch (ntohs(pbad->param_type)) { 1125 /* pr-sctp draft */ 1126 case SCTP_PRSCTP_SUPPORTED: 1127 stcb->asoc.prsctp_supported = 0; 1128 break; 1129 case SCTP_SUPPORTED_CHUNK_EXT: 1130 break; 1131 /* draft-ietf-tsvwg-addip-sctp */ 1132 case SCTP_HAS_NAT_SUPPORT: 1133 stcb->asoc.peer_supports_nat = 0; 1134 break; 1135 case SCTP_ADD_IP_ADDRESS: 1136 case SCTP_DEL_IP_ADDRESS: 1137 case SCTP_SET_PRIM_ADDR: 1138 stcb->asoc.asconf_supported = 0; 1139 break; 1140 case SCTP_SUCCESS_REPORT: 1141 case SCTP_ERROR_CAUSE_IND: 1142 SCTPDBG(SCTP_DEBUG_INPUT2, "Huh, the peer does not support success? or error cause?\n"); 1143 SCTPDBG(SCTP_DEBUG_INPUT2, 1144 "Turning off ASCONF to this strange peer\n"); 1145 stcb->asoc.asconf_supported = 0; 1146 break; 1147 default: 1148 SCTPDBG(SCTP_DEBUG_INPUT2, 1149 "Peer does not support param type %d(%x)??\n", 1150 pbad->param_type, (uint32_t) pbad->param_type); 1151 break; 1152 } 1153 } 1154 1155 static int 1156 sctp_handle_error(struct sctp_chunkhdr *ch, 1157 struct sctp_tcb *stcb, struct sctp_nets *net) 1158 { 1159 int chklen; 1160 struct sctp_paramhdr *phdr; 1161 uint16_t error, error_type; 1162 uint16_t error_len; 1163 struct sctp_association *asoc; 1164 int adjust; 1165 1166 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1167 struct socket *so; 1168 1169 #endif 1170 1171 /* parse through all of the errors and process */ 1172 asoc = &stcb->asoc; 1173 phdr = (struct sctp_paramhdr *)((caddr_t)ch + 1174 sizeof(struct sctp_chunkhdr)); 1175 chklen = ntohs(ch->chunk_length) - sizeof(struct sctp_chunkhdr); 1176 error = 0; 1177 while ((size_t)chklen >= sizeof(struct sctp_paramhdr)) { 1178 /* Process an Error Cause */ 1179 error_type = ntohs(phdr->param_type); 1180 error_len = ntohs(phdr->param_length); 1181 if ((error_len > chklen) || (error_len == 0)) { 1182 /* invalid param length for this param */ 1183 SCTPDBG(SCTP_DEBUG_INPUT1, "Bogus length in error param- chunk left:%d errorlen:%d\n", 1184 chklen, error_len); 1185 return (0); 1186 } 1187 if (error == 0) { 1188 /* report the first error cause */ 1189 error = error_type; 1190 } 1191 switch (error_type) { 1192 case SCTP_CAUSE_INVALID_STREAM: 1193 case SCTP_CAUSE_MISSING_PARAM: 1194 case SCTP_CAUSE_INVALID_PARAM: 1195 case SCTP_CAUSE_NO_USER_DATA: 1196 SCTPDBG(SCTP_DEBUG_INPUT1, "Software error we got a %d back? We have a bug :/ (or do they?)\n", 1197 error_type); 1198 break; 1199 case SCTP_CAUSE_NAT_COLLIDING_STATE: 1200 SCTPDBG(SCTP_DEBUG_INPUT2, "Received Colliding state abort flags:%x\n", 1201 ch->chunk_flags); 1202 if (sctp_handle_nat_colliding_state(stcb)) { 1203 return (0); 1204 } 1205 break; 1206 case SCTP_CAUSE_NAT_MISSING_STATE: 1207 SCTPDBG(SCTP_DEBUG_INPUT2, "Received missing state abort flags:%x\n", 1208 ch->chunk_flags); 1209 if (sctp_handle_nat_missing_state(stcb, net)) { 1210 return (0); 1211 } 1212 break; 1213 case SCTP_CAUSE_STALE_COOKIE: 1214 /* 1215 * We only act if we have echoed a cookie and are 1216 * waiting. 1217 */ 1218 if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) { 1219 int *p; 1220 1221 p = (int *)((caddr_t)phdr + sizeof(*phdr)); 1222 /* Save the time doubled */ 1223 asoc->cookie_preserve_req = ntohl(*p) << 1; 1224 asoc->stale_cookie_count++; 1225 if (asoc->stale_cookie_count > 1226 asoc->max_init_times) { 1227 sctp_abort_notification(stcb, 0, 0, NULL, SCTP_SO_NOT_LOCKED); 1228 /* now free the asoc */ 1229 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1230 so = SCTP_INP_SO(stcb->sctp_ep); 1231 atomic_add_int(&stcb->asoc.refcnt, 1); 1232 SCTP_TCB_UNLOCK(stcb); 1233 SCTP_SOCKET_LOCK(so, 1); 1234 SCTP_TCB_LOCK(stcb); 1235 atomic_subtract_int(&stcb->asoc.refcnt, 1); 1236 #endif 1237 (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 1238 SCTP_FROM_SCTP_INPUT + SCTP_LOC_12); 1239 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1240 SCTP_SOCKET_UNLOCK(so, 1); 1241 #endif 1242 return (-1); 1243 } 1244 /* blast back to INIT state */ 1245 sctp_toss_old_cookies(stcb, &stcb->asoc); 1246 asoc->state &= ~SCTP_STATE_COOKIE_ECHOED; 1247 asoc->state |= SCTP_STATE_COOKIE_WAIT; 1248 sctp_stop_all_cookie_timers(stcb); 1249 sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 1250 } 1251 break; 1252 case SCTP_CAUSE_UNRESOLVABLE_ADDR: 1253 /* 1254 * Nothing we can do here, we don't do hostname 1255 * addresses so if the peer does not like my IPv6 1256 * (or IPv4 for that matter) it does not matter. If 1257 * they don't support that type of address, they can 1258 * NOT possibly get that packet type... i.e. with no 1259 * IPv6 you can't recieve a IPv6 packet. so we can 1260 * safely ignore this one. If we ever added support 1261 * for HOSTNAME Addresses, then we would need to do 1262 * something here. 1263 */ 1264 break; 1265 case SCTP_CAUSE_UNRECOG_CHUNK: 1266 sctp_process_unrecog_chunk(stcb, phdr, net); 1267 break; 1268 case SCTP_CAUSE_UNRECOG_PARAM: 1269 sctp_process_unrecog_param(stcb, phdr); 1270 break; 1271 case SCTP_CAUSE_COOKIE_IN_SHUTDOWN: 1272 /* 1273 * We ignore this since the timer will drive out a 1274 * new cookie anyway and there timer will drive us 1275 * to send a SHUTDOWN_COMPLETE. We can't send one 1276 * here since we don't have their tag. 1277 */ 1278 break; 1279 case SCTP_CAUSE_DELETING_LAST_ADDR: 1280 case SCTP_CAUSE_RESOURCE_SHORTAGE: 1281 case SCTP_CAUSE_DELETING_SRC_ADDR: 1282 /* 1283 * We should NOT get these here, but in a 1284 * ASCONF-ACK. 1285 */ 1286 SCTPDBG(SCTP_DEBUG_INPUT2, "Peer sends ASCONF errors in a Operational Error?<%d>?\n", 1287 error_type); 1288 break; 1289 case SCTP_CAUSE_OUT_OF_RESC: 1290 /* 1291 * And what, pray tell do we do with the fact that 1292 * the peer is out of resources? Not really sure we 1293 * could do anything but abort. I suspect this 1294 * should have came WITH an abort instead of in a 1295 * OP-ERROR. 1296 */ 1297 break; 1298 default: 1299 SCTPDBG(SCTP_DEBUG_INPUT1, "sctp_handle_error: unknown error type = 0x%xh\n", 1300 error_type); 1301 break; 1302 } 1303 adjust = SCTP_SIZE32(error_len); 1304 chklen -= adjust; 1305 phdr = (struct sctp_paramhdr *)((caddr_t)phdr + adjust); 1306 } 1307 sctp_ulp_notify(SCTP_NOTIFY_REMOTE_ERROR, stcb, error, ch, SCTP_SO_NOT_LOCKED); 1308 return (0); 1309 } 1310 1311 static int 1312 sctp_handle_init_ack(struct mbuf *m, int iphlen, int offset, 1313 struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, 1314 struct sctp_init_ack_chunk *cp, struct sctp_tcb *stcb, 1315 struct sctp_nets *net, int *abort_no_unlock, 1316 uint8_t mflowtype, uint32_t mflowid, 1317 uint32_t vrf_id) 1318 { 1319 struct sctp_init_ack *init_ack; 1320 struct mbuf *op_err; 1321 1322 SCTPDBG(SCTP_DEBUG_INPUT2, 1323 "sctp_handle_init_ack: handling INIT-ACK\n"); 1324 1325 if (stcb == NULL) { 1326 SCTPDBG(SCTP_DEBUG_INPUT2, 1327 "sctp_handle_init_ack: TCB is null\n"); 1328 return (-1); 1329 } 1330 if (ntohs(cp->ch.chunk_length) < sizeof(struct sctp_init_ack_chunk)) { 1331 /* Invalid length */ 1332 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 1333 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 1334 src, dst, sh, op_err, 1335 mflowtype, mflowid, 1336 vrf_id, net->port); 1337 *abort_no_unlock = 1; 1338 return (-1); 1339 } 1340 init_ack = &cp->init; 1341 /* validate parameters */ 1342 if (init_ack->initiate_tag == 0) { 1343 /* protocol error... send an abort */ 1344 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 1345 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 1346 src, dst, sh, op_err, 1347 mflowtype, mflowid, 1348 vrf_id, net->port); 1349 *abort_no_unlock = 1; 1350 return (-1); 1351 } 1352 if (ntohl(init_ack->a_rwnd) < SCTP_MIN_RWND) { 1353 /* protocol error... send an abort */ 1354 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 1355 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 1356 src, dst, sh, op_err, 1357 mflowtype, mflowid, 1358 vrf_id, net->port); 1359 *abort_no_unlock = 1; 1360 return (-1); 1361 } 1362 if (init_ack->num_inbound_streams == 0) { 1363 /* protocol error... send an abort */ 1364 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 1365 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 1366 src, dst, sh, op_err, 1367 mflowtype, mflowid, 1368 vrf_id, net->port); 1369 *abort_no_unlock = 1; 1370 return (-1); 1371 } 1372 if (init_ack->num_outbound_streams == 0) { 1373 /* protocol error... send an abort */ 1374 op_err = sctp_generate_cause(SCTP_CAUSE_INVALID_PARAM, ""); 1375 sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 1376 src, dst, sh, op_err, 1377 mflowtype, mflowid, 1378 vrf_id, net->port); 1379 *abort_no_unlock = 1; 1380 return (-1); 1381 } 1382 /* process according to association state... */ 1383 switch (stcb->asoc.state & SCTP_STATE_MASK) { 1384 case SCTP_STATE_COOKIE_WAIT: 1385 /* this is the expected state for this chunk */ 1386 /* process the INIT-ACK parameters */ 1387 if (stcb->asoc.primary_destination->dest_state & 1388 SCTP_ADDR_UNCONFIRMED) { 1389 /* 1390 * The primary is where we sent the INIT, we can 1391 * always consider it confirmed when the INIT-ACK is 1392 * returned. Do this before we load addresses 1393 * though. 1394 */ 1395 stcb->asoc.primary_destination->dest_state &= 1396 ~SCTP_ADDR_UNCONFIRMED; 1397 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 1398 stcb, 0, (void *)stcb->asoc.primary_destination, SCTP_SO_NOT_LOCKED); 1399 } 1400 if (sctp_process_init_ack(m, iphlen, offset, src, dst, sh, cp, stcb, 1401 net, abort_no_unlock, 1402 mflowtype, mflowid, 1403 vrf_id) < 0) { 1404 /* error in parsing parameters */ 1405 return (-1); 1406 } 1407 /* update our state */ 1408 SCTPDBG(SCTP_DEBUG_INPUT2, "moving to COOKIE-ECHOED state\n"); 1409 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_ECHOED); 1410 1411 /* reset the RTO calc */ 1412 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 1413 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 1414 stcb->asoc.overall_error_count, 1415 0, 1416 SCTP_FROM_SCTP_INPUT, 1417 __LINE__); 1418 } 1419 stcb->asoc.overall_error_count = 0; 1420 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 1421 /* 1422 * collapse the init timer back in case of a exponential 1423 * backoff 1424 */ 1425 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, stcb->sctp_ep, 1426 stcb, net); 1427 /* 1428 * the send at the end of the inbound data processing will 1429 * cause the cookie to be sent 1430 */ 1431 break; 1432 case SCTP_STATE_SHUTDOWN_SENT: 1433 /* incorrect state... discard */ 1434 break; 1435 case SCTP_STATE_COOKIE_ECHOED: 1436 /* incorrect state... discard */ 1437 break; 1438 case SCTP_STATE_OPEN: 1439 /* incorrect state... discard */ 1440 break; 1441 case SCTP_STATE_EMPTY: 1442 case SCTP_STATE_INUSE: 1443 default: 1444 /* incorrect state... discard */ 1445 return (-1); 1446 break; 1447 } 1448 SCTPDBG(SCTP_DEBUG_INPUT1, "Leaving handle-init-ack end\n"); 1449 return (0); 1450 } 1451 1452 static struct sctp_tcb * 1453 sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset, 1454 struct sockaddr *src, struct sockaddr *dst, 1455 struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 1456 struct sctp_inpcb *inp, struct sctp_nets **netp, 1457 struct sockaddr *init_src, int *notification, 1458 int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 1459 uint8_t mflowtype, uint32_t mflowid, 1460 uint32_t vrf_id, uint16_t port); 1461 1462 1463 /* 1464 * handle a state cookie for an existing association m: input packet mbuf 1465 * chain-- assumes a pullup on IP/SCTP/COOKIE-ECHO chunk note: this is a 1466 * "split" mbuf and the cookie signature does not exist offset: offset into 1467 * mbuf to the cookie-echo chunk 1468 */ 1469 static struct sctp_tcb * 1470 sctp_process_cookie_existing(struct mbuf *m, int iphlen, int offset, 1471 struct sockaddr *src, struct sockaddr *dst, 1472 struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 1473 struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets **netp, 1474 struct sockaddr *init_src, int *notification, 1475 int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 1476 uint8_t mflowtype, uint32_t mflowid, 1477 uint32_t vrf_id, uint16_t port) 1478 { 1479 struct sctp_association *asoc; 1480 struct sctp_init_chunk *init_cp, init_buf; 1481 struct sctp_init_ack_chunk *initack_cp, initack_buf; 1482 struct sctp_nets *net; 1483 struct mbuf *op_err; 1484 int init_offset, initack_offset, i; 1485 int retval; 1486 int spec_flag = 0; 1487 uint32_t how_indx; 1488 1489 #if defined(SCTP_DETAILED_STR_STATS) 1490 int j; 1491 1492 #endif 1493 1494 net = *netp; 1495 /* I know that the TCB is non-NULL from the caller */ 1496 asoc = &stcb->asoc; 1497 for (how_indx = 0; how_indx < sizeof(asoc->cookie_how); how_indx++) { 1498 if (asoc->cookie_how[how_indx] == 0) 1499 break; 1500 } 1501 if (how_indx < sizeof(asoc->cookie_how)) { 1502 asoc->cookie_how[how_indx] = 1; 1503 } 1504 if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 1505 /* SHUTDOWN came in after sending INIT-ACK */ 1506 sctp_send_shutdown_ack(stcb, stcb->asoc.primary_destination); 1507 op_err = sctp_generate_cause(SCTP_CAUSE_COOKIE_IN_SHUTDOWN, ""); 1508 sctp_send_operr_to(src, dst, sh, cookie->peers_vtag, op_err, 1509 mflowtype, mflowid, inp->fibnum, 1510 vrf_id, net->port); 1511 if (how_indx < sizeof(asoc->cookie_how)) 1512 asoc->cookie_how[how_indx] = 2; 1513 return (NULL); 1514 } 1515 /* 1516 * find and validate the INIT chunk in the cookie (peer's info) the 1517 * INIT should start after the cookie-echo header struct (chunk 1518 * header, state cookie header struct) 1519 */ 1520 init_offset = offset += sizeof(struct sctp_cookie_echo_chunk); 1521 1522 init_cp = (struct sctp_init_chunk *) 1523 sctp_m_getptr(m, init_offset, sizeof(struct sctp_init_chunk), 1524 (uint8_t *) & init_buf); 1525 if (init_cp == NULL) { 1526 /* could not pull a INIT chunk in cookie */ 1527 return (NULL); 1528 } 1529 if (init_cp->ch.chunk_type != SCTP_INITIATION) { 1530 return (NULL); 1531 } 1532 /* 1533 * find and validate the INIT-ACK chunk in the cookie (my info) the 1534 * INIT-ACK follows the INIT chunk 1535 */ 1536 initack_offset = init_offset + SCTP_SIZE32(ntohs(init_cp->ch.chunk_length)); 1537 initack_cp = (struct sctp_init_ack_chunk *) 1538 sctp_m_getptr(m, initack_offset, sizeof(struct sctp_init_ack_chunk), 1539 (uint8_t *) & initack_buf); 1540 if (initack_cp == NULL) { 1541 /* could not pull INIT-ACK chunk in cookie */ 1542 return (NULL); 1543 } 1544 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { 1545 return (NULL); 1546 } 1547 if ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1548 (ntohl(init_cp->init.initiate_tag) == asoc->peer_vtag)) { 1549 /* 1550 * case D in Section 5.2.4 Table 2: MMAA process accordingly 1551 * to get into the OPEN state 1552 */ 1553 if (ntohl(initack_cp->init.initial_tsn) != asoc->init_seq_number) { 1554 /*- 1555 * Opps, this means that we somehow generated two vtag's 1556 * the same. I.e. we did: 1557 * Us Peer 1558 * <---INIT(tag=a)------ 1559 * ----INIT-ACK(tag=t)--> 1560 * ----INIT(tag=t)------> *1 1561 * <---INIT-ACK(tag=a)--- 1562 * <----CE(tag=t)------------- *2 1563 * 1564 * At point *1 we should be generating a different 1565 * tag t'. Which means we would throw away the CE and send 1566 * ours instead. Basically this is case C (throw away side). 1567 */ 1568 if (how_indx < sizeof(asoc->cookie_how)) 1569 asoc->cookie_how[how_indx] = 17; 1570 return (NULL); 1571 1572 } 1573 switch (SCTP_GET_STATE(asoc)) { 1574 case SCTP_STATE_COOKIE_WAIT: 1575 case SCTP_STATE_COOKIE_ECHOED: 1576 /* 1577 * INIT was sent but got a COOKIE_ECHO with the 1578 * correct tags... just accept it...but we must 1579 * process the init so that we can make sure we have 1580 * the right seq no's. 1581 */ 1582 /* First we must process the INIT !! */ 1583 retval = sctp_process_init(init_cp, stcb); 1584 if (retval < 0) { 1585 if (how_indx < sizeof(asoc->cookie_how)) 1586 asoc->cookie_how[how_indx] = 3; 1587 return (NULL); 1588 } 1589 /* we have already processed the INIT so no problem */ 1590 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, 1591 stcb, net, 1592 SCTP_FROM_SCTP_INPUT + SCTP_LOC_13); 1593 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, 1594 stcb, net, 1595 SCTP_FROM_SCTP_INPUT + SCTP_LOC_14); 1596 /* update current state */ 1597 if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) 1598 SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 1599 else 1600 SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1601 1602 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1603 if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1604 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1605 stcb->sctp_ep, stcb, asoc->primary_destination); 1606 } 1607 SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1608 sctp_stop_all_cookie_timers(stcb); 1609 if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1610 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 1611 (inp->sctp_socket->so_qlimit == 0) 1612 ) { 1613 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1614 struct socket *so; 1615 1616 #endif 1617 /* 1618 * Here is where collision would go if we 1619 * did a connect() and instead got a 1620 * init/init-ack/cookie done before the 1621 * init-ack came back.. 1622 */ 1623 stcb->sctp_ep->sctp_flags |= 1624 SCTP_PCB_FLAGS_CONNECTED; 1625 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1626 so = SCTP_INP_SO(stcb->sctp_ep); 1627 atomic_add_int(&stcb->asoc.refcnt, 1); 1628 SCTP_TCB_UNLOCK(stcb); 1629 SCTP_SOCKET_LOCK(so, 1); 1630 SCTP_TCB_LOCK(stcb); 1631 atomic_add_int(&stcb->asoc.refcnt, -1); 1632 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 1633 SCTP_SOCKET_UNLOCK(so, 1); 1634 return (NULL); 1635 } 1636 #endif 1637 soisconnected(stcb->sctp_socket); 1638 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1639 SCTP_SOCKET_UNLOCK(so, 1); 1640 #endif 1641 } 1642 /* notify upper layer */ 1643 *notification = SCTP_NOTIFY_ASSOC_UP; 1644 /* 1645 * since we did not send a HB make sure we don't 1646 * double things 1647 */ 1648 net->hb_responded = 1; 1649 net->RTO = sctp_calculate_rto(stcb, asoc, net, 1650 &cookie->time_entered, 1651 sctp_align_unsafe_makecopy, 1652 SCTP_RTT_FROM_NON_DATA); 1653 1654 if (stcb->asoc.sctp_autoclose_ticks && 1655 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE))) { 1656 sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, 1657 inp, stcb, NULL); 1658 } 1659 break; 1660 default: 1661 /* 1662 * we're in the OPEN state (or beyond), so peer must 1663 * have simply lost the COOKIE-ACK 1664 */ 1665 break; 1666 } /* end switch */ 1667 sctp_stop_all_cookie_timers(stcb); 1668 /* 1669 * We ignore the return code here.. not sure if we should 1670 * somehow abort.. but we do have an existing asoc. This 1671 * really should not fail. 1672 */ 1673 if (sctp_load_addresses_from_init(stcb, m, 1674 init_offset + sizeof(struct sctp_init_chunk), 1675 initack_offset, src, dst, init_src)) { 1676 if (how_indx < sizeof(asoc->cookie_how)) 1677 asoc->cookie_how[how_indx] = 4; 1678 return (NULL); 1679 } 1680 /* respond with a COOKIE-ACK */ 1681 sctp_toss_old_cookies(stcb, asoc); 1682 sctp_send_cookie_ack(stcb); 1683 if (how_indx < sizeof(asoc->cookie_how)) 1684 asoc->cookie_how[how_indx] = 5; 1685 return (stcb); 1686 } 1687 if (ntohl(initack_cp->init.initiate_tag) != asoc->my_vtag && 1688 ntohl(init_cp->init.initiate_tag) == asoc->peer_vtag && 1689 cookie->tie_tag_my_vtag == 0 && 1690 cookie->tie_tag_peer_vtag == 0) { 1691 /* 1692 * case C in Section 5.2.4 Table 2: XMOO silently discard 1693 */ 1694 if (how_indx < sizeof(asoc->cookie_how)) 1695 asoc->cookie_how[how_indx] = 6; 1696 return (NULL); 1697 } 1698 /* 1699 * If nat support, and the below and stcb is established, send back 1700 * a ABORT(colliding state) if we are established. 1701 */ 1702 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) && 1703 (asoc->peer_supports_nat) && 1704 ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1705 ((ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) || 1706 (asoc->peer_vtag == 0)))) { 1707 /* 1708 * Special case - Peer's support nat. We may have two init's 1709 * that we gave out the same tag on since one was not 1710 * established.. i.e. we get INIT from host-1 behind the nat 1711 * and we respond tag-a, we get a INIT from host-2 behind 1712 * the nat and we get tag-a again. Then we bring up host-1 1713 * (or 2's) assoc, Then comes the cookie from hsot-2 (or 1). 1714 * Now we have colliding state. We must send an abort here 1715 * with colliding state indication. 1716 */ 1717 op_err = sctp_generate_cause(SCTP_CAUSE_NAT_COLLIDING_STATE, ""); 1718 sctp_send_abort(m, iphlen, src, dst, sh, 0, op_err, 1719 mflowtype, mflowid, inp->fibnum, 1720 vrf_id, port); 1721 return (NULL); 1722 } 1723 if ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1724 ((ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) || 1725 (asoc->peer_vtag == 0))) { 1726 /* 1727 * case B in Section 5.2.4 Table 2: MXAA or MOAA my info 1728 * should be ok, re-accept peer info 1729 */ 1730 if (ntohl(initack_cp->init.initial_tsn) != asoc->init_seq_number) { 1731 /* 1732 * Extension of case C. If we hit this, then the 1733 * random number generator returned the same vtag 1734 * when we first sent our INIT-ACK and when we later 1735 * sent our INIT. The side with the seq numbers that 1736 * are different will be the one that normnally 1737 * would have hit case C. This in effect "extends" 1738 * our vtags in this collision case to be 64 bits. 1739 * The same collision could occur aka you get both 1740 * vtag and seq number the same twice in a row.. but 1741 * is much less likely. If it did happen then we 1742 * would proceed through and bring up the assoc.. we 1743 * may end up with the wrong stream setup however.. 1744 * which would be bad.. but there is no way to 1745 * tell.. until we send on a stream that does not 1746 * exist :-) 1747 */ 1748 if (how_indx < sizeof(asoc->cookie_how)) 1749 asoc->cookie_how[how_indx] = 7; 1750 1751 return (NULL); 1752 } 1753 if (how_indx < sizeof(asoc->cookie_how)) 1754 asoc->cookie_how[how_indx] = 8; 1755 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 1756 SCTP_FROM_SCTP_INPUT + SCTP_LOC_15); 1757 sctp_stop_all_cookie_timers(stcb); 1758 /* 1759 * since we did not send a HB make sure we don't double 1760 * things 1761 */ 1762 net->hb_responded = 1; 1763 if (stcb->asoc.sctp_autoclose_ticks && 1764 sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) { 1765 sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, 1766 NULL); 1767 } 1768 asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 1769 asoc->pre_open_streams = ntohs(initack_cp->init.num_outbound_streams); 1770 1771 if (ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) { 1772 /* 1773 * Ok the peer probably discarded our data (if we 1774 * echoed a cookie+data). So anything on the 1775 * sent_queue should be marked for retransmit, we 1776 * may not get something to kick us so it COULD 1777 * still take a timeout to move these.. but it can't 1778 * hurt to mark them. 1779 */ 1780 struct sctp_tmit_chunk *chk; 1781 1782 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { 1783 if (chk->sent < SCTP_DATAGRAM_RESEND) { 1784 chk->sent = SCTP_DATAGRAM_RESEND; 1785 sctp_flight_size_decrease(chk); 1786 sctp_total_flight_decrease(stcb, chk); 1787 sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1788 spec_flag++; 1789 } 1790 } 1791 1792 } 1793 /* process the INIT info (peer's info) */ 1794 retval = sctp_process_init(init_cp, stcb); 1795 if (retval < 0) { 1796 if (how_indx < sizeof(asoc->cookie_how)) 1797 asoc->cookie_how[how_indx] = 9; 1798 return (NULL); 1799 } 1800 if (sctp_load_addresses_from_init(stcb, m, 1801 init_offset + sizeof(struct sctp_init_chunk), 1802 initack_offset, src, dst, init_src)) { 1803 if (how_indx < sizeof(asoc->cookie_how)) 1804 asoc->cookie_how[how_indx] = 10; 1805 return (NULL); 1806 } 1807 if ((asoc->state & SCTP_STATE_COOKIE_WAIT) || 1808 (asoc->state & SCTP_STATE_COOKIE_ECHOED)) { 1809 *notification = SCTP_NOTIFY_ASSOC_UP; 1810 1811 if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1812 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 1813 (inp->sctp_socket->so_qlimit == 0)) { 1814 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1815 struct socket *so; 1816 1817 #endif 1818 stcb->sctp_ep->sctp_flags |= 1819 SCTP_PCB_FLAGS_CONNECTED; 1820 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1821 so = SCTP_INP_SO(stcb->sctp_ep); 1822 atomic_add_int(&stcb->asoc.refcnt, 1); 1823 SCTP_TCB_UNLOCK(stcb); 1824 SCTP_SOCKET_LOCK(so, 1); 1825 SCTP_TCB_LOCK(stcb); 1826 atomic_add_int(&stcb->asoc.refcnt, -1); 1827 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 1828 SCTP_SOCKET_UNLOCK(so, 1); 1829 return (NULL); 1830 } 1831 #endif 1832 soisconnected(stcb->sctp_socket); 1833 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1834 SCTP_SOCKET_UNLOCK(so, 1); 1835 #endif 1836 } 1837 if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) 1838 SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 1839 else 1840 SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1841 SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1842 } else if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 1843 SCTP_STAT_INCR_COUNTER32(sctps_restartestab); 1844 } else { 1845 SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1846 } 1847 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1848 if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1849 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1850 stcb->sctp_ep, stcb, asoc->primary_destination); 1851 } 1852 sctp_stop_all_cookie_timers(stcb); 1853 sctp_toss_old_cookies(stcb, asoc); 1854 sctp_send_cookie_ack(stcb); 1855 if (spec_flag) { 1856 /* 1857 * only if we have retrans set do we do this. What 1858 * this call does is get only the COOKIE-ACK out and 1859 * then when we return the normal call to 1860 * sctp_chunk_output will get the retrans out behind 1861 * this. 1862 */ 1863 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_COOKIE_ACK, SCTP_SO_NOT_LOCKED); 1864 } 1865 if (how_indx < sizeof(asoc->cookie_how)) 1866 asoc->cookie_how[how_indx] = 11; 1867 1868 return (stcb); 1869 } 1870 if ((ntohl(initack_cp->init.initiate_tag) != asoc->my_vtag && 1871 ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) && 1872 cookie->tie_tag_my_vtag == asoc->my_vtag_nonce && 1873 cookie->tie_tag_peer_vtag == asoc->peer_vtag_nonce && 1874 cookie->tie_tag_peer_vtag != 0) { 1875 struct sctpasochead *head; 1876 1877 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1878 struct socket *so; 1879 1880 #endif 1881 1882 if (asoc->peer_supports_nat) { 1883 /* 1884 * This is a gross gross hack. Just call the 1885 * cookie_new code since we are allowing a duplicate 1886 * association. I hope this works... 1887 */ 1888 return (sctp_process_cookie_new(m, iphlen, offset, src, dst, 1889 sh, cookie, cookie_len, 1890 inp, netp, init_src, notification, 1891 auth_skipped, auth_offset, auth_len, 1892 mflowtype, mflowid, 1893 vrf_id, port)); 1894 } 1895 /* 1896 * case A in Section 5.2.4 Table 2: XXMM (peer restarted) 1897 */ 1898 /* temp code */ 1899 if (how_indx < sizeof(asoc->cookie_how)) 1900 asoc->cookie_how[how_indx] = 12; 1901 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, stcb, net, 1902 SCTP_FROM_SCTP_INPUT + SCTP_LOC_16); 1903 sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, 1904 SCTP_FROM_SCTP_INPUT + SCTP_LOC_17); 1905 1906 /* notify upper layer */ 1907 *notification = SCTP_NOTIFY_ASSOC_RESTART; 1908 atomic_add_int(&stcb->asoc.refcnt, 1); 1909 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_OPEN) && 1910 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 1911 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT)) { 1912 SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1913 } 1914 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 1915 SCTP_STAT_INCR_GAUGE32(sctps_restartestab); 1916 } else if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) { 1917 SCTP_STAT_INCR_GAUGE32(sctps_collisionestab); 1918 } 1919 if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1920 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1921 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1922 stcb->sctp_ep, stcb, asoc->primary_destination); 1923 1924 } else if (!(asoc->state & SCTP_STATE_SHUTDOWN_SENT)) { 1925 /* move to OPEN state, if not in SHUTDOWN_SENT */ 1926 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1927 } 1928 asoc->pre_open_streams = 1929 ntohs(initack_cp->init.num_outbound_streams); 1930 asoc->init_seq_number = ntohl(initack_cp->init.initial_tsn); 1931 asoc->sending_seq = asoc->asconf_seq_out = asoc->str_reset_seq_out = asoc->init_seq_number; 1932 asoc->asconf_seq_out_acked = asoc->asconf_seq_out - 1; 1933 1934 asoc->asconf_seq_in = asoc->last_acked_seq = asoc->init_seq_number - 1; 1935 1936 asoc->str_reset_seq_in = asoc->init_seq_number; 1937 1938 asoc->advanced_peer_ack_point = asoc->last_acked_seq; 1939 if (asoc->mapping_array) { 1940 memset(asoc->mapping_array, 0, 1941 asoc->mapping_array_size); 1942 } 1943 if (asoc->nr_mapping_array) { 1944 memset(asoc->nr_mapping_array, 0, 1945 asoc->mapping_array_size); 1946 } 1947 SCTP_TCB_UNLOCK(stcb); 1948 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1949 so = SCTP_INP_SO(stcb->sctp_ep); 1950 SCTP_SOCKET_LOCK(so, 1); 1951 #endif 1952 SCTP_INP_INFO_WLOCK(); 1953 SCTP_INP_WLOCK(stcb->sctp_ep); 1954 SCTP_TCB_LOCK(stcb); 1955 atomic_add_int(&stcb->asoc.refcnt, -1); 1956 /* send up all the data */ 1957 SCTP_TCB_SEND_LOCK(stcb); 1958 1959 sctp_report_all_outbound(stcb, 0, 1, SCTP_SO_LOCKED); 1960 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 1961 stcb->asoc.strmout[i].chunks_on_queues = 0; 1962 #if defined(SCTP_DETAILED_STR_STATS) 1963 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 1964 asoc->strmout[i].abandoned_sent[j] = 0; 1965 asoc->strmout[i].abandoned_unsent[j] = 0; 1966 } 1967 #else 1968 asoc->strmout[i].abandoned_sent[0] = 0; 1969 asoc->strmout[i].abandoned_unsent[0] = 0; 1970 #endif 1971 stcb->asoc.strmout[i].stream_no = i; 1972 stcb->asoc.strmout[i].next_sequence_send = 0; 1973 stcb->asoc.strmout[i].last_msg_incomplete = 0; 1974 } 1975 /* process the INIT-ACK info (my info) */ 1976 asoc->my_vtag = ntohl(initack_cp->init.initiate_tag); 1977 asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 1978 1979 /* pull from vtag hash */ 1980 LIST_REMOVE(stcb, sctp_asocs); 1981 /* re-insert to new vtag position */ 1982 head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, 1983 SCTP_BASE_INFO(hashasocmark))]; 1984 /* 1985 * put it in the bucket in the vtag hash of assoc's for the 1986 * system 1987 */ 1988 LIST_INSERT_HEAD(head, stcb, sctp_asocs); 1989 1990 SCTP_TCB_SEND_UNLOCK(stcb); 1991 SCTP_INP_WUNLOCK(stcb->sctp_ep); 1992 SCTP_INP_INFO_WUNLOCK(); 1993 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1994 SCTP_SOCKET_UNLOCK(so, 1); 1995 #endif 1996 asoc->total_flight = 0; 1997 asoc->total_flight_count = 0; 1998 /* process the INIT info (peer's info) */ 1999 retval = sctp_process_init(init_cp, stcb); 2000 if (retval < 0) { 2001 if (how_indx < sizeof(asoc->cookie_how)) 2002 asoc->cookie_how[how_indx] = 13; 2003 2004 return (NULL); 2005 } 2006 /* 2007 * since we did not send a HB make sure we don't double 2008 * things 2009 */ 2010 net->hb_responded = 1; 2011 2012 if (sctp_load_addresses_from_init(stcb, m, 2013 init_offset + sizeof(struct sctp_init_chunk), 2014 initack_offset, src, dst, init_src)) { 2015 if (how_indx < sizeof(asoc->cookie_how)) 2016 asoc->cookie_how[how_indx] = 14; 2017 2018 return (NULL); 2019 } 2020 /* respond with a COOKIE-ACK */ 2021 sctp_stop_all_cookie_timers(stcb); 2022 sctp_toss_old_cookies(stcb, asoc); 2023 sctp_send_cookie_ack(stcb); 2024 if (how_indx < sizeof(asoc->cookie_how)) 2025 asoc->cookie_how[how_indx] = 15; 2026 2027 return (stcb); 2028 } 2029 if (how_indx < sizeof(asoc->cookie_how)) 2030 asoc->cookie_how[how_indx] = 16; 2031 /* all other cases... */ 2032 return (NULL); 2033 } 2034 2035 2036 /* 2037 * handle a state cookie for a new association m: input packet mbuf chain-- 2038 * assumes a pullup on IP/SCTP/COOKIE-ECHO chunk note: this is a "split" mbuf 2039 * and the cookie signature does not exist offset: offset into mbuf to the 2040 * cookie-echo chunk length: length of the cookie chunk to: where the init 2041 * was from returns a new TCB 2042 */ 2043 static struct sctp_tcb * 2044 sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset, 2045 struct sockaddr *src, struct sockaddr *dst, 2046 struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 2047 struct sctp_inpcb *inp, struct sctp_nets **netp, 2048 struct sockaddr *init_src, int *notification, 2049 int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 2050 uint8_t mflowtype, uint32_t mflowid, 2051 uint32_t vrf_id, uint16_t port) 2052 { 2053 struct sctp_tcb *stcb; 2054 struct sctp_init_chunk *init_cp, init_buf; 2055 struct sctp_init_ack_chunk *initack_cp, initack_buf; 2056 union sctp_sockstore store; 2057 struct sctp_association *asoc; 2058 int init_offset, initack_offset, initack_limit; 2059 int retval; 2060 int error = 0; 2061 uint8_t auth_chunk_buf[SCTP_PARAM_BUFFER_SIZE]; 2062 2063 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2064 struct socket *so; 2065 2066 so = SCTP_INP_SO(inp); 2067 #endif 2068 2069 /* 2070 * find and validate the INIT chunk in the cookie (peer's info) the 2071 * INIT should start after the cookie-echo header struct (chunk 2072 * header, state cookie header struct) 2073 */ 2074 init_offset = offset + sizeof(struct sctp_cookie_echo_chunk); 2075 init_cp = (struct sctp_init_chunk *) 2076 sctp_m_getptr(m, init_offset, sizeof(struct sctp_init_chunk), 2077 (uint8_t *) & init_buf); 2078 if (init_cp == NULL) { 2079 /* could not pull a INIT chunk in cookie */ 2080 SCTPDBG(SCTP_DEBUG_INPUT1, 2081 "process_cookie_new: could not pull INIT chunk hdr\n"); 2082 return (NULL); 2083 } 2084 if (init_cp->ch.chunk_type != SCTP_INITIATION) { 2085 SCTPDBG(SCTP_DEBUG_INPUT1, "HUH? process_cookie_new: could not find INIT chunk!\n"); 2086 return (NULL); 2087 } 2088 initack_offset = init_offset + SCTP_SIZE32(ntohs(init_cp->ch.chunk_length)); 2089 /* 2090 * find and validate the INIT-ACK chunk in the cookie (my info) the 2091 * INIT-ACK follows the INIT chunk 2092 */ 2093 initack_cp = (struct sctp_init_ack_chunk *) 2094 sctp_m_getptr(m, initack_offset, sizeof(struct sctp_init_ack_chunk), 2095 (uint8_t *) & initack_buf); 2096 if (initack_cp == NULL) { 2097 /* could not pull INIT-ACK chunk in cookie */ 2098 SCTPDBG(SCTP_DEBUG_INPUT1, "process_cookie_new: could not pull INIT-ACK chunk hdr\n"); 2099 return (NULL); 2100 } 2101 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { 2102 return (NULL); 2103 } 2104 /* 2105 * NOTE: We can't use the INIT_ACK's chk_length to determine the 2106 * "initack_limit" value. This is because the chk_length field 2107 * includes the length of the cookie, but the cookie is omitted when 2108 * the INIT and INIT_ACK are tacked onto the cookie... 2109 */ 2110 initack_limit = offset + cookie_len; 2111 2112 /* 2113 * now that we know the INIT/INIT-ACK are in place, create a new TCB 2114 * and popluate 2115 */ 2116 2117 /* 2118 * Here we do a trick, we set in NULL for the proc/thread argument. 2119 * We do this since in effect we only use the p argument when the 2120 * socket is unbound and we must do an implicit bind. Since we are 2121 * getting a cookie, we cannot be unbound. 2122 */ 2123 stcb = sctp_aloc_assoc(inp, init_src, &error, 2124 ntohl(initack_cp->init.initiate_tag), vrf_id, 2125 ntohs(initack_cp->init.num_outbound_streams), 2126 (struct thread *)NULL 2127 ); 2128 if (stcb == NULL) { 2129 struct mbuf *op_err; 2130 2131 /* memory problem? */ 2132 SCTPDBG(SCTP_DEBUG_INPUT1, 2133 "process_cookie_new: no room for another TCB!\n"); 2134 op_err = sctp_generate_cause(SCTP_CAUSE_OUT_OF_RESC, ""); 2135 sctp_abort_association(inp, (struct sctp_tcb *)NULL, m, iphlen, 2136 src, dst, sh, op_err, 2137 mflowtype, mflowid, 2138 vrf_id, port); 2139 return (NULL); 2140 } 2141 /* get the correct sctp_nets */ 2142 if (netp) 2143 *netp = sctp_findnet(stcb, init_src); 2144 2145 asoc = &stcb->asoc; 2146 /* get scope variables out of cookie */ 2147 asoc->scope.ipv4_local_scope = cookie->ipv4_scope; 2148 asoc->scope.site_scope = cookie->site_scope; 2149 asoc->scope.local_scope = cookie->local_scope; 2150 asoc->scope.loopback_scope = cookie->loopback_scope; 2151 2152 if ((asoc->scope.ipv4_addr_legal != cookie->ipv4_addr_legal) || 2153 (asoc->scope.ipv6_addr_legal != cookie->ipv6_addr_legal)) { 2154 struct mbuf *op_err; 2155 2156 /* 2157 * Houston we have a problem. The EP changed while the 2158 * cookie was in flight. Only recourse is to abort the 2159 * association. 2160 */ 2161 atomic_add_int(&stcb->asoc.refcnt, 1); 2162 op_err = sctp_generate_cause(SCTP_CAUSE_OUT_OF_RESC, ""); 2163 sctp_abort_association(inp, (struct sctp_tcb *)NULL, m, iphlen, 2164 src, dst, sh, op_err, 2165 mflowtype, mflowid, 2166 vrf_id, port); 2167 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2168 SCTP_TCB_UNLOCK(stcb); 2169 SCTP_SOCKET_LOCK(so, 1); 2170 SCTP_TCB_LOCK(stcb); 2171 #endif 2172 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2173 SCTP_FROM_SCTP_INPUT + SCTP_LOC_18); 2174 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2175 SCTP_SOCKET_UNLOCK(so, 1); 2176 #endif 2177 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2178 return (NULL); 2179 } 2180 /* process the INIT-ACK info (my info) */ 2181 asoc->my_vtag = ntohl(initack_cp->init.initiate_tag); 2182 asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 2183 asoc->pre_open_streams = ntohs(initack_cp->init.num_outbound_streams); 2184 asoc->init_seq_number = ntohl(initack_cp->init.initial_tsn); 2185 asoc->sending_seq = asoc->asconf_seq_out = asoc->str_reset_seq_out = asoc->init_seq_number; 2186 asoc->asconf_seq_out_acked = asoc->asconf_seq_out - 1; 2187 asoc->asconf_seq_in = asoc->last_acked_seq = asoc->init_seq_number - 1; 2188 asoc->str_reset_seq_in = asoc->init_seq_number; 2189 2190 asoc->advanced_peer_ack_point = asoc->last_acked_seq; 2191 2192 /* process the INIT info (peer's info) */ 2193 if (netp) 2194 retval = sctp_process_init(init_cp, stcb); 2195 else 2196 retval = 0; 2197 if (retval < 0) { 2198 atomic_add_int(&stcb->asoc.refcnt, 1); 2199 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2200 SCTP_TCB_UNLOCK(stcb); 2201 SCTP_SOCKET_LOCK(so, 1); 2202 SCTP_TCB_LOCK(stcb); 2203 #endif 2204 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2205 SCTP_FROM_SCTP_INPUT + SCTP_LOC_19); 2206 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2207 SCTP_SOCKET_UNLOCK(so, 1); 2208 #endif 2209 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2210 return (NULL); 2211 } 2212 /* load all addresses */ 2213 if (sctp_load_addresses_from_init(stcb, m, 2214 init_offset + sizeof(struct sctp_init_chunk), initack_offset, 2215 src, dst, init_src)) { 2216 atomic_add_int(&stcb->asoc.refcnt, 1); 2217 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2218 SCTP_TCB_UNLOCK(stcb); 2219 SCTP_SOCKET_LOCK(so, 1); 2220 SCTP_TCB_LOCK(stcb); 2221 #endif 2222 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2223 SCTP_FROM_SCTP_INPUT + SCTP_LOC_20); 2224 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2225 SCTP_SOCKET_UNLOCK(so, 1); 2226 #endif 2227 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2228 return (NULL); 2229 } 2230 /* 2231 * verify any preceding AUTH chunk that was skipped 2232 */ 2233 /* pull the local authentication parameters from the cookie/init-ack */ 2234 sctp_auth_get_cookie_params(stcb, m, 2235 initack_offset + sizeof(struct sctp_init_ack_chunk), 2236 initack_limit - (initack_offset + sizeof(struct sctp_init_ack_chunk))); 2237 if (auth_skipped) { 2238 struct sctp_auth_chunk *auth; 2239 2240 auth = (struct sctp_auth_chunk *) 2241 sctp_m_getptr(m, auth_offset, auth_len, auth_chunk_buf); 2242 if ((auth == NULL) || sctp_handle_auth(stcb, auth, m, auth_offset)) { 2243 /* auth HMAC failed, dump the assoc and packet */ 2244 SCTPDBG(SCTP_DEBUG_AUTH1, 2245 "COOKIE-ECHO: AUTH failed\n"); 2246 atomic_add_int(&stcb->asoc.refcnt, 1); 2247 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2248 SCTP_TCB_UNLOCK(stcb); 2249 SCTP_SOCKET_LOCK(so, 1); 2250 SCTP_TCB_LOCK(stcb); 2251 #endif 2252 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2253 SCTP_FROM_SCTP_INPUT + SCTP_LOC_21); 2254 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2255 SCTP_SOCKET_UNLOCK(so, 1); 2256 #endif 2257 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2258 return (NULL); 2259 } else { 2260 /* remaining chunks checked... good to go */ 2261 stcb->asoc.authenticated = 1; 2262 } 2263 } 2264 /* update current state */ 2265 SCTPDBG(SCTP_DEBUG_INPUT2, "moving to OPEN state\n"); 2266 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 2267 if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 2268 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 2269 stcb->sctp_ep, stcb, asoc->primary_destination); 2270 } 2271 sctp_stop_all_cookie_timers(stcb); 2272 SCTP_STAT_INCR_COUNTER32(sctps_passiveestab); 2273 SCTP_STAT_INCR_GAUGE32(sctps_currestab); 2274 2275 /* 2276 * if we're doing ASCONFs, check to see if we have any new local 2277 * addresses that need to get added to the peer (eg. addresses 2278 * changed while cookie echo in flight). This needs to be done 2279 * after we go to the OPEN state to do the correct asconf 2280 * processing. else, make sure we have the correct addresses in our 2281 * lists 2282 */ 2283 2284 /* warning, we re-use sin, sin6, sa_store here! */ 2285 /* pull in local_address (our "from" address) */ 2286 switch (cookie->laddr_type) { 2287 #ifdef INET 2288 case SCTP_IPV4_ADDRESS: 2289 /* source addr is IPv4 */ 2290 memset(&store.sin, 0, sizeof(struct sockaddr_in)); 2291 store.sin.sin_family = AF_INET; 2292 store.sin.sin_len = sizeof(struct sockaddr_in); 2293 store.sin.sin_addr.s_addr = cookie->laddress[0]; 2294 break; 2295 #endif 2296 #ifdef INET6 2297 case SCTP_IPV6_ADDRESS: 2298 /* source addr is IPv6 */ 2299 memset(&store.sin6, 0, sizeof(struct sockaddr_in6)); 2300 store.sin6.sin6_family = AF_INET6; 2301 store.sin6.sin6_len = sizeof(struct sockaddr_in6); 2302 store.sin6.sin6_scope_id = cookie->scope_id; 2303 memcpy(&store.sin6.sin6_addr, cookie->laddress, sizeof(struct in6_addr)); 2304 break; 2305 #endif 2306 default: 2307 atomic_add_int(&stcb->asoc.refcnt, 1); 2308 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2309 SCTP_TCB_UNLOCK(stcb); 2310 SCTP_SOCKET_LOCK(so, 1); 2311 SCTP_TCB_LOCK(stcb); 2312 #endif 2313 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2314 SCTP_FROM_SCTP_INPUT + SCTP_LOC_22); 2315 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2316 SCTP_SOCKET_UNLOCK(so, 1); 2317 #endif 2318 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2319 return (NULL); 2320 } 2321 2322 /* set up to notify upper layer */ 2323 *notification = SCTP_NOTIFY_ASSOC_UP; 2324 if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2325 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 2326 (inp->sctp_socket->so_qlimit == 0)) { 2327 /* 2328 * This is an endpoint that called connect() how it got a 2329 * cookie that is NEW is a bit of a mystery. It must be that 2330 * the INIT was sent, but before it got there.. a complete 2331 * INIT/INIT-ACK/COOKIE arrived. But of course then it 2332 * should have went to the other code.. not here.. oh well.. 2333 * a bit of protection is worth having.. 2334 */ 2335 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 2336 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2337 atomic_add_int(&stcb->asoc.refcnt, 1); 2338 SCTP_TCB_UNLOCK(stcb); 2339 SCTP_SOCKET_LOCK(so, 1); 2340 SCTP_TCB_LOCK(stcb); 2341 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2342 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 2343 SCTP_SOCKET_UNLOCK(so, 1); 2344 return (NULL); 2345 } 2346 #endif 2347 soisconnected(stcb->sctp_socket); 2348 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2349 SCTP_SOCKET_UNLOCK(so, 1); 2350 #endif 2351 } else if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 2352 (inp->sctp_socket->so_qlimit)) { 2353 /* 2354 * We don't want to do anything with this one. Since it is 2355 * the listening guy. The timer will get started for 2356 * accepted connections in the caller. 2357 */ 2358 ; 2359 } 2360 /* since we did not send a HB make sure we don't double things */ 2361 if ((netp) && (*netp)) 2362 (*netp)->hb_responded = 1; 2363 2364 if (stcb->asoc.sctp_autoclose_ticks && 2365 sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) { 2366 sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, NULL); 2367 } 2368 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 2369 if ((netp != NULL) && (*netp != NULL)) { 2370 /* calculate the RTT and set the encaps port */ 2371 (*netp)->RTO = sctp_calculate_rto(stcb, asoc, *netp, 2372 &cookie->time_entered, sctp_align_unsafe_makecopy, 2373 SCTP_RTT_FROM_NON_DATA); 2374 #if defined(INET) || defined(INET6) 2375 if (((*netp)->port == 0) && (port != 0)) { 2376 sctp_pathmtu_adjustment(stcb, (uint16_t) ((*netp)->mtu - sizeof(struct udphdr))); 2377 } 2378 (*netp)->port = port; 2379 #endif 2380 } 2381 /* respond with a COOKIE-ACK */ 2382 sctp_send_cookie_ack(stcb); 2383 2384 /* 2385 * check the address lists for any ASCONFs that need to be sent 2386 * AFTER the cookie-ack is sent 2387 */ 2388 sctp_check_address_list(stcb, m, 2389 initack_offset + sizeof(struct sctp_init_ack_chunk), 2390 initack_limit - (initack_offset + sizeof(struct sctp_init_ack_chunk)), 2391 &store.sa, cookie->local_scope, cookie->site_scope, 2392 cookie->ipv4_scope, cookie->loopback_scope); 2393 2394 2395 return (stcb); 2396 } 2397 2398 /* 2399 * CODE LIKE THIS NEEDS TO RUN IF the peer supports the NAT extension, i.e 2400 * we NEED to make sure we are not already using the vtag. If so we 2401 * need to send back an ABORT-TRY-AGAIN-WITH-NEW-TAG No middle box bit! 2402 head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(tag, 2403 SCTP_BASE_INFO(hashasocmark))]; 2404 LIST_FOREACH(stcb, head, sctp_asocs) { 2405 if ((stcb->asoc.my_vtag == tag) && (stcb->rport == rport) && (inp == stcb->sctp_ep)) { 2406 -- SEND ABORT - TRY AGAIN -- 2407 } 2408 } 2409 */ 2410 2411 /* 2412 * handles a COOKIE-ECHO message stcb: modified to either a new or left as 2413 * existing (non-NULL) TCB 2414 */ 2415 static struct mbuf * 2416 sctp_handle_cookie_echo(struct mbuf *m, int iphlen, int offset, 2417 struct sockaddr *src, struct sockaddr *dst, 2418 struct sctphdr *sh, struct sctp_cookie_echo_chunk *cp, 2419 struct sctp_inpcb **inp_p, struct sctp_tcb **stcb, struct sctp_nets **netp, 2420 int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 2421 struct sctp_tcb **locked_tcb, 2422 uint8_t mflowtype, uint32_t mflowid, 2423 uint32_t vrf_id, uint16_t port) 2424 { 2425 struct sctp_state_cookie *cookie; 2426 struct sctp_tcb *l_stcb = *stcb; 2427 struct sctp_inpcb *l_inp; 2428 struct sockaddr *to; 2429 struct sctp_pcb *ep; 2430 struct mbuf *m_sig; 2431 uint8_t calc_sig[SCTP_SIGNATURE_SIZE], tmp_sig[SCTP_SIGNATURE_SIZE]; 2432 uint8_t *sig; 2433 uint8_t cookie_ok = 0; 2434 unsigned int sig_offset, cookie_offset; 2435 unsigned int cookie_len; 2436 struct timeval now; 2437 struct timeval time_expires; 2438 int notification = 0; 2439 struct sctp_nets *netl; 2440 int had_a_existing_tcb = 0; 2441 int send_int_conf = 0; 2442 2443 #ifdef INET 2444 struct sockaddr_in sin; 2445 2446 #endif 2447 #ifdef INET6 2448 struct sockaddr_in6 sin6; 2449 2450 #endif 2451 2452 SCTPDBG(SCTP_DEBUG_INPUT2, 2453 "sctp_handle_cookie: handling COOKIE-ECHO\n"); 2454 2455 if (inp_p == NULL) { 2456 return (NULL); 2457 } 2458 cookie = &cp->cookie; 2459 cookie_offset = offset + sizeof(struct sctp_chunkhdr); 2460 cookie_len = ntohs(cp->ch.chunk_length); 2461 2462 if ((cookie->peerport != sh->src_port) || 2463 (cookie->myport != sh->dest_port) || 2464 (cookie->my_vtag != sh->v_tag)) { 2465 /* 2466 * invalid ports or bad tag. Note that we always leave the 2467 * v_tag in the header in network order and when we stored 2468 * it in the my_vtag slot we also left it in network order. 2469 * This maintains the match even though it may be in the 2470 * opposite byte order of the machine :-> 2471 */ 2472 return (NULL); 2473 } 2474 if (cookie_len < sizeof(struct sctp_cookie_echo_chunk) + 2475 sizeof(struct sctp_init_chunk) + 2476 sizeof(struct sctp_init_ack_chunk) + SCTP_SIGNATURE_SIZE) { 2477 /* cookie too small */ 2478 return (NULL); 2479 } 2480 /* 2481 * split off the signature into its own mbuf (since it should not be 2482 * calculated in the sctp_hmac_m() call). 2483 */ 2484 sig_offset = offset + cookie_len - SCTP_SIGNATURE_SIZE; 2485 m_sig = m_split(m, sig_offset, M_NOWAIT); 2486 if (m_sig == NULL) { 2487 /* out of memory or ?? */ 2488 return (NULL); 2489 } 2490 #ifdef SCTP_MBUF_LOGGING 2491 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 2492 sctp_log_mbc(m_sig, SCTP_MBUF_SPLIT); 2493 } 2494 #endif 2495 2496 /* 2497 * compute the signature/digest for the cookie 2498 */ 2499 ep = &(*inp_p)->sctp_ep; 2500 l_inp = *inp_p; 2501 if (l_stcb) { 2502 SCTP_TCB_UNLOCK(l_stcb); 2503 } 2504 SCTP_INP_RLOCK(l_inp); 2505 if (l_stcb) { 2506 SCTP_TCB_LOCK(l_stcb); 2507 } 2508 /* which cookie is it? */ 2509 if ((cookie->time_entered.tv_sec < (long)ep->time_of_secret_change) && 2510 (ep->current_secret_number != ep->last_secret_number)) { 2511 /* it's the old cookie */ 2512 (void)sctp_hmac_m(SCTP_HMAC, 2513 (uint8_t *) ep->secret_key[(int)ep->last_secret_number], 2514 SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2515 } else { 2516 /* it's the current cookie */ 2517 (void)sctp_hmac_m(SCTP_HMAC, 2518 (uint8_t *) ep->secret_key[(int)ep->current_secret_number], 2519 SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2520 } 2521 /* get the signature */ 2522 SCTP_INP_RUNLOCK(l_inp); 2523 sig = (uint8_t *) sctp_m_getptr(m_sig, 0, SCTP_SIGNATURE_SIZE, (uint8_t *) & tmp_sig); 2524 if (sig == NULL) { 2525 /* couldn't find signature */ 2526 sctp_m_freem(m_sig); 2527 return (NULL); 2528 } 2529 /* compare the received digest with the computed digest */ 2530 if (memcmp(calc_sig, sig, SCTP_SIGNATURE_SIZE) != 0) { 2531 /* try the old cookie? */ 2532 if ((cookie->time_entered.tv_sec == (long)ep->time_of_secret_change) && 2533 (ep->current_secret_number != ep->last_secret_number)) { 2534 /* compute digest with old */ 2535 (void)sctp_hmac_m(SCTP_HMAC, 2536 (uint8_t *) ep->secret_key[(int)ep->last_secret_number], 2537 SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2538 /* compare */ 2539 if (memcmp(calc_sig, sig, SCTP_SIGNATURE_SIZE) == 0) 2540 cookie_ok = 1; 2541 } 2542 } else { 2543 cookie_ok = 1; 2544 } 2545 2546 /* 2547 * Now before we continue we must reconstruct our mbuf so that 2548 * normal processing of any other chunks will work. 2549 */ 2550 { 2551 struct mbuf *m_at; 2552 2553 m_at = m; 2554 while (SCTP_BUF_NEXT(m_at) != NULL) { 2555 m_at = SCTP_BUF_NEXT(m_at); 2556 } 2557 SCTP_BUF_NEXT(m_at) = m_sig; 2558 } 2559 2560 if (cookie_ok == 0) { 2561 SCTPDBG(SCTP_DEBUG_INPUT2, "handle_cookie_echo: cookie signature validation failed!\n"); 2562 SCTPDBG(SCTP_DEBUG_INPUT2, 2563 "offset = %u, cookie_offset = %u, sig_offset = %u\n", 2564 (uint32_t) offset, cookie_offset, sig_offset); 2565 return (NULL); 2566 } 2567 /* 2568 * check the cookie timestamps to be sure it's not stale 2569 */ 2570 (void)SCTP_GETTIME_TIMEVAL(&now); 2571 /* Expire time is in Ticks, so we convert to seconds */ 2572 time_expires.tv_sec = cookie->time_entered.tv_sec + TICKS_TO_SEC(cookie->cookie_life); 2573 time_expires.tv_usec = cookie->time_entered.tv_usec; 2574 /* 2575 * TODO sctp_constants.h needs alternative time macros when _KERNEL 2576 * is undefined. 2577 */ 2578 if (timevalcmp(&now, &time_expires, >)) { 2579 /* cookie is stale! */ 2580 struct mbuf *op_err; 2581 struct sctp_error_stale_cookie *cause; 2582 uint32_t tim; 2583 2584 op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_error_stale_cookie), 2585 0, M_NOWAIT, 1, MT_DATA); 2586 if (op_err == NULL) { 2587 /* FOOBAR */ 2588 return (NULL); 2589 } 2590 /* Set the len */ 2591 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_error_stale_cookie); 2592 cause = mtod(op_err, struct sctp_error_stale_cookie *); 2593 cause->cause.code = htons(SCTP_CAUSE_STALE_COOKIE); 2594 cause->cause.length = htons((sizeof(struct sctp_paramhdr) + 2595 (sizeof(uint32_t)))); 2596 /* seconds to usec */ 2597 tim = (now.tv_sec - time_expires.tv_sec) * 1000000; 2598 /* add in usec */ 2599 if (tim == 0) 2600 tim = now.tv_usec - cookie->time_entered.tv_usec; 2601 cause->stale_time = htonl(tim); 2602 sctp_send_operr_to(src, dst, sh, cookie->peers_vtag, op_err, 2603 mflowtype, mflowid, l_inp->fibnum, 2604 vrf_id, port); 2605 return (NULL); 2606 } 2607 /* 2608 * Now we must see with the lookup address if we have an existing 2609 * asoc. This will only happen if we were in the COOKIE-WAIT state 2610 * and a INIT collided with us and somewhere the peer sent the 2611 * cookie on another address besides the single address our assoc 2612 * had for him. In this case we will have one of the tie-tags set at 2613 * least AND the address field in the cookie can be used to look it 2614 * up. 2615 */ 2616 to = NULL; 2617 switch (cookie->addr_type) { 2618 #ifdef INET6 2619 case SCTP_IPV6_ADDRESS: 2620 memset(&sin6, 0, sizeof(sin6)); 2621 sin6.sin6_family = AF_INET6; 2622 sin6.sin6_len = sizeof(sin6); 2623 sin6.sin6_port = sh->src_port; 2624 sin6.sin6_scope_id = cookie->scope_id; 2625 memcpy(&sin6.sin6_addr.s6_addr, cookie->address, 2626 sizeof(sin6.sin6_addr.s6_addr)); 2627 to = (struct sockaddr *)&sin6; 2628 break; 2629 #endif 2630 #ifdef INET 2631 case SCTP_IPV4_ADDRESS: 2632 memset(&sin, 0, sizeof(sin)); 2633 sin.sin_family = AF_INET; 2634 sin.sin_len = sizeof(sin); 2635 sin.sin_port = sh->src_port; 2636 sin.sin_addr.s_addr = cookie->address[0]; 2637 to = (struct sockaddr *)&sin; 2638 break; 2639 #endif 2640 default: 2641 /* This should not happen */ 2642 return (NULL); 2643 } 2644 if (*stcb == NULL) { 2645 /* Yep, lets check */ 2646 *stcb = sctp_findassociation_ep_addr(inp_p, to, netp, dst, NULL); 2647 if (*stcb == NULL) { 2648 /* 2649 * We should have only got back the same inp. If we 2650 * got back a different ep we have a problem. The 2651 * original findep got back l_inp and now 2652 */ 2653 if (l_inp != *inp_p) { 2654 SCTP_PRINTF("Bad problem find_ep got a diff inp then special_locate?\n"); 2655 } 2656 } else { 2657 if (*locked_tcb == NULL) { 2658 /* 2659 * In this case we found the assoc only 2660 * after we locked the create lock. This 2661 * means we are in a colliding case and we 2662 * must make sure that we unlock the tcb if 2663 * its one of the cases where we throw away 2664 * the incoming packets. 2665 */ 2666 *locked_tcb = *stcb; 2667 2668 /* 2669 * We must also increment the inp ref count 2670 * since the ref_count flags was set when we 2671 * did not find the TCB, now we found it 2672 * which reduces the refcount.. we must 2673 * raise it back out to balance it all :-) 2674 */ 2675 SCTP_INP_INCR_REF((*stcb)->sctp_ep); 2676 if ((*stcb)->sctp_ep != l_inp) { 2677 SCTP_PRINTF("Huh? ep:%p diff then l_inp:%p?\n", 2678 (void *)(*stcb)->sctp_ep, (void *)l_inp); 2679 } 2680 } 2681 } 2682 } 2683 cookie_len -= SCTP_SIGNATURE_SIZE; 2684 if (*stcb == NULL) { 2685 /* this is the "normal" case... get a new TCB */ 2686 *stcb = sctp_process_cookie_new(m, iphlen, offset, src, dst, sh, 2687 cookie, cookie_len, *inp_p, 2688 netp, to, ¬ification, 2689 auth_skipped, auth_offset, auth_len, 2690 mflowtype, mflowid, 2691 vrf_id, port); 2692 } else { 2693 /* this is abnormal... cookie-echo on existing TCB */ 2694 had_a_existing_tcb = 1; 2695 *stcb = sctp_process_cookie_existing(m, iphlen, offset, 2696 src, dst, sh, 2697 cookie, cookie_len, *inp_p, *stcb, netp, to, 2698 ¬ification, auth_skipped, auth_offset, auth_len, 2699 mflowtype, mflowid, 2700 vrf_id, port); 2701 } 2702 2703 if (*stcb == NULL) { 2704 /* still no TCB... must be bad cookie-echo */ 2705 return (NULL); 2706 } 2707 if (*netp != NULL) { 2708 (*netp)->flowtype = mflowtype; 2709 (*netp)->flowid = mflowid; 2710 } 2711 /* 2712 * Ok, we built an association so confirm the address we sent the 2713 * INIT-ACK to. 2714 */ 2715 netl = sctp_findnet(*stcb, to); 2716 /* 2717 * This code should in theory NOT run but 2718 */ 2719 if (netl == NULL) { 2720 /* TSNH! Huh, why do I need to add this address here? */ 2721 if (sctp_add_remote_addr(*stcb, to, NULL, (*stcb)->asoc.port, 2722 SCTP_DONOT_SETSCOPE, SCTP_IN_COOKIE_PROC)) { 2723 return (NULL); 2724 } 2725 netl = sctp_findnet(*stcb, to); 2726 } 2727 if (netl) { 2728 if (netl->dest_state & SCTP_ADDR_UNCONFIRMED) { 2729 netl->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 2730 (void)sctp_set_primary_addr((*stcb), (struct sockaddr *)NULL, 2731 netl); 2732 send_int_conf = 1; 2733 } 2734 } 2735 sctp_start_net_timers(*stcb); 2736 if ((*inp_p)->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 2737 if (!had_a_existing_tcb || 2738 (((*inp_p)->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) { 2739 /* 2740 * If we have a NEW cookie or the connect never 2741 * reached the connected state during collision we 2742 * must do the TCP accept thing. 2743 */ 2744 struct socket *so, *oso; 2745 struct sctp_inpcb *inp; 2746 2747 if (notification == SCTP_NOTIFY_ASSOC_RESTART) { 2748 /* 2749 * For a restart we will keep the same 2750 * socket, no need to do anything. I THINK!! 2751 */ 2752 sctp_ulp_notify(notification, *stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2753 if (send_int_conf) { 2754 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 2755 (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 2756 } 2757 return (m); 2758 } 2759 oso = (*inp_p)->sctp_socket; 2760 atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2761 SCTP_TCB_UNLOCK((*stcb)); 2762 CURVNET_SET(oso->so_vnet); 2763 so = sonewconn(oso, 0 2764 ); 2765 CURVNET_RESTORE(); 2766 SCTP_TCB_LOCK((*stcb)); 2767 atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2768 2769 if (so == NULL) { 2770 struct mbuf *op_err; 2771 2772 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2773 struct socket *pcb_so; 2774 2775 #endif 2776 /* Too many sockets */ 2777 SCTPDBG(SCTP_DEBUG_INPUT1, "process_cookie_new: no room for another socket!\n"); 2778 op_err = sctp_generate_cause(SCTP_CAUSE_OUT_OF_RESC, ""); 2779 sctp_abort_association(*inp_p, NULL, m, iphlen, 2780 src, dst, sh, op_err, 2781 mflowtype, mflowid, 2782 vrf_id, port); 2783 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2784 pcb_so = SCTP_INP_SO(*inp_p); 2785 atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2786 SCTP_TCB_UNLOCK((*stcb)); 2787 SCTP_SOCKET_LOCK(pcb_so, 1); 2788 SCTP_TCB_LOCK((*stcb)); 2789 atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2790 #endif 2791 (void)sctp_free_assoc(*inp_p, *stcb, SCTP_NORMAL_PROC, 2792 SCTP_FROM_SCTP_INPUT + SCTP_LOC_23); 2793 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2794 SCTP_SOCKET_UNLOCK(pcb_so, 1); 2795 #endif 2796 return (NULL); 2797 } 2798 inp = (struct sctp_inpcb *)so->so_pcb; 2799 SCTP_INP_INCR_REF(inp); 2800 /* 2801 * We add the unbound flag here so that if we get an 2802 * soabort() before we get the move_pcb done, we 2803 * will properly cleanup. 2804 */ 2805 inp->sctp_flags = (SCTP_PCB_FLAGS_TCPTYPE | 2806 SCTP_PCB_FLAGS_CONNECTED | 2807 SCTP_PCB_FLAGS_IN_TCPPOOL | 2808 SCTP_PCB_FLAGS_UNBOUND | 2809 (SCTP_PCB_COPY_FLAGS & (*inp_p)->sctp_flags) | 2810 SCTP_PCB_FLAGS_DONT_WAKE); 2811 inp->sctp_features = (*inp_p)->sctp_features; 2812 inp->sctp_mobility_features = (*inp_p)->sctp_mobility_features; 2813 inp->sctp_socket = so; 2814 inp->sctp_frag_point = (*inp_p)->sctp_frag_point; 2815 inp->max_cwnd = (*inp_p)->max_cwnd; 2816 inp->sctp_cmt_on_off = (*inp_p)->sctp_cmt_on_off; 2817 inp->ecn_supported = (*inp_p)->ecn_supported; 2818 inp->prsctp_supported = (*inp_p)->prsctp_supported; 2819 inp->auth_supported = (*inp_p)->auth_supported; 2820 inp->asconf_supported = (*inp_p)->asconf_supported; 2821 inp->reconfig_supported = (*inp_p)->reconfig_supported; 2822 inp->nrsack_supported = (*inp_p)->nrsack_supported; 2823 inp->pktdrop_supported = (*inp_p)->pktdrop_supported; 2824 inp->partial_delivery_point = (*inp_p)->partial_delivery_point; 2825 inp->sctp_context = (*inp_p)->sctp_context; 2826 inp->local_strreset_support = (*inp_p)->local_strreset_support; 2827 inp->fibnum = (*inp_p)->fibnum; 2828 inp->inp_starting_point_for_iterator = NULL; 2829 /* 2830 * copy in the authentication parameters from the 2831 * original endpoint 2832 */ 2833 if (inp->sctp_ep.local_hmacs) 2834 sctp_free_hmaclist(inp->sctp_ep.local_hmacs); 2835 inp->sctp_ep.local_hmacs = 2836 sctp_copy_hmaclist((*inp_p)->sctp_ep.local_hmacs); 2837 if (inp->sctp_ep.local_auth_chunks) 2838 sctp_free_chunklist(inp->sctp_ep.local_auth_chunks); 2839 inp->sctp_ep.local_auth_chunks = 2840 sctp_copy_chunklist((*inp_p)->sctp_ep.local_auth_chunks); 2841 2842 /* 2843 * Now we must move it from one hash table to 2844 * another and get the tcb in the right place. 2845 */ 2846 2847 /* 2848 * This is where the one-2-one socket is put into 2849 * the accept state waiting for the accept! 2850 */ 2851 if (*stcb) { 2852 (*stcb)->asoc.state |= SCTP_STATE_IN_ACCEPT_QUEUE; 2853 } 2854 sctp_move_pcb_and_assoc(*inp_p, inp, *stcb); 2855 2856 atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2857 SCTP_TCB_UNLOCK((*stcb)); 2858 2859 sctp_pull_off_control_to_new_inp((*inp_p), inp, *stcb, 2860 0); 2861 SCTP_TCB_LOCK((*stcb)); 2862 atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2863 2864 2865 /* 2866 * now we must check to see if we were aborted while 2867 * the move was going on and the lock/unlock 2868 * happened. 2869 */ 2870 if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 2871 /* 2872 * yep it was, we leave the assoc attached 2873 * to the socket since the sctp_inpcb_free() 2874 * call will send an abort for us. 2875 */ 2876 SCTP_INP_DECR_REF(inp); 2877 return (NULL); 2878 } 2879 SCTP_INP_DECR_REF(inp); 2880 /* Switch over to the new guy */ 2881 *inp_p = inp; 2882 sctp_ulp_notify(notification, *stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2883 if (send_int_conf) { 2884 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 2885 (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 2886 } 2887 /* 2888 * Pull it from the incomplete queue and wake the 2889 * guy 2890 */ 2891 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2892 atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2893 SCTP_TCB_UNLOCK((*stcb)); 2894 SCTP_SOCKET_LOCK(so, 1); 2895 #endif 2896 soisconnected(so); 2897 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2898 SCTP_TCB_LOCK((*stcb)); 2899 atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2900 SCTP_SOCKET_UNLOCK(so, 1); 2901 #endif 2902 return (m); 2903 } 2904 } 2905 if (notification) { 2906 sctp_ulp_notify(notification, *stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2907 } 2908 if (send_int_conf) { 2909 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 2910 (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 2911 } 2912 return (m); 2913 } 2914 2915 static void 2916 sctp_handle_cookie_ack(struct sctp_cookie_ack_chunk *cp SCTP_UNUSED, 2917 struct sctp_tcb *stcb, struct sctp_nets *net) 2918 { 2919 /* cp must not be used, others call this without a c-ack :-) */ 2920 struct sctp_association *asoc; 2921 2922 SCTPDBG(SCTP_DEBUG_INPUT2, 2923 "sctp_handle_cookie_ack: handling COOKIE-ACK\n"); 2924 if ((stcb == NULL) || (net == NULL)) { 2925 return; 2926 } 2927 asoc = &stcb->asoc; 2928 2929 sctp_stop_all_cookie_timers(stcb); 2930 /* process according to association state */ 2931 if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) { 2932 /* state change only needed when I am in right state */ 2933 SCTPDBG(SCTP_DEBUG_INPUT2, "moving to OPEN state\n"); 2934 SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 2935 sctp_start_net_timers(stcb); 2936 if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 2937 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 2938 stcb->sctp_ep, stcb, asoc->primary_destination); 2939 2940 } 2941 /* update RTO */ 2942 SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 2943 SCTP_STAT_INCR_GAUGE32(sctps_currestab); 2944 if (asoc->overall_error_count == 0) { 2945 net->RTO = sctp_calculate_rto(stcb, asoc, net, 2946 &asoc->time_entered, sctp_align_safe_nocopy, 2947 SCTP_RTT_FROM_NON_DATA); 2948 } 2949 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 2950 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_UP, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2951 if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2952 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 2953 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2954 struct socket *so; 2955 2956 #endif 2957 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 2958 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2959 so = SCTP_INP_SO(stcb->sctp_ep); 2960 atomic_add_int(&stcb->asoc.refcnt, 1); 2961 SCTP_TCB_UNLOCK(stcb); 2962 SCTP_SOCKET_LOCK(so, 1); 2963 SCTP_TCB_LOCK(stcb); 2964 atomic_subtract_int(&stcb->asoc.refcnt, 1); 2965 #endif 2966 if ((stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) == 0) { 2967 soisconnected(stcb->sctp_socket); 2968 } 2969 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2970 SCTP_SOCKET_UNLOCK(so, 1); 2971 #endif 2972 } 2973 /* 2974 * since we did not send a HB make sure we don't double 2975 * things 2976 */ 2977 net->hb_responded = 1; 2978 2979 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 2980 /* 2981 * We don't need to do the asconf thing, nor hb or 2982 * autoclose if the socket is closed. 2983 */ 2984 goto closed_socket; 2985 } 2986 sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, 2987 stcb, net); 2988 2989 2990 if (stcb->asoc.sctp_autoclose_ticks && 2991 sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_AUTOCLOSE)) { 2992 sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, 2993 stcb->sctp_ep, stcb, NULL); 2994 } 2995 /* 2996 * send ASCONF if parameters are pending and ASCONFs are 2997 * allowed (eg. addresses changed when init/cookie echo were 2998 * in flight) 2999 */ 3000 if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_DO_ASCONF)) && 3001 (stcb->asoc.asconf_supported == 1) && 3002 (!TAILQ_EMPTY(&stcb->asoc.asconf_queue))) { 3003 #ifdef SCTP_TIMER_BASED_ASCONF 3004 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, 3005 stcb->sctp_ep, stcb, 3006 stcb->asoc.primary_destination); 3007 #else 3008 sctp_send_asconf(stcb, stcb->asoc.primary_destination, 3009 SCTP_ADDR_NOT_LOCKED); 3010 #endif 3011 } 3012 } 3013 closed_socket: 3014 /* Toss the cookie if I can */ 3015 sctp_toss_old_cookies(stcb, asoc); 3016 if (!TAILQ_EMPTY(&asoc->sent_queue)) { 3017 /* Restart the timer if we have pending data */ 3018 struct sctp_tmit_chunk *chk; 3019 3020 chk = TAILQ_FIRST(&asoc->sent_queue); 3021 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, chk->whoTo); 3022 } 3023 } 3024 3025 static void 3026 sctp_handle_ecn_echo(struct sctp_ecne_chunk *cp, 3027 struct sctp_tcb *stcb) 3028 { 3029 struct sctp_nets *net; 3030 struct sctp_tmit_chunk *lchk; 3031 struct sctp_ecne_chunk bkup; 3032 uint8_t override_bit; 3033 uint32_t tsn, window_data_tsn; 3034 int len; 3035 unsigned int pkt_cnt; 3036 3037 len = ntohs(cp->ch.chunk_length); 3038 if ((len != sizeof(struct sctp_ecne_chunk)) && 3039 (len != sizeof(struct old_sctp_ecne_chunk))) { 3040 return; 3041 } 3042 if (len == sizeof(struct old_sctp_ecne_chunk)) { 3043 /* Its the old format */ 3044 memcpy(&bkup, cp, sizeof(struct old_sctp_ecne_chunk)); 3045 bkup.num_pkts_since_cwr = htonl(1); 3046 cp = &bkup; 3047 } 3048 SCTP_STAT_INCR(sctps_recvecne); 3049 tsn = ntohl(cp->tsn); 3050 pkt_cnt = ntohl(cp->num_pkts_since_cwr); 3051 lchk = TAILQ_LAST(&stcb->asoc.send_queue, sctpchunk_listhead); 3052 if (lchk == NULL) { 3053 window_data_tsn = stcb->asoc.sending_seq - 1; 3054 } else { 3055 window_data_tsn = lchk->rec.data.TSN_seq; 3056 } 3057 3058 /* Find where it was sent to if possible. */ 3059 net = NULL; 3060 TAILQ_FOREACH(lchk, &stcb->asoc.sent_queue, sctp_next) { 3061 if (lchk->rec.data.TSN_seq == tsn) { 3062 net = lchk->whoTo; 3063 net->ecn_prev_cwnd = lchk->rec.data.cwnd_at_send; 3064 break; 3065 } 3066 if (SCTP_TSN_GT(lchk->rec.data.TSN_seq, tsn)) { 3067 break; 3068 } 3069 } 3070 if (net == NULL) { 3071 /* 3072 * What to do. A previous send of a CWR was possibly lost. 3073 * See how old it is, we may have it marked on the actual 3074 * net. 3075 */ 3076 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 3077 if (tsn == net->last_cwr_tsn) { 3078 /* Found him, send it off */ 3079 break; 3080 } 3081 } 3082 if (net == NULL) { 3083 /* 3084 * If we reach here, we need to send a special CWR 3085 * that says hey, we did this a long time ago and 3086 * you lost the response. 3087 */ 3088 net = TAILQ_FIRST(&stcb->asoc.nets); 3089 if (net == NULL) { 3090 /* TSNH */ 3091 return; 3092 } 3093 override_bit = SCTP_CWR_REDUCE_OVERRIDE; 3094 } else { 3095 override_bit = 0; 3096 } 3097 } else { 3098 override_bit = 0; 3099 } 3100 if (SCTP_TSN_GT(tsn, net->cwr_window_tsn) && 3101 ((override_bit & SCTP_CWR_REDUCE_OVERRIDE) == 0)) { 3102 /* 3103 * JRS - Use the congestion control given in the pluggable 3104 * CC module 3105 */ 3106 stcb->asoc.cc_functions.sctp_cwnd_update_after_ecn_echo(stcb, net, 0, pkt_cnt); 3107 /* 3108 * We reduce once every RTT. So we will only lower cwnd at 3109 * the next sending seq i.e. the window_data_tsn 3110 */ 3111 net->cwr_window_tsn = window_data_tsn; 3112 net->ecn_ce_pkt_cnt += pkt_cnt; 3113 net->lost_cnt = pkt_cnt; 3114 net->last_cwr_tsn = tsn; 3115 } else { 3116 override_bit |= SCTP_CWR_IN_SAME_WINDOW; 3117 if (SCTP_TSN_GT(tsn, net->last_cwr_tsn) && 3118 ((override_bit & SCTP_CWR_REDUCE_OVERRIDE) == 0)) { 3119 /* 3120 * Another loss in the same window update how many 3121 * marks/packets lost we have had. 3122 */ 3123 int cnt = 1; 3124 3125 if (pkt_cnt > net->lost_cnt) { 3126 /* Should be the case */ 3127 cnt = (pkt_cnt - net->lost_cnt); 3128 net->ecn_ce_pkt_cnt += cnt; 3129 } 3130 net->lost_cnt = pkt_cnt; 3131 net->last_cwr_tsn = tsn; 3132 /* 3133 * Most CC functions will ignore this call, since we 3134 * are in-window yet of the initial CE the peer saw. 3135 */ 3136 stcb->asoc.cc_functions.sctp_cwnd_update_after_ecn_echo(stcb, net, 1, cnt); 3137 } 3138 } 3139 /* 3140 * We always send a CWR this way if our previous one was lost our 3141 * peer will get an update, or if it is not time again to reduce we 3142 * still get the cwr to the peer. Note we set the override when we 3143 * could not find the TSN on the chunk or the destination network. 3144 */ 3145 sctp_send_cwr(stcb, net, net->last_cwr_tsn, override_bit); 3146 } 3147 3148 static void 3149 sctp_handle_ecn_cwr(struct sctp_cwr_chunk *cp, struct sctp_tcb *stcb, struct sctp_nets *net) 3150 { 3151 /* 3152 * Here we get a CWR from the peer. We must look in the outqueue and 3153 * make sure that we have a covered ECNE in the control chunk part. 3154 * If so remove it. 3155 */ 3156 struct sctp_tmit_chunk *chk; 3157 struct sctp_ecne_chunk *ecne; 3158 int override; 3159 uint32_t cwr_tsn; 3160 3161 cwr_tsn = ntohl(cp->tsn); 3162 override = cp->ch.chunk_flags & SCTP_CWR_REDUCE_OVERRIDE; 3163 TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 3164 if (chk->rec.chunk_id.id != SCTP_ECN_ECHO) { 3165 continue; 3166 } 3167 if ((override == 0) && (chk->whoTo != net)) { 3168 /* Must be from the right src unless override is set */ 3169 continue; 3170 } 3171 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 3172 if (SCTP_TSN_GE(cwr_tsn, ntohl(ecne->tsn))) { 3173 /* this covers this ECNE, we can remove it */ 3174 stcb->asoc.ecn_echo_cnt_onq--; 3175 TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, 3176 sctp_next); 3177 sctp_m_freem(chk->data); 3178 chk->data = NULL; 3179 stcb->asoc.ctrl_queue_cnt--; 3180 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 3181 if (override == 0) { 3182 break; 3183 } 3184 } 3185 } 3186 } 3187 3188 static void 3189 sctp_handle_shutdown_complete(struct sctp_shutdown_complete_chunk *cp SCTP_UNUSED, 3190 struct sctp_tcb *stcb, struct sctp_nets *net) 3191 { 3192 struct sctp_association *asoc; 3193 3194 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3195 struct socket *so; 3196 3197 #endif 3198 3199 SCTPDBG(SCTP_DEBUG_INPUT2, 3200 "sctp_handle_shutdown_complete: handling SHUTDOWN-COMPLETE\n"); 3201 if (stcb == NULL) 3202 return; 3203 3204 asoc = &stcb->asoc; 3205 /* process according to association state */ 3206 if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT) { 3207 /* unexpected SHUTDOWN-COMPLETE... so ignore... */ 3208 SCTPDBG(SCTP_DEBUG_INPUT2, 3209 "sctp_handle_shutdown_complete: not in SCTP_STATE_SHUTDOWN_ACK_SENT --- ignore\n"); 3210 SCTP_TCB_UNLOCK(stcb); 3211 return; 3212 } 3213 /* notify upper layer protocol */ 3214 if (stcb->sctp_socket) { 3215 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 3216 } 3217 #ifdef INVARIANTS 3218 if (!TAILQ_EMPTY(&asoc->send_queue) || 3219 !TAILQ_EMPTY(&asoc->sent_queue) || 3220 !stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 3221 panic("Queues are not empty when handling SHUTDOWN-COMPLETE"); 3222 } 3223 #endif 3224 /* stop the timer */ 3225 sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWNACK, stcb->sctp_ep, stcb, net, 3226 SCTP_FROM_SCTP_INPUT + SCTP_LOC_24); 3227 SCTP_STAT_INCR_COUNTER32(sctps_shutdown); 3228 /* free the TCB */ 3229 SCTPDBG(SCTP_DEBUG_INPUT2, 3230 "sctp_handle_shutdown_complete: calls free-asoc\n"); 3231 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3232 so = SCTP_INP_SO(stcb->sctp_ep); 3233 atomic_add_int(&stcb->asoc.refcnt, 1); 3234 SCTP_TCB_UNLOCK(stcb); 3235 SCTP_SOCKET_LOCK(so, 1); 3236 SCTP_TCB_LOCK(stcb); 3237 atomic_subtract_int(&stcb->asoc.refcnt, 1); 3238 #endif 3239 (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 3240 SCTP_FROM_SCTP_INPUT + SCTP_LOC_25); 3241 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3242 SCTP_SOCKET_UNLOCK(so, 1); 3243 #endif 3244 return; 3245 } 3246 3247 static int 3248 process_chunk_drop(struct sctp_tcb *stcb, struct sctp_chunk_desc *desc, 3249 struct sctp_nets *net, uint8_t flg) 3250 { 3251 switch (desc->chunk_type) { 3252 case SCTP_DATA: 3253 /* find the tsn to resend (possibly */ 3254 { 3255 uint32_t tsn; 3256 struct sctp_tmit_chunk *tp1; 3257 3258 tsn = ntohl(desc->tsn_ifany); 3259 TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3260 if (tp1->rec.data.TSN_seq == tsn) { 3261 /* found it */ 3262 break; 3263 } 3264 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, tsn)) { 3265 /* not found */ 3266 tp1 = NULL; 3267 break; 3268 } 3269 } 3270 if (tp1 == NULL) { 3271 /* 3272 * Do it the other way , aka without paying 3273 * attention to queue seq order. 3274 */ 3275 SCTP_STAT_INCR(sctps_pdrpdnfnd); 3276 TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3277 if (tp1->rec.data.TSN_seq == tsn) { 3278 /* found it */ 3279 break; 3280 } 3281 } 3282 } 3283 if (tp1 == NULL) { 3284 SCTP_STAT_INCR(sctps_pdrptsnnf); 3285 } 3286 if ((tp1) && (tp1->sent < SCTP_DATAGRAM_ACKED)) { 3287 uint8_t *ddp; 3288 3289 if (((flg & SCTP_BADCRC) == 0) && 3290 ((flg & SCTP_FROM_MIDDLE_BOX) == 0)) { 3291 return (0); 3292 } 3293 if ((stcb->asoc.peers_rwnd == 0) && 3294 ((flg & SCTP_FROM_MIDDLE_BOX) == 0)) { 3295 SCTP_STAT_INCR(sctps_pdrpdiwnp); 3296 return (0); 3297 } 3298 if (stcb->asoc.peers_rwnd == 0 && 3299 (flg & SCTP_FROM_MIDDLE_BOX)) { 3300 SCTP_STAT_INCR(sctps_pdrpdizrw); 3301 return (0); 3302 } 3303 ddp = (uint8_t *) (mtod(tp1->data, caddr_t)+ 3304 sizeof(struct sctp_data_chunk)); 3305 { 3306 unsigned int iii; 3307 3308 for (iii = 0; iii < sizeof(desc->data_bytes); 3309 iii++) { 3310 if (ddp[iii] != desc->data_bytes[iii]) { 3311 SCTP_STAT_INCR(sctps_pdrpbadd); 3312 return (-1); 3313 } 3314 } 3315 } 3316 3317 if (tp1->do_rtt) { 3318 /* 3319 * this guy had a RTO calculation 3320 * pending on it, cancel it 3321 */ 3322 if (tp1->whoTo->rto_needed == 0) { 3323 tp1->whoTo->rto_needed = 1; 3324 } 3325 tp1->do_rtt = 0; 3326 } 3327 SCTP_STAT_INCR(sctps_pdrpmark); 3328 if (tp1->sent != SCTP_DATAGRAM_RESEND) 3329 sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3330 /* 3331 * mark it as if we were doing a FR, since 3332 * we will be getting gap ack reports behind 3333 * the info from the router. 3334 */ 3335 tp1->rec.data.doing_fast_retransmit = 1; 3336 /* 3337 * mark the tsn with what sequences can 3338 * cause a new FR. 3339 */ 3340 if (TAILQ_EMPTY(&stcb->asoc.send_queue)) { 3341 tp1->rec.data.fast_retran_tsn = stcb->asoc.sending_seq; 3342 } else { 3343 tp1->rec.data.fast_retran_tsn = (TAILQ_FIRST(&stcb->asoc.send_queue))->rec.data.TSN_seq; 3344 } 3345 3346 /* restart the timer */ 3347 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 3348 stcb, tp1->whoTo, 3349 SCTP_FROM_SCTP_INPUT + SCTP_LOC_26); 3350 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 3351 stcb, tp1->whoTo); 3352 3353 /* fix counts and things */ 3354 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 3355 sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_PDRP, 3356 tp1->whoTo->flight_size, 3357 tp1->book_size, 3358 (uint32_t) (uintptr_t) stcb, 3359 tp1->rec.data.TSN_seq); 3360 } 3361 if (tp1->sent < SCTP_DATAGRAM_RESEND) { 3362 sctp_flight_size_decrease(tp1); 3363 sctp_total_flight_decrease(stcb, tp1); 3364 } 3365 tp1->sent = SCTP_DATAGRAM_RESEND; 3366 } { 3367 /* audit code */ 3368 unsigned int audit; 3369 3370 audit = 0; 3371 TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3372 if (tp1->sent == SCTP_DATAGRAM_RESEND) 3373 audit++; 3374 } 3375 TAILQ_FOREACH(tp1, &stcb->asoc.control_send_queue, 3376 sctp_next) { 3377 if (tp1->sent == SCTP_DATAGRAM_RESEND) 3378 audit++; 3379 } 3380 if (audit != stcb->asoc.sent_queue_retran_cnt) { 3381 SCTP_PRINTF("**Local Audit finds cnt:%d asoc cnt:%d\n", 3382 audit, stcb->asoc.sent_queue_retran_cnt); 3383 #ifndef SCTP_AUDITING_ENABLED 3384 stcb->asoc.sent_queue_retran_cnt = audit; 3385 #endif 3386 } 3387 } 3388 } 3389 break; 3390 case SCTP_ASCONF: 3391 { 3392 struct sctp_tmit_chunk *asconf; 3393 3394 TAILQ_FOREACH(asconf, &stcb->asoc.control_send_queue, 3395 sctp_next) { 3396 if (asconf->rec.chunk_id.id == SCTP_ASCONF) { 3397 break; 3398 } 3399 } 3400 if (asconf) { 3401 if (asconf->sent != SCTP_DATAGRAM_RESEND) 3402 sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3403 asconf->sent = SCTP_DATAGRAM_RESEND; 3404 asconf->snd_count--; 3405 } 3406 } 3407 break; 3408 case SCTP_INITIATION: 3409 /* resend the INIT */ 3410 stcb->asoc.dropped_special_cnt++; 3411 if (stcb->asoc.dropped_special_cnt < SCTP_RETRY_DROPPED_THRESH) { 3412 /* 3413 * If we can get it in, in a few attempts we do 3414 * this, otherwise we let the timer fire. 3415 */ 3416 sctp_timer_stop(SCTP_TIMER_TYPE_INIT, stcb->sctp_ep, 3417 stcb, net, 3418 SCTP_FROM_SCTP_INPUT + SCTP_LOC_27); 3419 sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 3420 } 3421 break; 3422 case SCTP_SELECTIVE_ACK: 3423 case SCTP_NR_SELECTIVE_ACK: 3424 /* resend the sack */ 3425 sctp_send_sack(stcb, SCTP_SO_NOT_LOCKED); 3426 break; 3427 case SCTP_HEARTBEAT_REQUEST: 3428 /* resend a demand HB */ 3429 if ((stcb->asoc.overall_error_count + 3) < stcb->asoc.max_send_times) { 3430 /* 3431 * Only retransmit if we KNOW we wont destroy the 3432 * tcb 3433 */ 3434 sctp_send_hb(stcb, net, SCTP_SO_NOT_LOCKED); 3435 } 3436 break; 3437 case SCTP_SHUTDOWN: 3438 sctp_send_shutdown(stcb, net); 3439 break; 3440 case SCTP_SHUTDOWN_ACK: 3441 sctp_send_shutdown_ack(stcb, net); 3442 break; 3443 case SCTP_COOKIE_ECHO: 3444 { 3445 struct sctp_tmit_chunk *cookie; 3446 3447 cookie = NULL; 3448 TAILQ_FOREACH(cookie, &stcb->asoc.control_send_queue, 3449 sctp_next) { 3450 if (cookie->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 3451 break; 3452 } 3453 } 3454 if (cookie) { 3455 if (cookie->sent != SCTP_DATAGRAM_RESEND) 3456 sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3457 cookie->sent = SCTP_DATAGRAM_RESEND; 3458 sctp_stop_all_cookie_timers(stcb); 3459 } 3460 } 3461 break; 3462 case SCTP_COOKIE_ACK: 3463 sctp_send_cookie_ack(stcb); 3464 break; 3465 case SCTP_ASCONF_ACK: 3466 /* resend last asconf ack */ 3467 sctp_send_asconf_ack(stcb); 3468 break; 3469 case SCTP_IFORWARD_CUM_TSN: 3470 case SCTP_FORWARD_CUM_TSN: 3471 send_forward_tsn(stcb, &stcb->asoc); 3472 break; 3473 /* can't do anything with these */ 3474 case SCTP_PACKET_DROPPED: 3475 case SCTP_INITIATION_ACK: /* this should not happen */ 3476 case SCTP_HEARTBEAT_ACK: 3477 case SCTP_ABORT_ASSOCIATION: 3478 case SCTP_OPERATION_ERROR: 3479 case SCTP_SHUTDOWN_COMPLETE: 3480 case SCTP_ECN_ECHO: 3481 case SCTP_ECN_CWR: 3482 default: 3483 break; 3484 } 3485 return (0); 3486 } 3487 3488 void 3489 sctp_reset_in_stream(struct sctp_tcb *stcb, uint32_t number_entries, uint16_t * list) 3490 { 3491 uint32_t i; 3492 uint16_t temp; 3493 3494 /* 3495 * We set things to 0xffffffff since this is the last delivered 3496 * sequence and we will be sending in 0 after the reset. 3497 */ 3498 3499 if (number_entries) { 3500 for (i = 0; i < number_entries; i++) { 3501 temp = ntohs(list[i]); 3502 if (temp >= stcb->asoc.streamincnt) { 3503 continue; 3504 } 3505 stcb->asoc.strmin[temp].last_sequence_delivered = 0xffffffff; 3506 } 3507 } else { 3508 list = NULL; 3509 for (i = 0; i < stcb->asoc.streamincnt; i++) { 3510 stcb->asoc.strmin[i].last_sequence_delivered = 0xffffffff; 3511 } 3512 } 3513 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_RECV, stcb, number_entries, (void *)list, SCTP_SO_NOT_LOCKED); 3514 } 3515 3516 static void 3517 sctp_reset_out_streams(struct sctp_tcb *stcb, uint32_t number_entries, uint16_t * list) 3518 { 3519 uint32_t i; 3520 uint16_t temp; 3521 3522 if (number_entries > 0) { 3523 for (i = 0; i < number_entries; i++) { 3524 temp = ntohs(list[i]); 3525 if (temp >= stcb->asoc.streamoutcnt) { 3526 /* no such stream */ 3527 continue; 3528 } 3529 stcb->asoc.strmout[temp].next_sequence_send = 0; 3530 } 3531 } else { 3532 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3533 stcb->asoc.strmout[i].next_sequence_send = 0; 3534 } 3535 } 3536 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_SEND, stcb, number_entries, (void *)list, SCTP_SO_NOT_LOCKED); 3537 } 3538 3539 static void 3540 sctp_reset_clear_pending(struct sctp_tcb *stcb, uint32_t number_entries, uint16_t * list) 3541 { 3542 uint32_t i; 3543 uint16_t temp; 3544 3545 if (number_entries > 0) { 3546 for (i = 0; i < number_entries; i++) { 3547 temp = ntohs(list[i]); 3548 if (temp >= stcb->asoc.streamoutcnt) { 3549 /* no such stream */ 3550 continue; 3551 } 3552 stcb->asoc.strmout[temp].state = SCTP_STREAM_OPEN; 3553 } 3554 } else { 3555 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3556 stcb->asoc.strmout[i].state = SCTP_STREAM_OPEN; 3557 } 3558 } 3559 } 3560 3561 3562 struct sctp_stream_reset_request * 3563 sctp_find_stream_reset(struct sctp_tcb *stcb, uint32_t seq, struct sctp_tmit_chunk **bchk) 3564 { 3565 struct sctp_association *asoc; 3566 struct sctp_chunkhdr *ch; 3567 struct sctp_stream_reset_request *r; 3568 struct sctp_tmit_chunk *chk; 3569 int len, clen; 3570 3571 asoc = &stcb->asoc; 3572 if (TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 3573 asoc->stream_reset_outstanding = 0; 3574 return (NULL); 3575 } 3576 if (stcb->asoc.str_reset == NULL) { 3577 asoc->stream_reset_outstanding = 0; 3578 return (NULL); 3579 } 3580 chk = stcb->asoc.str_reset; 3581 if (chk->data == NULL) { 3582 return (NULL); 3583 } 3584 if (bchk) { 3585 /* he wants a copy of the chk pointer */ 3586 *bchk = chk; 3587 } 3588 clen = chk->send_size; 3589 ch = mtod(chk->data, struct sctp_chunkhdr *); 3590 r = (struct sctp_stream_reset_request *)(ch + 1); 3591 if (ntohl(r->request_seq) == seq) { 3592 /* found it */ 3593 return (r); 3594 } 3595 len = SCTP_SIZE32(ntohs(r->ph.param_length)); 3596 if (clen > (len + (int)sizeof(struct sctp_chunkhdr))) { 3597 /* move to the next one, there can only be a max of two */ 3598 r = (struct sctp_stream_reset_request *)((caddr_t)r + len); 3599 if (ntohl(r->request_seq) == seq) { 3600 return (r); 3601 } 3602 } 3603 /* that seq is not here */ 3604 return (NULL); 3605 } 3606 3607 static void 3608 sctp_clean_up_stream_reset(struct sctp_tcb *stcb) 3609 { 3610 struct sctp_association *asoc; 3611 struct sctp_tmit_chunk *chk = stcb->asoc.str_reset; 3612 3613 if (stcb->asoc.str_reset == NULL) { 3614 return; 3615 } 3616 asoc = &stcb->asoc; 3617 3618 sctp_timer_stop(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, 3619 chk->whoTo, SCTP_FROM_SCTP_INPUT + SCTP_LOC_28); 3620 TAILQ_REMOVE(&asoc->control_send_queue, 3621 chk, 3622 sctp_next); 3623 if (chk->data) { 3624 sctp_m_freem(chk->data); 3625 chk->data = NULL; 3626 } 3627 asoc->ctrl_queue_cnt--; 3628 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 3629 /* sa_ignore NO_NULL_CHK */ 3630 stcb->asoc.str_reset = NULL; 3631 } 3632 3633 3634 static int 3635 sctp_handle_stream_reset_response(struct sctp_tcb *stcb, 3636 uint32_t seq, uint32_t action, 3637 struct sctp_stream_reset_response *respin) 3638 { 3639 uint16_t type; 3640 int lparm_len; 3641 struct sctp_association *asoc = &stcb->asoc; 3642 struct sctp_tmit_chunk *chk; 3643 struct sctp_stream_reset_request *req_param; 3644 struct sctp_stream_reset_out_request *req_out_param; 3645 struct sctp_stream_reset_in_request *req_in_param; 3646 uint32_t number_entries; 3647 3648 if (asoc->stream_reset_outstanding == 0) { 3649 /* duplicate */ 3650 return (0); 3651 } 3652 if (seq == stcb->asoc.str_reset_seq_out) { 3653 req_param = sctp_find_stream_reset(stcb, seq, &chk); 3654 if (req_param != NULL) { 3655 stcb->asoc.str_reset_seq_out++; 3656 type = ntohs(req_param->ph.param_type); 3657 lparm_len = ntohs(req_param->ph.param_length); 3658 if (type == SCTP_STR_RESET_OUT_REQUEST) { 3659 int no_clear = 0; 3660 3661 req_out_param = (struct sctp_stream_reset_out_request *)req_param; 3662 number_entries = (lparm_len - sizeof(struct sctp_stream_reset_out_request)) / sizeof(uint16_t); 3663 asoc->stream_reset_out_is_outstanding = 0; 3664 if (asoc->stream_reset_outstanding) 3665 asoc->stream_reset_outstanding--; 3666 if (action == SCTP_STREAM_RESET_RESULT_PERFORMED) { 3667 /* do it */ 3668 sctp_reset_out_streams(stcb, number_entries, req_out_param->list_of_streams); 3669 } else if (action == SCTP_STREAM_RESET_RESULT_DENIED) { 3670 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_DENIED_OUT, stcb, number_entries, req_out_param->list_of_streams, SCTP_SO_NOT_LOCKED); 3671 } else if (action == SCTP_STREAM_RESET_RESULT_IN_PROGRESS) { 3672 /* 3673 * Set it up so we don't stop 3674 * retransmitting 3675 */ 3676 asoc->stream_reset_outstanding++; 3677 stcb->asoc.str_reset_seq_out--; 3678 asoc->stream_reset_out_is_outstanding = 1; 3679 no_clear = 1; 3680 } else { 3681 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_FAILED_OUT, stcb, number_entries, req_out_param->list_of_streams, SCTP_SO_NOT_LOCKED); 3682 } 3683 if (no_clear == 0) { 3684 sctp_reset_clear_pending(stcb, number_entries, req_out_param->list_of_streams); 3685 } 3686 } else if (type == SCTP_STR_RESET_IN_REQUEST) { 3687 req_in_param = (struct sctp_stream_reset_in_request *)req_param; 3688 number_entries = (lparm_len - sizeof(struct sctp_stream_reset_in_request)) / sizeof(uint16_t); 3689 if (asoc->stream_reset_outstanding) 3690 asoc->stream_reset_outstanding--; 3691 if (action == SCTP_STREAM_RESET_RESULT_DENIED) { 3692 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_DENIED_IN, stcb, 3693 number_entries, req_in_param->list_of_streams, SCTP_SO_NOT_LOCKED); 3694 } else if (action != SCTP_STREAM_RESET_RESULT_PERFORMED) { 3695 sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_FAILED_IN, stcb, 3696 number_entries, req_in_param->list_of_streams, SCTP_SO_NOT_LOCKED); 3697 } 3698 } else if (type == SCTP_STR_RESET_ADD_OUT_STREAMS) { 3699 /* Ok we now may have more streams */ 3700 int num_stream; 3701 3702 num_stream = stcb->asoc.strm_pending_add_size; 3703 if (num_stream > (stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt)) { 3704 /* TSNH */ 3705 num_stream = stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt; 3706 } 3707 stcb->asoc.strm_pending_add_size = 0; 3708 if (asoc->stream_reset_outstanding) 3709 asoc->stream_reset_outstanding--; 3710 if (action == SCTP_STREAM_RESET_RESULT_PERFORMED) { 3711 /* Put the new streams into effect */ 3712 int i; 3713 3714 for (i = asoc->streamoutcnt; i < (asoc->streamoutcnt + num_stream); i++) { 3715 asoc->strmout[i].state = SCTP_STREAM_OPEN; 3716 } 3717 asoc->streamoutcnt += num_stream; 3718 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 0); 3719 } else if (action == SCTP_STREAM_RESET_RESULT_DENIED) { 3720 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 3721 SCTP_STREAM_CHANGE_DENIED); 3722 } else { 3723 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 3724 SCTP_STREAM_CHANGE_FAILED); 3725 } 3726 } else if (type == SCTP_STR_RESET_ADD_IN_STREAMS) { 3727 if (asoc->stream_reset_outstanding) 3728 asoc->stream_reset_outstanding--; 3729 if (action == SCTP_STREAM_RESET_RESULT_DENIED) { 3730 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 3731 SCTP_STREAM_CHANGE_DENIED); 3732 } else if (action != SCTP_STREAM_RESET_RESULT_PERFORMED) { 3733 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 3734 SCTP_STREAM_CHANGE_FAILED); 3735 } 3736 } else if (type == SCTP_STR_RESET_TSN_REQUEST) { 3737 /** 3738 * a) Adopt the new in tsn. 3739 * b) reset the map 3740 * c) Adopt the new out-tsn 3741 */ 3742 struct sctp_stream_reset_response_tsn *resp; 3743 struct sctp_forward_tsn_chunk fwdtsn; 3744 int abort_flag = 0; 3745 3746 if (respin == NULL) { 3747 /* huh ? */ 3748 return (0); 3749 } 3750 if (ntohs(respin->ph.param_length) < sizeof(struct sctp_stream_reset_response_tsn)) { 3751 return (0); 3752 } 3753 if (action == SCTP_STREAM_RESET_RESULT_PERFORMED) { 3754 resp = (struct sctp_stream_reset_response_tsn *)respin; 3755 asoc->stream_reset_outstanding--; 3756 fwdtsn.ch.chunk_length = htons(sizeof(struct sctp_forward_tsn_chunk)); 3757 fwdtsn.ch.chunk_type = SCTP_FORWARD_CUM_TSN; 3758 fwdtsn.new_cumulative_tsn = htonl(ntohl(resp->senders_next_tsn) - 1); 3759 sctp_handle_forward_tsn(stcb, &fwdtsn, &abort_flag, NULL, 0); 3760 if (abort_flag) { 3761 return (1); 3762 } 3763 stcb->asoc.highest_tsn_inside_map = (ntohl(resp->senders_next_tsn) - 1); 3764 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 3765 sctp_log_map(0, 7, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 3766 } 3767 stcb->asoc.tsn_last_delivered = stcb->asoc.cumulative_tsn = stcb->asoc.highest_tsn_inside_map; 3768 stcb->asoc.mapping_array_base_tsn = ntohl(resp->senders_next_tsn); 3769 memset(stcb->asoc.mapping_array, 0, stcb->asoc.mapping_array_size); 3770 3771 stcb->asoc.highest_tsn_inside_nr_map = stcb->asoc.highest_tsn_inside_map; 3772 memset(stcb->asoc.nr_mapping_array, 0, stcb->asoc.mapping_array_size); 3773 3774 stcb->asoc.sending_seq = ntohl(resp->receivers_next_tsn); 3775 stcb->asoc.last_acked_seq = stcb->asoc.cumulative_tsn; 3776 3777 sctp_reset_out_streams(stcb, 0, (uint16_t *) NULL); 3778 sctp_reset_in_stream(stcb, 0, (uint16_t *) NULL); 3779 sctp_notify_stream_reset_tsn(stcb, stcb->asoc.sending_seq, (stcb->asoc.mapping_array_base_tsn + 1), 0); 3780 } else if (action == SCTP_STREAM_RESET_RESULT_DENIED) { 3781 sctp_notify_stream_reset_tsn(stcb, stcb->asoc.sending_seq, (stcb->asoc.mapping_array_base_tsn + 1), 3782 SCTP_ASSOC_RESET_DENIED); 3783 } else { 3784 sctp_notify_stream_reset_tsn(stcb, stcb->asoc.sending_seq, (stcb->asoc.mapping_array_base_tsn + 1), 3785 SCTP_ASSOC_RESET_FAILED); 3786 } 3787 } 3788 /* get rid of the request and get the request flags */ 3789 if (asoc->stream_reset_outstanding == 0) { 3790 sctp_clean_up_stream_reset(stcb); 3791 } 3792 } 3793 } 3794 if (asoc->stream_reset_outstanding == 0) { 3795 sctp_send_stream_reset_out_if_possible(stcb, SCTP_SO_NOT_LOCKED); 3796 } 3797 return (0); 3798 } 3799 3800 static void 3801 sctp_handle_str_reset_request_in(struct sctp_tcb *stcb, 3802 struct sctp_tmit_chunk *chk, 3803 struct sctp_stream_reset_in_request *req, int trunc) 3804 { 3805 uint32_t seq; 3806 int len, i; 3807 int number_entries; 3808 uint16_t temp; 3809 3810 /* 3811 * peer wants me to send a str-reset to him for my outgoing seq's if 3812 * seq_in is right. 3813 */ 3814 struct sctp_association *asoc = &stcb->asoc; 3815 3816 seq = ntohl(req->request_seq); 3817 if (asoc->str_reset_seq_in == seq) { 3818 asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3819 if (!(asoc->local_strreset_support & SCTP_ENABLE_RESET_STREAM_REQ)) { 3820 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3821 } else if (trunc) { 3822 /* Can't do it, since they exceeded our buffer size */ 3823 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3824 } else if (stcb->asoc.stream_reset_out_is_outstanding == 0) { 3825 len = ntohs(req->ph.param_length); 3826 number_entries = ((len - sizeof(struct sctp_stream_reset_in_request)) / sizeof(uint16_t)); 3827 if (number_entries) { 3828 for (i = 0; i < number_entries; i++) { 3829 temp = ntohs(req->list_of_streams[i]); 3830 if (temp >= stcb->asoc.streamoutcnt) { 3831 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3832 goto bad_boy; 3833 } 3834 req->list_of_streams[i] = temp; 3835 } 3836 for (i = 0; i < number_entries; i++) { 3837 if (stcb->asoc.strmout[req->list_of_streams[i]].state == SCTP_STREAM_OPEN) { 3838 stcb->asoc.strmout[req->list_of_streams[i]].state = SCTP_STREAM_RESET_PENDING; 3839 } 3840 } 3841 } else { 3842 /* Its all */ 3843 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3844 if (stcb->asoc.strmout[i].state == SCTP_STREAM_OPEN) 3845 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_PENDING; 3846 } 3847 } 3848 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_PERFORMED; 3849 } else { 3850 /* Can't do it, since we have sent one out */ 3851 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_ERR_IN_PROGRESS; 3852 } 3853 bad_boy: 3854 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3855 asoc->str_reset_seq_in++; 3856 } else if (asoc->str_reset_seq_in - 1 == seq) { 3857 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3858 } else if (asoc->str_reset_seq_in - 2 == seq) { 3859 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 3860 } else { 3861 sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO); 3862 } 3863 sctp_send_stream_reset_out_if_possible(stcb, SCTP_SO_NOT_LOCKED); 3864 } 3865 3866 static int 3867 sctp_handle_str_reset_request_tsn(struct sctp_tcb *stcb, 3868 struct sctp_tmit_chunk *chk, 3869 struct sctp_stream_reset_tsn_request *req) 3870 { 3871 /* reset all in and out and update the tsn */ 3872 /* 3873 * A) reset my str-seq's on in and out. B) Select a receive next, 3874 * and set cum-ack to it. Also process this selected number as a 3875 * fwd-tsn as well. C) set in the response my next sending seq. 3876 */ 3877 struct sctp_forward_tsn_chunk fwdtsn; 3878 struct sctp_association *asoc = &stcb->asoc; 3879 int abort_flag = 0; 3880 uint32_t seq; 3881 3882 seq = ntohl(req->request_seq); 3883 if (asoc->str_reset_seq_in == seq) { 3884 asoc->last_reset_action[1] = stcb->asoc.last_reset_action[0]; 3885 if (!(asoc->local_strreset_support & SCTP_ENABLE_CHANGE_ASSOC_REQ)) { 3886 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3887 } else { 3888 fwdtsn.ch.chunk_length = htons(sizeof(struct sctp_forward_tsn_chunk)); 3889 fwdtsn.ch.chunk_type = SCTP_FORWARD_CUM_TSN; 3890 fwdtsn.ch.chunk_flags = 0; 3891 fwdtsn.new_cumulative_tsn = htonl(stcb->asoc.highest_tsn_inside_map + 1); 3892 sctp_handle_forward_tsn(stcb, &fwdtsn, &abort_flag, NULL, 0); 3893 if (abort_flag) { 3894 return (1); 3895 } 3896 asoc->highest_tsn_inside_map += SCTP_STREAM_RESET_TSN_DELTA; 3897 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 3898 sctp_log_map(0, 10, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 3899 } 3900 asoc->tsn_last_delivered = asoc->cumulative_tsn = asoc->highest_tsn_inside_map; 3901 asoc->mapping_array_base_tsn = asoc->highest_tsn_inside_map + 1; 3902 memset(asoc->mapping_array, 0, asoc->mapping_array_size); 3903 asoc->highest_tsn_inside_nr_map = asoc->highest_tsn_inside_map; 3904 memset(asoc->nr_mapping_array, 0, asoc->mapping_array_size); 3905 atomic_add_int(&asoc->sending_seq, 1); 3906 /* save off historical data for retrans */ 3907 asoc->last_sending_seq[1] = asoc->last_sending_seq[0]; 3908 asoc->last_sending_seq[0] = asoc->sending_seq; 3909 asoc->last_base_tsnsent[1] = asoc->last_base_tsnsent[0]; 3910 asoc->last_base_tsnsent[0] = asoc->mapping_array_base_tsn; 3911 sctp_reset_out_streams(stcb, 0, (uint16_t *) NULL); 3912 sctp_reset_in_stream(stcb, 0, (uint16_t *) NULL); 3913 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_PERFORMED; 3914 sctp_notify_stream_reset_tsn(stcb, asoc->sending_seq, (asoc->mapping_array_base_tsn + 1), 0); 3915 } 3916 sctp_add_stream_reset_result_tsn(chk, seq, asoc->last_reset_action[0], 3917 asoc->last_sending_seq[0], asoc->last_base_tsnsent[0]); 3918 asoc->str_reset_seq_in++; 3919 } else if (asoc->str_reset_seq_in - 1 == seq) { 3920 sctp_add_stream_reset_result_tsn(chk, seq, asoc->last_reset_action[0], 3921 asoc->last_sending_seq[0], asoc->last_base_tsnsent[0]); 3922 } else if (asoc->str_reset_seq_in - 2 == seq) { 3923 sctp_add_stream_reset_result_tsn(chk, seq, asoc->last_reset_action[1], 3924 asoc->last_sending_seq[1], asoc->last_base_tsnsent[1]); 3925 } else { 3926 sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO); 3927 } 3928 return (0); 3929 } 3930 3931 static void 3932 sctp_handle_str_reset_request_out(struct sctp_tcb *stcb, 3933 struct sctp_tmit_chunk *chk, 3934 struct sctp_stream_reset_out_request *req, int trunc) 3935 { 3936 uint32_t seq, tsn; 3937 int number_entries, len; 3938 struct sctp_association *asoc = &stcb->asoc; 3939 3940 seq = ntohl(req->request_seq); 3941 3942 /* now if its not a duplicate we process it */ 3943 if (asoc->str_reset_seq_in == seq) { 3944 len = ntohs(req->ph.param_length); 3945 number_entries = ((len - sizeof(struct sctp_stream_reset_out_request)) / sizeof(uint16_t)); 3946 /* 3947 * the sender is resetting, handle the list issue.. we must 3948 * a) verify if we can do the reset, if so no problem b) If 3949 * we can't do the reset we must copy the request. c) queue 3950 * it, and setup the data in processor to trigger it off 3951 * when needed and dequeue all the queued data. 3952 */ 3953 tsn = ntohl(req->send_reset_at_tsn); 3954 3955 /* move the reset action back one */ 3956 asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3957 if (!(asoc->local_strreset_support & SCTP_ENABLE_RESET_STREAM_REQ)) { 3958 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3959 } else if (trunc) { 3960 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3961 } else if (SCTP_TSN_GE(asoc->cumulative_tsn, tsn)) { 3962 /* we can do it now */ 3963 sctp_reset_in_stream(stcb, number_entries, req->list_of_streams); 3964 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_PERFORMED; 3965 } else { 3966 /* 3967 * we must queue it up and thus wait for the TSN's 3968 * to arrive that are at or before tsn 3969 */ 3970 struct sctp_stream_reset_list *liste; 3971 int siz; 3972 3973 siz = sizeof(struct sctp_stream_reset_list) + (number_entries * sizeof(uint16_t)); 3974 SCTP_MALLOC(liste, struct sctp_stream_reset_list *, 3975 siz, SCTP_M_STRESET); 3976 if (liste == NULL) { 3977 /* gak out of memory */ 3978 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 3979 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3980 return; 3981 } 3982 liste->seq = seq; 3983 liste->tsn = tsn; 3984 liste->number_entries = number_entries; 3985 memcpy(&liste->list_of_streams, req->list_of_streams, number_entries * sizeof(uint16_t)); 3986 TAILQ_INSERT_TAIL(&asoc->resetHead, liste, next_resp); 3987 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_IN_PROGRESS; 3988 } 3989 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3990 asoc->str_reset_seq_in++; 3991 } else if ((asoc->str_reset_seq_in - 1) == seq) { 3992 /* 3993 * one seq back, just echo back last action since my 3994 * response was lost. 3995 */ 3996 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3997 } else if ((asoc->str_reset_seq_in - 2) == seq) { 3998 /* 3999 * two seq back, just echo back last action since my 4000 * response was lost. 4001 */ 4002 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 4003 } else { 4004 sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO); 4005 } 4006 } 4007 4008 static void 4009 sctp_handle_str_reset_add_strm(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 4010 struct sctp_stream_reset_add_strm *str_add) 4011 { 4012 /* 4013 * Peer is requesting to add more streams. If its within our 4014 * max-streams we will allow it. 4015 */ 4016 uint32_t num_stream, i; 4017 uint32_t seq; 4018 struct sctp_association *asoc = &stcb->asoc; 4019 struct sctp_queued_to_read *ctl, *nctl; 4020 4021 /* Get the number. */ 4022 seq = ntohl(str_add->request_seq); 4023 num_stream = ntohs(str_add->number_of_streams); 4024 /* Now what would be the new total? */ 4025 if (asoc->str_reset_seq_in == seq) { 4026 num_stream += stcb->asoc.streamincnt; 4027 stcb->asoc.last_reset_action[1] = stcb->asoc.last_reset_action[0]; 4028 if (!(asoc->local_strreset_support & SCTP_ENABLE_CHANGE_ASSOC_REQ)) { 4029 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 4030 } else if ((num_stream > stcb->asoc.max_inbound_streams) || 4031 (num_stream > 0xffff)) { 4032 /* We must reject it they ask for to many */ 4033 denied: 4034 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 4035 } else { 4036 /* Ok, we can do that :-) */ 4037 struct sctp_stream_in *oldstrm; 4038 4039 /* save off the old */ 4040 oldstrm = stcb->asoc.strmin; 4041 SCTP_MALLOC(stcb->asoc.strmin, struct sctp_stream_in *, 4042 (num_stream * sizeof(struct sctp_stream_in)), 4043 SCTP_M_STRMI); 4044 if (stcb->asoc.strmin == NULL) { 4045 stcb->asoc.strmin = oldstrm; 4046 goto denied; 4047 } 4048 /* copy off the old data */ 4049 for (i = 0; i < stcb->asoc.streamincnt; i++) { 4050 TAILQ_INIT(&stcb->asoc.strmin[i].inqueue); 4051 TAILQ_INIT(&stcb->asoc.strmin[i].uno_inqueue); 4052 stcb->asoc.strmin[i].stream_no = i; 4053 stcb->asoc.strmin[i].last_sequence_delivered = oldstrm[i].last_sequence_delivered; 4054 stcb->asoc.strmin[i].delivery_started = oldstrm[i].delivery_started; 4055 stcb->asoc.strmin[i].pd_api_started = oldstrm[i].pd_api_started; 4056 /* now anything on those queues? */ 4057 TAILQ_FOREACH_SAFE(ctl, &oldstrm[i].inqueue, next_instrm, nctl) { 4058 TAILQ_REMOVE(&oldstrm[i].inqueue, ctl, next_instrm); 4059 TAILQ_INSERT_TAIL(&stcb->asoc.strmin[i].inqueue, ctl, next_instrm); 4060 } 4061 TAILQ_FOREACH_SAFE(ctl, &oldstrm[i].uno_inqueue, next_instrm, nctl) { 4062 TAILQ_REMOVE(&oldstrm[i].uno_inqueue, ctl, next_instrm); 4063 TAILQ_INSERT_TAIL(&stcb->asoc.strmin[i].uno_inqueue, ctl, next_instrm); 4064 } 4065 } 4066 /* Init the new streams */ 4067 for (i = stcb->asoc.streamincnt; i < num_stream; i++) { 4068 TAILQ_INIT(&stcb->asoc.strmin[i].inqueue); 4069 TAILQ_INIT(&stcb->asoc.strmin[i].uno_inqueue); 4070 stcb->asoc.strmin[i].stream_no = i; 4071 stcb->asoc.strmin[i].last_sequence_delivered = 0xffffffff; 4072 stcb->asoc.strmin[i].pd_api_started = 0; 4073 stcb->asoc.strmin[i].delivery_started = 0; 4074 } 4075 SCTP_FREE(oldstrm, SCTP_M_STRMI); 4076 /* update the size */ 4077 stcb->asoc.streamincnt = num_stream; 4078 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_PERFORMED; 4079 sctp_notify_stream_reset_add(stcb, stcb->asoc.streamincnt, stcb->asoc.streamoutcnt, 0); 4080 } 4081 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 4082 asoc->str_reset_seq_in++; 4083 } else if ((asoc->str_reset_seq_in - 1) == seq) { 4084 /* 4085 * one seq back, just echo back last action since my 4086 * response was lost. 4087 */ 4088 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 4089 } else if ((asoc->str_reset_seq_in - 2) == seq) { 4090 /* 4091 * two seq back, just echo back last action since my 4092 * response was lost. 4093 */ 4094 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 4095 } else { 4096 sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO); 4097 4098 } 4099 } 4100 4101 static void 4102 sctp_handle_str_reset_add_out_strm(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 4103 struct sctp_stream_reset_add_strm *str_add) 4104 { 4105 /* 4106 * Peer is requesting to add more streams. If its within our 4107 * max-streams we will allow it. 4108 */ 4109 uint16_t num_stream; 4110 uint32_t seq; 4111 struct sctp_association *asoc = &stcb->asoc; 4112 4113 /* Get the number. */ 4114 seq = ntohl(str_add->request_seq); 4115 num_stream = ntohs(str_add->number_of_streams); 4116 /* Now what would be the new total? */ 4117 if (asoc->str_reset_seq_in == seq) { 4118 stcb->asoc.last_reset_action[1] = stcb->asoc.last_reset_action[0]; 4119 if (!(asoc->local_strreset_support & SCTP_ENABLE_CHANGE_ASSOC_REQ)) { 4120 asoc->last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 4121 } else if (stcb->asoc.stream_reset_outstanding) { 4122 /* We must reject it we have something pending */ 4123 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_ERR_IN_PROGRESS; 4124 } else { 4125 /* Ok, we can do that :-) */ 4126 int mychk; 4127 4128 mychk = stcb->asoc.streamoutcnt; 4129 mychk += num_stream; 4130 if (mychk < 0x10000) { 4131 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_PERFORMED; 4132 if (sctp_send_str_reset_req(stcb, 0, NULL, 0, 0, 1, num_stream, 0, 1)) { 4133 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 4134 } 4135 } else { 4136 stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_RESULT_DENIED; 4137 } 4138 } 4139 sctp_add_stream_reset_result(chk, seq, stcb->asoc.last_reset_action[0]); 4140 asoc->str_reset_seq_in++; 4141 } else if ((asoc->str_reset_seq_in - 1) == seq) { 4142 /* 4143 * one seq back, just echo back last action since my 4144 * response was lost. 4145 */ 4146 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 4147 } else if ((asoc->str_reset_seq_in - 2) == seq) { 4148 /* 4149 * two seq back, just echo back last action since my 4150 * response was lost. 4151 */ 4152 sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 4153 } else { 4154 sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_RESULT_ERR_BAD_SEQNO); 4155 } 4156 } 4157 4158 #ifdef __GNUC__ 4159 __attribute__((noinline)) 4160 #endif 4161 static int 4162 sctp_handle_stream_reset(struct sctp_tcb *stcb, struct mbuf *m, int offset, 4163 struct sctp_chunkhdr *ch_req) 4164 { 4165 uint16_t remaining_length, param_len, ptype; 4166 struct sctp_paramhdr pstore; 4167 uint8_t cstore[SCTP_CHUNK_BUFFER_SIZE]; 4168 uint32_t seq = 0; 4169 int num_req = 0; 4170 int trunc = 0; 4171 struct sctp_tmit_chunk *chk; 4172 struct sctp_chunkhdr *ch; 4173 struct sctp_paramhdr *ph; 4174 int ret_code = 0; 4175 int num_param = 0; 4176 4177 /* now it may be a reset or a reset-response */ 4178 remaining_length = ntohs(ch_req->chunk_length) - sizeof(struct sctp_chunkhdr); 4179 4180 /* setup for adding the response */ 4181 sctp_alloc_a_chunk(stcb, chk); 4182 if (chk == NULL) { 4183 return (ret_code); 4184 } 4185 chk->copy_by_ref = 0; 4186 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 4187 chk->rec.chunk_id.can_take_data = 0; 4188 chk->flags = 0; 4189 chk->asoc = &stcb->asoc; 4190 chk->no_fr_allowed = 0; 4191 chk->book_size = chk->send_size = sizeof(struct sctp_chunkhdr); 4192 chk->book_size_scale = 0; 4193 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 4194 if (chk->data == NULL) { 4195 strres_nochunk: 4196 if (chk->data) { 4197 sctp_m_freem(chk->data); 4198 chk->data = NULL; 4199 } 4200 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 4201 return (ret_code); 4202 } 4203 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 4204 4205 /* setup chunk parameters */ 4206 chk->sent = SCTP_DATAGRAM_UNSENT; 4207 chk->snd_count = 0; 4208 chk->whoTo = NULL; 4209 4210 ch = mtod(chk->data, struct sctp_chunkhdr *); 4211 ch->chunk_type = SCTP_STREAM_RESET; 4212 ch->chunk_flags = 0; 4213 ch->chunk_length = htons(chk->send_size); 4214 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 4215 offset += sizeof(struct sctp_chunkhdr); 4216 while (remaining_length >= sizeof(struct sctp_paramhdr)) { 4217 ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, sizeof(pstore), (uint8_t *) & pstore); 4218 if (ph == NULL) { 4219 /* TSNH */ 4220 break; 4221 } 4222 param_len = ntohs(ph->param_length); 4223 if ((param_len > remaining_length) || 4224 (param_len < (sizeof(struct sctp_paramhdr) + sizeof(uint32_t)))) { 4225 /* bad parameter length */ 4226 break; 4227 } 4228 ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, min(param_len, sizeof(cstore)), 4229 (uint8_t *) & cstore); 4230 if (ph == NULL) { 4231 /* TSNH */ 4232 break; 4233 } 4234 ptype = ntohs(ph->param_type); 4235 num_param++; 4236 if (param_len > sizeof(cstore)) { 4237 trunc = 1; 4238 } else { 4239 trunc = 0; 4240 } 4241 if (num_param > SCTP_MAX_RESET_PARAMS) { 4242 /* hit the max of parameters already sorry.. */ 4243 break; 4244 } 4245 if (ptype == SCTP_STR_RESET_OUT_REQUEST) { 4246 struct sctp_stream_reset_out_request *req_out; 4247 4248 if (param_len < sizeof(struct sctp_stream_reset_out_request)) { 4249 break; 4250 } 4251 req_out = (struct sctp_stream_reset_out_request *)ph; 4252 num_req++; 4253 if (stcb->asoc.stream_reset_outstanding) { 4254 seq = ntohl(req_out->response_seq); 4255 if (seq == stcb->asoc.str_reset_seq_out) { 4256 /* implicit ack */ 4257 (void)sctp_handle_stream_reset_response(stcb, seq, SCTP_STREAM_RESET_RESULT_PERFORMED, NULL); 4258 } 4259 } 4260 sctp_handle_str_reset_request_out(stcb, chk, req_out, trunc); 4261 } else if (ptype == SCTP_STR_RESET_ADD_OUT_STREAMS) { 4262 struct sctp_stream_reset_add_strm *str_add; 4263 4264 if (param_len < sizeof(struct sctp_stream_reset_add_strm)) { 4265 break; 4266 } 4267 str_add = (struct sctp_stream_reset_add_strm *)ph; 4268 num_req++; 4269 sctp_handle_str_reset_add_strm(stcb, chk, str_add); 4270 } else if (ptype == SCTP_STR_RESET_ADD_IN_STREAMS) { 4271 struct sctp_stream_reset_add_strm *str_add; 4272 4273 if (param_len < sizeof(struct sctp_stream_reset_add_strm)) { 4274 break; 4275 } 4276 str_add = (struct sctp_stream_reset_add_strm *)ph; 4277 num_req++; 4278 sctp_handle_str_reset_add_out_strm(stcb, chk, str_add); 4279 } else if (ptype == SCTP_STR_RESET_IN_REQUEST) { 4280 struct sctp_stream_reset_in_request *req_in; 4281 4282 num_req++; 4283 req_in = (struct sctp_stream_reset_in_request *)ph; 4284 sctp_handle_str_reset_request_in(stcb, chk, req_in, trunc); 4285 } else if (ptype == SCTP_STR_RESET_TSN_REQUEST) { 4286 struct sctp_stream_reset_tsn_request *req_tsn; 4287 4288 num_req++; 4289 req_tsn = (struct sctp_stream_reset_tsn_request *)ph; 4290 if (sctp_handle_str_reset_request_tsn(stcb, chk, req_tsn)) { 4291 ret_code = 1; 4292 goto strres_nochunk; 4293 } 4294 /* no more */ 4295 break; 4296 } else if (ptype == SCTP_STR_RESET_RESPONSE) { 4297 struct sctp_stream_reset_response *resp; 4298 uint32_t result; 4299 4300 if (param_len < sizeof(struct sctp_stream_reset_response)) { 4301 break; 4302 } 4303 resp = (struct sctp_stream_reset_response *)ph; 4304 seq = ntohl(resp->response_seq); 4305 result = ntohl(resp->result); 4306 if (sctp_handle_stream_reset_response(stcb, seq, result, resp)) { 4307 ret_code = 1; 4308 goto strres_nochunk; 4309 } 4310 } else { 4311 break; 4312 } 4313 offset += SCTP_SIZE32(param_len); 4314 if (remaining_length >= SCTP_SIZE32(param_len)) { 4315 remaining_length -= SCTP_SIZE32(param_len); 4316 } else { 4317 remaining_length = 0; 4318 } 4319 } 4320 if (num_req == 0) { 4321 /* we have no response free the stuff */ 4322 goto strres_nochunk; 4323 } 4324 /* ok we have a chunk to link in */ 4325 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, 4326 chk, 4327 sctp_next); 4328 stcb->asoc.ctrl_queue_cnt++; 4329 return (ret_code); 4330 } 4331 4332 /* 4333 * Handle a router or endpoints report of a packet loss, there are two ways 4334 * to handle this, either we get the whole packet and must disect it 4335 * ourselves (possibly with truncation and or corruption) or it is a summary 4336 * from a middle box that did the disectting for us. 4337 */ 4338 static void 4339 sctp_handle_packet_dropped(struct sctp_pktdrop_chunk *cp, 4340 struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t limit) 4341 { 4342 uint32_t bottle_bw, on_queue; 4343 uint16_t trunc_len; 4344 unsigned int chlen; 4345 unsigned int at; 4346 struct sctp_chunk_desc desc; 4347 struct sctp_chunkhdr *ch; 4348 4349 chlen = ntohs(cp->ch.chunk_length); 4350 chlen -= sizeof(struct sctp_pktdrop_chunk); 4351 /* XXX possible chlen underflow */ 4352 if (chlen == 0) { 4353 ch = NULL; 4354 if (cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) 4355 SCTP_STAT_INCR(sctps_pdrpbwrpt); 4356 } else { 4357 ch = (struct sctp_chunkhdr *)(cp->data + sizeof(struct sctphdr)); 4358 chlen -= sizeof(struct sctphdr); 4359 /* XXX possible chlen underflow */ 4360 memset(&desc, 0, sizeof(desc)); 4361 } 4362 trunc_len = (uint16_t) ntohs(cp->trunc_len); 4363 if (trunc_len > limit) { 4364 trunc_len = limit; 4365 } 4366 /* now the chunks themselves */ 4367 while ((ch != NULL) && (chlen >= sizeof(struct sctp_chunkhdr))) { 4368 desc.chunk_type = ch->chunk_type; 4369 /* get amount we need to move */ 4370 at = ntohs(ch->chunk_length); 4371 if (at < sizeof(struct sctp_chunkhdr)) { 4372 /* corrupt chunk, maybe at the end? */ 4373 SCTP_STAT_INCR(sctps_pdrpcrupt); 4374 break; 4375 } 4376 if (trunc_len == 0) { 4377 /* we are supposed to have all of it */ 4378 if (at > chlen) { 4379 /* corrupt skip it */ 4380 SCTP_STAT_INCR(sctps_pdrpcrupt); 4381 break; 4382 } 4383 } else { 4384 /* is there enough of it left ? */ 4385 if (desc.chunk_type == SCTP_DATA) { 4386 if (chlen < (sizeof(struct sctp_data_chunk) + 4387 sizeof(desc.data_bytes))) { 4388 break; 4389 } 4390 } else { 4391 if (chlen < sizeof(struct sctp_chunkhdr)) { 4392 break; 4393 } 4394 } 4395 } 4396 if (desc.chunk_type == SCTP_DATA) { 4397 /* can we get out the tsn? */ 4398 if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX)) 4399 SCTP_STAT_INCR(sctps_pdrpmbda); 4400 4401 if (chlen >= (sizeof(struct sctp_data_chunk) + sizeof(uint32_t))) { 4402 /* yep */ 4403 struct sctp_data_chunk *dcp; 4404 uint8_t *ddp; 4405 unsigned int iii; 4406 4407 dcp = (struct sctp_data_chunk *)ch; 4408 ddp = (uint8_t *) (dcp + 1); 4409 for (iii = 0; iii < sizeof(desc.data_bytes); iii++) { 4410 desc.data_bytes[iii] = ddp[iii]; 4411 } 4412 desc.tsn_ifany = dcp->dp.tsn; 4413 } else { 4414 /* nope we are done. */ 4415 SCTP_STAT_INCR(sctps_pdrpnedat); 4416 break; 4417 } 4418 } else { 4419 if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX)) 4420 SCTP_STAT_INCR(sctps_pdrpmbct); 4421 } 4422 4423 if (process_chunk_drop(stcb, &desc, net, cp->ch.chunk_flags)) { 4424 SCTP_STAT_INCR(sctps_pdrppdbrk); 4425 break; 4426 } 4427 if (SCTP_SIZE32(at) > chlen) { 4428 break; 4429 } 4430 chlen -= SCTP_SIZE32(at); 4431 if (chlen < sizeof(struct sctp_chunkhdr)) { 4432 /* done, none left */ 4433 break; 4434 } 4435 ch = (struct sctp_chunkhdr *)((caddr_t)ch + SCTP_SIZE32(at)); 4436 } 4437 /* Now update any rwnd --- possibly */ 4438 if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) == 0) { 4439 /* From a peer, we get a rwnd report */ 4440 uint32_t a_rwnd; 4441 4442 SCTP_STAT_INCR(sctps_pdrpfehos); 4443 4444 bottle_bw = ntohl(cp->bottle_bw); 4445 on_queue = ntohl(cp->current_onq); 4446 if (bottle_bw && on_queue) { 4447 /* a rwnd report is in here */ 4448 if (bottle_bw > on_queue) 4449 a_rwnd = bottle_bw - on_queue; 4450 else 4451 a_rwnd = 0; 4452 4453 if (a_rwnd == 0) 4454 stcb->asoc.peers_rwnd = 0; 4455 else { 4456 if (a_rwnd > stcb->asoc.total_flight) { 4457 stcb->asoc.peers_rwnd = 4458 a_rwnd - stcb->asoc.total_flight; 4459 } else { 4460 stcb->asoc.peers_rwnd = 0; 4461 } 4462 if (stcb->asoc.peers_rwnd < 4463 stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 4464 /* SWS sender side engages */ 4465 stcb->asoc.peers_rwnd = 0; 4466 } 4467 } 4468 } 4469 } else { 4470 SCTP_STAT_INCR(sctps_pdrpfmbox); 4471 } 4472 4473 /* now middle boxes in sat networks get a cwnd bump */ 4474 if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) && 4475 (stcb->asoc.sat_t3_loss_recovery == 0) && 4476 (stcb->asoc.sat_network)) { 4477 /* 4478 * This is debateable but for sat networks it makes sense 4479 * Note if a T3 timer has went off, we will prohibit any 4480 * changes to cwnd until we exit the t3 loss recovery. 4481 */ 4482 stcb->asoc.cc_functions.sctp_cwnd_update_after_packet_dropped(stcb, 4483 net, cp, &bottle_bw, &on_queue); 4484 } 4485 } 4486 4487 /* 4488 * handles all control chunks in a packet inputs: - m: mbuf chain, assumed to 4489 * still contain IP/SCTP header - stcb: is the tcb found for this packet - 4490 * offset: offset into the mbuf chain to first chunkhdr - length: is the 4491 * length of the complete packet outputs: - length: modified to remaining 4492 * length after control processing - netp: modified to new sctp_nets after 4493 * cookie-echo processing - return NULL to discard the packet (ie. no asoc, 4494 * bad packet,...) otherwise return the tcb for this packet 4495 */ 4496 #ifdef __GNUC__ 4497 __attribute__((noinline)) 4498 #endif 4499 static struct sctp_tcb * 4500 sctp_process_control(struct mbuf *m, int iphlen, int *offset, int length, 4501 struct sockaddr *src, struct sockaddr *dst, 4502 struct sctphdr *sh, struct sctp_chunkhdr *ch, struct sctp_inpcb *inp, 4503 struct sctp_tcb *stcb, struct sctp_nets **netp, int *fwd_tsn_seen, 4504 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 4505 uint32_t vrf_id, uint16_t port) 4506 { 4507 struct sctp_association *asoc; 4508 struct mbuf *op_err; 4509 char msg[SCTP_DIAG_INFO_LEN]; 4510 uint32_t vtag_in; 4511 int num_chunks = 0; /* number of control chunks processed */ 4512 uint32_t chk_length; 4513 int ret; 4514 int abort_no_unlock = 0; 4515 int ecne_seen = 0; 4516 4517 /* 4518 * How big should this be, and should it be alloc'd? Lets try the 4519 * d-mtu-ceiling for now (2k) and that should hopefully work ... 4520 * until we get into jumbo grams and such.. 4521 */ 4522 uint8_t chunk_buf[SCTP_CHUNK_BUFFER_SIZE]; 4523 struct sctp_tcb *locked_tcb = stcb; 4524 int got_auth = 0; 4525 uint32_t auth_offset = 0, auth_len = 0; 4526 int auth_skipped = 0; 4527 int asconf_cnt = 0; 4528 4529 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4530 struct socket *so; 4531 4532 #endif 4533 4534 SCTPDBG(SCTP_DEBUG_INPUT1, "sctp_process_control: iphlen=%u, offset=%u, length=%u stcb:%p\n", 4535 iphlen, *offset, length, (void *)stcb); 4536 4537 /* validate chunk header length... */ 4538 if (ntohs(ch->chunk_length) < sizeof(*ch)) { 4539 SCTPDBG(SCTP_DEBUG_INPUT1, "Invalid header length %d\n", 4540 ntohs(ch->chunk_length)); 4541 if (locked_tcb) { 4542 SCTP_TCB_UNLOCK(locked_tcb); 4543 } 4544 return (NULL); 4545 } 4546 /* 4547 * validate the verification tag 4548 */ 4549 vtag_in = ntohl(sh->v_tag); 4550 4551 if (locked_tcb) { 4552 SCTP_TCB_LOCK_ASSERT(locked_tcb); 4553 } 4554 if (ch->chunk_type == SCTP_INITIATION) { 4555 SCTPDBG(SCTP_DEBUG_INPUT1, "Its an INIT of len:%d vtag:%x\n", 4556 ntohs(ch->chunk_length), vtag_in); 4557 if (vtag_in != 0) { 4558 /* protocol error- silently discard... */ 4559 SCTP_STAT_INCR(sctps_badvtag); 4560 if (locked_tcb) { 4561 SCTP_TCB_UNLOCK(locked_tcb); 4562 } 4563 return (NULL); 4564 } 4565 } else if (ch->chunk_type != SCTP_COOKIE_ECHO) { 4566 /* 4567 * If there is no stcb, skip the AUTH chunk and process 4568 * later after a stcb is found (to validate the lookup was 4569 * valid. 4570 */ 4571 if ((ch->chunk_type == SCTP_AUTHENTICATION) && 4572 (stcb == NULL) && 4573 (inp->auth_supported == 1)) { 4574 /* save this chunk for later processing */ 4575 auth_skipped = 1; 4576 auth_offset = *offset; 4577 auth_len = ntohs(ch->chunk_length); 4578 4579 /* (temporarily) move past this chunk */ 4580 *offset += SCTP_SIZE32(auth_len); 4581 if (*offset >= length) { 4582 /* no more data left in the mbuf chain */ 4583 *offset = length; 4584 if (locked_tcb) { 4585 SCTP_TCB_UNLOCK(locked_tcb); 4586 } 4587 return (NULL); 4588 } 4589 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4590 sizeof(struct sctp_chunkhdr), chunk_buf); 4591 } 4592 if (ch == NULL) { 4593 /* Help */ 4594 *offset = length; 4595 if (locked_tcb) { 4596 SCTP_TCB_UNLOCK(locked_tcb); 4597 } 4598 return (NULL); 4599 } 4600 if (ch->chunk_type == SCTP_COOKIE_ECHO) { 4601 goto process_control_chunks; 4602 } 4603 /* 4604 * first check if it's an ASCONF with an unknown src addr we 4605 * need to look inside to find the association 4606 */ 4607 if (ch->chunk_type == SCTP_ASCONF && stcb == NULL) { 4608 struct sctp_chunkhdr *asconf_ch = ch; 4609 uint32_t asconf_offset = 0, asconf_len = 0; 4610 4611 /* inp's refcount may be reduced */ 4612 SCTP_INP_INCR_REF(inp); 4613 4614 asconf_offset = *offset; 4615 do { 4616 asconf_len = ntohs(asconf_ch->chunk_length); 4617 if (asconf_len < sizeof(struct sctp_asconf_paramhdr)) 4618 break; 4619 stcb = sctp_findassociation_ep_asconf(m, 4620 *offset, 4621 dst, 4622 sh, &inp, netp, vrf_id); 4623 if (stcb != NULL) 4624 break; 4625 asconf_offset += SCTP_SIZE32(asconf_len); 4626 asconf_ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, asconf_offset, 4627 sizeof(struct sctp_chunkhdr), chunk_buf); 4628 } while (asconf_ch != NULL && asconf_ch->chunk_type == SCTP_ASCONF); 4629 if (stcb == NULL) { 4630 /* 4631 * reduce inp's refcount if not reduced in 4632 * sctp_findassociation_ep_asconf(). 4633 */ 4634 SCTP_INP_DECR_REF(inp); 4635 } else { 4636 locked_tcb = stcb; 4637 } 4638 4639 /* now go back and verify any auth chunk to be sure */ 4640 if (auth_skipped && (stcb != NULL)) { 4641 struct sctp_auth_chunk *auth; 4642 4643 auth = (struct sctp_auth_chunk *) 4644 sctp_m_getptr(m, auth_offset, 4645 auth_len, chunk_buf); 4646 got_auth = 1; 4647 auth_skipped = 0; 4648 if ((auth == NULL) || sctp_handle_auth(stcb, auth, m, 4649 auth_offset)) { 4650 /* auth HMAC failed so dump it */ 4651 *offset = length; 4652 if (locked_tcb) { 4653 SCTP_TCB_UNLOCK(locked_tcb); 4654 } 4655 return (NULL); 4656 } else { 4657 /* remaining chunks are HMAC checked */ 4658 stcb->asoc.authenticated = 1; 4659 } 4660 } 4661 } 4662 if (stcb == NULL) { 4663 snprintf(msg, sizeof(msg), "OOTB, %s:%d at %s", __FILE__, __LINE__, __func__); 4664 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 4665 msg); 4666 /* no association, so it's out of the blue... */ 4667 sctp_handle_ootb(m, iphlen, *offset, src, dst, sh, inp, op_err, 4668 mflowtype, mflowid, inp->fibnum, 4669 vrf_id, port); 4670 *offset = length; 4671 if (locked_tcb) { 4672 SCTP_TCB_UNLOCK(locked_tcb); 4673 } 4674 return (NULL); 4675 } 4676 asoc = &stcb->asoc; 4677 /* ABORT and SHUTDOWN can use either v_tag... */ 4678 if ((ch->chunk_type == SCTP_ABORT_ASSOCIATION) || 4679 (ch->chunk_type == SCTP_SHUTDOWN_COMPLETE) || 4680 (ch->chunk_type == SCTP_PACKET_DROPPED)) { 4681 /* Take the T-bit always into account. */ 4682 if ((((ch->chunk_flags & SCTP_HAD_NO_TCB) == 0) && 4683 (vtag_in == asoc->my_vtag)) || 4684 (((ch->chunk_flags & SCTP_HAD_NO_TCB) == SCTP_HAD_NO_TCB) && 4685 (vtag_in == asoc->peer_vtag))) { 4686 /* this is valid */ 4687 } else { 4688 /* drop this packet... */ 4689 SCTP_STAT_INCR(sctps_badvtag); 4690 if (locked_tcb) { 4691 SCTP_TCB_UNLOCK(locked_tcb); 4692 } 4693 return (NULL); 4694 } 4695 } else if (ch->chunk_type == SCTP_SHUTDOWN_ACK) { 4696 if (vtag_in != asoc->my_vtag) { 4697 /* 4698 * this could be a stale SHUTDOWN-ACK or the 4699 * peer never got the SHUTDOWN-COMPLETE and 4700 * is still hung; we have started a new asoc 4701 * but it won't complete until the shutdown 4702 * is completed 4703 */ 4704 if (locked_tcb) { 4705 SCTP_TCB_UNLOCK(locked_tcb); 4706 } 4707 snprintf(msg, sizeof(msg), "OOTB, %s:%d at %s", __FILE__, __LINE__, __func__); 4708 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 4709 msg); 4710 sctp_handle_ootb(m, iphlen, *offset, src, dst, 4711 sh, inp, op_err, 4712 mflowtype, mflowid, fibnum, 4713 vrf_id, port); 4714 return (NULL); 4715 } 4716 } else { 4717 /* for all other chunks, vtag must match */ 4718 if (vtag_in != asoc->my_vtag) { 4719 /* invalid vtag... */ 4720 SCTPDBG(SCTP_DEBUG_INPUT3, 4721 "invalid vtag: %xh, expect %xh\n", 4722 vtag_in, asoc->my_vtag); 4723 SCTP_STAT_INCR(sctps_badvtag); 4724 if (locked_tcb) { 4725 SCTP_TCB_UNLOCK(locked_tcb); 4726 } 4727 *offset = length; 4728 return (NULL); 4729 } 4730 } 4731 } /* end if !SCTP_COOKIE_ECHO */ 4732 /* 4733 * process all control chunks... 4734 */ 4735 if (((ch->chunk_type == SCTP_SELECTIVE_ACK) || 4736 (ch->chunk_type == SCTP_NR_SELECTIVE_ACK) || 4737 (ch->chunk_type == SCTP_HEARTBEAT_REQUEST)) && 4738 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED)) { 4739 /* implied cookie-ack.. we must have lost the ack */ 4740 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 4741 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 4742 stcb->asoc.overall_error_count, 4743 0, 4744 SCTP_FROM_SCTP_INPUT, 4745 __LINE__); 4746 } 4747 stcb->asoc.overall_error_count = 0; 4748 sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, 4749 *netp); 4750 } 4751 process_control_chunks: 4752 while (IS_SCTP_CONTROL(ch)) { 4753 /* validate chunk length */ 4754 chk_length = ntohs(ch->chunk_length); 4755 SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_process_control: processing a chunk type=%u, len=%u\n", 4756 ch->chunk_type, chk_length); 4757 SCTP_LTRACE_CHK(inp, stcb, ch->chunk_type, chk_length); 4758 if (chk_length < sizeof(*ch) || 4759 (*offset + (int)chk_length) > length) { 4760 *offset = length; 4761 if (locked_tcb) { 4762 SCTP_TCB_UNLOCK(locked_tcb); 4763 } 4764 return (NULL); 4765 } 4766 SCTP_STAT_INCR_COUNTER64(sctps_incontrolchunks); 4767 /* 4768 * INIT-ACK only gets the init ack "header" portion only 4769 * because we don't have to process the peer's COOKIE. All 4770 * others get a complete chunk. 4771 */ 4772 if ((ch->chunk_type == SCTP_INITIATION_ACK) || 4773 (ch->chunk_type == SCTP_INITIATION)) { 4774 /* get an init-ack chunk */ 4775 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4776 sizeof(struct sctp_init_ack_chunk), chunk_buf); 4777 if (ch == NULL) { 4778 *offset = length; 4779 if (locked_tcb) { 4780 SCTP_TCB_UNLOCK(locked_tcb); 4781 } 4782 return (NULL); 4783 } 4784 } else { 4785 /* For cookies and all other chunks. */ 4786 if (chk_length > sizeof(chunk_buf)) { 4787 /* 4788 * use just the size of the chunk buffer so 4789 * the front part of our chunks fit in 4790 * contiguous space up to the chunk buffer 4791 * size (508 bytes). For chunks that need to 4792 * get more than that they must use the 4793 * sctp_m_getptr() function or other means 4794 * (e.g. know how to parse mbuf chains). 4795 * Cookies do this already. 4796 */ 4797 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4798 (sizeof(chunk_buf) - 4), 4799 chunk_buf); 4800 if (ch == NULL) { 4801 *offset = length; 4802 if (locked_tcb) { 4803 SCTP_TCB_UNLOCK(locked_tcb); 4804 } 4805 return (NULL); 4806 } 4807 } else { 4808 /* We can fit it all */ 4809 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4810 chk_length, chunk_buf); 4811 if (ch == NULL) { 4812 SCTP_PRINTF("sctp_process_control: Can't get the all data....\n"); 4813 *offset = length; 4814 if (locked_tcb) { 4815 SCTP_TCB_UNLOCK(locked_tcb); 4816 } 4817 return (NULL); 4818 } 4819 } 4820 } 4821 num_chunks++; 4822 /* Save off the last place we got a control from */ 4823 if (stcb != NULL) { 4824 if (((netp != NULL) && (*netp != NULL)) || (ch->chunk_type == SCTP_ASCONF)) { 4825 /* 4826 * allow last_control to be NULL if 4827 * ASCONF... ASCONF processing will find the 4828 * right net later 4829 */ 4830 if ((netp != NULL) && (*netp != NULL)) 4831 stcb->asoc.last_control_chunk_from = *netp; 4832 } 4833 } 4834 #ifdef SCTP_AUDITING_ENABLED 4835 sctp_audit_log(0xB0, ch->chunk_type); 4836 #endif 4837 4838 /* check to see if this chunk required auth, but isn't */ 4839 if ((stcb != NULL) && 4840 (stcb->asoc.auth_supported == 1) && 4841 sctp_auth_is_required_chunk(ch->chunk_type, stcb->asoc.local_auth_chunks) && 4842 !stcb->asoc.authenticated) { 4843 /* "silently" ignore */ 4844 SCTP_STAT_INCR(sctps_recvauthmissing); 4845 goto next_chunk; 4846 } 4847 switch (ch->chunk_type) { 4848 case SCTP_INITIATION: 4849 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_INIT\n"); 4850 /* The INIT chunk must be the only chunk. */ 4851 if ((num_chunks > 1) || 4852 (length - *offset > (int)SCTP_SIZE32(chk_length))) { 4853 /* RFC 4960 requires that no ABORT is sent */ 4854 *offset = length; 4855 if (locked_tcb) { 4856 SCTP_TCB_UNLOCK(locked_tcb); 4857 } 4858 return (NULL); 4859 } 4860 /* Honor our resource limit. */ 4861 if (chk_length > SCTP_LARGEST_INIT_ACCEPTED) { 4862 op_err = sctp_generate_cause(SCTP_CAUSE_OUT_OF_RESC, ""); 4863 sctp_abort_association(inp, stcb, m, iphlen, 4864 src, dst, sh, op_err, 4865 mflowtype, mflowid, 4866 vrf_id, port); 4867 *offset = length; 4868 return (NULL); 4869 } 4870 sctp_handle_init(m, iphlen, *offset, src, dst, sh, 4871 (struct sctp_init_chunk *)ch, inp, 4872 stcb, *netp, &abort_no_unlock, 4873 mflowtype, mflowid, 4874 vrf_id, port); 4875 *offset = length; 4876 if ((!abort_no_unlock) && (locked_tcb)) { 4877 SCTP_TCB_UNLOCK(locked_tcb); 4878 } 4879 return (NULL); 4880 break; 4881 case SCTP_PAD_CHUNK: 4882 break; 4883 case SCTP_INITIATION_ACK: 4884 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_INIT-ACK\n"); 4885 if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 4886 /* We are not interested anymore */ 4887 if ((stcb) && (stcb->asoc.total_output_queue_size)) { 4888 ; 4889 } else { 4890 if ((locked_tcb != NULL) && (locked_tcb != stcb)) { 4891 /* Very unlikely */ 4892 SCTP_TCB_UNLOCK(locked_tcb); 4893 } 4894 *offset = length; 4895 if (stcb) { 4896 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4897 so = SCTP_INP_SO(inp); 4898 atomic_add_int(&stcb->asoc.refcnt, 1); 4899 SCTP_TCB_UNLOCK(stcb); 4900 SCTP_SOCKET_LOCK(so, 1); 4901 SCTP_TCB_LOCK(stcb); 4902 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4903 #endif 4904 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 4905 SCTP_FROM_SCTP_INPUT + SCTP_LOC_29); 4906 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4907 SCTP_SOCKET_UNLOCK(so, 1); 4908 #endif 4909 } 4910 return (NULL); 4911 } 4912 } 4913 /* The INIT-ACK chunk must be the only chunk. */ 4914 if ((num_chunks > 1) || 4915 (length - *offset > (int)SCTP_SIZE32(chk_length))) { 4916 *offset = length; 4917 if (locked_tcb) { 4918 SCTP_TCB_UNLOCK(locked_tcb); 4919 } 4920 return (NULL); 4921 } 4922 if ((netp) && (*netp)) { 4923 ret = sctp_handle_init_ack(m, iphlen, *offset, 4924 src, dst, sh, 4925 (struct sctp_init_ack_chunk *)ch, 4926 stcb, *netp, 4927 &abort_no_unlock, 4928 mflowtype, mflowid, 4929 vrf_id); 4930 } else { 4931 ret = -1; 4932 } 4933 *offset = length; 4934 if (abort_no_unlock) { 4935 return (NULL); 4936 } 4937 /* 4938 * Special case, I must call the output routine to 4939 * get the cookie echoed 4940 */ 4941 if ((stcb != NULL) && (ret == 0)) { 4942 sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 4943 } 4944 if (locked_tcb) { 4945 SCTP_TCB_UNLOCK(locked_tcb); 4946 } 4947 return (NULL); 4948 break; 4949 case SCTP_SELECTIVE_ACK: 4950 { 4951 struct sctp_sack_chunk *sack; 4952 int abort_now = 0; 4953 uint32_t a_rwnd, cum_ack; 4954 uint16_t num_seg, num_dup; 4955 uint8_t flags; 4956 int offset_seg, offset_dup; 4957 4958 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SACK\n"); 4959 SCTP_STAT_INCR(sctps_recvsacks); 4960 if (stcb == NULL) { 4961 SCTPDBG(SCTP_DEBUG_INDATA1, "No stcb when processing SACK chunk\n"); 4962 break; 4963 } 4964 if (chk_length < sizeof(struct sctp_sack_chunk)) { 4965 SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size on SACK chunk, too small\n"); 4966 break; 4967 } 4968 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 4969 /*- 4970 * If we have sent a shutdown-ack, we will pay no 4971 * attention to a sack sent in to us since 4972 * we don't care anymore. 4973 */ 4974 break; 4975 } 4976 sack = (struct sctp_sack_chunk *)ch; 4977 flags = ch->chunk_flags; 4978 cum_ack = ntohl(sack->sack.cum_tsn_ack); 4979 num_seg = ntohs(sack->sack.num_gap_ack_blks); 4980 num_dup = ntohs(sack->sack.num_dup_tsns); 4981 a_rwnd = (uint32_t) ntohl(sack->sack.a_rwnd); 4982 if (sizeof(struct sctp_sack_chunk) + 4983 num_seg * sizeof(struct sctp_gap_ack_block) + 4984 num_dup * sizeof(uint32_t) != chk_length) { 4985 SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size of SACK chunk\n"); 4986 break; 4987 } 4988 offset_seg = *offset + sizeof(struct sctp_sack_chunk); 4989 offset_dup = offset_seg + num_seg * sizeof(struct sctp_gap_ack_block); 4990 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SACK process cum_ack:%x num_seg:%d a_rwnd:%d\n", 4991 cum_ack, num_seg, a_rwnd); 4992 stcb->asoc.seen_a_sack_this_pkt = 1; 4993 if ((stcb->asoc.pr_sctp_cnt == 0) && 4994 (num_seg == 0) && 4995 SCTP_TSN_GE(cum_ack, stcb->asoc.last_acked_seq) && 4996 (stcb->asoc.saw_sack_with_frags == 0) && 4997 (stcb->asoc.saw_sack_with_nr_frags == 0) && 4998 (!TAILQ_EMPTY(&stcb->asoc.sent_queue)) 4999 ) { 5000 /* 5001 * We have a SIMPLE sack having no 5002 * prior segments and data on sent 5003 * queue to be acked.. Use the 5004 * faster path sack processing. We 5005 * also allow window update sacks 5006 * with no missing segments to go 5007 * this way too. 5008 */ 5009 sctp_express_handle_sack(stcb, cum_ack, a_rwnd, &abort_now, ecne_seen); 5010 } else { 5011 if (netp && *netp) 5012 sctp_handle_sack(m, offset_seg, offset_dup, stcb, 5013 num_seg, 0, num_dup, &abort_now, flags, 5014 cum_ack, a_rwnd, ecne_seen); 5015 } 5016 if (abort_now) { 5017 /* ABORT signal from sack processing */ 5018 *offset = length; 5019 return (NULL); 5020 } 5021 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 5022 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 5023 (stcb->asoc.stream_queue_cnt == 0)) { 5024 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 5025 } 5026 } 5027 break; 5028 /* 5029 * EY - nr_sack: If the received chunk is an 5030 * nr_sack chunk 5031 */ 5032 case SCTP_NR_SELECTIVE_ACK: 5033 { 5034 struct sctp_nr_sack_chunk *nr_sack; 5035 int abort_now = 0; 5036 uint32_t a_rwnd, cum_ack; 5037 uint16_t num_seg, num_nr_seg, num_dup; 5038 uint8_t flags; 5039 int offset_seg, offset_dup; 5040 5041 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_NR_SACK\n"); 5042 SCTP_STAT_INCR(sctps_recvsacks); 5043 if (stcb == NULL) { 5044 SCTPDBG(SCTP_DEBUG_INDATA1, "No stcb when processing NR-SACK chunk\n"); 5045 break; 5046 } 5047 if (stcb->asoc.nrsack_supported == 0) { 5048 goto unknown_chunk; 5049 } 5050 if (chk_length < sizeof(struct sctp_nr_sack_chunk)) { 5051 SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size on NR-SACK chunk, too small\n"); 5052 break; 5053 } 5054 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 5055 /*- 5056 * If we have sent a shutdown-ack, we will pay no 5057 * attention to a sack sent in to us since 5058 * we don't care anymore. 5059 */ 5060 break; 5061 } 5062 nr_sack = (struct sctp_nr_sack_chunk *)ch; 5063 flags = ch->chunk_flags; 5064 cum_ack = ntohl(nr_sack->nr_sack.cum_tsn_ack); 5065 num_seg = ntohs(nr_sack->nr_sack.num_gap_ack_blks); 5066 num_nr_seg = ntohs(nr_sack->nr_sack.num_nr_gap_ack_blks); 5067 num_dup = ntohs(nr_sack->nr_sack.num_dup_tsns); 5068 a_rwnd = (uint32_t) ntohl(nr_sack->nr_sack.a_rwnd); 5069 if (sizeof(struct sctp_nr_sack_chunk) + 5070 (num_seg + num_nr_seg) * sizeof(struct sctp_gap_ack_block) + 5071 num_dup * sizeof(uint32_t) != chk_length) { 5072 SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size of NR_SACK chunk\n"); 5073 break; 5074 } 5075 offset_seg = *offset + sizeof(struct sctp_nr_sack_chunk); 5076 offset_dup = offset_seg + num_seg * sizeof(struct sctp_gap_ack_block); 5077 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_NR_SACK process cum_ack:%x num_seg:%d a_rwnd:%d\n", 5078 cum_ack, num_seg, a_rwnd); 5079 stcb->asoc.seen_a_sack_this_pkt = 1; 5080 if ((stcb->asoc.pr_sctp_cnt == 0) && 5081 (num_seg == 0) && (num_nr_seg == 0) && 5082 SCTP_TSN_GE(cum_ack, stcb->asoc.last_acked_seq) && 5083 (stcb->asoc.saw_sack_with_frags == 0) && 5084 (stcb->asoc.saw_sack_with_nr_frags == 0) && 5085 (!TAILQ_EMPTY(&stcb->asoc.sent_queue))) { 5086 /* 5087 * We have a SIMPLE sack having no 5088 * prior segments and data on sent 5089 * queue to be acked. Use the faster 5090 * path sack processing. We also 5091 * allow window update sacks with no 5092 * missing segments to go this way 5093 * too. 5094 */ 5095 sctp_express_handle_sack(stcb, cum_ack, a_rwnd, 5096 &abort_now, ecne_seen); 5097 } else { 5098 if (netp && *netp) 5099 sctp_handle_sack(m, offset_seg, offset_dup, stcb, 5100 num_seg, num_nr_seg, num_dup, &abort_now, flags, 5101 cum_ack, a_rwnd, ecne_seen); 5102 } 5103 if (abort_now) { 5104 /* ABORT signal from sack processing */ 5105 *offset = length; 5106 return (NULL); 5107 } 5108 if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 5109 TAILQ_EMPTY(&stcb->asoc.sent_queue) && 5110 (stcb->asoc.stream_queue_cnt == 0)) { 5111 sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 5112 } 5113 } 5114 break; 5115 5116 case SCTP_HEARTBEAT_REQUEST: 5117 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_HEARTBEAT\n"); 5118 if ((stcb) && netp && *netp) { 5119 SCTP_STAT_INCR(sctps_recvheartbeat); 5120 sctp_send_heartbeat_ack(stcb, m, *offset, 5121 chk_length, *netp); 5122 5123 /* He's alive so give him credit */ 5124 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5125 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5126 stcb->asoc.overall_error_count, 5127 0, 5128 SCTP_FROM_SCTP_INPUT, 5129 __LINE__); 5130 } 5131 stcb->asoc.overall_error_count = 0; 5132 } 5133 break; 5134 case SCTP_HEARTBEAT_ACK: 5135 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_HEARTBEAT-ACK\n"); 5136 if ((stcb == NULL) || (chk_length != sizeof(struct sctp_heartbeat_chunk))) { 5137 /* Its not ours */ 5138 *offset = length; 5139 if (locked_tcb) { 5140 SCTP_TCB_UNLOCK(locked_tcb); 5141 } 5142 return (NULL); 5143 } 5144 /* He's alive so give him credit */ 5145 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5146 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5147 stcb->asoc.overall_error_count, 5148 0, 5149 SCTP_FROM_SCTP_INPUT, 5150 __LINE__); 5151 } 5152 stcb->asoc.overall_error_count = 0; 5153 SCTP_STAT_INCR(sctps_recvheartbeatack); 5154 if (netp && *netp) 5155 sctp_handle_heartbeat_ack((struct sctp_heartbeat_chunk *)ch, 5156 stcb, *netp); 5157 break; 5158 case SCTP_ABORT_ASSOCIATION: 5159 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ABORT, stcb %p\n", 5160 (void *)stcb); 5161 if ((stcb) && netp && *netp) 5162 sctp_handle_abort((struct sctp_abort_chunk *)ch, 5163 stcb, *netp); 5164 *offset = length; 5165 return (NULL); 5166 break; 5167 case SCTP_SHUTDOWN: 5168 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN, stcb %p\n", 5169 (void *)stcb); 5170 if ((stcb == NULL) || (chk_length != sizeof(struct sctp_shutdown_chunk))) { 5171 *offset = length; 5172 if (locked_tcb) { 5173 SCTP_TCB_UNLOCK(locked_tcb); 5174 } 5175 return (NULL); 5176 } 5177 if (netp && *netp) { 5178 int abort_flag = 0; 5179 5180 sctp_handle_shutdown((struct sctp_shutdown_chunk *)ch, 5181 stcb, *netp, &abort_flag); 5182 if (abort_flag) { 5183 *offset = length; 5184 return (NULL); 5185 } 5186 } 5187 break; 5188 case SCTP_SHUTDOWN_ACK: 5189 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN-ACK, stcb %p\n", (void *)stcb); 5190 if ((stcb) && (netp) && (*netp)) 5191 sctp_handle_shutdown_ack((struct sctp_shutdown_ack_chunk *)ch, stcb, *netp); 5192 *offset = length; 5193 return (NULL); 5194 break; 5195 5196 case SCTP_OPERATION_ERROR: 5197 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_OP-ERR\n"); 5198 if ((stcb) && netp && *netp && sctp_handle_error(ch, stcb, *netp) < 0) { 5199 *offset = length; 5200 return (NULL); 5201 } 5202 break; 5203 case SCTP_COOKIE_ECHO: 5204 SCTPDBG(SCTP_DEBUG_INPUT3, 5205 "SCTP_COOKIE-ECHO, stcb %p\n", (void *)stcb); 5206 if ((stcb) && (stcb->asoc.total_output_queue_size)) { 5207 ; 5208 } else { 5209 if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5210 /* We are not interested anymore */ 5211 abend: 5212 if (stcb) { 5213 SCTP_TCB_UNLOCK(stcb); 5214 } 5215 *offset = length; 5216 return (NULL); 5217 } 5218 } 5219 /* 5220 * First are we accepting? We do this again here 5221 * since it is possible that a previous endpoint WAS 5222 * listening responded to a INIT-ACK and then 5223 * closed. We opened and bound.. and are now no 5224 * longer listening. 5225 */ 5226 5227 if ((stcb == NULL) && (inp->sctp_socket->so_qlen >= inp->sctp_socket->so_qlimit)) { 5228 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 5229 (SCTP_BASE_SYSCTL(sctp_abort_if_one_2_one_hits_limit))) { 5230 op_err = sctp_generate_cause(SCTP_CAUSE_OUT_OF_RESC, ""); 5231 sctp_abort_association(inp, stcb, m, iphlen, 5232 src, dst, sh, op_err, 5233 mflowtype, mflowid, 5234 vrf_id, port); 5235 } 5236 *offset = length; 5237 return (NULL); 5238 } else { 5239 struct mbuf *ret_buf; 5240 struct sctp_inpcb *linp; 5241 5242 if (stcb) { 5243 linp = NULL; 5244 } else { 5245 linp = inp; 5246 } 5247 5248 if (linp) { 5249 SCTP_ASOC_CREATE_LOCK(linp); 5250 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 5251 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 5252 SCTP_ASOC_CREATE_UNLOCK(linp); 5253 goto abend; 5254 } 5255 } 5256 if (netp) { 5257 ret_buf = 5258 sctp_handle_cookie_echo(m, iphlen, 5259 *offset, 5260 src, dst, 5261 sh, 5262 (struct sctp_cookie_echo_chunk *)ch, 5263 &inp, &stcb, netp, 5264 auth_skipped, 5265 auth_offset, 5266 auth_len, 5267 &locked_tcb, 5268 mflowtype, 5269 mflowid, 5270 vrf_id, 5271 port); 5272 } else { 5273 ret_buf = NULL; 5274 } 5275 if (linp) { 5276 SCTP_ASOC_CREATE_UNLOCK(linp); 5277 } 5278 if (ret_buf == NULL) { 5279 if (locked_tcb) { 5280 SCTP_TCB_UNLOCK(locked_tcb); 5281 } 5282 SCTPDBG(SCTP_DEBUG_INPUT3, 5283 "GAK, null buffer\n"); 5284 *offset = length; 5285 return (NULL); 5286 } 5287 /* if AUTH skipped, see if it verified... */ 5288 if (auth_skipped) { 5289 got_auth = 1; 5290 auth_skipped = 0; 5291 } 5292 if (!TAILQ_EMPTY(&stcb->asoc.sent_queue)) { 5293 /* 5294 * Restart the timer if we have 5295 * pending data 5296 */ 5297 struct sctp_tmit_chunk *chk; 5298 5299 chk = TAILQ_FIRST(&stcb->asoc.sent_queue); 5300 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, chk->whoTo); 5301 } 5302 } 5303 break; 5304 case SCTP_COOKIE_ACK: 5305 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_COOKIE-ACK, stcb %p\n", (void *)stcb); 5306 if ((stcb == NULL) || chk_length != sizeof(struct sctp_cookie_ack_chunk)) { 5307 if (locked_tcb) { 5308 SCTP_TCB_UNLOCK(locked_tcb); 5309 } 5310 return (NULL); 5311 } 5312 if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5313 /* We are not interested anymore */ 5314 if ((stcb) && (stcb->asoc.total_output_queue_size)) { 5315 ; 5316 } else if (stcb) { 5317 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5318 so = SCTP_INP_SO(inp); 5319 atomic_add_int(&stcb->asoc.refcnt, 1); 5320 SCTP_TCB_UNLOCK(stcb); 5321 SCTP_SOCKET_LOCK(so, 1); 5322 SCTP_TCB_LOCK(stcb); 5323 atomic_subtract_int(&stcb->asoc.refcnt, 1); 5324 #endif 5325 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 5326 SCTP_FROM_SCTP_INPUT + SCTP_LOC_30); 5327 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5328 SCTP_SOCKET_UNLOCK(so, 1); 5329 #endif 5330 *offset = length; 5331 return (NULL); 5332 } 5333 } 5334 /* He's alive so give him credit */ 5335 if ((stcb) && netp && *netp) { 5336 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5337 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5338 stcb->asoc.overall_error_count, 5339 0, 5340 SCTP_FROM_SCTP_INPUT, 5341 __LINE__); 5342 } 5343 stcb->asoc.overall_error_count = 0; 5344 sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, *netp); 5345 } 5346 break; 5347 case SCTP_ECN_ECHO: 5348 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ECN-ECHO\n"); 5349 /* He's alive so give him credit */ 5350 if ((stcb == NULL) || (chk_length != sizeof(struct sctp_ecne_chunk))) { 5351 /* Its not ours */ 5352 if (locked_tcb) { 5353 SCTP_TCB_UNLOCK(locked_tcb); 5354 } 5355 *offset = length; 5356 return (NULL); 5357 } 5358 if (stcb) { 5359 if (stcb->asoc.ecn_supported == 0) { 5360 goto unknown_chunk; 5361 } 5362 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5363 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5364 stcb->asoc.overall_error_count, 5365 0, 5366 SCTP_FROM_SCTP_INPUT, 5367 __LINE__); 5368 } 5369 stcb->asoc.overall_error_count = 0; 5370 sctp_handle_ecn_echo((struct sctp_ecne_chunk *)ch, 5371 stcb); 5372 ecne_seen = 1; 5373 } 5374 break; 5375 case SCTP_ECN_CWR: 5376 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ECN-CWR\n"); 5377 /* He's alive so give him credit */ 5378 if ((stcb == NULL) || (chk_length != sizeof(struct sctp_cwr_chunk))) { 5379 /* Its not ours */ 5380 if (locked_tcb) { 5381 SCTP_TCB_UNLOCK(locked_tcb); 5382 } 5383 *offset = length; 5384 return (NULL); 5385 } 5386 if (stcb) { 5387 if (stcb->asoc.ecn_supported == 0) { 5388 goto unknown_chunk; 5389 } 5390 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5391 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5392 stcb->asoc.overall_error_count, 5393 0, 5394 SCTP_FROM_SCTP_INPUT, 5395 __LINE__); 5396 } 5397 stcb->asoc.overall_error_count = 0; 5398 sctp_handle_ecn_cwr((struct sctp_cwr_chunk *)ch, stcb, *netp); 5399 } 5400 break; 5401 case SCTP_SHUTDOWN_COMPLETE: 5402 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN-COMPLETE, stcb %p\n", (void *)stcb); 5403 /* must be first and only chunk */ 5404 if ((num_chunks > 1) || 5405 (length - *offset > (int)SCTP_SIZE32(chk_length))) { 5406 *offset = length; 5407 if (locked_tcb) { 5408 SCTP_TCB_UNLOCK(locked_tcb); 5409 } 5410 return (NULL); 5411 } 5412 if ((stcb) && netp && *netp) { 5413 sctp_handle_shutdown_complete((struct sctp_shutdown_complete_chunk *)ch, 5414 stcb, *netp); 5415 } 5416 *offset = length; 5417 return (NULL); 5418 break; 5419 case SCTP_ASCONF: 5420 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ASCONF\n"); 5421 /* He's alive so give him credit */ 5422 if (stcb) { 5423 if (stcb->asoc.asconf_supported == 0) { 5424 goto unknown_chunk; 5425 } 5426 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5427 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5428 stcb->asoc.overall_error_count, 5429 0, 5430 SCTP_FROM_SCTP_INPUT, 5431 __LINE__); 5432 } 5433 stcb->asoc.overall_error_count = 0; 5434 sctp_handle_asconf(m, *offset, src, 5435 (struct sctp_asconf_chunk *)ch, stcb, asconf_cnt == 0); 5436 asconf_cnt++; 5437 } 5438 break; 5439 case SCTP_ASCONF_ACK: 5440 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ASCONF-ACK\n"); 5441 if (chk_length < sizeof(struct sctp_asconf_ack_chunk)) { 5442 /* Its not ours */ 5443 if (locked_tcb) { 5444 SCTP_TCB_UNLOCK(locked_tcb); 5445 } 5446 *offset = length; 5447 return (NULL); 5448 } 5449 if ((stcb) && netp && *netp) { 5450 if (stcb->asoc.asconf_supported == 0) { 5451 goto unknown_chunk; 5452 } 5453 /* He's alive so give him credit */ 5454 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5455 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5456 stcb->asoc.overall_error_count, 5457 0, 5458 SCTP_FROM_SCTP_INPUT, 5459 __LINE__); 5460 } 5461 stcb->asoc.overall_error_count = 0; 5462 sctp_handle_asconf_ack(m, *offset, 5463 (struct sctp_asconf_ack_chunk *)ch, stcb, *netp, &abort_no_unlock); 5464 if (abort_no_unlock) 5465 return (NULL); 5466 } 5467 break; 5468 case SCTP_FORWARD_CUM_TSN: 5469 case SCTP_IFORWARD_CUM_TSN: 5470 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_FWD-TSN\n"); 5471 if (chk_length < sizeof(struct sctp_forward_tsn_chunk)) { 5472 /* Its not ours */ 5473 if (locked_tcb) { 5474 SCTP_TCB_UNLOCK(locked_tcb); 5475 } 5476 *offset = length; 5477 return (NULL); 5478 } 5479 /* He's alive so give him credit */ 5480 if (stcb) { 5481 int abort_flag = 0; 5482 5483 if (stcb->asoc.prsctp_supported == 0) { 5484 goto unknown_chunk; 5485 } 5486 stcb->asoc.overall_error_count = 0; 5487 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5488 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5489 stcb->asoc.overall_error_count, 5490 0, 5491 SCTP_FROM_SCTP_INPUT, 5492 __LINE__); 5493 } 5494 *fwd_tsn_seen = 1; 5495 if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5496 /* We are not interested anymore */ 5497 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5498 so = SCTP_INP_SO(inp); 5499 atomic_add_int(&stcb->asoc.refcnt, 1); 5500 SCTP_TCB_UNLOCK(stcb); 5501 SCTP_SOCKET_LOCK(so, 1); 5502 SCTP_TCB_LOCK(stcb); 5503 atomic_subtract_int(&stcb->asoc.refcnt, 1); 5504 #endif 5505 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 5506 SCTP_FROM_SCTP_INPUT + SCTP_LOC_31); 5507 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5508 SCTP_SOCKET_UNLOCK(so, 1); 5509 #endif 5510 *offset = length; 5511 return (NULL); 5512 } 5513 sctp_handle_forward_tsn(stcb, 5514 (struct sctp_forward_tsn_chunk *)ch, &abort_flag, m, *offset); 5515 if (abort_flag) { 5516 *offset = length; 5517 return (NULL); 5518 } else { 5519 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5520 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5521 stcb->asoc.overall_error_count, 5522 0, 5523 SCTP_FROM_SCTP_INPUT, 5524 __LINE__); 5525 } 5526 stcb->asoc.overall_error_count = 0; 5527 } 5528 5529 } 5530 break; 5531 case SCTP_STREAM_RESET: 5532 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_STREAM_RESET\n"); 5533 if (((stcb == NULL) || (ch == NULL) || (chk_length < sizeof(struct sctp_stream_reset_tsn_req)))) { 5534 /* Its not ours */ 5535 if (locked_tcb) { 5536 SCTP_TCB_UNLOCK(locked_tcb); 5537 } 5538 *offset = length; 5539 return (NULL); 5540 } 5541 if (stcb->asoc.reconfig_supported == 0) { 5542 goto unknown_chunk; 5543 } 5544 if (sctp_handle_stream_reset(stcb, m, *offset, ch)) { 5545 /* stop processing */ 5546 *offset = length; 5547 return (NULL); 5548 } 5549 break; 5550 case SCTP_PACKET_DROPPED: 5551 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_PACKET_DROPPED\n"); 5552 /* re-get it all please */ 5553 if (chk_length < sizeof(struct sctp_pktdrop_chunk)) { 5554 /* Its not ours */ 5555 if (locked_tcb) { 5556 SCTP_TCB_UNLOCK(locked_tcb); 5557 } 5558 *offset = length; 5559 return (NULL); 5560 } 5561 if (ch && (stcb) && netp && (*netp)) { 5562 if (stcb->asoc.pktdrop_supported == 0) { 5563 goto unknown_chunk; 5564 } 5565 sctp_handle_packet_dropped((struct sctp_pktdrop_chunk *)ch, 5566 stcb, *netp, 5567 min(chk_length, (sizeof(chunk_buf) - 4))); 5568 5569 } 5570 break; 5571 case SCTP_AUTHENTICATION: 5572 SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_AUTHENTICATION\n"); 5573 if (stcb == NULL) { 5574 /* save the first AUTH for later processing */ 5575 if (auth_skipped == 0) { 5576 auth_offset = *offset; 5577 auth_len = chk_length; 5578 auth_skipped = 1; 5579 } 5580 /* skip this chunk (temporarily) */ 5581 goto next_chunk; 5582 } 5583 if (stcb->asoc.auth_supported == 0) { 5584 goto unknown_chunk; 5585 } 5586 if ((chk_length < (sizeof(struct sctp_auth_chunk))) || 5587 (chk_length > (sizeof(struct sctp_auth_chunk) + 5588 SCTP_AUTH_DIGEST_LEN_MAX))) { 5589 /* Its not ours */ 5590 if (locked_tcb) { 5591 SCTP_TCB_UNLOCK(locked_tcb); 5592 } 5593 *offset = length; 5594 return (NULL); 5595 } 5596 if (got_auth == 1) { 5597 /* skip this chunk... it's already auth'd */ 5598 goto next_chunk; 5599 } 5600 got_auth = 1; 5601 if ((ch == NULL) || sctp_handle_auth(stcb, (struct sctp_auth_chunk *)ch, 5602 m, *offset)) { 5603 /* auth HMAC failed so dump the packet */ 5604 *offset = length; 5605 return (stcb); 5606 } else { 5607 /* remaining chunks are HMAC checked */ 5608 stcb->asoc.authenticated = 1; 5609 } 5610 break; 5611 5612 default: 5613 unknown_chunk: 5614 /* it's an unknown chunk! */ 5615 if ((ch->chunk_type & 0x40) && (stcb != NULL)) { 5616 struct sctp_gen_error_cause *cause; 5617 int len; 5618 5619 op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_gen_error_cause), 5620 0, M_NOWAIT, 1, MT_DATA); 5621 if (op_err != NULL) { 5622 len = min(SCTP_SIZE32(chk_length), (uint32_t) (length - *offset)); 5623 cause = mtod(op_err, struct sctp_gen_error_cause *); 5624 cause->code = htons(SCTP_CAUSE_UNRECOG_CHUNK); 5625 cause->length = htons((uint16_t) (len + sizeof(struct sctp_gen_error_cause))); 5626 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_gen_error_cause); 5627 SCTP_BUF_NEXT(op_err) = SCTP_M_COPYM(m, *offset, len, M_NOWAIT); 5628 if (SCTP_BUF_NEXT(op_err) != NULL) { 5629 #ifdef SCTP_MBUF_LOGGING 5630 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 5631 sctp_log_mbc(SCTP_BUF_NEXT(op_err), SCTP_MBUF_ICOPY); 5632 } 5633 #endif 5634 sctp_queue_op_err(stcb, op_err); 5635 } else { 5636 sctp_m_freem(op_err); 5637 } 5638 } 5639 } 5640 if ((ch->chunk_type & 0x80) == 0) { 5641 /* discard this packet */ 5642 *offset = length; 5643 return (stcb); 5644 } /* else skip this bad chunk and continue... */ 5645 break; 5646 } /* switch (ch->chunk_type) */ 5647 5648 5649 next_chunk: 5650 /* get the next chunk */ 5651 *offset += SCTP_SIZE32(chk_length); 5652 if (*offset >= length) { 5653 /* no more data left in the mbuf chain */ 5654 break; 5655 } 5656 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 5657 sizeof(struct sctp_chunkhdr), chunk_buf); 5658 if (ch == NULL) { 5659 if (locked_tcb) { 5660 SCTP_TCB_UNLOCK(locked_tcb); 5661 } 5662 *offset = length; 5663 return (NULL); 5664 } 5665 } /* while */ 5666 5667 if (asconf_cnt > 0 && stcb != NULL) { 5668 sctp_send_asconf_ack(stcb); 5669 } 5670 return (stcb); 5671 } 5672 5673 5674 /* 5675 * common input chunk processing (v4 and v6) 5676 */ 5677 void 5678 sctp_common_input_processing(struct mbuf **mm, int iphlen, int offset, int length, 5679 struct sockaddr *src, struct sockaddr *dst, 5680 struct sctphdr *sh, struct sctp_chunkhdr *ch, 5681 #if !defined(SCTP_WITH_NO_CSUM) 5682 uint8_t compute_crc, 5683 #endif 5684 uint8_t ecn_bits, 5685 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 5686 uint32_t vrf_id, uint16_t port) 5687 { 5688 uint32_t high_tsn; 5689 int fwd_tsn_seen = 0, data_processed = 0; 5690 struct mbuf *m = *mm, *op_err; 5691 char msg[SCTP_DIAG_INFO_LEN]; 5692 int un_sent; 5693 int cnt_ctrl_ready = 0; 5694 struct sctp_inpcb *inp = NULL, *inp_decr = NULL; 5695 struct sctp_tcb *stcb = NULL; 5696 struct sctp_nets *net = NULL; 5697 5698 SCTP_STAT_INCR(sctps_recvdatagrams); 5699 #ifdef SCTP_AUDITING_ENABLED 5700 sctp_audit_log(0xE0, 1); 5701 sctp_auditing(0, inp, stcb, net); 5702 #endif 5703 #if !defined(SCTP_WITH_NO_CSUM) 5704 if (compute_crc != 0) { 5705 uint32_t check, calc_check; 5706 5707 check = sh->checksum; 5708 sh->checksum = 0; 5709 calc_check = sctp_calculate_cksum(m, iphlen); 5710 sh->checksum = check; 5711 if (calc_check != check) { 5712 SCTPDBG(SCTP_DEBUG_INPUT1, "Bad CSUM on SCTP packet calc_check:%x check:%x m:%p mlen:%d iphlen:%d\n", 5713 calc_check, check, (void *)m, length, iphlen); 5714 stcb = sctp_findassociation_addr(m, offset, src, dst, 5715 sh, ch, &inp, &net, vrf_id); 5716 #if defined(INET) || defined(INET6) 5717 if ((ch->chunk_type != SCTP_INITIATION) && 5718 (net != NULL) && (net->port != port)) { 5719 if (net->port == 0) { 5720 /* UDP encapsulation turned on. */ 5721 net->mtu -= sizeof(struct udphdr); 5722 if (stcb->asoc.smallest_mtu > net->mtu) { 5723 sctp_pathmtu_adjustment(stcb, net->mtu); 5724 } 5725 } else if (port == 0) { 5726 /* UDP encapsulation turned off. */ 5727 net->mtu += sizeof(struct udphdr); 5728 /* XXX Update smallest_mtu */ 5729 } 5730 net->port = port; 5731 } 5732 #endif 5733 if (net != NULL) { 5734 net->flowtype = mflowtype; 5735 net->flowid = mflowid; 5736 } 5737 if ((inp != NULL) && (stcb != NULL)) { 5738 sctp_send_packet_dropped(stcb, net, m, length, iphlen, 1); 5739 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_INPUT_ERROR, SCTP_SO_NOT_LOCKED); 5740 } else if ((inp != NULL) && (stcb == NULL)) { 5741 inp_decr = inp; 5742 } 5743 SCTP_STAT_INCR(sctps_badsum); 5744 SCTP_STAT_INCR_COUNTER32(sctps_checksumerrors); 5745 goto out; 5746 } 5747 } 5748 #endif 5749 /* Destination port of 0 is illegal, based on RFC4960. */ 5750 if (sh->dest_port == 0) { 5751 SCTP_STAT_INCR(sctps_hdrops); 5752 goto out; 5753 } 5754 stcb = sctp_findassociation_addr(m, offset, src, dst, 5755 sh, ch, &inp, &net, vrf_id); 5756 #if defined(INET) || defined(INET6) 5757 if ((ch->chunk_type != SCTP_INITIATION) && 5758 (net != NULL) && (net->port != port)) { 5759 if (net->port == 0) { 5760 /* UDP encapsulation turned on. */ 5761 net->mtu -= sizeof(struct udphdr); 5762 if (stcb->asoc.smallest_mtu > net->mtu) { 5763 sctp_pathmtu_adjustment(stcb, net->mtu); 5764 } 5765 } else if (port == 0) { 5766 /* UDP encapsulation turned off. */ 5767 net->mtu += sizeof(struct udphdr); 5768 /* XXX Update smallest_mtu */ 5769 } 5770 net->port = port; 5771 } 5772 #endif 5773 if (net != NULL) { 5774 net->flowtype = mflowtype; 5775 net->flowid = mflowid; 5776 } 5777 if (inp == NULL) { 5778 SCTP_STAT_INCR(sctps_noport); 5779 if (badport_bandlim(BANDLIM_SCTP_OOTB) < 0) { 5780 goto out; 5781 } 5782 if (ch->chunk_type == SCTP_SHUTDOWN_ACK) { 5783 sctp_send_shutdown_complete2(src, dst, sh, 5784 mflowtype, mflowid, fibnum, 5785 vrf_id, port); 5786 goto out; 5787 } 5788 if (ch->chunk_type == SCTP_SHUTDOWN_COMPLETE) { 5789 goto out; 5790 } 5791 if (ch->chunk_type != SCTP_ABORT_ASSOCIATION) { 5792 if ((SCTP_BASE_SYSCTL(sctp_blackhole) == 0) || 5793 ((SCTP_BASE_SYSCTL(sctp_blackhole) == 1) && 5794 (ch->chunk_type != SCTP_INIT))) { 5795 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5796 "Out of the blue"); 5797 sctp_send_abort(m, iphlen, src, dst, 5798 sh, 0, op_err, 5799 mflowtype, mflowid, fibnum, 5800 vrf_id, port); 5801 } 5802 } 5803 goto out; 5804 } else if (stcb == NULL) { 5805 inp_decr = inp; 5806 } 5807 #ifdef IPSEC 5808 /*- 5809 * I very much doubt any of the IPSEC stuff will work but I have no 5810 * idea, so I will leave it in place. 5811 */ 5812 if (inp != NULL) { 5813 switch (dst->sa_family) { 5814 #ifdef INET 5815 case AF_INET: 5816 if (ipsec4_in_reject(m, &inp->ip_inp.inp)) { 5817 SCTP_STAT_INCR(sctps_hdrops); 5818 goto out; 5819 } 5820 break; 5821 #endif 5822 #ifdef INET6 5823 case AF_INET6: 5824 if (ipsec6_in_reject(m, &inp->ip_inp.inp)) { 5825 SCTP_STAT_INCR(sctps_hdrops); 5826 goto out; 5827 } 5828 break; 5829 #endif 5830 default: 5831 break; 5832 } 5833 } 5834 #endif 5835 SCTPDBG(SCTP_DEBUG_INPUT1, "Ok, Common input processing called, m:%p iphlen:%d offset:%d length:%d stcb:%p\n", 5836 (void *)m, iphlen, offset, length, (void *)stcb); 5837 if (stcb) { 5838 /* always clear this before beginning a packet */ 5839 stcb->asoc.authenticated = 0; 5840 stcb->asoc.seen_a_sack_this_pkt = 0; 5841 SCTPDBG(SCTP_DEBUG_INPUT1, "stcb:%p state:%x\n", 5842 (void *)stcb, stcb->asoc.state); 5843 5844 if ((stcb->asoc.state & SCTP_STATE_WAS_ABORTED) || 5845 (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED)) { 5846 /*- 5847 * If we hit here, we had a ref count 5848 * up when the assoc was aborted and the 5849 * timer is clearing out the assoc, we should 5850 * NOT respond to any packet.. its OOTB. 5851 */ 5852 SCTP_TCB_UNLOCK(stcb); 5853 stcb = NULL; 5854 snprintf(msg, sizeof(msg), "OOTB, %s:%d at %s", __FILE__, __LINE__, __func__); 5855 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5856 msg); 5857 sctp_handle_ootb(m, iphlen, offset, src, dst, sh, inp, op_err, 5858 mflowtype, mflowid, inp->fibnum, 5859 vrf_id, port); 5860 goto out; 5861 } 5862 } 5863 if (IS_SCTP_CONTROL(ch)) { 5864 /* process the control portion of the SCTP packet */ 5865 /* sa_ignore NO_NULL_CHK */ 5866 stcb = sctp_process_control(m, iphlen, &offset, length, 5867 src, dst, sh, ch, 5868 inp, stcb, &net, &fwd_tsn_seen, 5869 mflowtype, mflowid, fibnum, 5870 vrf_id, port); 5871 if (stcb) { 5872 /* 5873 * This covers us if the cookie-echo was there and 5874 * it changes our INP. 5875 */ 5876 inp = stcb->sctp_ep; 5877 #if defined(INET) || defined(INET6) 5878 if ((ch->chunk_type != SCTP_INITIATION) && 5879 (net != NULL) && (net->port != port)) { 5880 if (net->port == 0) { 5881 /* UDP encapsulation turned on. */ 5882 net->mtu -= sizeof(struct udphdr); 5883 if (stcb->asoc.smallest_mtu > net->mtu) { 5884 sctp_pathmtu_adjustment(stcb, net->mtu); 5885 } 5886 } else if (port == 0) { 5887 /* UDP encapsulation turned off. */ 5888 net->mtu += sizeof(struct udphdr); 5889 /* XXX Update smallest_mtu */ 5890 } 5891 net->port = port; 5892 } 5893 #endif 5894 } 5895 } else { 5896 /* 5897 * no control chunks, so pre-process DATA chunks (these 5898 * checks are taken care of by control processing) 5899 */ 5900 5901 /* 5902 * if DATA only packet, and auth is required, then punt... 5903 * can't have authenticated without any AUTH (control) 5904 * chunks 5905 */ 5906 if ((stcb != NULL) && 5907 (stcb->asoc.auth_supported == 1) && 5908 sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.local_auth_chunks)) { 5909 /* "silently" ignore */ 5910 SCTP_STAT_INCR(sctps_recvauthmissing); 5911 goto out; 5912 } 5913 if (stcb == NULL) { 5914 /* out of the blue DATA chunk */ 5915 snprintf(msg, sizeof(msg), "OOTB, %s:%d at %s", __FILE__, __LINE__, __func__); 5916 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5917 msg); 5918 sctp_handle_ootb(m, iphlen, offset, src, dst, sh, inp, op_err, 5919 mflowtype, mflowid, fibnum, 5920 vrf_id, port); 5921 goto out; 5922 } 5923 if (stcb->asoc.my_vtag != ntohl(sh->v_tag)) { 5924 /* v_tag mismatch! */ 5925 SCTP_STAT_INCR(sctps_badvtag); 5926 goto out; 5927 } 5928 } 5929 5930 if (stcb == NULL) { 5931 /* 5932 * no valid TCB for this packet, or we found it's a bad 5933 * packet while processing control, or we're done with this 5934 * packet (done or skip rest of data), so we drop it... 5935 */ 5936 goto out; 5937 } 5938 /* 5939 * DATA chunk processing 5940 */ 5941 /* plow through the data chunks while length > offset */ 5942 5943 /* 5944 * Rest should be DATA only. Check authentication state if AUTH for 5945 * DATA is required. 5946 */ 5947 if ((length > offset) && 5948 (stcb != NULL) && 5949 (stcb->asoc.auth_supported == 1) && 5950 sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.local_auth_chunks) && 5951 !stcb->asoc.authenticated) { 5952 /* "silently" ignore */ 5953 SCTP_STAT_INCR(sctps_recvauthmissing); 5954 SCTPDBG(SCTP_DEBUG_AUTH1, 5955 "Data chunk requires AUTH, skipped\n"); 5956 goto trigger_send; 5957 } 5958 if (length > offset) { 5959 int retval; 5960 5961 /* 5962 * First check to make sure our state is correct. We would 5963 * not get here unless we really did have a tag, so we don't 5964 * abort if this happens, just dump the chunk silently. 5965 */ 5966 switch (SCTP_GET_STATE(&stcb->asoc)) { 5967 case SCTP_STATE_COOKIE_ECHOED: 5968 /* 5969 * we consider data with valid tags in this state 5970 * shows us the cookie-ack was lost. Imply it was 5971 * there. 5972 */ 5973 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5974 sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5975 stcb->asoc.overall_error_count, 5976 0, 5977 SCTP_FROM_SCTP_INPUT, 5978 __LINE__); 5979 } 5980 stcb->asoc.overall_error_count = 0; 5981 sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, net); 5982 break; 5983 case SCTP_STATE_COOKIE_WAIT: 5984 /* 5985 * We consider OOTB any data sent during asoc setup. 5986 */ 5987 snprintf(msg, sizeof(msg), "OOTB, %s:%d at %s", __FILE__, __LINE__, __func__); 5988 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5989 msg); 5990 sctp_handle_ootb(m, iphlen, offset, src, dst, sh, inp, op_err, 5991 mflowtype, mflowid, inp->fibnum, 5992 vrf_id, port); 5993 goto out; 5994 /* sa_ignore NOTREACHED */ 5995 break; 5996 case SCTP_STATE_EMPTY: /* should not happen */ 5997 case SCTP_STATE_INUSE: /* should not happen */ 5998 case SCTP_STATE_SHUTDOWN_RECEIVED: /* This is a peer error */ 5999 case SCTP_STATE_SHUTDOWN_ACK_SENT: 6000 default: 6001 goto out; 6002 /* sa_ignore NOTREACHED */ 6003 break; 6004 case SCTP_STATE_OPEN: 6005 case SCTP_STATE_SHUTDOWN_SENT: 6006 break; 6007 } 6008 /* plow through the data chunks while length > offset */ 6009 retval = sctp_process_data(mm, iphlen, &offset, length, 6010 inp, stcb, net, &high_tsn); 6011 if (retval == 2) { 6012 /* 6013 * The association aborted, NO UNLOCK needed since 6014 * the association is destroyed. 6015 */ 6016 stcb = NULL; 6017 goto out; 6018 } 6019 data_processed = 1; 6020 /* 6021 * Anything important needs to have been m_copy'ed in 6022 * process_data 6023 */ 6024 } 6025 /* take care of ecn */ 6026 if ((data_processed == 1) && 6027 (stcb->asoc.ecn_supported == 1) && 6028 ((ecn_bits & SCTP_CE_BITS) == SCTP_CE_BITS)) { 6029 /* Yep, we need to add a ECNE */ 6030 sctp_send_ecn_echo(stcb, net, high_tsn); 6031 } 6032 if ((data_processed == 0) && (fwd_tsn_seen)) { 6033 int was_a_gap; 6034 uint32_t highest_tsn; 6035 6036 if (SCTP_TSN_GT(stcb->asoc.highest_tsn_inside_nr_map, stcb->asoc.highest_tsn_inside_map)) { 6037 highest_tsn = stcb->asoc.highest_tsn_inside_nr_map; 6038 } else { 6039 highest_tsn = stcb->asoc.highest_tsn_inside_map; 6040 } 6041 was_a_gap = SCTP_TSN_GT(highest_tsn, stcb->asoc.cumulative_tsn); 6042 stcb->asoc.send_sack = 1; 6043 sctp_sack_check(stcb, was_a_gap); 6044 } else if (fwd_tsn_seen) { 6045 stcb->asoc.send_sack = 1; 6046 } 6047 /* trigger send of any chunks in queue... */ 6048 trigger_send: 6049 #ifdef SCTP_AUDITING_ENABLED 6050 sctp_audit_log(0xE0, 2); 6051 sctp_auditing(1, inp, stcb, net); 6052 #endif 6053 SCTPDBG(SCTP_DEBUG_INPUT1, 6054 "Check for chunk output prw:%d tqe:%d tf=%d\n", 6055 stcb->asoc.peers_rwnd, 6056 TAILQ_EMPTY(&stcb->asoc.control_send_queue), 6057 stcb->asoc.total_flight); 6058 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 6059 if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 6060 cnt_ctrl_ready = stcb->asoc.ctrl_queue_cnt - stcb->asoc.ecn_echo_cnt_onq; 6061 } 6062 if (!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue) || 6063 cnt_ctrl_ready || 6064 stcb->asoc.trigger_reset || 6065 ((un_sent) && 6066 (stcb->asoc.peers_rwnd > 0 || 6067 (stcb->asoc.peers_rwnd <= 0 && stcb->asoc.total_flight == 0)))) { 6068 SCTPDBG(SCTP_DEBUG_INPUT3, "Calling chunk OUTPUT\n"); 6069 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 6070 SCTPDBG(SCTP_DEBUG_INPUT3, "chunk OUTPUT returns\n"); 6071 } 6072 #ifdef SCTP_AUDITING_ENABLED 6073 sctp_audit_log(0xE0, 3); 6074 sctp_auditing(2, inp, stcb, net); 6075 #endif 6076 out: 6077 if (stcb != NULL) { 6078 SCTP_TCB_UNLOCK(stcb); 6079 } 6080 if (inp_decr != NULL) { 6081 /* reduce ref-count */ 6082 SCTP_INP_WLOCK(inp_decr); 6083 SCTP_INP_DECR_REF(inp_decr); 6084 SCTP_INP_WUNLOCK(inp_decr); 6085 } 6086 return; 6087 } 6088 6089 #ifdef INET 6090 void 6091 sctp_input_with_port(struct mbuf *i_pak, int off, uint16_t port) 6092 { 6093 struct mbuf *m; 6094 int iphlen; 6095 uint32_t vrf_id = 0; 6096 uint8_t ecn_bits; 6097 struct sockaddr_in src, dst; 6098 struct ip *ip; 6099 struct sctphdr *sh; 6100 struct sctp_chunkhdr *ch; 6101 int length, offset; 6102 6103 #if !defined(SCTP_WITH_NO_CSUM) 6104 uint8_t compute_crc; 6105 6106 #endif 6107 uint32_t mflowid; 6108 uint8_t mflowtype; 6109 uint16_t fibnum; 6110 6111 iphlen = off; 6112 if (SCTP_GET_PKT_VRFID(i_pak, vrf_id)) { 6113 SCTP_RELEASE_PKT(i_pak); 6114 return; 6115 } 6116 m = SCTP_HEADER_TO_CHAIN(i_pak); 6117 #ifdef SCTP_MBUF_LOGGING 6118 /* Log in any input mbufs */ 6119 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6120 sctp_log_mbc(m, SCTP_MBUF_INPUT); 6121 } 6122 #endif 6123 #ifdef SCTP_PACKET_LOGGING 6124 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 6125 sctp_packet_log(m); 6126 } 6127 #endif 6128 SCTPDBG(SCTP_DEBUG_CRCOFFLOAD, 6129 "sctp_input(): Packet of length %d received on %s with csum_flags 0x%b.\n", 6130 m->m_pkthdr.len, 6131 if_name(m->m_pkthdr.rcvif), 6132 (int)m->m_pkthdr.csum_flags, CSUM_BITS); 6133 mflowid = m->m_pkthdr.flowid; 6134 mflowtype = M_HASHTYPE_GET(m); 6135 fibnum = M_GETFIB(m); 6136 SCTP_STAT_INCR(sctps_recvpackets); 6137 SCTP_STAT_INCR_COUNTER64(sctps_inpackets); 6138 /* Get IP, SCTP, and first chunk header together in the first mbuf. */ 6139 offset = iphlen + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 6140 if (SCTP_BUF_LEN(m) < offset) { 6141 if ((m = m_pullup(m, offset)) == NULL) { 6142 SCTP_STAT_INCR(sctps_hdrops); 6143 return; 6144 } 6145 } 6146 ip = mtod(m, struct ip *); 6147 sh = (struct sctphdr *)((caddr_t)ip + iphlen); 6148 ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr)); 6149 offset -= sizeof(struct sctp_chunkhdr); 6150 memset(&src, 0, sizeof(struct sockaddr_in)); 6151 src.sin_family = AF_INET; 6152 src.sin_len = sizeof(struct sockaddr_in); 6153 src.sin_port = sh->src_port; 6154 src.sin_addr = ip->ip_src; 6155 memset(&dst, 0, sizeof(struct sockaddr_in)); 6156 dst.sin_family = AF_INET; 6157 dst.sin_len = sizeof(struct sockaddr_in); 6158 dst.sin_port = sh->dest_port; 6159 dst.sin_addr = ip->ip_dst; 6160 length = ntohs(ip->ip_len); 6161 /* Validate mbuf chain length with IP payload length. */ 6162 if (SCTP_HEADER_LEN(m) != length) { 6163 SCTPDBG(SCTP_DEBUG_INPUT1, 6164 "sctp_input() length:%d reported length:%d\n", length, SCTP_HEADER_LEN(m)); 6165 SCTP_STAT_INCR(sctps_hdrops); 6166 goto out; 6167 } 6168 /* SCTP does not allow broadcasts or multicasts */ 6169 if (IN_MULTICAST(ntohl(dst.sin_addr.s_addr))) { 6170 goto out; 6171 } 6172 if (SCTP_IS_IT_BROADCAST(dst.sin_addr, m)) { 6173 goto out; 6174 } 6175 ecn_bits = ip->ip_tos; 6176 #if defined(SCTP_WITH_NO_CSUM) 6177 SCTP_STAT_INCR(sctps_recvnocrc); 6178 #else 6179 if (m->m_pkthdr.csum_flags & CSUM_SCTP_VALID) { 6180 SCTP_STAT_INCR(sctps_recvhwcrc); 6181 compute_crc = 0; 6182 } else { 6183 SCTP_STAT_INCR(sctps_recvswcrc); 6184 compute_crc = 1; 6185 } 6186 #endif 6187 sctp_common_input_processing(&m, iphlen, offset, length, 6188 (struct sockaddr *)&src, 6189 (struct sockaddr *)&dst, 6190 sh, ch, 6191 #if !defined(SCTP_WITH_NO_CSUM) 6192 compute_crc, 6193 #endif 6194 ecn_bits, 6195 mflowtype, mflowid, fibnum, 6196 vrf_id, port); 6197 out: 6198 if (m) { 6199 sctp_m_freem(m); 6200 } 6201 return; 6202 } 6203 6204 #if defined(__FreeBSD__) && defined(SCTP_MCORE_INPUT) && defined(SMP) 6205 extern int *sctp_cpuarry; 6206 6207 #endif 6208 6209 int 6210 sctp_input(struct mbuf **mp, int *offp, int proto SCTP_UNUSED) 6211 { 6212 struct mbuf *m; 6213 int off; 6214 6215 m = *mp; 6216 off = *offp; 6217 #if defined(__FreeBSD__) && defined(SCTP_MCORE_INPUT) && defined(SMP) 6218 if (mp_ncpus > 1) { 6219 struct ip *ip; 6220 struct sctphdr *sh; 6221 int offset; 6222 int cpu_to_use; 6223 uint32_t flowid, tag; 6224 6225 if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) { 6226 flowid = m->m_pkthdr.flowid; 6227 } else { 6228 /* 6229 * No flow id built by lower layers fix it so we 6230 * create one. 6231 */ 6232 offset = off + sizeof(struct sctphdr); 6233 if (SCTP_BUF_LEN(m) < offset) { 6234 if ((m = m_pullup(m, offset)) == NULL) { 6235 SCTP_STAT_INCR(sctps_hdrops); 6236 return (IPPROTO_DONE); 6237 } 6238 } 6239 ip = mtod(m, struct ip *); 6240 sh = (struct sctphdr *)((caddr_t)ip + off); 6241 tag = htonl(sh->v_tag); 6242 flowid = tag ^ ntohs(sh->dest_port) ^ ntohs(sh->src_port); 6243 m->m_pkthdr.flowid = flowid; 6244 M_HASHTYPE_SET(m, M_HASHTYPE_OPAQUE); 6245 } 6246 cpu_to_use = sctp_cpuarry[flowid % mp_ncpus]; 6247 sctp_queue_to_mcore(m, off, cpu_to_use); 6248 return (IPPROTO_DONE); 6249 } 6250 #endif 6251 sctp_input_with_port(m, off, 0); 6252 return (IPPROTO_DONE); 6253 } 6254 6255 #endif 6256