1f8829a4aSRandall Stewart /*- 2830d754dSRandall Stewart * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 3f8829a4aSRandall Stewart * 4f8829a4aSRandall Stewart * Redistribution and use in source and binary forms, with or without 5f8829a4aSRandall Stewart * modification, are permitted provided that the following conditions are met: 6f8829a4aSRandall Stewart * 7f8829a4aSRandall Stewart * a) Redistributions of source code must retain the above copyright notice, 8f8829a4aSRandall Stewart * this list of conditions and the following disclaimer. 9f8829a4aSRandall Stewart * 10f8829a4aSRandall Stewart * b) Redistributions in binary form must reproduce the above copyright 11f8829a4aSRandall Stewart * notice, this list of conditions and the following disclaimer in 12f8829a4aSRandall Stewart * the documentation and/or other materials provided with the distribution. 13f8829a4aSRandall Stewart * 14f8829a4aSRandall Stewart * c) Neither the name of Cisco Systems, Inc. nor the names of its 15f8829a4aSRandall Stewart * contributors may be used to endorse or promote products derived 16f8829a4aSRandall Stewart * from this software without specific prior written permission. 17f8829a4aSRandall Stewart * 18f8829a4aSRandall Stewart * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19f8829a4aSRandall Stewart * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 20f8829a4aSRandall Stewart * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21f8829a4aSRandall Stewart * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 22f8829a4aSRandall Stewart * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23f8829a4aSRandall Stewart * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24f8829a4aSRandall Stewart * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25f8829a4aSRandall Stewart * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26f8829a4aSRandall Stewart * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27f8829a4aSRandall Stewart * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 28f8829a4aSRandall Stewart * THE POSSIBILITY OF SUCH DAMAGE. 29f8829a4aSRandall Stewart */ 30f8829a4aSRandall Stewart 31f8829a4aSRandall Stewart /* $KAME: sctp_input.c,v 1.27 2005/03/06 16:04:17 itojun Exp $ */ 32f8829a4aSRandall Stewart 33f8829a4aSRandall Stewart #include <sys/cdefs.h> 34f8829a4aSRandall Stewart __FBSDID("$FreeBSD$"); 35f8829a4aSRandall Stewart 36f8829a4aSRandall Stewart #include <netinet/sctp_os.h> 37f8829a4aSRandall Stewart #include <netinet/sctp_var.h> 3842551e99SRandall Stewart #include <netinet/sctp_sysctl.h> 39f8829a4aSRandall Stewart #include <netinet/sctp_pcb.h> 40f8829a4aSRandall Stewart #include <netinet/sctp_header.h> 41f8829a4aSRandall Stewart #include <netinet/sctputil.h> 42f8829a4aSRandall Stewart #include <netinet/sctp_output.h> 43f8829a4aSRandall Stewart #include <netinet/sctp_input.h> 44f8829a4aSRandall Stewart #include <netinet/sctp_auth.h> 45f8829a4aSRandall Stewart #include <netinet/sctp_indata.h> 46f8829a4aSRandall Stewart #include <netinet/sctp_asconf.h> 47207304d4SRandall Stewart #include <netinet/sctp_bsd_addr.h> 48851b7298SRandall Stewart #include <netinet/sctp_timer.h> 49a99b6783SRandall Stewart #include <netinet/sctp_crc32.h> 50c54a18d2SRandall Stewart #include <netinet/udp.h> 51f8829a4aSRandall Stewart 52a5d547adSRandall Stewart 53a5d547adSRandall Stewart 54f8829a4aSRandall Stewart static void 55f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(struct sctp_tcb *stcb) 56f8829a4aSRandall Stewart { 57f8829a4aSRandall Stewart struct sctp_nets *net; 58f8829a4aSRandall Stewart 59a5d547adSRandall Stewart /* 60a5d547adSRandall Stewart * This now not only stops all cookie timers it also stops any INIT 61a5d547adSRandall Stewart * timers as well. This will make sure that the timers are stopped 62a5d547adSRandall Stewart * in all collision cases. 63a5d547adSRandall Stewart */ 64f8829a4aSRandall Stewart SCTP_TCB_LOCK_ASSERT(stcb); 65f8829a4aSRandall Stewart TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 66a5d547adSRandall Stewart if (net->rxt_timer.type == SCTP_TIMER_TYPE_COOKIE) { 67f8829a4aSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_COOKIE, 68f8829a4aSRandall Stewart stcb->sctp_ep, 69f8829a4aSRandall Stewart stcb, 70a5d547adSRandall Stewart net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_1); 71a5d547adSRandall Stewart } else if (net->rxt_timer.type == SCTP_TIMER_TYPE_INIT) { 72a5d547adSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_INIT, 73a5d547adSRandall Stewart stcb->sctp_ep, 74a5d547adSRandall Stewart stcb, 75a5d547adSRandall Stewart net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_2); 76f8829a4aSRandall Stewart } 77f8829a4aSRandall Stewart } 78f8829a4aSRandall Stewart } 79f8829a4aSRandall Stewart 80f8829a4aSRandall Stewart /* INIT handler */ 81f8829a4aSRandall Stewart static void 82f8829a4aSRandall Stewart sctp_handle_init(struct mbuf *m, int iphlen, int offset, struct sctphdr *sh, 83f8829a4aSRandall Stewart struct sctp_init_chunk *cp, struct sctp_inpcb *inp, struct sctp_tcb *stcb, 84c54a18d2SRandall Stewart struct sctp_nets *net, int *abort_no_unlock, uint32_t vrf_id, uint16_t port) 85f8829a4aSRandall Stewart { 86f8829a4aSRandall Stewart struct sctp_init *init; 87f8829a4aSRandall Stewart struct mbuf *op_err; 88f8829a4aSRandall Stewart uint32_t init_limit; 89f8829a4aSRandall Stewart 90ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_init: handling INIT tcb:%p\n", 91ad81507eSRandall Stewart stcb); 92d55b0b1bSRandall Stewart if (stcb == NULL) { 93d55b0b1bSRandall Stewart SCTP_INP_RLOCK(inp); 94d55b0b1bSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 95d55b0b1bSRandall Stewart goto outnow; 96d55b0b1bSRandall Stewart } 97d55b0b1bSRandall Stewart } 98f8829a4aSRandall Stewart op_err = NULL; 99f8829a4aSRandall Stewart init = &cp->init; 100f8829a4aSRandall Stewart /* First are we accepting? */ 101f8829a4aSRandall Stewart if ((inp->sctp_socket->so_qlimit == 0) && (stcb == NULL)) { 102ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 103ad81507eSRandall Stewart "sctp_handle_init: Abort, so_qlimit:%d\n", 104ad81507eSRandall Stewart inp->sctp_socket->so_qlimit); 105f8829a4aSRandall Stewart /* 106f8829a4aSRandall Stewart * FIX ME ?? What about TCP model and we have a 107bfefd190SRandall Stewart * match/restart case? Actually no fix is needed. the lookup 108bfefd190SRandall Stewart * will always find the existing assoc so stcb would not be 109bfefd190SRandall Stewart * NULL. It may be questionable to do this since we COULD 110bfefd190SRandall Stewart * just send back the INIT-ACK and hope that the app did 111bfefd190SRandall Stewart * accept()'s by the time the COOKIE was sent. But there is 112bfefd190SRandall Stewart * a price to pay for COOKIE generation and I don't want to 113bfefd190SRandall Stewart * pay it on the chance that the app will actually do some 114bfefd190SRandall Stewart * accepts(). The App just looses and should NOT be in this 115bfefd190SRandall Stewart * state :-) 116f8829a4aSRandall Stewart */ 11717205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 118c54a18d2SRandall Stewart vrf_id, port); 119bff64a4dSRandall Stewart if (stcb) 120bff64a4dSRandall Stewart *abort_no_unlock = 1; 121d55b0b1bSRandall Stewart goto outnow; 122f8829a4aSRandall Stewart } 123f8829a4aSRandall Stewart if (ntohs(cp->ch.chunk_length) < sizeof(struct sctp_init_chunk)) { 124f8829a4aSRandall Stewart /* Invalid length */ 125f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 12617205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 127c54a18d2SRandall Stewart vrf_id, port); 128bff64a4dSRandall Stewart if (stcb) 129bff64a4dSRandall Stewart *abort_no_unlock = 1; 130d55b0b1bSRandall Stewart goto outnow; 131f8829a4aSRandall Stewart } 132f8829a4aSRandall Stewart /* validate parameters */ 133f8829a4aSRandall Stewart if (init->initiate_tag == 0) { 134f8829a4aSRandall Stewart /* protocol error... send abort */ 135f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 13617205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 137c54a18d2SRandall Stewart vrf_id, port); 138bff64a4dSRandall Stewart if (stcb) 139bff64a4dSRandall Stewart *abort_no_unlock = 1; 140d55b0b1bSRandall Stewart goto outnow; 141f8829a4aSRandall Stewart } 142f8829a4aSRandall Stewart if (ntohl(init->a_rwnd) < SCTP_MIN_RWND) { 143f8829a4aSRandall Stewart /* invalid parameter... send abort */ 144f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 14517205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 146c54a18d2SRandall Stewart vrf_id, port); 147b54d3a6cSRandall Stewart if (stcb) 148b54d3a6cSRandall Stewart *abort_no_unlock = 1; 149d55b0b1bSRandall Stewart goto outnow; 150f8829a4aSRandall Stewart } 151f8829a4aSRandall Stewart if (init->num_inbound_streams == 0) { 152f8829a4aSRandall Stewart /* protocol error... send abort */ 153f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 15417205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 155c54a18d2SRandall Stewart vrf_id, port); 156bff64a4dSRandall Stewart if (stcb) 157bff64a4dSRandall Stewart *abort_no_unlock = 1; 158d55b0b1bSRandall Stewart goto outnow; 159f8829a4aSRandall Stewart } 160f8829a4aSRandall Stewart if (init->num_outbound_streams == 0) { 161f8829a4aSRandall Stewart /* protocol error... send abort */ 162f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 16317205eccSRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 164c54a18d2SRandall Stewart vrf_id, port); 165bff64a4dSRandall Stewart if (stcb) 166bff64a4dSRandall Stewart *abort_no_unlock = 1; 167d55b0b1bSRandall Stewart goto outnow; 168f8829a4aSRandall Stewart } 169f8829a4aSRandall Stewart init_limit = offset + ntohs(cp->ch.chunk_length); 170f8829a4aSRandall Stewart if (sctp_validate_init_auth_params(m, offset + sizeof(*cp), 171f8829a4aSRandall Stewart init_limit)) { 172f8829a4aSRandall Stewart /* auth parameter(s) error... send abort */ 173c54a18d2SRandall Stewart sctp_abort_association(inp, stcb, m, iphlen, sh, NULL, vrf_id, port); 174bff64a4dSRandall Stewart if (stcb) 175bff64a4dSRandall Stewart *abort_no_unlock = 1; 176d55b0b1bSRandall Stewart goto outnow; 177f8829a4aSRandall Stewart } 178f8829a4aSRandall Stewart /* send an INIT-ACK w/cookie */ 179ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "sctp_handle_init: sending INIT-ACK\n"); 180c54a18d2SRandall Stewart sctp_send_initiate_ack(inp, stcb, m, iphlen, offset, sh, cp, vrf_id, port, 181b201f536SRandall Stewart ((stcb == NULL) ? SCTP_HOLDS_LOCK : SCTP_NOT_LOCKED)); 182d55b0b1bSRandall Stewart outnow: 183d55b0b1bSRandall Stewart if (stcb == NULL) { 184d55b0b1bSRandall Stewart SCTP_INP_RUNLOCK(inp); 185d55b0b1bSRandall Stewart } 186f8829a4aSRandall Stewart } 187f8829a4aSRandall Stewart 188f8829a4aSRandall Stewart /* 189f8829a4aSRandall Stewart * process peer "INIT/INIT-ACK" chunk returns value < 0 on error 190f8829a4aSRandall Stewart */ 1915bead436SRandall Stewart 1925bead436SRandall Stewart int 1935bead436SRandall Stewart sctp_is_there_unsent_data(struct sctp_tcb *stcb) 1945bead436SRandall Stewart { 1955bead436SRandall Stewart int unsent_data = 0; 196f7a77f6fSMichael Tuexen unsigned int i; 197f7a77f6fSMichael Tuexen struct sctp_stream_queue_pending *sp; 1985bead436SRandall Stewart struct sctp_association *asoc; 1995bead436SRandall Stewart 2005bead436SRandall Stewart /* 2015bead436SRandall Stewart * This function returns the number of streams that have true unsent 2025bead436SRandall Stewart * data on them. Note that as it looks through it will clean up any 2035bead436SRandall Stewart * places that have old data that has been sent but left at top of 2045bead436SRandall Stewart * stream queue. 2055bead436SRandall Stewart */ 2065bead436SRandall Stewart asoc = &stcb->asoc; 2075bead436SRandall Stewart SCTP_TCB_SEND_LOCK(stcb); 208f7a77f6fSMichael Tuexen if (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 209f7a77f6fSMichael Tuexen /* Check to see if some data queued */ 210f7a77f6fSMichael Tuexen for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 21152be287eSRandall Stewart /* sa_ignore FREED_MEMORY */ 212f7a77f6fSMichael Tuexen sp = TAILQ_FIRST(&stcb->asoc.strmout[i].outqueue); 213f7a77f6fSMichael Tuexen if (sp == NULL) { 214f7a77f6fSMichael Tuexen continue; 215f7a77f6fSMichael Tuexen } 2165bead436SRandall Stewart if ((sp->msg_is_complete) && 2175bead436SRandall Stewart (sp->length == 0) && 2185bead436SRandall Stewart (sp->sender_all_done)) { 2195bead436SRandall Stewart /* 2205bead436SRandall Stewart * We are doing differed cleanup. Last time 2215bead436SRandall Stewart * through when we took all the data the 2225bead436SRandall Stewart * sender_all_done was not set. 2235bead436SRandall Stewart */ 2245bead436SRandall Stewart if (sp->put_last_out == 0) { 2255bead436SRandall Stewart SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 2265bead436SRandall Stewart SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n", 2275bead436SRandall Stewart sp->sender_all_done, 2285bead436SRandall Stewart sp->length, 2295bead436SRandall Stewart sp->msg_is_complete, 2305bead436SRandall Stewart sp->put_last_out); 2315bead436SRandall Stewart } 232f7a77f6fSMichael Tuexen atomic_subtract_int(&stcb->asoc.stream_queue_cnt, 1); 233f7a77f6fSMichael Tuexen TAILQ_REMOVE(&stcb->asoc.strmout[i].outqueue, sp, next); 2349eea4a2dSMichael Tuexen if (sp->net) { 2355bead436SRandall Stewart sctp_free_remote_addr(sp->net); 2369eea4a2dSMichael Tuexen sp->net = NULL; 2379eea4a2dSMichael Tuexen } 2385bead436SRandall Stewart if (sp->data) { 2395bead436SRandall Stewart sctp_m_freem(sp->data); 2405bead436SRandall Stewart sp->data = NULL; 2415bead436SRandall Stewart } 2425bead436SRandall Stewart sctp_free_a_strmoq(stcb, sp); 2435bead436SRandall Stewart } else { 2445bead436SRandall Stewart unsent_data++; 2454a9ef3f8SMichael Tuexen break; 2465bead436SRandall Stewart } 2475bead436SRandall Stewart } 2485bead436SRandall Stewart } 2495bead436SRandall Stewart SCTP_TCB_SEND_UNLOCK(stcb); 2505bead436SRandall Stewart return (unsent_data); 2515bead436SRandall Stewart } 2525bead436SRandall Stewart 253f8829a4aSRandall Stewart static int 254f8829a4aSRandall Stewart sctp_process_init(struct sctp_init_chunk *cp, struct sctp_tcb *stcb, 255f8829a4aSRandall Stewart struct sctp_nets *net) 256f8829a4aSRandall Stewart { 257f8829a4aSRandall Stewart struct sctp_init *init; 258f8829a4aSRandall Stewart struct sctp_association *asoc; 259f8829a4aSRandall Stewart struct sctp_nets *lnet; 260f8829a4aSRandall Stewart unsigned int i; 261f8829a4aSRandall Stewart 262f8829a4aSRandall Stewart init = &cp->init; 263f8829a4aSRandall Stewart asoc = &stcb->asoc; 264f8829a4aSRandall Stewart /* save off parameters */ 265f8829a4aSRandall Stewart asoc->peer_vtag = ntohl(init->initiate_tag); 266f8829a4aSRandall Stewart asoc->peers_rwnd = ntohl(init->a_rwnd); 2679eea4a2dSMichael Tuexen if (!TAILQ_EMPTY(&asoc->nets)) { 268f8829a4aSRandall Stewart /* update any ssthresh's that may have a default */ 269f8829a4aSRandall Stewart TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 270f8829a4aSRandall Stewart lnet->ssthresh = asoc->peers_rwnd; 271f8829a4aSRandall Stewart 272b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_CWND_MONITOR_ENABLE | SCTP_CWND_LOGGING_ENABLE)) { 273f8829a4aSRandall Stewart sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_INITIALIZATION); 27480fefe0aSRandall Stewart } 275f8829a4aSRandall Stewart } 276f8829a4aSRandall Stewart } 2776a91f103SRandall Stewart SCTP_TCB_SEND_LOCK(stcb); 278f8829a4aSRandall Stewart if (asoc->pre_open_streams > ntohs(init->num_inbound_streams)) { 279f8829a4aSRandall Stewart unsigned int newcnt; 280f8829a4aSRandall Stewart struct sctp_stream_out *outs; 2814a9ef3f8SMichael Tuexen struct sctp_stream_queue_pending *sp, *nsp; 2824a9ef3f8SMichael Tuexen struct sctp_tmit_chunk *chk, *nchk; 283f8829a4aSRandall Stewart 284810ec536SMichael Tuexen /* abandon the upper streams */ 285f8829a4aSRandall Stewart newcnt = ntohs(init->num_inbound_streams); 2864a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 287810ec536SMichael Tuexen if (chk->rec.data.stream_number >= newcnt) { 288810ec536SMichael Tuexen TAILQ_REMOVE(&asoc->send_queue, chk, sctp_next); 289810ec536SMichael Tuexen asoc->send_queue_cnt--; 290810ec536SMichael Tuexen if (chk->data != NULL) { 291810ec536SMichael Tuexen sctp_free_bufspace(stcb, asoc, chk, 1); 292810ec536SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_DG_FAIL, stcb, 293810ec536SMichael Tuexen SCTP_NOTIFY_DATAGRAM_UNSENT, chk, SCTP_SO_NOT_LOCKED); 294810ec536SMichael Tuexen if (chk->data) { 295810ec536SMichael Tuexen sctp_m_freem(chk->data); 296810ec536SMichael Tuexen chk->data = NULL; 297810ec536SMichael Tuexen } 298810ec536SMichael Tuexen } 299810ec536SMichael Tuexen sctp_free_a_chunk(stcb, chk); 300810ec536SMichael Tuexen /* sa_ignore FREED_MEMORY */ 301810ec536SMichael Tuexen } 302810ec536SMichael Tuexen } 303f8829a4aSRandall Stewart if (asoc->strmout) { 304f8829a4aSRandall Stewart for (i = newcnt; i < asoc->pre_open_streams; i++) { 305f8829a4aSRandall Stewart outs = &asoc->strmout[i]; 3064a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) { 307810ec536SMichael Tuexen TAILQ_REMOVE(&outs->outqueue, sp, next); 308f8829a4aSRandall Stewart asoc->stream_queue_cnt--; 309f8829a4aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_SPECIAL_SP_FAIL, 310f8829a4aSRandall Stewart stcb, SCTP_NOTIFY_DATAGRAM_UNSENT, 311ceaad40aSRandall Stewart sp, SCTP_SO_NOT_LOCKED); 312f8829a4aSRandall Stewart if (sp->data) { 313f8829a4aSRandall Stewart sctp_m_freem(sp->data); 314f8829a4aSRandall Stewart sp->data = NULL; 315f8829a4aSRandall Stewart } 3169eea4a2dSMichael Tuexen if (sp->net) { 317f8829a4aSRandall Stewart sctp_free_remote_addr(sp->net); 318f8829a4aSRandall Stewart sp->net = NULL; 3199eea4a2dSMichael Tuexen } 320f8829a4aSRandall Stewart /* Free the chunk */ 321f8829a4aSRandall Stewart sctp_free_a_strmoq(stcb, sp); 3223c503c28SRandall Stewart /* sa_ignore FREED_MEMORY */ 323f8829a4aSRandall Stewart } 324f8829a4aSRandall Stewart } 325f8829a4aSRandall Stewart } 326810ec536SMichael Tuexen /* cut back the count */ 327f8829a4aSRandall Stewart asoc->pre_open_streams = newcnt; 328f8829a4aSRandall Stewart } 3296a91f103SRandall Stewart SCTP_TCB_SEND_UNLOCK(stcb); 330ea44232bSRandall Stewart asoc->strm_realoutsize = asoc->streamoutcnt = asoc->pre_open_streams; 331f8829a4aSRandall Stewart /* init tsn's */ 332f8829a4aSRandall Stewart asoc->highest_tsn_inside_map = asoc->asconf_seq_in = ntohl(init->initial_tsn) - 1; 333830d754dSRandall Stewart /* EY - nr_sack: initialize highest tsn in nr_mapping_array */ 334830d754dSRandall Stewart asoc->highest_tsn_inside_nr_map = asoc->highest_tsn_inside_map; 335b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 336f8829a4aSRandall Stewart sctp_log_map(0, 5, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 33780fefe0aSRandall Stewart } 338f8829a4aSRandall Stewart /* This is the next one we expect */ 339f8829a4aSRandall Stewart asoc->str_reset_seq_in = asoc->asconf_seq_in + 1; 340f8829a4aSRandall Stewart 341f8829a4aSRandall Stewart asoc->mapping_array_base_tsn = ntohl(init->initial_tsn); 342d6af161aSRandall Stewart asoc->tsn_last_delivered = asoc->cumulative_tsn = asoc->asconf_seq_in; 343f8829a4aSRandall Stewart asoc->last_echo_tsn = asoc->asconf_seq_in; 344f8829a4aSRandall Stewart asoc->advanced_peer_ack_point = asoc->last_acked_seq; 345f8829a4aSRandall Stewart /* open the requested streams */ 346207304d4SRandall Stewart 347f8829a4aSRandall Stewart if (asoc->strmin != NULL) { 348f8829a4aSRandall Stewart /* Free the old ones */ 3494a9ef3f8SMichael Tuexen struct sctp_queued_to_read *ctl, *nctl; 3506a91f103SRandall Stewart 3516a91f103SRandall Stewart for (i = 0; i < asoc->streamincnt; i++) { 3524a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(ctl, &asoc->strmin[i].inqueue, next, nctl) { 3536a91f103SRandall Stewart TAILQ_REMOVE(&asoc->strmin[i].inqueue, ctl, next); 3546a91f103SRandall Stewart sctp_free_remote_addr(ctl->whoFrom); 3555bead436SRandall Stewart ctl->whoFrom = NULL; 3566a91f103SRandall Stewart sctp_m_freem(ctl->data); 3576a91f103SRandall Stewart ctl->data = NULL; 3586a91f103SRandall Stewart sctp_free_a_readq(stcb, ctl); 3596a91f103SRandall Stewart } 3606a91f103SRandall Stewart } 361207304d4SRandall Stewart SCTP_FREE(asoc->strmin, SCTP_M_STRMI); 362f8829a4aSRandall Stewart } 3636a91f103SRandall Stewart asoc->streamincnt = ntohs(init->num_outbound_streams); 3646a91f103SRandall Stewart if (asoc->streamincnt > MAX_SCTP_STREAMS) { 3656a91f103SRandall Stewart asoc->streamincnt = MAX_SCTP_STREAMS; 3666a91f103SRandall Stewart } 367f8829a4aSRandall Stewart SCTP_MALLOC(asoc->strmin, struct sctp_stream_in *, asoc->streamincnt * 368207304d4SRandall Stewart sizeof(struct sctp_stream_in), SCTP_M_STRMI); 369f8829a4aSRandall Stewart if (asoc->strmin == NULL) { 370f8829a4aSRandall Stewart /* we didn't get memory for the streams! */ 371ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "process_init: couldn't get memory for the streams!\n"); 372f8829a4aSRandall Stewart return (-1); 373f8829a4aSRandall Stewart } 374f8829a4aSRandall Stewart for (i = 0; i < asoc->streamincnt; i++) { 375f8829a4aSRandall Stewart asoc->strmin[i].stream_no = i; 376f8829a4aSRandall Stewart asoc->strmin[i].last_sequence_delivered = 0xffff; 377f8829a4aSRandall Stewart /* 378f8829a4aSRandall Stewart * U-stream ranges will be set when the cookie is unpacked. 379f8829a4aSRandall Stewart * Or for the INIT sender they are un set (if pr-sctp not 380f8829a4aSRandall Stewart * supported) when the INIT-ACK arrives. 381f8829a4aSRandall Stewart */ 382f8829a4aSRandall Stewart TAILQ_INIT(&asoc->strmin[i].inqueue); 3839a6142d8SRandall Stewart asoc->strmin[i].delivery_started = 0; 384f8829a4aSRandall Stewart } 385f8829a4aSRandall Stewart /* 386f8829a4aSRandall Stewart * load_address_from_init will put the addresses into the 387f8829a4aSRandall Stewart * association when the COOKIE is processed or the INIT-ACK is 388f8829a4aSRandall Stewart * processed. Both types of COOKIE's existing and new call this 389f8829a4aSRandall Stewart * routine. It will remove addresses that are no longer in the 390f8829a4aSRandall Stewart * association (for the restarting case where addresses are 391f8829a4aSRandall Stewart * removed). Up front when the INIT arrives we will discard it if it 392f8829a4aSRandall Stewart * is a restart and new addresses have been added. 393f8829a4aSRandall Stewart */ 3943c503c28SRandall Stewart /* sa_ignore MEMLEAK */ 395f8829a4aSRandall Stewart return (0); 396f8829a4aSRandall Stewart } 397f8829a4aSRandall Stewart 398f8829a4aSRandall Stewart /* 399f8829a4aSRandall Stewart * INIT-ACK message processing/consumption returns value < 0 on error 400f8829a4aSRandall Stewart */ 401f8829a4aSRandall Stewart static int 402f8829a4aSRandall Stewart sctp_process_init_ack(struct mbuf *m, int iphlen, int offset, 403f8829a4aSRandall Stewart struct sctphdr *sh, struct sctp_init_ack_chunk *cp, struct sctp_tcb *stcb, 404ad21a364SRandall Stewart struct sctp_nets *net, int *abort_no_unlock, uint32_t vrf_id) 405f8829a4aSRandall Stewart { 406f8829a4aSRandall Stewart struct sctp_association *asoc; 407f8829a4aSRandall Stewart struct mbuf *op_err; 408f8829a4aSRandall Stewart int retval, abort_flag; 409f8829a4aSRandall Stewart uint32_t initack_limit; 410830d754dSRandall Stewart int nat_friendly = 0; 411f8829a4aSRandall Stewart 412f8829a4aSRandall Stewart /* First verify that we have no illegal param's */ 413f8829a4aSRandall Stewart abort_flag = 0; 414f8829a4aSRandall Stewart op_err = NULL; 415f8829a4aSRandall Stewart 416f8829a4aSRandall Stewart op_err = sctp_arethere_unrecognized_parameters(m, 417f8829a4aSRandall Stewart (offset + sizeof(struct sctp_init_chunk)), 418830d754dSRandall Stewart &abort_flag, (struct sctp_chunkhdr *)cp, &nat_friendly); 419f8829a4aSRandall Stewart if (abort_flag) { 420f8829a4aSRandall Stewart /* Send an abort and notify peer */ 421ceaad40aSRandall Stewart sctp_abort_an_association(stcb->sctp_ep, stcb, SCTP_CAUSE_PROTOCOL_VIOLATION, op_err, SCTP_SO_NOT_LOCKED); 422bff64a4dSRandall Stewart *abort_no_unlock = 1; 423f8829a4aSRandall Stewart return (-1); 424f8829a4aSRandall Stewart } 425f8829a4aSRandall Stewart asoc = &stcb->asoc; 426830d754dSRandall Stewart asoc->peer_supports_nat = (uint8_t) nat_friendly; 427f8829a4aSRandall Stewart /* process the peer's parameters in the INIT-ACK */ 428f8829a4aSRandall Stewart retval = sctp_process_init((struct sctp_init_chunk *)cp, stcb, net); 429f8829a4aSRandall Stewart if (retval < 0) { 430f8829a4aSRandall Stewart return (retval); 431f8829a4aSRandall Stewart } 432f8829a4aSRandall Stewart initack_limit = offset + ntohs(cp->ch.chunk_length); 433f8829a4aSRandall Stewart /* load all addresses */ 434f8829a4aSRandall Stewart if ((retval = sctp_load_addresses_from_init(stcb, m, iphlen, 435f8829a4aSRandall Stewart (offset + sizeof(struct sctp_init_chunk)), initack_limit, sh, 436f8829a4aSRandall Stewart NULL))) { 437f8829a4aSRandall Stewart /* Huh, we should abort */ 438ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 439ad81507eSRandall Stewart "Load addresses from INIT causes an abort %d\n", 440ad81507eSRandall Stewart retval); 441f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 442c54a18d2SRandall Stewart NULL, 0, net->port); 443bff64a4dSRandall Stewart *abort_no_unlock = 1; 444f8829a4aSRandall Stewart return (-1); 445f8829a4aSRandall Stewart } 44618e198d3SRandall Stewart /* if the peer doesn't support asconf, flush the asconf queue */ 44718e198d3SRandall Stewart if (asoc->peer_supports_asconf == 0) { 4484a9ef3f8SMichael Tuexen struct sctp_asconf_addr *param, *nparam; 44918e198d3SRandall Stewart 4504a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(param, &asoc->asconf_queue, next, nparam) { 4514a9ef3f8SMichael Tuexen TAILQ_REMOVE(&asoc->asconf_queue, param, next); 4524a9ef3f8SMichael Tuexen SCTP_FREE(param, SCTP_M_ASC_ADDR); 45318e198d3SRandall Stewart } 45418e198d3SRandall Stewart } 455f8829a4aSRandall Stewart stcb->asoc.peer_hmac_id = sctp_negotiate_hmacid(stcb->asoc.peer_hmacs, 456f8829a4aSRandall Stewart stcb->asoc.local_hmacs); 457f8829a4aSRandall Stewart if (op_err) { 458f8829a4aSRandall Stewart sctp_queue_op_err(stcb, op_err); 459f8829a4aSRandall Stewart /* queuing will steal away the mbuf chain to the out queue */ 460f8829a4aSRandall Stewart op_err = NULL; 461f8829a4aSRandall Stewart } 462f8829a4aSRandall Stewart /* extract the cookie and queue it to "echo" it back... */ 463b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 464c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 465c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 466c4739e2fSRandall Stewart 0, 467c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 468c4739e2fSRandall Stewart __LINE__); 469c4739e2fSRandall Stewart } 470f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 471f8829a4aSRandall Stewart net->error_count = 0; 472f8829a4aSRandall Stewart 473f8829a4aSRandall Stewart /* 474f8829a4aSRandall Stewart * Cancel the INIT timer, We do this first before queueing the 475f8829a4aSRandall Stewart * cookie. We always cancel at the primary to assue that we are 476f8829a4aSRandall Stewart * canceling the timer started by the INIT which always goes to the 477f8829a4aSRandall Stewart * primary. 478f8829a4aSRandall Stewart */ 479f8829a4aSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_INIT, stcb->sctp_ep, stcb, 480a5d547adSRandall Stewart asoc->primary_destination, SCTP_FROM_SCTP_INPUT + SCTP_LOC_4); 481a5d547adSRandall Stewart 482a5d547adSRandall Stewart /* calculate the RTO */ 48318e198d3SRandall Stewart net->RTO = sctp_calculate_rto(stcb, asoc, net, &asoc->time_entered, sctp_align_safe_nocopy); 484f8829a4aSRandall Stewart 485f8829a4aSRandall Stewart retval = sctp_send_cookie_echo(m, offset, stcb, net); 486f8829a4aSRandall Stewart if (retval < 0) { 487f8829a4aSRandall Stewart /* 488f8829a4aSRandall Stewart * No cookie, we probably should send a op error. But in any 489f8829a4aSRandall Stewart * case if there is no cookie in the INIT-ACK, we can 490f8829a4aSRandall Stewart * abandon the peer, its broke. 491f8829a4aSRandall Stewart */ 492f8829a4aSRandall Stewart if (retval == -3) { 493f8829a4aSRandall Stewart /* We abort with an error of missing mandatory param */ 494f8829a4aSRandall Stewart op_err = 495f8829a4aSRandall Stewart sctp_generate_invmanparam(SCTP_CAUSE_MISSING_PARAM); 496f8829a4aSRandall Stewart if (op_err) { 497f8829a4aSRandall Stewart /* 498f8829a4aSRandall Stewart * Expand beyond to include the mandatory 499f8829a4aSRandall Stewart * param cookie 500f8829a4aSRandall Stewart */ 501f8829a4aSRandall Stewart struct sctp_inv_mandatory_param *mp; 502f8829a4aSRandall Stewart 503139bc87fSRandall Stewart SCTP_BUF_LEN(op_err) = 504f8829a4aSRandall Stewart sizeof(struct sctp_inv_mandatory_param); 505f8829a4aSRandall Stewart mp = mtod(op_err, 506f8829a4aSRandall Stewart struct sctp_inv_mandatory_param *); 507f8829a4aSRandall Stewart /* Subtract the reserved param */ 508f8829a4aSRandall Stewart mp->length = 509f8829a4aSRandall Stewart htons(sizeof(struct sctp_inv_mandatory_param) - 2); 510f8829a4aSRandall Stewart mp->num_param = htonl(1); 511f8829a4aSRandall Stewart mp->param = htons(SCTP_STATE_COOKIE); 512f8829a4aSRandall Stewart mp->resv = 0; 513f8829a4aSRandall Stewart } 514f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, 515c54a18d2SRandall Stewart sh, op_err, 0, net->port); 516bff64a4dSRandall Stewart *abort_no_unlock = 1; 517f8829a4aSRandall Stewart } 518f8829a4aSRandall Stewart return (retval); 519f8829a4aSRandall Stewart } 520f8829a4aSRandall Stewart return (0); 521f8829a4aSRandall Stewart } 522f8829a4aSRandall Stewart 523f8829a4aSRandall Stewart static void 524f8829a4aSRandall Stewart sctp_handle_heartbeat_ack(struct sctp_heartbeat_chunk *cp, 525f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net) 526f8829a4aSRandall Stewart { 527f8829a4aSRandall Stewart struct sockaddr_storage store; 528f8829a4aSRandall Stewart struct sockaddr_in *sin; 529f8829a4aSRandall Stewart struct sockaddr_in6 *sin6; 53052129fcdSRandall Stewart struct sctp_nets *r_net, *f_net; 531f8829a4aSRandall Stewart struct timeval tv; 532d55b0b1bSRandall Stewart int req_prim = 0; 533f8829a4aSRandall Stewart 534f8829a4aSRandall Stewart if (ntohs(cp->ch.chunk_length) != sizeof(struct sctp_heartbeat_chunk)) { 535f8829a4aSRandall Stewart /* Invalid length */ 536f8829a4aSRandall Stewart return; 537f8829a4aSRandall Stewart } 538f8829a4aSRandall Stewart sin = (struct sockaddr_in *)&store; 539f8829a4aSRandall Stewart sin6 = (struct sockaddr_in6 *)&store; 540f8829a4aSRandall Stewart 541f8829a4aSRandall Stewart memset(&store, 0, sizeof(store)); 542f8829a4aSRandall Stewart if (cp->heartbeat.hb_info.addr_family == AF_INET && 543f8829a4aSRandall Stewart cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in)) { 544f8829a4aSRandall Stewart sin->sin_family = cp->heartbeat.hb_info.addr_family; 545f8829a4aSRandall Stewart sin->sin_len = cp->heartbeat.hb_info.addr_len; 546f8829a4aSRandall Stewart sin->sin_port = stcb->rport; 547f8829a4aSRandall Stewart memcpy(&sin->sin_addr, cp->heartbeat.hb_info.address, 548f8829a4aSRandall Stewart sizeof(sin->sin_addr)); 549f8829a4aSRandall Stewart } else if (cp->heartbeat.hb_info.addr_family == AF_INET6 && 550f8829a4aSRandall Stewart cp->heartbeat.hb_info.addr_len == sizeof(struct sockaddr_in6)) { 551f8829a4aSRandall Stewart sin6->sin6_family = cp->heartbeat.hb_info.addr_family; 552f8829a4aSRandall Stewart sin6->sin6_len = cp->heartbeat.hb_info.addr_len; 553f8829a4aSRandall Stewart sin6->sin6_port = stcb->rport; 554f8829a4aSRandall Stewart memcpy(&sin6->sin6_addr, cp->heartbeat.hb_info.address, 555f8829a4aSRandall Stewart sizeof(sin6->sin6_addr)); 556f8829a4aSRandall Stewart } else { 557f8829a4aSRandall Stewart return; 558f8829a4aSRandall Stewart } 559f8829a4aSRandall Stewart r_net = sctp_findnet(stcb, (struct sockaddr *)sin); 560f8829a4aSRandall Stewart if (r_net == NULL) { 561ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Huh? I can't find the address I sent it to, discard\n"); 562f8829a4aSRandall Stewart return; 563f8829a4aSRandall Stewart } 564f8829a4aSRandall Stewart if ((r_net && (r_net->dest_state & SCTP_ADDR_UNCONFIRMED)) && 565f8829a4aSRandall Stewart (r_net->heartbeat_random1 == cp->heartbeat.hb_info.random_value1) && 566f8829a4aSRandall Stewart (r_net->heartbeat_random2 == cp->heartbeat.hb_info.random_value2)) { 567f8829a4aSRandall Stewart /* 568f8829a4aSRandall Stewart * If the its a HB and it's random value is correct when can 569f8829a4aSRandall Stewart * confirm the destination. 570f8829a4aSRandall Stewart */ 571f8829a4aSRandall Stewart r_net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 57242551e99SRandall Stewart if (r_net->dest_state & SCTP_ADDR_REQ_PRIMARY) { 57342551e99SRandall Stewart stcb->asoc.primary_destination = r_net; 57442551e99SRandall Stewart r_net->dest_state &= ~SCTP_ADDR_WAS_PRIMARY; 57542551e99SRandall Stewart r_net->dest_state &= ~SCTP_ADDR_REQ_PRIMARY; 57652129fcdSRandall Stewart f_net = TAILQ_FIRST(&stcb->asoc.nets); 57752129fcdSRandall Stewart if (f_net != r_net) { 57842551e99SRandall Stewart /* 57942551e99SRandall Stewart * first one on the list is NOT the primary 58042551e99SRandall Stewart * sctp_cmpaddr() is much more efficent if 58142551e99SRandall Stewart * the primary is the first on the list, 58242551e99SRandall Stewart * make it so. 58342551e99SRandall Stewart */ 58452129fcdSRandall Stewart TAILQ_REMOVE(&stcb->asoc.nets, r_net, sctp_next); 58552129fcdSRandall Stewart TAILQ_INSERT_HEAD(&stcb->asoc.nets, r_net, sctp_next); 58642551e99SRandall Stewart } 587d55b0b1bSRandall Stewart req_prim = 1; 58842551e99SRandall Stewart } 589f8829a4aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 590ceaad40aSRandall Stewart stcb, 0, (void *)r_net, SCTP_SO_NOT_LOCKED); 591f8829a4aSRandall Stewart } 592f8829a4aSRandall Stewart r_net->error_count = 0; 593f8829a4aSRandall Stewart r_net->hb_responded = 1; 594f8829a4aSRandall Stewart tv.tv_sec = cp->heartbeat.hb_info.time_value_1; 595f8829a4aSRandall Stewart tv.tv_usec = cp->heartbeat.hb_info.time_value_2; 596f8829a4aSRandall Stewart if (r_net->dest_state & SCTP_ADDR_NOT_REACHABLE) { 597f8829a4aSRandall Stewart r_net->dest_state &= ~SCTP_ADDR_NOT_REACHABLE; 598f8829a4aSRandall Stewart r_net->dest_state |= SCTP_ADDR_REACHABLE; 599f8829a4aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb, 600ceaad40aSRandall Stewart SCTP_HEARTBEAT_SUCCESS, (void *)r_net, SCTP_SO_NOT_LOCKED); 601f8829a4aSRandall Stewart /* now was it the primary? if so restore */ 602f8829a4aSRandall Stewart if (r_net->dest_state & SCTP_ADDR_WAS_PRIMARY) { 603ad81507eSRandall Stewart (void)sctp_set_primary_addr(stcb, (struct sockaddr *)NULL, r_net); 604f8829a4aSRandall Stewart } 605f8829a4aSRandall Stewart } 606b54d3a6cSRandall Stewart /* 607b54d3a6cSRandall Stewart * JRS 5/14/07 - If CMT PF is on and the destination is in PF state, 608b54d3a6cSRandall Stewart * set the destination to active state and set the cwnd to one or 609b54d3a6cSRandall Stewart * two MTU's based on whether PF1 or PF2 is being used. If a T3 610b54d3a6cSRandall Stewart * timer is running, for the destination, stop the timer because a 611b54d3a6cSRandall Stewart * PF-heartbeat was received. 612b54d3a6cSRandall Stewart */ 6137c99d56fSMichael Tuexen if ((stcb->asoc.sctp_cmt_on_off > 0) && 61420083c2eSMichael Tuexen (stcb->asoc.sctp_cmt_pf > 0) && 61520083c2eSMichael Tuexen ((net->dest_state & SCTP_ADDR_PF) == SCTP_ADDR_PF)) { 616b54d3a6cSRandall Stewart if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 617b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 618b54d3a6cSRandall Stewart stcb, net, 619b54d3a6cSRandall Stewart SCTP_FROM_SCTP_INPUT + SCTP_LOC_5); 620b54d3a6cSRandall Stewart } 621b54d3a6cSRandall Stewart net->dest_state &= ~SCTP_ADDR_PF; 62220083c2eSMichael Tuexen net->cwnd = net->mtu * stcb->asoc.sctp_cmt_pf; 623b54d3a6cSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Destination %p moved from PF to reachable with cwnd %d.\n", 624b54d3a6cSRandall Stewart net, net->cwnd); 625b54d3a6cSRandall Stewart } 626f8829a4aSRandall Stewart /* Now lets do a RTO with this */ 62718e198d3SRandall Stewart r_net->RTO = sctp_calculate_rto(stcb, &stcb->asoc, r_net, &tv, sctp_align_safe_nocopy); 628d55b0b1bSRandall Stewart /* Mobility adaptation */ 629d55b0b1bSRandall Stewart if (req_prim) { 630d55b0b1bSRandall Stewart if ((sctp_is_mobility_feature_on(stcb->sctp_ep, 631d55b0b1bSRandall Stewart SCTP_MOBILITY_BASE) || 632d55b0b1bSRandall Stewart sctp_is_mobility_feature_on(stcb->sctp_ep, 633d55b0b1bSRandall Stewart SCTP_MOBILITY_FASTHANDOFF)) && 634d55b0b1bSRandall Stewart sctp_is_mobility_feature_on(stcb->sctp_ep, 635d55b0b1bSRandall Stewart SCTP_MOBILITY_PRIM_DELETED)) { 636d55b0b1bSRandall Stewart 637d55b0b1bSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_PRIM_DELETED, stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_TIMER + SCTP_LOC_7); 638d55b0b1bSRandall Stewart if (sctp_is_mobility_feature_on(stcb->sctp_ep, 639d55b0b1bSRandall Stewart SCTP_MOBILITY_FASTHANDOFF)) { 640d55b0b1bSRandall Stewart sctp_assoc_immediate_retrans(stcb, 641d55b0b1bSRandall Stewart stcb->asoc.primary_destination); 642d55b0b1bSRandall Stewart } 643d55b0b1bSRandall Stewart if (sctp_is_mobility_feature_on(stcb->sctp_ep, 644d55b0b1bSRandall Stewart SCTP_MOBILITY_BASE)) { 6459eea4a2dSMichael Tuexen sctp_move_chunks_from_net(stcb, 6469eea4a2dSMichael Tuexen stcb->asoc.deleted_primary); 647d55b0b1bSRandall Stewart } 648d55b0b1bSRandall Stewart sctp_delete_prim_timer(stcb->sctp_ep, stcb, 649d55b0b1bSRandall Stewart stcb->asoc.deleted_primary); 650d55b0b1bSRandall Stewart } 651d55b0b1bSRandall Stewart } 652f8829a4aSRandall Stewart } 653f8829a4aSRandall Stewart 654830d754dSRandall Stewart static int 655830d754dSRandall Stewart sctp_handle_nat_colliding_state(struct sctp_tcb *stcb) 656830d754dSRandall Stewart { 657830d754dSRandall Stewart /* 658830d754dSRandall Stewart * return 0 means we want you to proceed with the abort non-zero 659830d754dSRandall Stewart * means no abort processing 660830d754dSRandall Stewart */ 661830d754dSRandall Stewart struct sctpasochead *head; 662830d754dSRandall Stewart 663830d754dSRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_WAIT) { 664830d754dSRandall Stewart /* generate a new vtag and send init */ 665830d754dSRandall Stewart LIST_REMOVE(stcb, sctp_asocs); 666830d754dSRandall Stewart stcb->asoc.my_vtag = sctp_select_a_tag(stcb->sctp_ep, stcb->sctp_ep->sctp_lport, stcb->rport, 1); 667830d754dSRandall Stewart head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, SCTP_BASE_INFO(hashasocmark))]; 668830d754dSRandall Stewart /* 669830d754dSRandall Stewart * put it in the bucket in the vtag hash of assoc's for the 670830d754dSRandall Stewart * system 671830d754dSRandall Stewart */ 672830d754dSRandall Stewart LIST_INSERT_HEAD(head, stcb, sctp_asocs); 673830d754dSRandall Stewart sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 674830d754dSRandall Stewart return (1); 675830d754dSRandall Stewart } 676830d754dSRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) { 677830d754dSRandall Stewart /* 678830d754dSRandall Stewart * treat like a case where the cookie expired i.e.: - dump 679830d754dSRandall Stewart * current cookie. - generate a new vtag. - resend init. 680830d754dSRandall Stewart */ 681830d754dSRandall Stewart /* generate a new vtag and send init */ 682830d754dSRandall Stewart LIST_REMOVE(stcb, sctp_asocs); 683830d754dSRandall Stewart stcb->asoc.state &= ~SCTP_STATE_COOKIE_ECHOED; 684830d754dSRandall Stewart stcb->asoc.state |= SCTP_STATE_COOKIE_WAIT; 685830d754dSRandall Stewart sctp_stop_all_cookie_timers(stcb); 686830d754dSRandall Stewart sctp_toss_old_cookies(stcb, &stcb->asoc); 687830d754dSRandall Stewart stcb->asoc.my_vtag = sctp_select_a_tag(stcb->sctp_ep, stcb->sctp_ep->sctp_lport, stcb->rport, 1); 688830d754dSRandall Stewart head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, SCTP_BASE_INFO(hashasocmark))]; 689830d754dSRandall Stewart /* 690830d754dSRandall Stewart * put it in the bucket in the vtag hash of assoc's for the 691830d754dSRandall Stewart * system 692830d754dSRandall Stewart */ 693830d754dSRandall Stewart LIST_INSERT_HEAD(head, stcb, sctp_asocs); 694830d754dSRandall Stewart sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 695830d754dSRandall Stewart return (1); 696830d754dSRandall Stewart } 697830d754dSRandall Stewart return (0); 698830d754dSRandall Stewart } 699830d754dSRandall Stewart 700830d754dSRandall Stewart static int 701830d754dSRandall Stewart sctp_handle_nat_missing_state(struct sctp_tcb *stcb, 702830d754dSRandall Stewart struct sctp_nets *net) 703830d754dSRandall Stewart { 704830d754dSRandall Stewart /* 705830d754dSRandall Stewart * return 0 means we want you to proceed with the abort non-zero 706830d754dSRandall Stewart * means no abort processing 707830d754dSRandall Stewart */ 708830d754dSRandall Stewart if (stcb->asoc.peer_supports_auth == 0) { 709830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_nat_missing_state: Peer does not support AUTH, cannot send an asconf\n"); 710830d754dSRandall Stewart return (0); 711830d754dSRandall Stewart } 712830d754dSRandall Stewart sctp_asconf_send_nat_state_update(stcb, net); 713830d754dSRandall Stewart return (1); 714830d754dSRandall Stewart } 715830d754dSRandall Stewart 716830d754dSRandall Stewart 717f8829a4aSRandall Stewart static void 718f8829a4aSRandall Stewart sctp_handle_abort(struct sctp_abort_chunk *cp, 719f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net) 720f8829a4aSRandall Stewart { 721ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 722ceaad40aSRandall Stewart struct socket *so; 723ceaad40aSRandall Stewart 724ceaad40aSRandall Stewart #endif 725830d754dSRandall Stewart uint16_t len; 726ceaad40aSRandall Stewart 727ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_abort: handling ABORT\n"); 728f8829a4aSRandall Stewart if (stcb == NULL) 729f8829a4aSRandall Stewart return; 730f8829a4aSRandall Stewart 731830d754dSRandall Stewart len = ntohs(cp->ch.chunk_length); 732830d754dSRandall Stewart if (len > sizeof(struct sctp_chunkhdr)) { 733830d754dSRandall Stewart /* 734830d754dSRandall Stewart * Need to check the cause codes for our two magic nat 735830d754dSRandall Stewart * aborts which don't kill the assoc necessarily. 736830d754dSRandall Stewart */ 737830d754dSRandall Stewart struct sctp_abort_chunk *cpnext; 738830d754dSRandall Stewart struct sctp_missing_nat_state *natc; 739830d754dSRandall Stewart uint16_t cause; 740830d754dSRandall Stewart 741830d754dSRandall Stewart cpnext = cp; 742830d754dSRandall Stewart cpnext++; 743830d754dSRandall Stewart natc = (struct sctp_missing_nat_state *)cpnext; 744830d754dSRandall Stewart cause = ntohs(natc->cause); 745830d754dSRandall Stewart if (cause == SCTP_CAUSE_NAT_COLLIDING_STATE) { 746830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Received Colliding state abort flags:%x\n", 747830d754dSRandall Stewart cp->ch.chunk_flags); 748830d754dSRandall Stewart if (sctp_handle_nat_colliding_state(stcb)) { 749830d754dSRandall Stewart return; 750830d754dSRandall Stewart } 751830d754dSRandall Stewart } else if (cause == SCTP_CAUSE_NAT_MISSING_STATE) { 752830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Received missing state abort flags:%x\n", 753830d754dSRandall Stewart cp->ch.chunk_flags); 754830d754dSRandall Stewart if (sctp_handle_nat_missing_state(stcb, net)) { 755830d754dSRandall Stewart return; 756830d754dSRandall Stewart } 757830d754dSRandall Stewart } 758830d754dSRandall Stewart } 759f8829a4aSRandall Stewart /* stop any receive timers */ 760b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_6); 761f8829a4aSRandall Stewart /* notify user of the abort and clean up... */ 762ceaad40aSRandall Stewart sctp_abort_notification(stcb, 0, SCTP_SO_NOT_LOCKED); 763f8829a4aSRandall Stewart /* free the tcb */ 764d55b0b1bSRandall Stewart #if defined(SCTP_PANIC_ON_ABORT) 765d55b0b1bSRandall Stewart printf("stcb:%p state:%d rport:%d net:%p\n", 766d55b0b1bSRandall Stewart stcb, stcb->asoc.state, stcb->rport, net); 767d55b0b1bSRandall Stewart if (!(stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET)) { 768d55b0b1bSRandall Stewart panic("Received an ABORT"); 769d55b0b1bSRandall Stewart } else { 770d55b0b1bSRandall Stewart printf("No panic its in state %x closed\n", stcb->asoc.state); 771d55b0b1bSRandall Stewart } 772d55b0b1bSRandall Stewart #endif 773f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_aborted); 774f8829a4aSRandall Stewart if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) || 775f8829a4aSRandall Stewart (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 776f8829a4aSRandall Stewart SCTP_STAT_DECR_GAUGE32(sctps_currestab); 777f8829a4aSRandall Stewart } 778f1f73e57SRandall Stewart #ifdef SCTP_ASOCLOG_OF_TSNS 779f1f73e57SRandall Stewart sctp_print_out_track_log(stcb); 780f1f73e57SRandall Stewart #endif 781ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 782ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 783ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 784ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 785ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 786ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 787ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 788ceaad40aSRandall Stewart #endif 7892afb3e84SRandall Stewart stcb->asoc.state |= SCTP_STATE_WAS_ABORTED; 790c4739e2fSRandall Stewart (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 791c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT + SCTP_LOC_6); 792ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 793ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 794ceaad40aSRandall Stewart #endif 795ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_handle_abort: finished\n"); 796f8829a4aSRandall Stewart } 797f8829a4aSRandall Stewart 798f8829a4aSRandall Stewart static void 799f8829a4aSRandall Stewart sctp_handle_shutdown(struct sctp_shutdown_chunk *cp, 800f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net, int *abort_flag) 801f8829a4aSRandall Stewart { 802f8829a4aSRandall Stewart struct sctp_association *asoc; 803f8829a4aSRandall Stewart int some_on_streamwheel; 804f8829a4aSRandall Stewart 805ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 806ceaad40aSRandall Stewart struct socket *so; 807ceaad40aSRandall Stewart 808ceaad40aSRandall Stewart #endif 809ceaad40aSRandall Stewart 810ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 811ad81507eSRandall Stewart "sctp_handle_shutdown: handling SHUTDOWN\n"); 812f8829a4aSRandall Stewart if (stcb == NULL) 813f8829a4aSRandall Stewart return; 814a5d547adSRandall Stewart asoc = &stcb->asoc; 815a5d547adSRandall Stewart if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 816a5d547adSRandall Stewart (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 817f8829a4aSRandall Stewart return; 818f8829a4aSRandall Stewart } 819f8829a4aSRandall Stewart if (ntohs(cp->ch.chunk_length) != sizeof(struct sctp_shutdown_chunk)) { 820f8829a4aSRandall Stewart /* Shutdown NOT the expected size */ 821f8829a4aSRandall Stewart return; 822f8829a4aSRandall Stewart } else { 823f8829a4aSRandall Stewart sctp_update_acked(stcb, cp, net, abort_flag); 8247e6206afSMichael Tuexen if (*abort_flag) { 8257e6206afSMichael Tuexen return; 8267e6206afSMichael Tuexen } 827f8829a4aSRandall Stewart } 828a5d547adSRandall Stewart if (asoc->control_pdapi) { 829f8829a4aSRandall Stewart /* 830f8829a4aSRandall Stewart * With a normal shutdown we assume the end of last record. 831f8829a4aSRandall Stewart */ 832f8829a4aSRandall Stewart SCTP_INP_READ_LOCK(stcb->sctp_ep); 833a5d547adSRandall Stewart asoc->control_pdapi->end_added = 1; 834a5d547adSRandall Stewart asoc->control_pdapi->pdapi_aborted = 1; 835a5d547adSRandall Stewart asoc->control_pdapi = NULL; 836f8829a4aSRandall Stewart SCTP_INP_READ_UNLOCK(stcb->sctp_ep); 837ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 838ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 839ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 840ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 841ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 842ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 843ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 844ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 845ceaad40aSRandall Stewart /* assoc was freed while we were unlocked */ 846ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 847ceaad40aSRandall Stewart return; 848ceaad40aSRandall Stewart } 849ceaad40aSRandall Stewart #endif 85050cec919SRandall Stewart sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket); 851ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 852ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 853ceaad40aSRandall Stewart #endif 854f8829a4aSRandall Stewart } 855f8829a4aSRandall Stewart /* goto SHUTDOWN_RECEIVED state to block new requests */ 856f8829a4aSRandall Stewart if (stcb->sctp_socket) { 857f8829a4aSRandall Stewart if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 858d61a0ae0SRandall Stewart (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT) && 859f8829a4aSRandall Stewart (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT)) { 860c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_RECEIVED); 861b201f536SRandall Stewart SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 862f8829a4aSRandall Stewart /* 863f8829a4aSRandall Stewart * notify upper layer that peer has initiated a 864f8829a4aSRandall Stewart * shutdown 865f8829a4aSRandall Stewart */ 866ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_PEER_SHUTDOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 867f8829a4aSRandall Stewart 868f8829a4aSRandall Stewart /* reset time */ 8696e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 870f8829a4aSRandall Stewart } 871f8829a4aSRandall Stewart } 872f8829a4aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) { 873f8829a4aSRandall Stewart /* 874f8829a4aSRandall Stewart * stop the shutdown timer, since we WILL move to 875f8829a4aSRandall Stewart * SHUTDOWN-ACK-SENT. 876f8829a4aSRandall Stewart */ 877b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_8); 878f8829a4aSRandall Stewart } 8795bead436SRandall Stewart /* Now is there unsent data on a stream somewhere? */ 8805bead436SRandall Stewart some_on_streamwheel = sctp_is_there_unsent_data(stcb); 881f8829a4aSRandall Stewart 882f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&asoc->send_queue) || 883f8829a4aSRandall Stewart !TAILQ_EMPTY(&asoc->sent_queue) || 884f8829a4aSRandall Stewart some_on_streamwheel) { 885f8829a4aSRandall Stewart /* By returning we will push more data out */ 886f8829a4aSRandall Stewart return; 887f8829a4aSRandall Stewart } else { 888f8829a4aSRandall Stewart /* no outstanding data to send, so move on... */ 889f8829a4aSRandall Stewart /* send SHUTDOWN-ACK */ 890f8829a4aSRandall Stewart sctp_send_shutdown_ack(stcb, stcb->asoc.primary_destination); 891f8829a4aSRandall Stewart /* move to SHUTDOWN-ACK-SENT state */ 892f42a358aSRandall Stewart if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 893f42a358aSRandall Stewart (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 894f8829a4aSRandall Stewart SCTP_STAT_DECR_GAUGE32(sctps_currestab); 895f8829a4aSRandall Stewart } 896c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_ACK_SENT); 897b201f536SRandall Stewart SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 89812af6654SMichael Tuexen sctp_stop_timers_for_shutdown(stcb); 899f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK, stcb->sctp_ep, 900f8829a4aSRandall Stewart stcb, net); 901f8829a4aSRandall Stewart } 902f8829a4aSRandall Stewart } 903f8829a4aSRandall Stewart 904f8829a4aSRandall Stewart static void 905f8829a4aSRandall Stewart sctp_handle_shutdown_ack(struct sctp_shutdown_ack_chunk *cp, 9067b470fc3SMichael Tuexen struct sctp_tcb *stcb, 9077b470fc3SMichael Tuexen struct sctp_nets *net) 908f8829a4aSRandall Stewart { 909f8829a4aSRandall Stewart struct sctp_association *asoc; 910f8829a4aSRandall Stewart 911ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 912ceaad40aSRandall Stewart struct socket *so; 913ceaad40aSRandall Stewart 914ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 915ceaad40aSRandall Stewart #endif 916ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 917ad81507eSRandall Stewart "sctp_handle_shutdown_ack: handling SHUTDOWN ACK\n"); 918f8829a4aSRandall Stewart if (stcb == NULL) 919f8829a4aSRandall Stewart return; 920f8829a4aSRandall Stewart 921f8829a4aSRandall Stewart asoc = &stcb->asoc; 922f8829a4aSRandall Stewart /* process according to association state */ 9237b470fc3SMichael Tuexen if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 9247b470fc3SMichael Tuexen (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 9257b470fc3SMichael Tuexen /* unexpected SHUTDOWN-ACK... do OOTB handling... */ 9267b470fc3SMichael Tuexen sctp_send_shutdown_complete(stcb, net, 1); 9277b470fc3SMichael Tuexen SCTP_TCB_UNLOCK(stcb); 9287b470fc3SMichael Tuexen return; 9297b470fc3SMichael Tuexen } 930f8829a4aSRandall Stewart if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 931f8829a4aSRandall Stewart (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 932f8829a4aSRandall Stewart /* unexpected SHUTDOWN-ACK... so ignore... */ 933f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 934f8829a4aSRandall Stewart return; 935f8829a4aSRandall Stewart } 936a5d547adSRandall Stewart if (asoc->control_pdapi) { 937f8829a4aSRandall Stewart /* 938f8829a4aSRandall Stewart * With a normal shutdown we assume the end of last record. 939f8829a4aSRandall Stewart */ 940f8829a4aSRandall Stewart SCTP_INP_READ_LOCK(stcb->sctp_ep); 941a5d547adSRandall Stewart asoc->control_pdapi->end_added = 1; 942a5d547adSRandall Stewart asoc->control_pdapi->pdapi_aborted = 1; 943a5d547adSRandall Stewart asoc->control_pdapi = NULL; 944f8829a4aSRandall Stewart SCTP_INP_READ_UNLOCK(stcb->sctp_ep); 945ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 946ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 947ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 948ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 949ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 950ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 951ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 952ceaad40aSRandall Stewart /* assoc was freed while we were unlocked */ 953ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 954ceaad40aSRandall Stewart return; 955ceaad40aSRandall Stewart } 956ceaad40aSRandall Stewart #endif 95750cec919SRandall Stewart sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket); 958ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 959ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 960ceaad40aSRandall Stewart #endif 961f8829a4aSRandall Stewart } 962f8829a4aSRandall Stewart /* are the queues empty? */ 963f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&asoc->send_queue) || 964f8829a4aSRandall Stewart !TAILQ_EMPTY(&asoc->sent_queue) || 965f7a77f6fSMichael Tuexen !stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 966ceaad40aSRandall Stewart sctp_report_all_outbound(stcb, 0, SCTP_SO_NOT_LOCKED); 967f8829a4aSRandall Stewart } 968f8829a4aSRandall Stewart /* stop the timer */ 969b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_9); 970f8829a4aSRandall Stewart /* send SHUTDOWN-COMPLETE */ 9717b470fc3SMichael Tuexen sctp_send_shutdown_complete(stcb, net, 0); 972f8829a4aSRandall Stewart /* notify upper layer protocol */ 973f8829a4aSRandall Stewart if (stcb->sctp_socket) { 974ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 975f8829a4aSRandall Stewart if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 976f8829a4aSRandall Stewart (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 977f8829a4aSRandall Stewart /* Set the connected flag to disconnected */ 978f8829a4aSRandall Stewart stcb->sctp_ep->sctp_socket->so_snd.sb_cc = 0; 979f8829a4aSRandall Stewart } 980f8829a4aSRandall Stewart } 981f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_shutdown); 982f8829a4aSRandall Stewart /* free the TCB but first save off the ep */ 983ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 984ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 985ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 986ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 987ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 988ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 989ceaad40aSRandall Stewart #endif 990c4739e2fSRandall Stewart (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 991b54d3a6cSRandall Stewart SCTP_FROM_SCTP_INPUT + SCTP_LOC_10); 992ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 993ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 994ceaad40aSRandall Stewart #endif 995f8829a4aSRandall Stewart } 996f8829a4aSRandall Stewart 997f8829a4aSRandall Stewart /* 998f8829a4aSRandall Stewart * Skip past the param header and then we will find the chunk that caused the 999f8829a4aSRandall Stewart * problem. There are two possiblities ASCONF or FWD-TSN other than that and 1000f8829a4aSRandall Stewart * our peer must be broken. 1001f8829a4aSRandall Stewart */ 1002f8829a4aSRandall Stewart static void 1003f8829a4aSRandall Stewart sctp_process_unrecog_chunk(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr, 1004f8829a4aSRandall Stewart struct sctp_nets *net) 1005f8829a4aSRandall Stewart { 1006f8829a4aSRandall Stewart struct sctp_chunkhdr *chk; 1007f8829a4aSRandall Stewart 1008f8829a4aSRandall Stewart chk = (struct sctp_chunkhdr *)((caddr_t)phdr + sizeof(*phdr)); 1009f8829a4aSRandall Stewart switch (chk->chunk_type) { 1010f8829a4aSRandall Stewart case SCTP_ASCONF_ACK: 1011f8829a4aSRandall Stewart case SCTP_ASCONF: 1012f8829a4aSRandall Stewart sctp_asconf_cleanup(stcb, net); 1013f8829a4aSRandall Stewart break; 1014f8829a4aSRandall Stewart case SCTP_FORWARD_CUM_TSN: 1015f8829a4aSRandall Stewart stcb->asoc.peer_supports_prsctp = 0; 1016f8829a4aSRandall Stewart break; 1017f8829a4aSRandall Stewart default: 1018ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 1019ad81507eSRandall Stewart "Peer does not support chunk type %d(%x)??\n", 1020f8829a4aSRandall Stewart chk->chunk_type, (uint32_t) chk->chunk_type); 1021f8829a4aSRandall Stewart break; 1022f8829a4aSRandall Stewart } 1023f8829a4aSRandall Stewart } 1024f8829a4aSRandall Stewart 1025f8829a4aSRandall Stewart /* 1026f8829a4aSRandall Stewart * Skip past the param header and then we will find the param that caused the 1027f8829a4aSRandall Stewart * problem. There are a number of param's in a ASCONF OR the prsctp param 1028f8829a4aSRandall Stewart * these will turn of specific features. 1029f8829a4aSRandall Stewart */ 1030f8829a4aSRandall Stewart static void 1031f8829a4aSRandall Stewart sctp_process_unrecog_param(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr) 1032f8829a4aSRandall Stewart { 1033f8829a4aSRandall Stewart struct sctp_paramhdr *pbad; 1034f8829a4aSRandall Stewart 1035f8829a4aSRandall Stewart pbad = phdr + 1; 1036f8829a4aSRandall Stewart switch (ntohs(pbad->param_type)) { 1037f8829a4aSRandall Stewart /* pr-sctp draft */ 1038f8829a4aSRandall Stewart case SCTP_PRSCTP_SUPPORTED: 1039f8829a4aSRandall Stewart stcb->asoc.peer_supports_prsctp = 0; 1040f8829a4aSRandall Stewart break; 1041f8829a4aSRandall Stewart case SCTP_SUPPORTED_CHUNK_EXT: 1042f8829a4aSRandall Stewart break; 1043f8829a4aSRandall Stewart /* draft-ietf-tsvwg-addip-sctp */ 1044830d754dSRandall Stewart case SCTP_HAS_NAT_SUPPORT: 1045830d754dSRandall Stewart stcb->asoc.peer_supports_nat = 0; 1046830d754dSRandall Stewart break; 1047f8829a4aSRandall Stewart case SCTP_ECN_NONCE_SUPPORTED: 1048f8829a4aSRandall Stewart stcb->asoc.peer_supports_ecn_nonce = 0; 1049f8829a4aSRandall Stewart stcb->asoc.ecn_nonce_allowed = 0; 1050f8829a4aSRandall Stewart stcb->asoc.ecn_allowed = 0; 1051f8829a4aSRandall Stewart break; 1052f8829a4aSRandall Stewart case SCTP_ADD_IP_ADDRESS: 1053f8829a4aSRandall Stewart case SCTP_DEL_IP_ADDRESS: 1054f8829a4aSRandall Stewart case SCTP_SET_PRIM_ADDR: 1055f8829a4aSRandall Stewart stcb->asoc.peer_supports_asconf = 0; 1056f8829a4aSRandall Stewart break; 1057f8829a4aSRandall Stewart case SCTP_SUCCESS_REPORT: 1058f8829a4aSRandall Stewart case SCTP_ERROR_CAUSE_IND: 1059ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Huh, the peer does not support success? or error cause?\n"); 1060ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 1061ad81507eSRandall Stewart "Turning off ASCONF to this strange peer\n"); 1062f8829a4aSRandall Stewart stcb->asoc.peer_supports_asconf = 0; 1063f8829a4aSRandall Stewart break; 1064f8829a4aSRandall Stewart default: 1065ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 1066ad81507eSRandall Stewart "Peer does not support param type %d(%x)??\n", 1067f8829a4aSRandall Stewart pbad->param_type, (uint32_t) pbad->param_type); 1068f8829a4aSRandall Stewart break; 1069f8829a4aSRandall Stewart } 1070f8829a4aSRandall Stewart } 1071f8829a4aSRandall Stewart 1072f8829a4aSRandall Stewart static int 1073f8829a4aSRandall Stewart sctp_handle_error(struct sctp_chunkhdr *ch, 1074f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net) 1075f8829a4aSRandall Stewart { 1076f8829a4aSRandall Stewart int chklen; 1077f8829a4aSRandall Stewart struct sctp_paramhdr *phdr; 1078f8829a4aSRandall Stewart uint16_t error_type; 1079f8829a4aSRandall Stewart uint16_t error_len; 1080f8829a4aSRandall Stewart struct sctp_association *asoc; 1081f8829a4aSRandall Stewart int adjust; 1082f8829a4aSRandall Stewart 1083ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1084ceaad40aSRandall Stewart struct socket *so; 1085ceaad40aSRandall Stewart 1086ceaad40aSRandall Stewart #endif 1087ceaad40aSRandall Stewart 1088f8829a4aSRandall Stewart /* parse through all of the errors and process */ 1089f8829a4aSRandall Stewart asoc = &stcb->asoc; 1090f8829a4aSRandall Stewart phdr = (struct sctp_paramhdr *)((caddr_t)ch + 1091f8829a4aSRandall Stewart sizeof(struct sctp_chunkhdr)); 1092f8829a4aSRandall Stewart chklen = ntohs(ch->chunk_length) - sizeof(struct sctp_chunkhdr); 1093f8829a4aSRandall Stewart while ((size_t)chklen >= sizeof(struct sctp_paramhdr)) { 1094f8829a4aSRandall Stewart /* Process an Error Cause */ 1095f8829a4aSRandall Stewart error_type = ntohs(phdr->param_type); 1096f8829a4aSRandall Stewart error_len = ntohs(phdr->param_length); 1097f8829a4aSRandall Stewart if ((error_len > chklen) || (error_len == 0)) { 1098f8829a4aSRandall Stewart /* invalid param length for this param */ 1099ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Bogus length in error param- chunk left:%d errorlen:%d\n", 1100f8829a4aSRandall Stewart chklen, error_len); 1101f8829a4aSRandall Stewart return (0); 1102f8829a4aSRandall Stewart } 1103f8829a4aSRandall Stewart switch (error_type) { 1104f8829a4aSRandall Stewart case SCTP_CAUSE_INVALID_STREAM: 1105f8829a4aSRandall Stewart case SCTP_CAUSE_MISSING_PARAM: 1106f8829a4aSRandall Stewart case SCTP_CAUSE_INVALID_PARAM: 1107f8829a4aSRandall Stewart case SCTP_CAUSE_NO_USER_DATA: 1108ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Software error we got a %d back? We have a bug :/ (or do they?)\n", 1109f8829a4aSRandall Stewart error_type); 1110f8829a4aSRandall Stewart break; 1111830d754dSRandall Stewart case SCTP_CAUSE_NAT_COLLIDING_STATE: 1112830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Received Colliding state abort flags:%x\n", 1113830d754dSRandall Stewart ch->chunk_flags); 1114830d754dSRandall Stewart if (sctp_handle_nat_colliding_state(stcb)) { 1115830d754dSRandall Stewart return (0); 1116830d754dSRandall Stewart } 1117830d754dSRandall Stewart break; 1118830d754dSRandall Stewart case SCTP_CAUSE_NAT_MISSING_STATE: 1119830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Received missing state abort flags:%x\n", 1120830d754dSRandall Stewart ch->chunk_flags); 1121830d754dSRandall Stewart if (sctp_handle_nat_missing_state(stcb, net)) { 1122830d754dSRandall Stewart return (0); 1123830d754dSRandall Stewart } 1124830d754dSRandall Stewart break; 1125f8829a4aSRandall Stewart case SCTP_CAUSE_STALE_COOKIE: 1126f8829a4aSRandall Stewart /* 1127f8829a4aSRandall Stewart * We only act if we have echoed a cookie and are 1128f8829a4aSRandall Stewart * waiting. 1129f8829a4aSRandall Stewart */ 1130f8829a4aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) { 1131f8829a4aSRandall Stewart int *p; 1132f8829a4aSRandall Stewart 1133f8829a4aSRandall Stewart p = (int *)((caddr_t)phdr + sizeof(*phdr)); 1134f8829a4aSRandall Stewart /* Save the time doubled */ 1135f8829a4aSRandall Stewart asoc->cookie_preserve_req = ntohl(*p) << 1; 1136f8829a4aSRandall Stewart asoc->stale_cookie_count++; 1137f8829a4aSRandall Stewart if (asoc->stale_cookie_count > 1138f8829a4aSRandall Stewart asoc->max_init_times) { 1139ceaad40aSRandall Stewart sctp_abort_notification(stcb, 0, SCTP_SO_NOT_LOCKED); 1140f8829a4aSRandall Stewart /* now free the asoc */ 1141ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1142ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 1143ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 1144ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 1145ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 1146ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 1147ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 1148ceaad40aSRandall Stewart #endif 1149c4739e2fSRandall Stewart (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, 1150c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT + SCTP_LOC_11); 1151ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1152ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 1153ceaad40aSRandall Stewart #endif 1154f8829a4aSRandall Stewart return (-1); 1155f8829a4aSRandall Stewart } 1156f8829a4aSRandall Stewart /* blast back to INIT state */ 1157830d754dSRandall Stewart sctp_toss_old_cookies(stcb, &stcb->asoc); 1158f8829a4aSRandall Stewart asoc->state &= ~SCTP_STATE_COOKIE_ECHOED; 1159f8829a4aSRandall Stewart asoc->state |= SCTP_STATE_COOKIE_WAIT; 1160f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1161ceaad40aSRandall Stewart sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 1162f8829a4aSRandall Stewart } 1163f8829a4aSRandall Stewart break; 1164f8829a4aSRandall Stewart case SCTP_CAUSE_UNRESOLVABLE_ADDR: 1165f8829a4aSRandall Stewart /* 1166f8829a4aSRandall Stewart * Nothing we can do here, we don't do hostname 1167f8829a4aSRandall Stewart * addresses so if the peer does not like my IPv6 1168f8829a4aSRandall Stewart * (or IPv4 for that matter) it does not matter. If 1169f8829a4aSRandall Stewart * they don't support that type of address, they can 1170f8829a4aSRandall Stewart * NOT possibly get that packet type... i.e. with no 1171f8829a4aSRandall Stewart * IPv6 you can't recieve a IPv6 packet. so we can 1172f8829a4aSRandall Stewart * safely ignore this one. If we ever added support 1173f8829a4aSRandall Stewart * for HOSTNAME Addresses, then we would need to do 1174f8829a4aSRandall Stewart * something here. 1175f8829a4aSRandall Stewart */ 1176f8829a4aSRandall Stewart break; 1177f8829a4aSRandall Stewart case SCTP_CAUSE_UNRECOG_CHUNK: 1178f8829a4aSRandall Stewart sctp_process_unrecog_chunk(stcb, phdr, net); 1179f8829a4aSRandall Stewart break; 1180f8829a4aSRandall Stewart case SCTP_CAUSE_UNRECOG_PARAM: 1181f8829a4aSRandall Stewart sctp_process_unrecog_param(stcb, phdr); 1182f8829a4aSRandall Stewart break; 1183f8829a4aSRandall Stewart case SCTP_CAUSE_COOKIE_IN_SHUTDOWN: 1184f8829a4aSRandall Stewart /* 1185f8829a4aSRandall Stewart * We ignore this since the timer will drive out a 1186f8829a4aSRandall Stewart * new cookie anyway and there timer will drive us 1187f8829a4aSRandall Stewart * to send a SHUTDOWN_COMPLETE. We can't send one 1188f8829a4aSRandall Stewart * here since we don't have their tag. 1189f8829a4aSRandall Stewart */ 1190f8829a4aSRandall Stewart break; 1191f8829a4aSRandall Stewart case SCTP_CAUSE_DELETING_LAST_ADDR: 1192f8829a4aSRandall Stewart case SCTP_CAUSE_RESOURCE_SHORTAGE: 1193f8829a4aSRandall Stewart case SCTP_CAUSE_DELETING_SRC_ADDR: 1194f8829a4aSRandall Stewart /* 1195f8829a4aSRandall Stewart * We should NOT get these here, but in a 119693164cf9SRandall Stewart * ASCONF-ACK. 1197f8829a4aSRandall Stewart */ 1198ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "Peer sends ASCONF errors in a Operational Error?<%d>?\n", 1199f8829a4aSRandall Stewart error_type); 1200f8829a4aSRandall Stewart break; 1201f8829a4aSRandall Stewart case SCTP_CAUSE_OUT_OF_RESC: 1202f8829a4aSRandall Stewart /* 1203f8829a4aSRandall Stewart * And what, pray tell do we do with the fact that 1204f8829a4aSRandall Stewart * the peer is out of resources? Not really sure we 120593164cf9SRandall Stewart * could do anything but abort. I suspect this 1206f8829a4aSRandall Stewart * should have came WITH an abort instead of in a 1207f8829a4aSRandall Stewart * OP-ERROR. 1208f8829a4aSRandall Stewart */ 1209f8829a4aSRandall Stewart break; 1210f8829a4aSRandall Stewart default: 1211ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "sctp_handle_error: unknown error type = 0x%xh\n", 1212f8829a4aSRandall Stewart error_type); 1213f8829a4aSRandall Stewart break; 1214f8829a4aSRandall Stewart } 1215f8829a4aSRandall Stewart adjust = SCTP_SIZE32(error_len); 1216f8829a4aSRandall Stewart chklen -= adjust; 1217f8829a4aSRandall Stewart phdr = (struct sctp_paramhdr *)((caddr_t)phdr + adjust); 1218f8829a4aSRandall Stewart } 1219f8829a4aSRandall Stewart return (0); 1220f8829a4aSRandall Stewart } 1221f8829a4aSRandall Stewart 1222f8829a4aSRandall Stewart static int 122317205eccSRandall Stewart sctp_handle_init_ack(struct mbuf *m, int iphlen, int offset, 122417205eccSRandall Stewart struct sctphdr *sh, struct sctp_init_ack_chunk *cp, struct sctp_tcb *stcb, 1225ad21a364SRandall Stewart struct sctp_nets *net, int *abort_no_unlock, uint32_t vrf_id) 1226f8829a4aSRandall Stewart { 1227f8829a4aSRandall Stewart struct sctp_init_ack *init_ack; 1228f8829a4aSRandall Stewart struct mbuf *op_err; 1229f8829a4aSRandall Stewart 1230ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 1231ad81507eSRandall Stewart "sctp_handle_init_ack: handling INIT-ACK\n"); 1232ad81507eSRandall Stewart 1233f8829a4aSRandall Stewart if (stcb == NULL) { 1234ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 1235ad81507eSRandall Stewart "sctp_handle_init_ack: TCB is null\n"); 1236f8829a4aSRandall Stewart return (-1); 1237f8829a4aSRandall Stewart } 1238f8829a4aSRandall Stewart if (ntohs(cp->ch.chunk_length) < sizeof(struct sctp_init_ack_chunk)) { 1239f8829a4aSRandall Stewart /* Invalid length */ 1240f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 1241f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 1242c54a18d2SRandall Stewart op_err, 0, net->port); 1243bff64a4dSRandall Stewart *abort_no_unlock = 1; 1244f8829a4aSRandall Stewart return (-1); 1245f8829a4aSRandall Stewart } 1246f8829a4aSRandall Stewart init_ack = &cp->init; 1247f8829a4aSRandall Stewart /* validate parameters */ 1248f8829a4aSRandall Stewart if (init_ack->initiate_tag == 0) { 1249f8829a4aSRandall Stewart /* protocol error... send an abort */ 1250f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 1251f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 1252c54a18d2SRandall Stewart op_err, 0, net->port); 1253bff64a4dSRandall Stewart *abort_no_unlock = 1; 1254f8829a4aSRandall Stewart return (-1); 1255f8829a4aSRandall Stewart } 1256f8829a4aSRandall Stewart if (ntohl(init_ack->a_rwnd) < SCTP_MIN_RWND) { 1257f8829a4aSRandall Stewart /* protocol error... send an abort */ 1258f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 1259f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 1260c54a18d2SRandall Stewart op_err, 0, net->port); 1261bff64a4dSRandall Stewart *abort_no_unlock = 1; 1262f8829a4aSRandall Stewart return (-1); 1263f8829a4aSRandall Stewart } 1264f8829a4aSRandall Stewart if (init_ack->num_inbound_streams == 0) { 1265f8829a4aSRandall Stewart /* protocol error... send an abort */ 1266f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 1267f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 1268c54a18d2SRandall Stewart op_err, 0, net->port); 1269bff64a4dSRandall Stewart *abort_no_unlock = 1; 1270f8829a4aSRandall Stewart return (-1); 1271f8829a4aSRandall Stewart } 1272f8829a4aSRandall Stewart if (init_ack->num_outbound_streams == 0) { 1273f8829a4aSRandall Stewart /* protocol error... send an abort */ 1274f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_INVALID_PARAM); 1275f8829a4aSRandall Stewart sctp_abort_association(stcb->sctp_ep, stcb, m, iphlen, sh, 1276c54a18d2SRandall Stewart op_err, 0, net->port); 1277bff64a4dSRandall Stewart *abort_no_unlock = 1; 1278f8829a4aSRandall Stewart return (-1); 1279f8829a4aSRandall Stewart } 1280f8829a4aSRandall Stewart /* process according to association state... */ 1281c4739e2fSRandall Stewart switch (stcb->asoc.state & SCTP_STATE_MASK) { 1282f8829a4aSRandall Stewart case SCTP_STATE_COOKIE_WAIT: 1283f8829a4aSRandall Stewart /* this is the expected state for this chunk */ 1284f8829a4aSRandall Stewart /* process the INIT-ACK parameters */ 1285f8829a4aSRandall Stewart if (stcb->asoc.primary_destination->dest_state & 1286f8829a4aSRandall Stewart SCTP_ADDR_UNCONFIRMED) { 1287f8829a4aSRandall Stewart /* 1288f8829a4aSRandall Stewart * The primary is where we sent the INIT, we can 1289f8829a4aSRandall Stewart * always consider it confirmed when the INIT-ACK is 1290f8829a4aSRandall Stewart * returned. Do this before we load addresses 1291f8829a4aSRandall Stewart * though. 1292f8829a4aSRandall Stewart */ 1293f8829a4aSRandall Stewart stcb->asoc.primary_destination->dest_state &= 1294f8829a4aSRandall Stewart ~SCTP_ADDR_UNCONFIRMED; 1295f8829a4aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 1296ceaad40aSRandall Stewart stcb, 0, (void *)stcb->asoc.primary_destination, SCTP_SO_NOT_LOCKED); 1297f8829a4aSRandall Stewart } 129817205eccSRandall Stewart if (sctp_process_init_ack(m, iphlen, offset, sh, cp, stcb, 1299ad21a364SRandall Stewart net, abort_no_unlock, vrf_id) < 0) { 1300f8829a4aSRandall Stewart /* error in parsing parameters */ 1301f8829a4aSRandall Stewart return (-1); 1302f8829a4aSRandall Stewart } 1303f8829a4aSRandall Stewart /* update our state */ 1304ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "moving to COOKIE-ECHOED state\n"); 1305c4739e2fSRandall Stewart SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_ECHOED); 1306f8829a4aSRandall Stewart 1307f8829a4aSRandall Stewart /* reset the RTO calc */ 1308b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 1309c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 1310c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 1311c4739e2fSRandall Stewart 0, 1312c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 1313c4739e2fSRandall Stewart __LINE__); 1314c4739e2fSRandall Stewart } 1315f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 13166e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 1317f8829a4aSRandall Stewart /* 1318f8829a4aSRandall Stewart * collapse the init timer back in case of a exponential 1319a5d547adSRandall Stewart * backoff 1320f8829a4aSRandall Stewart */ 1321f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, stcb->sctp_ep, 1322f8829a4aSRandall Stewart stcb, net); 1323f8829a4aSRandall Stewart /* 1324f8829a4aSRandall Stewart * the send at the end of the inbound data processing will 1325f8829a4aSRandall Stewart * cause the cookie to be sent 1326f8829a4aSRandall Stewart */ 1327f8829a4aSRandall Stewart break; 1328f8829a4aSRandall Stewart case SCTP_STATE_SHUTDOWN_SENT: 1329f8829a4aSRandall Stewart /* incorrect state... discard */ 1330f8829a4aSRandall Stewart break; 1331f8829a4aSRandall Stewart case SCTP_STATE_COOKIE_ECHOED: 1332f8829a4aSRandall Stewart /* incorrect state... discard */ 1333f8829a4aSRandall Stewart break; 1334f8829a4aSRandall Stewart case SCTP_STATE_OPEN: 1335f8829a4aSRandall Stewart /* incorrect state... discard */ 1336f8829a4aSRandall Stewart break; 1337f8829a4aSRandall Stewart case SCTP_STATE_EMPTY: 1338f8829a4aSRandall Stewart case SCTP_STATE_INUSE: 1339f8829a4aSRandall Stewart default: 1340f8829a4aSRandall Stewart /* incorrect state... discard */ 1341f8829a4aSRandall Stewart return (-1); 1342f8829a4aSRandall Stewart break; 1343f8829a4aSRandall Stewart } 1344ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Leaving handle-init-ack end\n"); 1345f8829a4aSRandall Stewart return (0); 1346f8829a4aSRandall Stewart } 1347f8829a4aSRandall Stewart 1348830d754dSRandall Stewart static struct sctp_tcb * 1349830d754dSRandall Stewart sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset, 1350830d754dSRandall Stewart struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 1351830d754dSRandall Stewart struct sctp_inpcb *inp, struct sctp_nets **netp, 1352830d754dSRandall Stewart struct sockaddr *init_src, int *notification, 1353830d754dSRandall Stewart int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 1354830d754dSRandall Stewart uint32_t vrf_id, uint16_t port); 1355830d754dSRandall Stewart 1356f8829a4aSRandall Stewart 1357f8829a4aSRandall Stewart /* 1358f8829a4aSRandall Stewart * handle a state cookie for an existing association m: input packet mbuf 1359f8829a4aSRandall Stewart * chain-- assumes a pullup on IP/SCTP/COOKIE-ECHO chunk note: this is a 1360f8829a4aSRandall Stewart * "split" mbuf and the cookie signature does not exist offset: offset into 1361f8829a4aSRandall Stewart * mbuf to the cookie-echo chunk 1362f8829a4aSRandall Stewart */ 1363f8829a4aSRandall Stewart static struct sctp_tcb * 1364f8829a4aSRandall Stewart sctp_process_cookie_existing(struct mbuf *m, int iphlen, int offset, 1365f8829a4aSRandall Stewart struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 1366830d754dSRandall Stewart struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets **netp, 136717205eccSRandall Stewart struct sockaddr *init_src, int *notification, sctp_assoc_t * sac_assoc_id, 1368830d754dSRandall Stewart uint32_t vrf_id, int auth_skipped, uint32_t auth_offset, uint32_t auth_len, uint16_t port) 1369f8829a4aSRandall Stewart { 1370f8829a4aSRandall Stewart struct sctp_association *asoc; 1371f8829a4aSRandall Stewart struct sctp_init_chunk *init_cp, init_buf; 1372f8829a4aSRandall Stewart struct sctp_init_ack_chunk *initack_cp, initack_buf; 1373830d754dSRandall Stewart struct sctp_nets *net; 1374830d754dSRandall Stewart struct mbuf *op_err; 1375830d754dSRandall Stewart struct sctp_paramhdr *ph; 1376f8829a4aSRandall Stewart int chk_length; 1377a5d547adSRandall Stewart int init_offset, initack_offset, i; 1378f8829a4aSRandall Stewart int retval; 13797f34832bSRandall Stewart int spec_flag = 0; 13804c9179adSRandall Stewart uint32_t how_indx; 1381f8829a4aSRandall Stewart 1382830d754dSRandall Stewart net = *netp; 1383f8829a4aSRandall Stewart /* I know that the TCB is non-NULL from the caller */ 1384f8829a4aSRandall Stewart asoc = &stcb->asoc; 1385f42a358aSRandall Stewart for (how_indx = 0; how_indx < sizeof(asoc->cookie_how); how_indx++) { 138644b7479bSRandall Stewart if (asoc->cookie_how[how_indx] == 0) 138744b7479bSRandall Stewart break; 138844b7479bSRandall Stewart } 138944b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) { 139044b7479bSRandall Stewart asoc->cookie_how[how_indx] = 1; 139144b7479bSRandall Stewart } 1392f8829a4aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 1393f8829a4aSRandall Stewart /* SHUTDOWN came in after sending INIT-ACK */ 1394f8829a4aSRandall Stewart sctp_send_shutdown_ack(stcb, stcb->asoc.primary_destination); 1395f8829a4aSRandall Stewart op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 1396139bc87fSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 1397f8829a4aSRandall Stewart if (op_err == NULL) { 1398f8829a4aSRandall Stewart /* FOOBAR */ 1399f8829a4aSRandall Stewart return (NULL); 1400f8829a4aSRandall Stewart } 1401f8829a4aSRandall Stewart /* Set the len */ 1402139bc87fSRandall Stewart SCTP_BUF_LEN(op_err) = sizeof(struct sctp_paramhdr); 1403f8829a4aSRandall Stewart ph = mtod(op_err, struct sctp_paramhdr *); 1404f8829a4aSRandall Stewart ph->param_type = htons(SCTP_CAUSE_COOKIE_IN_SHUTDOWN); 1405f8829a4aSRandall Stewart ph->param_length = htons(sizeof(struct sctp_paramhdr)); 140617205eccSRandall Stewart sctp_send_operr_to(m, iphlen, op_err, cookie->peers_vtag, 1407c54a18d2SRandall Stewart vrf_id, net->port); 140844b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 140944b7479bSRandall Stewart asoc->cookie_how[how_indx] = 2; 1410f8829a4aSRandall Stewart return (NULL); 1411f8829a4aSRandall Stewart } 1412f8829a4aSRandall Stewart /* 1413f8829a4aSRandall Stewart * find and validate the INIT chunk in the cookie (peer's info) the 1414f8829a4aSRandall Stewart * INIT should start after the cookie-echo header struct (chunk 1415f8829a4aSRandall Stewart * header, state cookie header struct) 1416f8829a4aSRandall Stewart */ 1417f8829a4aSRandall Stewart init_offset = offset += sizeof(struct sctp_cookie_echo_chunk); 1418f8829a4aSRandall Stewart 1419f8829a4aSRandall Stewart init_cp = (struct sctp_init_chunk *) 1420f8829a4aSRandall Stewart sctp_m_getptr(m, init_offset, sizeof(struct sctp_init_chunk), 1421f8829a4aSRandall Stewart (uint8_t *) & init_buf); 1422f8829a4aSRandall Stewart if (init_cp == NULL) { 1423f8829a4aSRandall Stewart /* could not pull a INIT chunk in cookie */ 1424f8829a4aSRandall Stewart return (NULL); 1425f8829a4aSRandall Stewart } 1426f8829a4aSRandall Stewart chk_length = ntohs(init_cp->ch.chunk_length); 1427f8829a4aSRandall Stewart if (init_cp->ch.chunk_type != SCTP_INITIATION) { 1428f8829a4aSRandall Stewart return (NULL); 1429f8829a4aSRandall Stewart } 1430f8829a4aSRandall Stewart /* 1431f8829a4aSRandall Stewart * find and validate the INIT-ACK chunk in the cookie (my info) the 1432f8829a4aSRandall Stewart * INIT-ACK follows the INIT chunk 1433f8829a4aSRandall Stewart */ 1434f8829a4aSRandall Stewart initack_offset = init_offset + SCTP_SIZE32(chk_length); 1435f8829a4aSRandall Stewart initack_cp = (struct sctp_init_ack_chunk *) 1436f8829a4aSRandall Stewart sctp_m_getptr(m, initack_offset, sizeof(struct sctp_init_ack_chunk), 1437f8829a4aSRandall Stewart (uint8_t *) & initack_buf); 1438f8829a4aSRandall Stewart if (initack_cp == NULL) { 1439f8829a4aSRandall Stewart /* could not pull INIT-ACK chunk in cookie */ 1440f8829a4aSRandall Stewart return (NULL); 1441f8829a4aSRandall Stewart } 1442f8829a4aSRandall Stewart chk_length = ntohs(initack_cp->ch.chunk_length); 1443f8829a4aSRandall Stewart if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { 1444f8829a4aSRandall Stewart return (NULL); 1445f8829a4aSRandall Stewart } 1446f8829a4aSRandall Stewart if ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1447f8829a4aSRandall Stewart (ntohl(init_cp->init.initiate_tag) == asoc->peer_vtag)) { 1448f8829a4aSRandall Stewart /* 1449f8829a4aSRandall Stewart * case D in Section 5.2.4 Table 2: MMAA process accordingly 1450f8829a4aSRandall Stewart * to get into the OPEN state 1451f8829a4aSRandall Stewart */ 145244b7479bSRandall Stewart if (ntohl(initack_cp->init.initial_tsn) != asoc->init_seq_number) { 1453851b7298SRandall Stewart /*- 1454851b7298SRandall Stewart * Opps, this means that we somehow generated two vtag's 1455851b7298SRandall Stewart * the same. I.e. we did: 1456851b7298SRandall Stewart * Us Peer 1457851b7298SRandall Stewart * <---INIT(tag=a)------ 1458851b7298SRandall Stewart * ----INIT-ACK(tag=t)--> 1459851b7298SRandall Stewart * ----INIT(tag=t)------> *1 1460851b7298SRandall Stewart * <---INIT-ACK(tag=a)--- 1461851b7298SRandall Stewart * <----CE(tag=t)------------- *2 1462851b7298SRandall Stewart * 1463851b7298SRandall Stewart * At point *1 we should be generating a different 1464851b7298SRandall Stewart * tag t'. Which means we would throw away the CE and send 1465851b7298SRandall Stewart * ours instead. Basically this is case C (throw away side). 1466851b7298SRandall Stewart */ 1467851b7298SRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 1468851b7298SRandall Stewart asoc->cookie_how[how_indx] = 17; 1469851b7298SRandall Stewart return (NULL); 1470851b7298SRandall Stewart 147144b7479bSRandall Stewart } 1472f8829a4aSRandall Stewart switch SCTP_GET_STATE 1473f8829a4aSRandall Stewart (asoc) { 1474f8829a4aSRandall Stewart case SCTP_STATE_COOKIE_WAIT: 147544b7479bSRandall Stewart case SCTP_STATE_COOKIE_ECHOED: 1476f8829a4aSRandall Stewart /* 147717205eccSRandall Stewart * INIT was sent but got a COOKIE_ECHO with the 147844b7479bSRandall Stewart * correct tags... just accept it...but we must 147944b7479bSRandall Stewart * process the init so that we can make sure we have 148044b7479bSRandall Stewart * the right seq no's. 1481f8829a4aSRandall Stewart */ 1482f8829a4aSRandall Stewart /* First we must process the INIT !! */ 1483f8829a4aSRandall Stewart retval = sctp_process_init(init_cp, stcb, net); 1484f8829a4aSRandall Stewart if (retval < 0) { 148544b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 148644b7479bSRandall Stewart asoc->cookie_how[how_indx] = 3; 1487f8829a4aSRandall Stewart return (NULL); 1488f8829a4aSRandall Stewart } 1489f8829a4aSRandall Stewart /* we have already processed the INIT so no problem */ 1490f8829a4aSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, 1491b54d3a6cSRandall Stewart net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_12); 1492b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_13); 1493f8829a4aSRandall Stewart /* update current state */ 1494f42a358aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) 1495f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 1496f42a358aSRandall Stewart else 1497f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1498c4739e2fSRandall Stewart 1499c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1500f8829a4aSRandall Stewart if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1501f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1502f8829a4aSRandall Stewart stcb->sctp_ep, stcb, asoc->primary_destination); 1503f8829a4aSRandall Stewart } 1504f42a358aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1505a5d547adSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1506f8829a4aSRandall Stewart if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1507f8829a4aSRandall Stewart (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 1508f8829a4aSRandall Stewart (inp->sctp_socket->so_qlimit == 0) 1509f8829a4aSRandall Stewart ) { 1510ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1511ceaad40aSRandall Stewart struct socket *so; 1512ceaad40aSRandall Stewart 1513ceaad40aSRandall Stewart #endif 1514f8829a4aSRandall Stewart /* 1515f8829a4aSRandall Stewart * Here is where collision would go if we 1516f8829a4aSRandall Stewart * did a connect() and instead got a 1517f8829a4aSRandall Stewart * init/init-ack/cookie done before the 1518f8829a4aSRandall Stewart * init-ack came back.. 1519f8829a4aSRandall Stewart */ 1520f8829a4aSRandall Stewart stcb->sctp_ep->sctp_flags |= 1521f8829a4aSRandall Stewart SCTP_PCB_FLAGS_CONNECTED; 1522ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1523ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 1524ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 1525ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 1526ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 1527ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 1528ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, -1); 1529ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 1530ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 1531ceaad40aSRandall Stewart return (NULL); 1532ceaad40aSRandall Stewart } 1533ceaad40aSRandall Stewart #endif 1534ceaad40aSRandall Stewart soisconnected(stcb->sctp_socket); 1535ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1536ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 1537ceaad40aSRandall Stewart #endif 1538f8829a4aSRandall Stewart } 1539f8829a4aSRandall Stewart /* notify upper layer */ 1540f8829a4aSRandall Stewart *notification = SCTP_NOTIFY_ASSOC_UP; 1541f8829a4aSRandall Stewart /* 1542f8829a4aSRandall Stewart * since we did not send a HB make sure we don't 1543f8829a4aSRandall Stewart * double things 1544f8829a4aSRandall Stewart */ 1545f8829a4aSRandall Stewart net->hb_responded = 1; 15469a972525SRandall Stewart net->RTO = sctp_calculate_rto(stcb, asoc, net, 154718e198d3SRandall Stewart &cookie->time_entered, sctp_align_unsafe_makecopy); 1548f8829a4aSRandall Stewart 1549f8829a4aSRandall Stewart if (stcb->asoc.sctp_autoclose_ticks && 1550f8829a4aSRandall Stewart (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE))) { 1551f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, 1552f8829a4aSRandall Stewart inp, stcb, NULL); 1553f8829a4aSRandall Stewart } 1554f8829a4aSRandall Stewart break; 1555f8829a4aSRandall Stewart default: 1556f8829a4aSRandall Stewart /* 1557f8829a4aSRandall Stewart * we're in the OPEN state (or beyond), so peer must 1558f8829a4aSRandall Stewart * have simply lost the COOKIE-ACK 1559f8829a4aSRandall Stewart */ 1560f8829a4aSRandall Stewart break; 1561f8829a4aSRandall Stewart } /* end switch */ 1562a5d547adSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1563f8829a4aSRandall Stewart /* 1564f8829a4aSRandall Stewart * We ignore the return code here.. not sure if we should 1565f8829a4aSRandall Stewart * somehow abort.. but we do have an existing asoc. This 1566f8829a4aSRandall Stewart * really should not fail. 1567f8829a4aSRandall Stewart */ 1568f8829a4aSRandall Stewart if (sctp_load_addresses_from_init(stcb, m, iphlen, 1569f8829a4aSRandall Stewart init_offset + sizeof(struct sctp_init_chunk), 1570f8829a4aSRandall Stewart initack_offset, sh, init_src)) { 157144b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 157244b7479bSRandall Stewart asoc->cookie_how[how_indx] = 4; 1573f8829a4aSRandall Stewart return (NULL); 1574f8829a4aSRandall Stewart } 1575f8829a4aSRandall Stewart /* respond with a COOKIE-ACK */ 1576a5d547adSRandall Stewart sctp_toss_old_cookies(stcb, asoc); 1577f8829a4aSRandall Stewart sctp_send_cookie_ack(stcb); 157844b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 157944b7479bSRandall Stewart asoc->cookie_how[how_indx] = 5; 1580f8829a4aSRandall Stewart return (stcb); 158117205eccSRandall Stewart } 1582f8829a4aSRandall Stewart if (ntohl(initack_cp->init.initiate_tag) != asoc->my_vtag && 1583f8829a4aSRandall Stewart ntohl(init_cp->init.initiate_tag) == asoc->peer_vtag && 1584f8829a4aSRandall Stewart cookie->tie_tag_my_vtag == 0 && 1585f8829a4aSRandall Stewart cookie->tie_tag_peer_vtag == 0) { 1586f8829a4aSRandall Stewart /* 1587f8829a4aSRandall Stewart * case C in Section 5.2.4 Table 2: XMOO silently discard 1588f8829a4aSRandall Stewart */ 158944b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 159044b7479bSRandall Stewart asoc->cookie_how[how_indx] = 6; 1591f8829a4aSRandall Stewart return (NULL); 1592f8829a4aSRandall Stewart } 1593830d754dSRandall Stewart /* 1594830d754dSRandall Stewart * If nat support, and the below and stcb is established, send back 1595830d754dSRandall Stewart * a ABORT(colliding state) if we are established. 1596830d754dSRandall Stewart */ 1597830d754dSRandall Stewart if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) && 1598830d754dSRandall Stewart (asoc->peer_supports_nat) && 1599830d754dSRandall Stewart ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1600830d754dSRandall Stewart ((ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) || 1601830d754dSRandall Stewart (asoc->peer_vtag == 0)))) { 1602830d754dSRandall Stewart /* 1603830d754dSRandall Stewart * Special case - Peer's support nat. We may have two init's 1604830d754dSRandall Stewart * that we gave out the same tag on since one was not 1605830d754dSRandall Stewart * established.. i.e. we get INIT from host-1 behind the nat 1606830d754dSRandall Stewart * and we respond tag-a, we get a INIT from host-2 behind 1607830d754dSRandall Stewart * the nat and we get tag-a again. Then we bring up host-1 1608830d754dSRandall Stewart * (or 2's) assoc, Then comes the cookie from hsot-2 (or 1). 1609830d754dSRandall Stewart * Now we have colliding state. We must send an abort here 1610830d754dSRandall Stewart * with colliding state indication. 1611830d754dSRandall Stewart */ 1612830d754dSRandall Stewart op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 1613830d754dSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 1614830d754dSRandall Stewart if (op_err == NULL) { 1615830d754dSRandall Stewart /* FOOBAR */ 1616830d754dSRandall Stewart return (NULL); 1617830d754dSRandall Stewart } 1618830d754dSRandall Stewart /* pre-reserve some space */ 1619830d754dSRandall Stewart #ifdef INET6 1620830d754dSRandall Stewart SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 1621830d754dSRandall Stewart #else 1622830d754dSRandall Stewart SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 1623830d754dSRandall Stewart #endif 1624830d754dSRandall Stewart SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 1625830d754dSRandall Stewart SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 1626830d754dSRandall Stewart /* Set the len */ 1627830d754dSRandall Stewart SCTP_BUF_LEN(op_err) = sizeof(struct sctp_paramhdr); 1628830d754dSRandall Stewart ph = mtod(op_err, struct sctp_paramhdr *); 1629830d754dSRandall Stewart ph->param_type = htons(SCTP_CAUSE_NAT_COLLIDING_STATE); 1630830d754dSRandall Stewart ph->param_length = htons(sizeof(struct sctp_paramhdr)); 1631830d754dSRandall Stewart sctp_send_abort(m, iphlen, sh, 0, op_err, vrf_id, port); 1632830d754dSRandall Stewart return (NULL); 1633830d754dSRandall Stewart } 1634830d754dSRandall Stewart if ((ntohl(initack_cp->init.initiate_tag) == asoc->my_vtag) && 1635830d754dSRandall Stewart ((ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) || 1636830d754dSRandall Stewart (asoc->peer_vtag == 0))) { 1637f8829a4aSRandall Stewart /* 1638f8829a4aSRandall Stewart * case B in Section 5.2.4 Table 2: MXAA or MOAA my info 1639f8829a4aSRandall Stewart * should be ok, re-accept peer info 1640f8829a4aSRandall Stewart */ 164144b7479bSRandall Stewart if (ntohl(initack_cp->init.initial_tsn) != asoc->init_seq_number) { 164244b7479bSRandall Stewart /* 164344b7479bSRandall Stewart * Extension of case C. If we hit this, then the 164444b7479bSRandall Stewart * random number generator returned the same vtag 164544b7479bSRandall Stewart * when we first sent our INIT-ACK and when we later 164644b7479bSRandall Stewart * sent our INIT. The side with the seq numbers that 164744b7479bSRandall Stewart * are different will be the one that normnally 164844b7479bSRandall Stewart * would have hit case C. This in effect "extends" 164944b7479bSRandall Stewart * our vtags in this collision case to be 64 bits. 165044b7479bSRandall Stewart * The same collision could occur aka you get both 165144b7479bSRandall Stewart * vtag and seq number the same twice in a row.. but 165244b7479bSRandall Stewart * is much less likely. If it did happen then we 165344b7479bSRandall Stewart * would proceed through and bring up the assoc.. we 165444b7479bSRandall Stewart * may end up with the wrong stream setup however.. 165544b7479bSRandall Stewart * which would be bad.. but there is no way to 165644b7479bSRandall Stewart * tell.. until we send on a stream that does not 165744b7479bSRandall Stewart * exist :-) 165844b7479bSRandall Stewart */ 165944b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 166044b7479bSRandall Stewart asoc->cookie_how[how_indx] = 7; 166144b7479bSRandall Stewart 166244b7479bSRandall Stewart return (NULL); 166344b7479bSRandall Stewart } 166444b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 166544b7479bSRandall Stewart asoc->cookie_how[how_indx] = 8; 1666b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_14); 1667f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1668f8829a4aSRandall Stewart /* 1669f8829a4aSRandall Stewart * since we did not send a HB make sure we don't double 1670f8829a4aSRandall Stewart * things 1671f8829a4aSRandall Stewart */ 1672f8829a4aSRandall Stewart net->hb_responded = 1; 1673f8829a4aSRandall Stewart if (stcb->asoc.sctp_autoclose_ticks && 1674f8829a4aSRandall Stewart sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) { 1675f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, 1676f8829a4aSRandall Stewart NULL); 1677f8829a4aSRandall Stewart } 1678f8829a4aSRandall Stewart asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 16797f34832bSRandall Stewart asoc->pre_open_streams = ntohs(initack_cp->init.num_outbound_streams); 1680f8829a4aSRandall Stewart 16817f34832bSRandall Stewart if (ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) { 16827f34832bSRandall Stewart /* 16837f34832bSRandall Stewart * Ok the peer probably discarded our data (if we 16847f34832bSRandall Stewart * echoed a cookie+data). So anything on the 16857f34832bSRandall Stewart * sent_queue should be marked for retransmit, we 16867f34832bSRandall Stewart * may not get something to kick us so it COULD 16877f34832bSRandall Stewart * still take a timeout to move these.. but it can't 16887f34832bSRandall Stewart * hurt to mark them. 16897f34832bSRandall Stewart */ 16907f34832bSRandall Stewart struct sctp_tmit_chunk *chk; 16917f34832bSRandall Stewart 16927f34832bSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { 16937f34832bSRandall Stewart if (chk->sent < SCTP_DATAGRAM_RESEND) { 16947f34832bSRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 1695b54d3a6cSRandall Stewart sctp_flight_size_decrease(chk); 1696b54d3a6cSRandall Stewart sctp_total_flight_decrease(stcb, chk); 16975e54f665SRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 16987f34832bSRandall Stewart spec_flag++; 16997f34832bSRandall Stewart } 17007f34832bSRandall Stewart } 17017f34832bSRandall Stewart 17027f34832bSRandall Stewart } 1703f8829a4aSRandall Stewart /* process the INIT info (peer's info) */ 1704f8829a4aSRandall Stewart retval = sctp_process_init(init_cp, stcb, net); 1705f8829a4aSRandall Stewart if (retval < 0) { 170644b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 170744b7479bSRandall Stewart asoc->cookie_how[how_indx] = 9; 1708f8829a4aSRandall Stewart return (NULL); 1709f8829a4aSRandall Stewart } 1710f8829a4aSRandall Stewart if (sctp_load_addresses_from_init(stcb, m, iphlen, 1711f8829a4aSRandall Stewart init_offset + sizeof(struct sctp_init_chunk), 1712f8829a4aSRandall Stewart initack_offset, sh, init_src)) { 171344b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 171444b7479bSRandall Stewart asoc->cookie_how[how_indx] = 10; 1715f8829a4aSRandall Stewart return (NULL); 1716f8829a4aSRandall Stewart } 1717f8829a4aSRandall Stewart if ((asoc->state & SCTP_STATE_COOKIE_WAIT) || 1718f8829a4aSRandall Stewart (asoc->state & SCTP_STATE_COOKIE_ECHOED)) { 1719f8829a4aSRandall Stewart *notification = SCTP_NOTIFY_ASSOC_UP; 1720f8829a4aSRandall Stewart 1721f8829a4aSRandall Stewart if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 1722f8829a4aSRandall Stewart (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 1723f8829a4aSRandall Stewart (inp->sctp_socket->so_qlimit == 0)) { 1724ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1725ceaad40aSRandall Stewart struct socket *so; 1726ceaad40aSRandall Stewart 1727ceaad40aSRandall Stewart #endif 1728f8829a4aSRandall Stewart stcb->sctp_ep->sctp_flags |= 1729f8829a4aSRandall Stewart SCTP_PCB_FLAGS_CONNECTED; 1730ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1731ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 1732ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 1733ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 1734ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 1735ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 1736ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, -1); 1737ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 1738ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 1739ceaad40aSRandall Stewart return (NULL); 1740ceaad40aSRandall Stewart } 1741ceaad40aSRandall Stewart #endif 1742ceaad40aSRandall Stewart soisconnected(stcb->sctp_socket); 1743ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1744ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 1745ceaad40aSRandall Stewart #endif 1746f8829a4aSRandall Stewart } 1747f42a358aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) 1748f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 1749f42a358aSRandall Stewart else 1750f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1751f42a358aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1752f42a358aSRandall Stewart } else if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 1753f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_restartestab); 1754f42a358aSRandall Stewart } else { 1755f42a358aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_collisionestab); 1756f8829a4aSRandall Stewart } 1757c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1758f8829a4aSRandall Stewart if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1759f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1760f8829a4aSRandall Stewart stcb->sctp_ep, stcb, asoc->primary_destination); 1761f8829a4aSRandall Stewart } 1762f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1763a5d547adSRandall Stewart sctp_toss_old_cookies(stcb, asoc); 1764f8829a4aSRandall Stewart sctp_send_cookie_ack(stcb); 17657f34832bSRandall Stewart if (spec_flag) { 17667f34832bSRandall Stewart /* 17677f34832bSRandall Stewart * only if we have retrans set do we do this. What 17687f34832bSRandall Stewart * this call does is get only the COOKIE-ACK out and 17697f34832bSRandall Stewart * then when we return the normal call to 17707f34832bSRandall Stewart * sctp_chunk_output will get the retrans out behind 17717f34832bSRandall Stewart * this. 17727f34832bSRandall Stewart */ 1773ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_COOKIE_ACK, SCTP_SO_NOT_LOCKED); 17747f34832bSRandall Stewart } 177544b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 177644b7479bSRandall Stewart asoc->cookie_how[how_indx] = 11; 177744b7479bSRandall Stewart 1778f8829a4aSRandall Stewart return (stcb); 1779f8829a4aSRandall Stewart } 1780f8829a4aSRandall Stewart if ((ntohl(initack_cp->init.initiate_tag) != asoc->my_vtag && 1781f8829a4aSRandall Stewart ntohl(init_cp->init.initiate_tag) != asoc->peer_vtag) && 1782f8829a4aSRandall Stewart cookie->tie_tag_my_vtag == asoc->my_vtag_nonce && 1783f8829a4aSRandall Stewart cookie->tie_tag_peer_vtag == asoc->peer_vtag_nonce && 1784f8829a4aSRandall Stewart cookie->tie_tag_peer_vtag != 0) { 1785f8829a4aSRandall Stewart struct sctpasochead *head; 1786f8829a4aSRandall Stewart 1787830d754dSRandall Stewart if (asoc->peer_supports_nat) { 1788830d754dSRandall Stewart /* 1789830d754dSRandall Stewart * This is a gross gross hack. just call the 1790830d754dSRandall Stewart * cookie_new code since we are allowing a duplicate 1791830d754dSRandall Stewart * association. I hope this works... 1792830d754dSRandall Stewart */ 1793830d754dSRandall Stewart return (sctp_process_cookie_new(m, iphlen, offset, sh, cookie, cookie_len, 1794830d754dSRandall Stewart inp, netp, init_src, notification, 1795830d754dSRandall Stewart auth_skipped, auth_offset, auth_len, 1796830d754dSRandall Stewart vrf_id, port)); 1797830d754dSRandall Stewart } 1798f8829a4aSRandall Stewart /* 1799f8829a4aSRandall Stewart * case A in Section 5.2.4 Table 2: XXMM (peer restarted) 1800f8829a4aSRandall Stewart */ 1801a5d547adSRandall Stewart /* temp code */ 180244b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 180344b7479bSRandall Stewart asoc->cookie_how[how_indx] = 12; 1804b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_INIT, inp, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_15); 1805b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, inp, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_16); 1806139bc87fSRandall Stewart 1807f8829a4aSRandall Stewart *sac_assoc_id = sctp_get_associd(stcb); 1808f8829a4aSRandall Stewart /* notify upper layer */ 1809f8829a4aSRandall Stewart *notification = SCTP_NOTIFY_ASSOC_RESTART; 1810a5d547adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 1811f42a358aSRandall Stewart if ((SCTP_GET_STATE(asoc) != SCTP_STATE_OPEN) && 1812f42a358aSRandall Stewart (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 1813f42a358aSRandall Stewart (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT)) { 1814f42a358aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_currestab); 1815f42a358aSRandall Stewart } 1816f42a358aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 1817f42a358aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_restartestab); 1818f42a358aSRandall Stewart } else if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) { 1819f42a358aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_collisionestab); 1820f42a358aSRandall Stewart } 1821139bc87fSRandall Stewart if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 1822c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1823139bc87fSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1824139bc87fSRandall Stewart stcb->sctp_ep, stcb, asoc->primary_destination); 1825139bc87fSRandall Stewart 1826139bc87fSRandall Stewart } else if (!(asoc->state & SCTP_STATE_SHUTDOWN_SENT)) { 1827139bc87fSRandall Stewart /* move to OPEN state, if not in SHUTDOWN_SENT */ 1828c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 1829139bc87fSRandall Stewart } 1830139bc87fSRandall Stewart asoc->pre_open_streams = 1831139bc87fSRandall Stewart ntohs(initack_cp->init.num_outbound_streams); 1832139bc87fSRandall Stewart asoc->init_seq_number = ntohl(initack_cp->init.initial_tsn); 1833139bc87fSRandall Stewart asoc->sending_seq = asoc->asconf_seq_out = asoc->str_reset_seq_out = asoc->init_seq_number; 1834c54a18d2SRandall Stewart asoc->asconf_seq_out_acked = asoc->asconf_seq_out - 1; 1835139bc87fSRandall Stewart 1836139bc87fSRandall Stewart asoc->asconf_seq_in = asoc->last_acked_seq = asoc->init_seq_number - 1; 1837139bc87fSRandall Stewart 1838139bc87fSRandall Stewart asoc->str_reset_seq_in = asoc->init_seq_number; 1839139bc87fSRandall Stewart 1840139bc87fSRandall Stewart asoc->advanced_peer_ack_point = asoc->last_acked_seq; 18410696e120SRandall Stewart if (asoc->mapping_array) { 1842139bc87fSRandall Stewart memset(asoc->mapping_array, 0, 1843139bc87fSRandall Stewart asoc->mapping_array_size); 18440696e120SRandall Stewart } 184577acdc25SRandall Stewart if (asoc->nr_mapping_array) { 1846830d754dSRandall Stewart memset(asoc->nr_mapping_array, 0, 1847b5c16493SMichael Tuexen asoc->mapping_array_size); 1848830d754dSRandall Stewart } 1849a5d547adSRandall Stewart SCTP_TCB_UNLOCK(stcb); 1850a5d547adSRandall Stewart SCTP_INP_INFO_WLOCK(); 1851a5d547adSRandall Stewart SCTP_INP_WLOCK(stcb->sctp_ep); 1852a5d547adSRandall Stewart SCTP_TCB_LOCK(stcb); 1853a5d547adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, -1); 1854f8829a4aSRandall Stewart /* send up all the data */ 18557f34832bSRandall Stewart SCTP_TCB_SEND_LOCK(stcb); 1856f8829a4aSRandall Stewart 1857ceaad40aSRandall Stewart sctp_report_all_outbound(stcb, 1, SCTP_SO_NOT_LOCKED); 1858a5d547adSRandall Stewart for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 1859a5d547adSRandall Stewart stcb->asoc.strmout[i].stream_no = i; 1860a5d547adSRandall Stewart stcb->asoc.strmout[i].next_sequence_sent = 0; 1861a5d547adSRandall Stewart stcb->asoc.strmout[i].last_msg_incomplete = 0; 1862a5d547adSRandall Stewart } 1863f8829a4aSRandall Stewart /* process the INIT-ACK info (my info) */ 1864f8829a4aSRandall Stewart asoc->my_vtag = ntohl(initack_cp->init.initiate_tag); 1865f8829a4aSRandall Stewart asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 1866f8829a4aSRandall Stewart 1867f8829a4aSRandall Stewart /* pull from vtag hash */ 1868f8829a4aSRandall Stewart LIST_REMOVE(stcb, sctp_asocs); 1869f8829a4aSRandall Stewart /* re-insert to new vtag position */ 1870b3f1ea41SRandall Stewart head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(stcb->asoc.my_vtag, 1871b3f1ea41SRandall Stewart SCTP_BASE_INFO(hashasocmark))]; 1872f8829a4aSRandall Stewart /* 1873f8829a4aSRandall Stewart * put it in the bucket in the vtag hash of assoc's for the 1874f8829a4aSRandall Stewart * system 1875f8829a4aSRandall Stewart */ 1876f8829a4aSRandall Stewart LIST_INSERT_HEAD(head, stcb, sctp_asocs); 1877f8829a4aSRandall Stewart 1878f8829a4aSRandall Stewart /* process the INIT info (peer's info) */ 18797f34832bSRandall Stewart SCTP_TCB_SEND_UNLOCK(stcb); 1880a5d547adSRandall Stewart SCTP_INP_WUNLOCK(stcb->sctp_ep); 1881a5d547adSRandall Stewart SCTP_INP_INFO_WUNLOCK(); 1882a5d547adSRandall Stewart 1883f8829a4aSRandall Stewart retval = sctp_process_init(init_cp, stcb, net); 1884f8829a4aSRandall Stewart if (retval < 0) { 188544b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 188644b7479bSRandall Stewart asoc->cookie_how[how_indx] = 13; 188744b7479bSRandall Stewart 1888f8829a4aSRandall Stewart return (NULL); 1889f8829a4aSRandall Stewart } 1890f8829a4aSRandall Stewart /* 1891f8829a4aSRandall Stewart * since we did not send a HB make sure we don't double 1892f8829a4aSRandall Stewart * things 1893f8829a4aSRandall Stewart */ 1894f8829a4aSRandall Stewart net->hb_responded = 1; 1895f8829a4aSRandall Stewart 1896f8829a4aSRandall Stewart if (sctp_load_addresses_from_init(stcb, m, iphlen, 1897f8829a4aSRandall Stewart init_offset + sizeof(struct sctp_init_chunk), 1898f8829a4aSRandall Stewart initack_offset, sh, init_src)) { 189944b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 190044b7479bSRandall Stewart asoc->cookie_how[how_indx] = 14; 190144b7479bSRandall Stewart 1902f8829a4aSRandall Stewart return (NULL); 1903f8829a4aSRandall Stewart } 1904f8829a4aSRandall Stewart /* respond with a COOKIE-ACK */ 1905f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 1906a5d547adSRandall Stewart sctp_toss_old_cookies(stcb, asoc); 1907f8829a4aSRandall Stewart sctp_send_cookie_ack(stcb); 190844b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 190944b7479bSRandall Stewart asoc->cookie_how[how_indx] = 15; 1910f8829a4aSRandall Stewart 1911f8829a4aSRandall Stewart return (stcb); 1912f8829a4aSRandall Stewart } 191344b7479bSRandall Stewart if (how_indx < sizeof(asoc->cookie_how)) 191444b7479bSRandall Stewart asoc->cookie_how[how_indx] = 16; 1915f8829a4aSRandall Stewart /* all other cases... */ 1916f8829a4aSRandall Stewart return (NULL); 1917f8829a4aSRandall Stewart } 1918f8829a4aSRandall Stewart 191993164cf9SRandall Stewart 1920f8829a4aSRandall Stewart /* 1921f8829a4aSRandall Stewart * handle a state cookie for a new association m: input packet mbuf chain-- 1922f8829a4aSRandall Stewart * assumes a pullup on IP/SCTP/COOKIE-ECHO chunk note: this is a "split" mbuf 1923f8829a4aSRandall Stewart * and the cookie signature does not exist offset: offset into mbuf to the 1924f8829a4aSRandall Stewart * cookie-echo chunk length: length of the cookie chunk to: where the init 1925f8829a4aSRandall Stewart * was from returns a new TCB 1926f8829a4aSRandall Stewart */ 1927830d754dSRandall Stewart struct sctp_tcb * 1928f8829a4aSRandall Stewart sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset, 1929f8829a4aSRandall Stewart struct sctphdr *sh, struct sctp_state_cookie *cookie, int cookie_len, 1930f8829a4aSRandall Stewart struct sctp_inpcb *inp, struct sctp_nets **netp, 1931f8829a4aSRandall Stewart struct sockaddr *init_src, int *notification, 193217205eccSRandall Stewart int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 1933c54a18d2SRandall Stewart uint32_t vrf_id, uint16_t port) 1934f8829a4aSRandall Stewart { 1935f8829a4aSRandall Stewart struct sctp_tcb *stcb; 1936f8829a4aSRandall Stewart struct sctp_init_chunk *init_cp, init_buf; 1937f8829a4aSRandall Stewart struct sctp_init_ack_chunk *initack_cp, initack_buf; 1938f8829a4aSRandall Stewart struct sockaddr_storage sa_store; 1939f8829a4aSRandall Stewart struct sockaddr *initack_src = (struct sockaddr *)&sa_store; 1940f8829a4aSRandall Stewart struct sockaddr_in *sin; 1941f8829a4aSRandall Stewart struct sockaddr_in6 *sin6; 1942f8829a4aSRandall Stewart struct sctp_association *asoc; 1943f8829a4aSRandall Stewart int chk_length; 1944f8829a4aSRandall Stewart int init_offset, initack_offset, initack_limit; 1945f8829a4aSRandall Stewart int retval; 1946f8829a4aSRandall Stewart int error = 0; 1947f8829a4aSRandall Stewart uint32_t old_tag; 1948f42a358aSRandall Stewart uint8_t auth_chunk_buf[SCTP_PARAM_BUFFER_SIZE]; 1949f8829a4aSRandall Stewart 1950ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 1951ceaad40aSRandall Stewart struct socket *so; 1952ceaad40aSRandall Stewart 1953ceaad40aSRandall Stewart so = SCTP_INP_SO(inp); 1954ceaad40aSRandall Stewart #endif 1955ceaad40aSRandall Stewart 1956f8829a4aSRandall Stewart /* 1957f8829a4aSRandall Stewart * find and validate the INIT chunk in the cookie (peer's info) the 1958f8829a4aSRandall Stewart * INIT should start after the cookie-echo header struct (chunk 1959f8829a4aSRandall Stewart * header, state cookie header struct) 1960f8829a4aSRandall Stewart */ 1961f8829a4aSRandall Stewart init_offset = offset + sizeof(struct sctp_cookie_echo_chunk); 1962f8829a4aSRandall Stewart init_cp = (struct sctp_init_chunk *) 1963f8829a4aSRandall Stewart sctp_m_getptr(m, init_offset, sizeof(struct sctp_init_chunk), 1964f8829a4aSRandall Stewart (uint8_t *) & init_buf); 1965f8829a4aSRandall Stewart if (init_cp == NULL) { 1966f8829a4aSRandall Stewart /* could not pull a INIT chunk in cookie */ 1967ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 1968ad81507eSRandall Stewart "process_cookie_new: could not pull INIT chunk hdr\n"); 1969f8829a4aSRandall Stewart return (NULL); 1970f8829a4aSRandall Stewart } 1971f8829a4aSRandall Stewart chk_length = ntohs(init_cp->ch.chunk_length); 1972f8829a4aSRandall Stewart if (init_cp->ch.chunk_type != SCTP_INITIATION) { 1973ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "HUH? process_cookie_new: could not find INIT chunk!\n"); 1974f8829a4aSRandall Stewart return (NULL); 1975f8829a4aSRandall Stewart } 1976f8829a4aSRandall Stewart initack_offset = init_offset + SCTP_SIZE32(chk_length); 1977f8829a4aSRandall Stewart /* 1978f8829a4aSRandall Stewart * find and validate the INIT-ACK chunk in the cookie (my info) the 1979f8829a4aSRandall Stewart * INIT-ACK follows the INIT chunk 1980f8829a4aSRandall Stewart */ 1981f8829a4aSRandall Stewart initack_cp = (struct sctp_init_ack_chunk *) 1982f8829a4aSRandall Stewart sctp_m_getptr(m, initack_offset, sizeof(struct sctp_init_ack_chunk), 1983f8829a4aSRandall Stewart (uint8_t *) & initack_buf); 1984f8829a4aSRandall Stewart if (initack_cp == NULL) { 1985f8829a4aSRandall Stewart /* could not pull INIT-ACK chunk in cookie */ 1986ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "process_cookie_new: could not pull INIT-ACK chunk hdr\n"); 1987f8829a4aSRandall Stewart return (NULL); 1988f8829a4aSRandall Stewart } 1989f8829a4aSRandall Stewart chk_length = ntohs(initack_cp->ch.chunk_length); 1990f8829a4aSRandall Stewart if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { 1991f8829a4aSRandall Stewart return (NULL); 1992f8829a4aSRandall Stewart } 1993f8829a4aSRandall Stewart /* 1994f8829a4aSRandall Stewart * NOTE: We can't use the INIT_ACK's chk_length to determine the 1995f8829a4aSRandall Stewart * "initack_limit" value. This is because the chk_length field 1996f8829a4aSRandall Stewart * includes the length of the cookie, but the cookie is omitted when 1997f8829a4aSRandall Stewart * the INIT and INIT_ACK are tacked onto the cookie... 1998f8829a4aSRandall Stewart */ 1999f8829a4aSRandall Stewart initack_limit = offset + cookie_len; 2000f8829a4aSRandall Stewart 2001f8829a4aSRandall Stewart /* 2002f8829a4aSRandall Stewart * now that we know the INIT/INIT-ACK are in place, create a new TCB 2003f8829a4aSRandall Stewart * and popluate 2004f8829a4aSRandall Stewart */ 200552be287eSRandall Stewart 200652be287eSRandall Stewart /* 200752be287eSRandall Stewart * Here we do a trick, we set in NULL for the proc/thread argument. 200852be287eSRandall Stewart * We do this since in effect we only use the p argument when the 200952be287eSRandall Stewart * socket is unbound and we must do an implicit bind. Since we are 201052be287eSRandall Stewart * getting a cookie, we cannot be unbound. 201152be287eSRandall Stewart */ 2012b5c16493SMichael Tuexen stcb = sctp_aloc_assoc(inp, init_src, &error, 201352be287eSRandall Stewart ntohl(initack_cp->init.initiate_tag), vrf_id, 201452be287eSRandall Stewart (struct thread *)NULL 201552be287eSRandall Stewart ); 2016f8829a4aSRandall Stewart if (stcb == NULL) { 2017f8829a4aSRandall Stewart struct mbuf *op_err; 2018f8829a4aSRandall Stewart 2019f8829a4aSRandall Stewart /* memory problem? */ 2020ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 2021ad81507eSRandall Stewart "process_cookie_new: no room for another TCB!\n"); 2022f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_OUT_OF_RESC); 20234c9179adSRandall Stewart 2024f8829a4aSRandall Stewart sctp_abort_association(inp, (struct sctp_tcb *)NULL, m, iphlen, 2025c54a18d2SRandall Stewart sh, op_err, vrf_id, port); 2026f8829a4aSRandall Stewart return (NULL); 2027f8829a4aSRandall Stewart } 2028f8829a4aSRandall Stewart /* get the correct sctp_nets */ 2029ad81507eSRandall Stewart if (netp) 2030f8829a4aSRandall Stewart *netp = sctp_findnet(stcb, init_src); 2031ad81507eSRandall Stewart 2032f8829a4aSRandall Stewart asoc = &stcb->asoc; 2033f8829a4aSRandall Stewart /* get scope variables out of cookie */ 2034f8829a4aSRandall Stewart asoc->ipv4_local_scope = cookie->ipv4_scope; 2035f8829a4aSRandall Stewart asoc->site_scope = cookie->site_scope; 2036f8829a4aSRandall Stewart asoc->local_scope = cookie->local_scope; 2037f8829a4aSRandall Stewart asoc->loopback_scope = cookie->loopback_scope; 2038f8829a4aSRandall Stewart 2039f8829a4aSRandall Stewart if ((asoc->ipv4_addr_legal != cookie->ipv4_addr_legal) || 2040f8829a4aSRandall Stewart (asoc->ipv6_addr_legal != cookie->ipv6_addr_legal)) { 2041f8829a4aSRandall Stewart struct mbuf *op_err; 2042f8829a4aSRandall Stewart 2043f8829a4aSRandall Stewart /* 2044f8829a4aSRandall Stewart * Houston we have a problem. The EP changed while the 2045f8829a4aSRandall Stewart * cookie was in flight. Only recourse is to abort the 2046f8829a4aSRandall Stewart * association. 2047f8829a4aSRandall Stewart */ 20484c9179adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2049f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_OUT_OF_RESC); 2050f8829a4aSRandall Stewart sctp_abort_association(inp, (struct sctp_tcb *)NULL, m, iphlen, 2051c54a18d2SRandall Stewart sh, op_err, vrf_id, port); 2052ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2053ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2054ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2055ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2056ceaad40aSRandall Stewart #endif 2057c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 2058b54d3a6cSRandall Stewart SCTP_FROM_SCTP_INPUT + SCTP_LOC_16); 2059ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2060ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2061ceaad40aSRandall Stewart #endif 2062ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2063f8829a4aSRandall Stewart return (NULL); 2064f8829a4aSRandall Stewart } 2065f8829a4aSRandall Stewart /* process the INIT-ACK info (my info) */ 2066f8829a4aSRandall Stewart old_tag = asoc->my_vtag; 2067830d754dSRandall Stewart asoc->my_vtag = ntohl(initack_cp->init.initiate_tag); 2068f8829a4aSRandall Stewart asoc->my_rwnd = ntohl(initack_cp->init.a_rwnd); 2069f8829a4aSRandall Stewart asoc->pre_open_streams = ntohs(initack_cp->init.num_outbound_streams); 2070f8829a4aSRandall Stewart asoc->init_seq_number = ntohl(initack_cp->init.initial_tsn); 2071f8829a4aSRandall Stewart asoc->sending_seq = asoc->asconf_seq_out = asoc->str_reset_seq_out = asoc->init_seq_number; 2072c54a18d2SRandall Stewart asoc->asconf_seq_out_acked = asoc->asconf_seq_out - 1; 2073f8829a4aSRandall Stewart asoc->asconf_seq_in = asoc->last_acked_seq = asoc->init_seq_number - 1; 2074f8829a4aSRandall Stewart asoc->str_reset_seq_in = asoc->init_seq_number; 2075f8829a4aSRandall Stewart 2076f8829a4aSRandall Stewart asoc->advanced_peer_ack_point = asoc->last_acked_seq; 2077f8829a4aSRandall Stewart 2078f8829a4aSRandall Stewart /* process the INIT info (peer's info) */ 2079ad81507eSRandall Stewart if (netp) 2080f8829a4aSRandall Stewart retval = sctp_process_init(init_cp, stcb, *netp); 2081ad81507eSRandall Stewart else 2082ad81507eSRandall Stewart retval = 0; 2083f8829a4aSRandall Stewart if (retval < 0) { 20844c9179adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2085ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2086ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2087ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2088ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2089ceaad40aSRandall Stewart #endif 2090c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_16); 2091ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2092ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2093ceaad40aSRandall Stewart #endif 2094ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2095f8829a4aSRandall Stewart return (NULL); 2096f8829a4aSRandall Stewart } 2097f8829a4aSRandall Stewart /* load all addresses */ 2098f8829a4aSRandall Stewart if (sctp_load_addresses_from_init(stcb, m, iphlen, 2099f8829a4aSRandall Stewart init_offset + sizeof(struct sctp_init_chunk), initack_offset, sh, 2100f8829a4aSRandall Stewart init_src)) { 21014c9179adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2102ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2103ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2104ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2105ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2106ceaad40aSRandall Stewart #endif 2107c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_17); 2108ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2109ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2110ceaad40aSRandall Stewart #endif 2111ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2112f8829a4aSRandall Stewart return (NULL); 2113f8829a4aSRandall Stewart } 2114f8829a4aSRandall Stewart /* 2115f8829a4aSRandall Stewart * verify any preceding AUTH chunk that was skipped 2116f8829a4aSRandall Stewart */ 2117f8829a4aSRandall Stewart /* pull the local authentication parameters from the cookie/init-ack */ 2118f8829a4aSRandall Stewart sctp_auth_get_cookie_params(stcb, m, 2119f8829a4aSRandall Stewart initack_offset + sizeof(struct sctp_init_ack_chunk), 2120f8829a4aSRandall Stewart initack_limit - (initack_offset + sizeof(struct sctp_init_ack_chunk))); 2121f8829a4aSRandall Stewart if (auth_skipped) { 2122f8829a4aSRandall Stewart struct sctp_auth_chunk *auth; 2123f8829a4aSRandall Stewart 2124f8829a4aSRandall Stewart auth = (struct sctp_auth_chunk *) 2125f42a358aSRandall Stewart sctp_m_getptr(m, auth_offset, auth_len, auth_chunk_buf); 2126ad81507eSRandall Stewart if ((auth == NULL) || sctp_handle_auth(stcb, auth, m, auth_offset)) { 2127f8829a4aSRandall Stewart /* auth HMAC failed, dump the assoc and packet */ 2128ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_AUTH1, 2129ad81507eSRandall Stewart "COOKIE-ECHO: AUTH failed\n"); 2130b54d3a6cSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2131ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2132ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2133ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2134ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2135ceaad40aSRandall Stewart #endif 2136c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_18); 2137ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2138ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2139ceaad40aSRandall Stewart #endif 2140ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2141f8829a4aSRandall Stewart return (NULL); 2142f8829a4aSRandall Stewart } else { 2143f8829a4aSRandall Stewart /* remaining chunks checked... good to go */ 2144f8829a4aSRandall Stewart stcb->asoc.authenticated = 1; 2145f8829a4aSRandall Stewart } 2146f8829a4aSRandall Stewart } 2147f8829a4aSRandall Stewart /* update current state */ 2148ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "moving to OPEN state\n"); 2149c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 2150f8829a4aSRandall Stewart if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 2151f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 2152f8829a4aSRandall Stewart stcb->sctp_ep, stcb, asoc->primary_destination); 2153f8829a4aSRandall Stewart } 2154a5d547adSRandall Stewart sctp_stop_all_cookie_timers(stcb); 2155f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_passiveestab); 2156f8829a4aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_currestab); 2157f8829a4aSRandall Stewart 2158f8829a4aSRandall Stewart /* 2159f8829a4aSRandall Stewart * if we're doing ASCONFs, check to see if we have any new local 2160f8829a4aSRandall Stewart * addresses that need to get added to the peer (eg. addresses 2161f8829a4aSRandall Stewart * changed while cookie echo in flight). This needs to be done 2162f8829a4aSRandall Stewart * after we go to the OPEN state to do the correct asconf 2163f8829a4aSRandall Stewart * processing. else, make sure we have the correct addresses in our 2164f8829a4aSRandall Stewart * lists 2165f8829a4aSRandall Stewart */ 2166f8829a4aSRandall Stewart 2167f8829a4aSRandall Stewart /* warning, we re-use sin, sin6, sa_store here! */ 2168f8829a4aSRandall Stewart /* pull in local_address (our "from" address) */ 2169f8829a4aSRandall Stewart if (cookie->laddr_type == SCTP_IPV4_ADDRESS) { 2170f8829a4aSRandall Stewart /* source addr is IPv4 */ 2171f8829a4aSRandall Stewart sin = (struct sockaddr_in *)initack_src; 2172f8829a4aSRandall Stewart memset(sin, 0, sizeof(*sin)); 2173f8829a4aSRandall Stewart sin->sin_family = AF_INET; 2174f8829a4aSRandall Stewart sin->sin_len = sizeof(struct sockaddr_in); 2175f8829a4aSRandall Stewart sin->sin_addr.s_addr = cookie->laddress[0]; 2176f8829a4aSRandall Stewart } else if (cookie->laddr_type == SCTP_IPV6_ADDRESS) { 2177f8829a4aSRandall Stewart /* source addr is IPv6 */ 2178f8829a4aSRandall Stewart sin6 = (struct sockaddr_in6 *)initack_src; 2179f8829a4aSRandall Stewart memset(sin6, 0, sizeof(*sin6)); 2180f8829a4aSRandall Stewart sin6->sin6_family = AF_INET6; 2181f8829a4aSRandall Stewart sin6->sin6_len = sizeof(struct sockaddr_in6); 2182f8829a4aSRandall Stewart sin6->sin6_scope_id = cookie->scope_id; 2183f8829a4aSRandall Stewart memcpy(&sin6->sin6_addr, cookie->laddress, 2184f8829a4aSRandall Stewart sizeof(sin6->sin6_addr)); 2185f8829a4aSRandall Stewart } else { 21864c9179adSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2187ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2188ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2189ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2190ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2191ceaad40aSRandall Stewart #endif 2192c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_19); 2193ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2194ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2195ceaad40aSRandall Stewart #endif 2196ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2197f8829a4aSRandall Stewart return (NULL); 2198f8829a4aSRandall Stewart } 2199f8829a4aSRandall Stewart 2200f8829a4aSRandall Stewart /* set up to notify upper layer */ 2201f8829a4aSRandall Stewart *notification = SCTP_NOTIFY_ASSOC_UP; 2202f8829a4aSRandall Stewart if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2203f8829a4aSRandall Stewart (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) && 2204f8829a4aSRandall Stewart (inp->sctp_socket->so_qlimit == 0)) { 2205f8829a4aSRandall Stewart /* 2206f8829a4aSRandall Stewart * This is an endpoint that called connect() how it got a 2207f8829a4aSRandall Stewart * cookie that is NEW is a bit of a mystery. It must be that 2208f8829a4aSRandall Stewart * the INIT was sent, but before it got there.. a complete 2209f8829a4aSRandall Stewart * INIT/INIT-ACK/COOKIE arrived. But of course then it 2210f8829a4aSRandall Stewart * should have went to the other code.. not here.. oh well.. 2211f8829a4aSRandall Stewart * a bit of protection is worth having.. 2212f8829a4aSRandall Stewart */ 2213f8829a4aSRandall Stewart stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 2214ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2215ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2216ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2217ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2218ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2219ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2220ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 2221ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2222ceaad40aSRandall Stewart return (NULL); 2223ceaad40aSRandall Stewart } 2224ceaad40aSRandall Stewart #endif 2225ceaad40aSRandall Stewart soisconnected(stcb->sctp_socket); 2226ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2227ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2228ceaad40aSRandall Stewart #endif 2229f8829a4aSRandall Stewart } else if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 2230f8829a4aSRandall Stewart (inp->sctp_socket->so_qlimit)) { 2231f8829a4aSRandall Stewart /* 2232f8829a4aSRandall Stewart * We don't want to do anything with this one. Since it is 2233f8829a4aSRandall Stewart * the listening guy. The timer will get started for 2234f8829a4aSRandall Stewart * accepted connections in the caller. 2235f8829a4aSRandall Stewart */ 2236f8829a4aSRandall Stewart ; 2237f8829a4aSRandall Stewart } 2238f8829a4aSRandall Stewart /* since we did not send a HB make sure we don't double things */ 2239ad81507eSRandall Stewart if ((netp) && (*netp)) 2240f8829a4aSRandall Stewart (*netp)->hb_responded = 1; 2241f8829a4aSRandall Stewart 2242f8829a4aSRandall Stewart if (stcb->asoc.sctp_autoclose_ticks && 2243f8829a4aSRandall Stewart sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) { 2244f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, NULL); 2245f8829a4aSRandall Stewart } 2246a5d547adSRandall Stewart /* calculate the RTT */ 2247b54d3a6cSRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 22489a972525SRandall Stewart if ((netp) && (*netp)) { 2249a5d547adSRandall Stewart (*netp)->RTO = sctp_calculate_rto(stcb, asoc, *netp, 225018e198d3SRandall Stewart &cookie->time_entered, sctp_align_unsafe_makecopy); 22519a972525SRandall Stewart } 22523232788eSRandall Stewart /* respond with a COOKIE-ACK */ 2253f8829a4aSRandall Stewart sctp_send_cookie_ack(stcb); 22543232788eSRandall Stewart 22553232788eSRandall Stewart /* 22563232788eSRandall Stewart * check the address lists for any ASCONFs that need to be sent 22573232788eSRandall Stewart * AFTER the cookie-ack is sent 22583232788eSRandall Stewart */ 22593232788eSRandall Stewart sctp_check_address_list(stcb, m, 22603232788eSRandall Stewart initack_offset + sizeof(struct sctp_init_ack_chunk), 22613232788eSRandall Stewart initack_limit - (initack_offset + sizeof(struct sctp_init_ack_chunk)), 22623232788eSRandall Stewart initack_src, cookie->local_scope, cookie->site_scope, 22633232788eSRandall Stewart cookie->ipv4_scope, cookie->loopback_scope); 22643232788eSRandall Stewart 22653232788eSRandall Stewart 2266f8829a4aSRandall Stewart return (stcb); 2267f8829a4aSRandall Stewart } 2268f8829a4aSRandall Stewart 2269830d754dSRandall Stewart /* 2270830d754dSRandall Stewart * CODE LIKE THIS NEEDS TO RUN IF the peer supports the NAT extension, i.e 2271830d754dSRandall Stewart * we NEED to make sure we are not already using the vtag. If so we 2272830d754dSRandall Stewart * need to send back an ABORT-TRY-AGAIN-WITH-NEW-TAG No middle box bit! 2273830d754dSRandall Stewart head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(tag, 2274830d754dSRandall Stewart SCTP_BASE_INFO(hashasocmark))]; 2275830d754dSRandall Stewart LIST_FOREACH(stcb, head, sctp_asocs) { 2276830d754dSRandall Stewart if ((stcb->asoc.my_vtag == tag) && (stcb->rport == rport) && (inp == stcb->sctp_ep)) { 2277830d754dSRandall Stewart -- SEND ABORT - TRY AGAIN -- 2278830d754dSRandall Stewart } 2279830d754dSRandall Stewart } 2280830d754dSRandall Stewart */ 2281f8829a4aSRandall Stewart 2282f8829a4aSRandall Stewart /* 2283f8829a4aSRandall Stewart * handles a COOKIE-ECHO message stcb: modified to either a new or left as 2284f8829a4aSRandall Stewart * existing (non-NULL) TCB 2285f8829a4aSRandall Stewart */ 2286f8829a4aSRandall Stewart static struct mbuf * 2287f8829a4aSRandall Stewart sctp_handle_cookie_echo(struct mbuf *m, int iphlen, int offset, 2288f8829a4aSRandall Stewart struct sctphdr *sh, struct sctp_cookie_echo_chunk *cp, 2289f8829a4aSRandall Stewart struct sctp_inpcb **inp_p, struct sctp_tcb **stcb, struct sctp_nets **netp, 229017205eccSRandall Stewart int auth_skipped, uint32_t auth_offset, uint32_t auth_len, 2291c54a18d2SRandall Stewart struct sctp_tcb **locked_tcb, uint32_t vrf_id, uint16_t port) 2292f8829a4aSRandall Stewart { 2293f8829a4aSRandall Stewart struct sctp_state_cookie *cookie; 2294f8829a4aSRandall Stewart struct sockaddr_in6 sin6; 2295f8829a4aSRandall Stewart struct sockaddr_in sin; 2296f8829a4aSRandall Stewart struct sctp_tcb *l_stcb = *stcb; 2297f8829a4aSRandall Stewart struct sctp_inpcb *l_inp; 2298f8829a4aSRandall Stewart struct sockaddr *to; 2299f8829a4aSRandall Stewart sctp_assoc_t sac_restart_id; 2300f8829a4aSRandall Stewart struct sctp_pcb *ep; 2301f8829a4aSRandall Stewart struct mbuf *m_sig; 2302f8829a4aSRandall Stewart uint8_t calc_sig[SCTP_SIGNATURE_SIZE], tmp_sig[SCTP_SIGNATURE_SIZE]; 2303f8829a4aSRandall Stewart uint8_t *sig; 2304f8829a4aSRandall Stewart uint8_t cookie_ok = 0; 2305f8829a4aSRandall Stewart unsigned int size_of_pkt, sig_offset, cookie_offset; 2306f8829a4aSRandall Stewart unsigned int cookie_len; 2307f8829a4aSRandall Stewart struct timeval now; 2308f8829a4aSRandall Stewart struct timeval time_expires; 2309f8829a4aSRandall Stewart struct sockaddr_storage dest_store; 2310f8829a4aSRandall Stewart struct sockaddr *localep_sa = (struct sockaddr *)&dest_store; 2311f8829a4aSRandall Stewart struct ip *iph; 2312f8829a4aSRandall Stewart int notification = 0; 2313f8829a4aSRandall Stewart struct sctp_nets *netl; 2314f8829a4aSRandall Stewart int had_a_existing_tcb = 0; 23152fad0e55SMichael Tuexen int send_int_conf = 0; 2316f8829a4aSRandall Stewart 2317ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 2318ad81507eSRandall Stewart "sctp_handle_cookie: handling COOKIE-ECHO\n"); 2319f8829a4aSRandall Stewart 2320f8829a4aSRandall Stewart if (inp_p == NULL) { 2321f8829a4aSRandall Stewart return (NULL); 2322f8829a4aSRandall Stewart } 2323f8829a4aSRandall Stewart /* First get the destination address setup too. */ 2324f8829a4aSRandall Stewart iph = mtod(m, struct ip *); 23255e2c2d87SRandall Stewart switch (iph->ip_v) { 23265e2c2d87SRandall Stewart case IPVERSION: 23275e2c2d87SRandall Stewart { 2328f8829a4aSRandall Stewart /* its IPv4 */ 23294c9179adSRandall Stewart struct sockaddr_in *lsin; 2330f8829a4aSRandall Stewart 23314c9179adSRandall Stewart lsin = (struct sockaddr_in *)(localep_sa); 23324c9179adSRandall Stewart memset(lsin, 0, sizeof(*lsin)); 23334c9179adSRandall Stewart lsin->sin_family = AF_INET; 23344c9179adSRandall Stewart lsin->sin_len = sizeof(*lsin); 23354c9179adSRandall Stewart lsin->sin_port = sh->dest_port; 23364c9179adSRandall Stewart lsin->sin_addr.s_addr = iph->ip_dst.s_addr; 2337139bc87fSRandall Stewart size_of_pkt = SCTP_GET_IPV4_LENGTH(iph); 23385e2c2d87SRandall Stewart break; 23395e2c2d87SRandall Stewart } 23405e2c2d87SRandall Stewart #ifdef INET6 23415e2c2d87SRandall Stewart case IPV6_VERSION >> 4: 23425e2c2d87SRandall Stewart { 2343f8829a4aSRandall Stewart /* its IPv6 */ 2344f8829a4aSRandall Stewart struct ip6_hdr *ip6; 23454c9179adSRandall Stewart struct sockaddr_in6 *lsin6; 2346f8829a4aSRandall Stewart 23474c9179adSRandall Stewart lsin6 = (struct sockaddr_in6 *)(localep_sa); 23484c9179adSRandall Stewart memset(lsin6, 0, sizeof(*lsin6)); 23494c9179adSRandall Stewart lsin6->sin6_family = AF_INET6; 23504c9179adSRandall Stewart lsin6->sin6_len = sizeof(struct sockaddr_in6); 2351f8829a4aSRandall Stewart ip6 = mtod(m, struct ip6_hdr *); 23524c9179adSRandall Stewart lsin6->sin6_port = sh->dest_port; 23534c9179adSRandall Stewart lsin6->sin6_addr = ip6->ip6_dst; 2354f42a358aSRandall Stewart size_of_pkt = SCTP_GET_IPV6_LENGTH(ip6) + iphlen; 23555e2c2d87SRandall Stewart break; 23565e2c2d87SRandall Stewart } 23575e2c2d87SRandall Stewart #endif 23585e2c2d87SRandall Stewart default: 2359f8829a4aSRandall Stewart return (NULL); 2360f8829a4aSRandall Stewart } 2361f8829a4aSRandall Stewart 2362f8829a4aSRandall Stewart cookie = &cp->cookie; 2363f8829a4aSRandall Stewart cookie_offset = offset + sizeof(struct sctp_chunkhdr); 2364f8829a4aSRandall Stewart cookie_len = ntohs(cp->ch.chunk_length); 2365f8829a4aSRandall Stewart 2366f8829a4aSRandall Stewart if ((cookie->peerport != sh->src_port) && 2367f8829a4aSRandall Stewart (cookie->myport != sh->dest_port) && 2368f8829a4aSRandall Stewart (cookie->my_vtag != sh->v_tag)) { 2369f8829a4aSRandall Stewart /* 2370f8829a4aSRandall Stewart * invalid ports or bad tag. Note that we always leave the 2371f8829a4aSRandall Stewart * v_tag in the header in network order and when we stored 2372f8829a4aSRandall Stewart * it in the my_vtag slot we also left it in network order. 237317205eccSRandall Stewart * This maintains the match even though it may be in the 2374f8829a4aSRandall Stewart * opposite byte order of the machine :-> 2375f8829a4aSRandall Stewart */ 2376f8829a4aSRandall Stewart return (NULL); 2377f8829a4aSRandall Stewart } 2378f8829a4aSRandall Stewart if (cookie_len > size_of_pkt || 2379f8829a4aSRandall Stewart cookie_len < sizeof(struct sctp_cookie_echo_chunk) + 2380f8829a4aSRandall Stewart sizeof(struct sctp_init_chunk) + 2381f8829a4aSRandall Stewart sizeof(struct sctp_init_ack_chunk) + SCTP_SIGNATURE_SIZE) { 2382f8829a4aSRandall Stewart /* cookie too long! or too small */ 2383f8829a4aSRandall Stewart return (NULL); 2384f8829a4aSRandall Stewart } 2385f8829a4aSRandall Stewart /* 2386f8829a4aSRandall Stewart * split off the signature into its own mbuf (since it should not be 2387f8829a4aSRandall Stewart * calculated in the sctp_hmac_m() call). 2388f8829a4aSRandall Stewart */ 2389f8829a4aSRandall Stewart sig_offset = offset + cookie_len - SCTP_SIGNATURE_SIZE; 2390f8829a4aSRandall Stewart if (sig_offset > size_of_pkt) { 2391f8829a4aSRandall Stewart /* packet not correct size! */ 2392f8829a4aSRandall Stewart /* XXX this may already be accounted for earlier... */ 2393f8829a4aSRandall Stewart return (NULL); 2394f8829a4aSRandall Stewart } 2395f8829a4aSRandall Stewart m_sig = m_split(m, sig_offset, M_DONTWAIT); 2396f8829a4aSRandall Stewart if (m_sig == NULL) { 2397f8829a4aSRandall Stewart /* out of memory or ?? */ 2398f8829a4aSRandall Stewart return (NULL); 2399f8829a4aSRandall Stewart } 2400eadccaccSRandall Stewart #ifdef SCTP_MBUF_LOGGING 2401b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 2402eadccaccSRandall Stewart struct mbuf *mat; 2403eadccaccSRandall Stewart 2404eadccaccSRandall Stewart mat = m_sig; 2405eadccaccSRandall Stewart while (mat) { 2406eadccaccSRandall Stewart if (SCTP_BUF_IS_EXTENDED(mat)) { 2407eadccaccSRandall Stewart sctp_log_mb(mat, SCTP_MBUF_SPLIT); 2408eadccaccSRandall Stewart } 2409eadccaccSRandall Stewart mat = SCTP_BUF_NEXT(mat); 2410eadccaccSRandall Stewart } 2411eadccaccSRandall Stewart } 2412eadccaccSRandall Stewart #endif 2413eadccaccSRandall Stewart 2414f8829a4aSRandall Stewart /* 2415f8829a4aSRandall Stewart * compute the signature/digest for the cookie 2416f8829a4aSRandall Stewart */ 2417f8829a4aSRandall Stewart ep = &(*inp_p)->sctp_ep; 2418f8829a4aSRandall Stewart l_inp = *inp_p; 2419f8829a4aSRandall Stewart if (l_stcb) { 2420f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(l_stcb); 2421f8829a4aSRandall Stewart } 2422f8829a4aSRandall Stewart SCTP_INP_RLOCK(l_inp); 2423f8829a4aSRandall Stewart if (l_stcb) { 2424f8829a4aSRandall Stewart SCTP_TCB_LOCK(l_stcb); 2425f8829a4aSRandall Stewart } 2426f8829a4aSRandall Stewart /* which cookie is it? */ 2427f8829a4aSRandall Stewart if ((cookie->time_entered.tv_sec < (long)ep->time_of_secret_change) && 2428f8829a4aSRandall Stewart (ep->current_secret_number != ep->last_secret_number)) { 2429f8829a4aSRandall Stewart /* it's the old cookie */ 24306e55db54SRandall Stewart (void)sctp_hmac_m(SCTP_HMAC, 2431f8829a4aSRandall Stewart (uint8_t *) ep->secret_key[(int)ep->last_secret_number], 2432d00aff5dSRandall Stewart SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2433f8829a4aSRandall Stewart } else { 2434f8829a4aSRandall Stewart /* it's the current cookie */ 24356e55db54SRandall Stewart (void)sctp_hmac_m(SCTP_HMAC, 2436f8829a4aSRandall Stewart (uint8_t *) ep->secret_key[(int)ep->current_secret_number], 2437d00aff5dSRandall Stewart SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2438f8829a4aSRandall Stewart } 2439f8829a4aSRandall Stewart /* get the signature */ 2440f8829a4aSRandall Stewart SCTP_INP_RUNLOCK(l_inp); 2441f8829a4aSRandall Stewart sig = (uint8_t *) sctp_m_getptr(m_sig, 0, SCTP_SIGNATURE_SIZE, (uint8_t *) & tmp_sig); 2442f8829a4aSRandall Stewart if (sig == NULL) { 2443f8829a4aSRandall Stewart /* couldn't find signature */ 244403b0b021SRandall Stewart sctp_m_freem(m_sig); 2445f8829a4aSRandall Stewart return (NULL); 2446f8829a4aSRandall Stewart } 2447f8829a4aSRandall Stewart /* compare the received digest with the computed digest */ 2448f8829a4aSRandall Stewart if (memcmp(calc_sig, sig, SCTP_SIGNATURE_SIZE) != 0) { 2449f8829a4aSRandall Stewart /* try the old cookie? */ 2450f8829a4aSRandall Stewart if ((cookie->time_entered.tv_sec == (long)ep->time_of_secret_change) && 2451f8829a4aSRandall Stewart (ep->current_secret_number != ep->last_secret_number)) { 2452f8829a4aSRandall Stewart /* compute digest with old */ 24536e55db54SRandall Stewart (void)sctp_hmac_m(SCTP_HMAC, 2454f8829a4aSRandall Stewart (uint8_t *) ep->secret_key[(int)ep->last_secret_number], 2455d00aff5dSRandall Stewart SCTP_SECRET_SIZE, m, cookie_offset, calc_sig, 0); 2456f8829a4aSRandall Stewart /* compare */ 2457f8829a4aSRandall Stewart if (memcmp(calc_sig, sig, SCTP_SIGNATURE_SIZE) == 0) 2458f8829a4aSRandall Stewart cookie_ok = 1; 2459f8829a4aSRandall Stewart } 2460f8829a4aSRandall Stewart } else { 2461f8829a4aSRandall Stewart cookie_ok = 1; 2462f8829a4aSRandall Stewart } 2463f8829a4aSRandall Stewart 2464f8829a4aSRandall Stewart /* 2465f8829a4aSRandall Stewart * Now before we continue we must reconstruct our mbuf so that 2466f8829a4aSRandall Stewart * normal processing of any other chunks will work. 2467f8829a4aSRandall Stewart */ 2468f8829a4aSRandall Stewart { 2469f8829a4aSRandall Stewart struct mbuf *m_at; 2470f8829a4aSRandall Stewart 2471f8829a4aSRandall Stewart m_at = m; 2472139bc87fSRandall Stewart while (SCTP_BUF_NEXT(m_at) != NULL) { 2473139bc87fSRandall Stewart m_at = SCTP_BUF_NEXT(m_at); 2474f8829a4aSRandall Stewart } 2475139bc87fSRandall Stewart SCTP_BUF_NEXT(m_at) = m_sig; 2476f8829a4aSRandall Stewart } 2477f8829a4aSRandall Stewart 2478f8829a4aSRandall Stewart if (cookie_ok == 0) { 2479ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "handle_cookie_echo: cookie signature validation failed!\n"); 2480ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 2481ad81507eSRandall Stewart "offset = %u, cookie_offset = %u, sig_offset = %u\n", 2482f8829a4aSRandall Stewart (uint32_t) offset, cookie_offset, sig_offset); 2483f8829a4aSRandall Stewart return (NULL); 2484f8829a4aSRandall Stewart } 2485f8829a4aSRandall Stewart /* 2486f8829a4aSRandall Stewart * check the cookie timestamps to be sure it's not stale 2487f8829a4aSRandall Stewart */ 24886e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&now); 2489f8829a4aSRandall Stewart /* Expire time is in Ticks, so we convert to seconds */ 24903c503c28SRandall Stewart time_expires.tv_sec = cookie->time_entered.tv_sec + TICKS_TO_SEC(cookie->cookie_life); 2491f8829a4aSRandall Stewart time_expires.tv_usec = cookie->time_entered.tv_usec; 2492fc14de76SRandall Stewart /* 2493fc14de76SRandall Stewart * TODO sctp_constants.h needs alternative time macros when _KERNEL 2494fc14de76SRandall Stewart * is undefined. 2495fc14de76SRandall Stewart */ 2496f8829a4aSRandall Stewart if (timevalcmp(&now, &time_expires, >)) { 2497f8829a4aSRandall Stewart /* cookie is stale! */ 2498f8829a4aSRandall Stewart struct mbuf *op_err; 2499f8829a4aSRandall Stewart struct sctp_stale_cookie_msg *scm; 2500f8829a4aSRandall Stewart uint32_t tim; 2501f8829a4aSRandall Stewart 2502f8829a4aSRandall Stewart op_err = sctp_get_mbuf_for_msg(sizeof(struct sctp_stale_cookie_msg), 2503139bc87fSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 2504f8829a4aSRandall Stewart if (op_err == NULL) { 2505f8829a4aSRandall Stewart /* FOOBAR */ 2506f8829a4aSRandall Stewart return (NULL); 2507f8829a4aSRandall Stewart } 2508f8829a4aSRandall Stewart /* Set the len */ 2509139bc87fSRandall Stewart SCTP_BUF_LEN(op_err) = sizeof(struct sctp_stale_cookie_msg); 2510f8829a4aSRandall Stewart scm = mtod(op_err, struct sctp_stale_cookie_msg *); 2511f8829a4aSRandall Stewart scm->ph.param_type = htons(SCTP_CAUSE_STALE_COOKIE); 2512f8829a4aSRandall Stewart scm->ph.param_length = htons((sizeof(struct sctp_paramhdr) + 2513f8829a4aSRandall Stewart (sizeof(uint32_t)))); 2514f8829a4aSRandall Stewart /* seconds to usec */ 2515f8829a4aSRandall Stewart tim = (now.tv_sec - time_expires.tv_sec) * 1000000; 2516f8829a4aSRandall Stewart /* add in usec */ 2517f8829a4aSRandall Stewart if (tim == 0) 2518f8829a4aSRandall Stewart tim = now.tv_usec - cookie->time_entered.tv_usec; 2519f8829a4aSRandall Stewart scm->time_usec = htonl(tim); 252017205eccSRandall Stewart sctp_send_operr_to(m, iphlen, op_err, cookie->peers_vtag, 2521c54a18d2SRandall Stewart vrf_id, port); 2522f8829a4aSRandall Stewart return (NULL); 2523f8829a4aSRandall Stewart } 2524f8829a4aSRandall Stewart /* 2525f8829a4aSRandall Stewart * Now we must see with the lookup address if we have an existing 2526f8829a4aSRandall Stewart * asoc. This will only happen if we were in the COOKIE-WAIT state 2527f8829a4aSRandall Stewart * and a INIT collided with us and somewhere the peer sent the 2528f8829a4aSRandall Stewart * cookie on another address besides the single address our assoc 2529f8829a4aSRandall Stewart * had for him. In this case we will have one of the tie-tags set at 2530f8829a4aSRandall Stewart * least AND the address field in the cookie can be used to look it 2531f8829a4aSRandall Stewart * up. 2532f8829a4aSRandall Stewart */ 2533f8829a4aSRandall Stewart to = NULL; 2534f8829a4aSRandall Stewart if (cookie->addr_type == SCTP_IPV6_ADDRESS) { 2535f8829a4aSRandall Stewart memset(&sin6, 0, sizeof(sin6)); 2536f8829a4aSRandall Stewart sin6.sin6_family = AF_INET6; 2537f8829a4aSRandall Stewart sin6.sin6_len = sizeof(sin6); 2538f8829a4aSRandall Stewart sin6.sin6_port = sh->src_port; 2539f8829a4aSRandall Stewart sin6.sin6_scope_id = cookie->scope_id; 2540f8829a4aSRandall Stewart memcpy(&sin6.sin6_addr.s6_addr, cookie->address, 2541f8829a4aSRandall Stewart sizeof(sin6.sin6_addr.s6_addr)); 2542f8829a4aSRandall Stewart to = (struct sockaddr *)&sin6; 2543f8829a4aSRandall Stewart } else if (cookie->addr_type == SCTP_IPV4_ADDRESS) { 2544f8829a4aSRandall Stewart memset(&sin, 0, sizeof(sin)); 2545f8829a4aSRandall Stewart sin.sin_family = AF_INET; 2546f8829a4aSRandall Stewart sin.sin_len = sizeof(sin); 2547f8829a4aSRandall Stewart sin.sin_port = sh->src_port; 2548f8829a4aSRandall Stewart sin.sin_addr.s_addr = cookie->address[0]; 2549f8829a4aSRandall Stewart to = (struct sockaddr *)&sin; 2550ad81507eSRandall Stewart } else { 2551ad81507eSRandall Stewart /* This should not happen */ 2552ad81507eSRandall Stewart return (NULL); 2553f8829a4aSRandall Stewart } 2554f8829a4aSRandall Stewart if ((*stcb == NULL) && to) { 2555f8829a4aSRandall Stewart /* Yep, lets check */ 2556f8829a4aSRandall Stewart *stcb = sctp_findassociation_ep_addr(inp_p, to, netp, localep_sa, NULL); 2557f8829a4aSRandall Stewart if (*stcb == NULL) { 2558f8829a4aSRandall Stewart /* 2559f8829a4aSRandall Stewart * We should have only got back the same inp. If we 2560f8829a4aSRandall Stewart * got back a different ep we have a problem. The 2561f8829a4aSRandall Stewart * original findep got back l_inp and now 2562f8829a4aSRandall Stewart */ 2563f8829a4aSRandall Stewart if (l_inp != *inp_p) { 2564ad81507eSRandall Stewart SCTP_PRINTF("Bad problem find_ep got a diff inp then special_locate?\n"); 2565f8829a4aSRandall Stewart } 2566a5d547adSRandall Stewart } else { 2567a5d547adSRandall Stewart if (*locked_tcb == NULL) { 2568a5d547adSRandall Stewart /* 2569a5d547adSRandall Stewart * In this case we found the assoc only 2570a5d547adSRandall Stewart * after we locked the create lock. This 2571a5d547adSRandall Stewart * means we are in a colliding case and we 2572a5d547adSRandall Stewart * must make sure that we unlock the tcb if 2573a5d547adSRandall Stewart * its one of the cases where we throw away 2574a5d547adSRandall Stewart * the incoming packets. 2575a5d547adSRandall Stewart */ 2576a5d547adSRandall Stewart *locked_tcb = *stcb; 2577a5d547adSRandall Stewart 2578a5d547adSRandall Stewart /* 2579a5d547adSRandall Stewart * We must also increment the inp ref count 2580a5d547adSRandall Stewart * since the ref_count flags was set when we 2581a5d547adSRandall Stewart * did not find the TCB, now we found it 2582a5d547adSRandall Stewart * which reduces the refcount.. we must 2583a5d547adSRandall Stewart * raise it back out to balance it all :-) 2584a5d547adSRandall Stewart */ 2585a5d547adSRandall Stewart SCTP_INP_INCR_REF((*stcb)->sctp_ep); 2586a5d547adSRandall Stewart if ((*stcb)->sctp_ep != l_inp) { 2587ad81507eSRandall Stewart SCTP_PRINTF("Huh? ep:%p diff then l_inp:%p?\n", 2588a5d547adSRandall Stewart (*stcb)->sctp_ep, l_inp); 2589a5d547adSRandall Stewart } 2590a5d547adSRandall Stewart } 2591f8829a4aSRandall Stewart } 2592f8829a4aSRandall Stewart } 2593a99b6783SRandall Stewart if (to == NULL) { 2594ad81507eSRandall Stewart return (NULL); 2595a99b6783SRandall Stewart } 2596f8829a4aSRandall Stewart cookie_len -= SCTP_SIGNATURE_SIZE; 2597f8829a4aSRandall Stewart if (*stcb == NULL) { 2598f8829a4aSRandall Stewart /* this is the "normal" case... get a new TCB */ 2599f8829a4aSRandall Stewart *stcb = sctp_process_cookie_new(m, iphlen, offset, sh, cookie, 2600f8829a4aSRandall Stewart cookie_len, *inp_p, netp, to, ¬ification, 2601c54a18d2SRandall Stewart auth_skipped, auth_offset, auth_len, vrf_id, port); 2602f8829a4aSRandall Stewart } else { 2603f8829a4aSRandall Stewart /* this is abnormal... cookie-echo on existing TCB */ 2604f8829a4aSRandall Stewart had_a_existing_tcb = 1; 2605f8829a4aSRandall Stewart *stcb = sctp_process_cookie_existing(m, iphlen, offset, sh, 2606830d754dSRandall Stewart cookie, cookie_len, *inp_p, *stcb, netp, to, 2607830d754dSRandall Stewart ¬ification, &sac_restart_id, vrf_id, auth_skipped, auth_offset, auth_len, port); 2608f8829a4aSRandall Stewart } 2609f8829a4aSRandall Stewart 2610f8829a4aSRandall Stewart if (*stcb == NULL) { 2611f8829a4aSRandall Stewart /* still no TCB... must be bad cookie-echo */ 2612f8829a4aSRandall Stewart return (NULL); 2613f8829a4aSRandall Stewart } 2614f8829a4aSRandall Stewart /* 2615f8829a4aSRandall Stewart * Ok, we built an association so confirm the address we sent the 2616f8829a4aSRandall Stewart * INIT-ACK to. 2617f8829a4aSRandall Stewart */ 2618f8829a4aSRandall Stewart netl = sctp_findnet(*stcb, to); 2619f8829a4aSRandall Stewart /* 2620f8829a4aSRandall Stewart * This code should in theory NOT run but 2621f8829a4aSRandall Stewart */ 2622f8829a4aSRandall Stewart if (netl == NULL) { 2623f8829a4aSRandall Stewart /* TSNH! Huh, why do I need to add this address here? */ 2624f8829a4aSRandall Stewart int ret; 2625f8829a4aSRandall Stewart 2626a5d547adSRandall Stewart ret = sctp_add_remote_addr(*stcb, to, SCTP_DONOT_SETSCOPE, 2627a5d547adSRandall Stewart SCTP_IN_COOKIE_PROC); 2628f8829a4aSRandall Stewart netl = sctp_findnet(*stcb, to); 2629f8829a4aSRandall Stewart } 2630f8829a4aSRandall Stewart if (netl) { 2631f8829a4aSRandall Stewart if (netl->dest_state & SCTP_ADDR_UNCONFIRMED) { 2632f8829a4aSRandall Stewart netl->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 2633ad81507eSRandall Stewart (void)sctp_set_primary_addr((*stcb), (struct sockaddr *)NULL, 2634f8829a4aSRandall Stewart netl); 26352fad0e55SMichael Tuexen send_int_conf = 1; 2636f8829a4aSRandall Stewart } 2637f8829a4aSRandall Stewart } 2638f8829a4aSRandall Stewart if (*stcb) { 2639f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, *inp_p, 2640f8829a4aSRandall Stewart *stcb, NULL); 2641f8829a4aSRandall Stewart } 2642f8829a4aSRandall Stewart if ((*inp_p)->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 2643f8829a4aSRandall Stewart if (!had_a_existing_tcb || 2644f8829a4aSRandall Stewart (((*inp_p)->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0)) { 2645f8829a4aSRandall Stewart /* 2646f8829a4aSRandall Stewart * If we have a NEW cookie or the connect never 2647f8829a4aSRandall Stewart * reached the connected state during collision we 2648f8829a4aSRandall Stewart * must do the TCP accept thing. 2649f8829a4aSRandall Stewart */ 2650f8829a4aSRandall Stewart struct socket *so, *oso; 2651f8829a4aSRandall Stewart struct sctp_inpcb *inp; 2652f8829a4aSRandall Stewart 2653f8829a4aSRandall Stewart if (notification == SCTP_NOTIFY_ASSOC_RESTART) { 2654f8829a4aSRandall Stewart /* 2655f8829a4aSRandall Stewart * For a restart we will keep the same 2656f8829a4aSRandall Stewart * socket, no need to do anything. I THINK!! 2657f8829a4aSRandall Stewart */ 2658ceaad40aSRandall Stewart sctp_ulp_notify(notification, *stcb, 0, (void *)&sac_restart_id, SCTP_SO_NOT_LOCKED); 26592fad0e55SMichael Tuexen if (send_int_conf) { 26602fad0e55SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 26612fad0e55SMichael Tuexen (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 26622fad0e55SMichael Tuexen } 2663f8829a4aSRandall Stewart return (m); 2664f8829a4aSRandall Stewart } 2665f8829a4aSRandall Stewart oso = (*inp_p)->sctp_socket; 26662dad8a55SRandall Stewart atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2667f8829a4aSRandall Stewart SCTP_TCB_UNLOCK((*stcb)); 266893164cf9SRandall Stewart so = sonewconn(oso, 0 2669f8829a4aSRandall Stewart ); 2670f8829a4aSRandall Stewart SCTP_TCB_LOCK((*stcb)); 26712dad8a55SRandall Stewart atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 26722dad8a55SRandall Stewart 2673f8829a4aSRandall Stewart if (so == NULL) { 2674f8829a4aSRandall Stewart struct mbuf *op_err; 2675f8829a4aSRandall Stewart 2676ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2677ceaad40aSRandall Stewart struct socket *pcb_so; 2678ceaad40aSRandall Stewart 2679ceaad40aSRandall Stewart #endif 2680f8829a4aSRandall Stewart /* Too many sockets */ 2681ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "process_cookie_new: no room for another socket!\n"); 2682f8829a4aSRandall Stewart op_err = sctp_generate_invmanparam(SCTP_CAUSE_OUT_OF_RESC); 2683f8829a4aSRandall Stewart sctp_abort_association(*inp_p, NULL, m, iphlen, 2684c54a18d2SRandall Stewart sh, op_err, vrf_id, port); 2685ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2686ceaad40aSRandall Stewart pcb_so = SCTP_INP_SO(*inp_p); 2687ceaad40aSRandall Stewart atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2688ceaad40aSRandall Stewart SCTP_TCB_UNLOCK((*stcb)); 2689ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(pcb_so, 1); 2690ceaad40aSRandall Stewart SCTP_TCB_LOCK((*stcb)); 2691ceaad40aSRandall Stewart atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2692ceaad40aSRandall Stewart #endif 2693c4739e2fSRandall Stewart (void)sctp_free_assoc(*inp_p, *stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_20); 2694ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2695ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(pcb_so, 1); 2696ceaad40aSRandall Stewart #endif 2697f8829a4aSRandall Stewart return (NULL); 2698f8829a4aSRandall Stewart } 2699f8829a4aSRandall Stewart inp = (struct sctp_inpcb *)so->so_pcb; 270093164cf9SRandall Stewart SCTP_INP_INCR_REF(inp); 270193164cf9SRandall Stewart /* 270293164cf9SRandall Stewart * We add the unbound flag here so that if we get an 270393164cf9SRandall Stewart * soabort() before we get the move_pcb done, we 270493164cf9SRandall Stewart * will properly cleanup. 270593164cf9SRandall Stewart */ 2706f8829a4aSRandall Stewart inp->sctp_flags = (SCTP_PCB_FLAGS_TCPTYPE | 2707f8829a4aSRandall Stewart SCTP_PCB_FLAGS_CONNECTED | 2708f8829a4aSRandall Stewart SCTP_PCB_FLAGS_IN_TCPPOOL | 270993164cf9SRandall Stewart SCTP_PCB_FLAGS_UNBOUND | 2710f8829a4aSRandall Stewart (SCTP_PCB_COPY_FLAGS & (*inp_p)->sctp_flags) | 2711f8829a4aSRandall Stewart SCTP_PCB_FLAGS_DONT_WAKE); 2712f8829a4aSRandall Stewart inp->sctp_features = (*inp_p)->sctp_features; 2713851b7298SRandall Stewart inp->sctp_mobility_features = (*inp_p)->sctp_mobility_features; 2714f8829a4aSRandall Stewart inp->sctp_socket = so; 2715f8829a4aSRandall Stewart inp->sctp_frag_point = (*inp_p)->sctp_frag_point; 271620083c2eSMichael Tuexen inp->sctp_cmt_on_off = (*inp_p)->sctp_cmt_on_off; 2717f8829a4aSRandall Stewart inp->partial_delivery_point = (*inp_p)->partial_delivery_point; 2718f8829a4aSRandall Stewart inp->sctp_context = (*inp_p)->sctp_context; 2719f8829a4aSRandall Stewart inp->inp_starting_point_for_iterator = NULL; 2720f8829a4aSRandall Stewart /* 2721f8829a4aSRandall Stewart * copy in the authentication parameters from the 2722f8829a4aSRandall Stewart * original endpoint 2723f8829a4aSRandall Stewart */ 2724f8829a4aSRandall Stewart if (inp->sctp_ep.local_hmacs) 2725f8829a4aSRandall Stewart sctp_free_hmaclist(inp->sctp_ep.local_hmacs); 2726f8829a4aSRandall Stewart inp->sctp_ep.local_hmacs = 2727f8829a4aSRandall Stewart sctp_copy_hmaclist((*inp_p)->sctp_ep.local_hmacs); 2728f8829a4aSRandall Stewart if (inp->sctp_ep.local_auth_chunks) 2729f8829a4aSRandall Stewart sctp_free_chunklist(inp->sctp_ep.local_auth_chunks); 2730f8829a4aSRandall Stewart inp->sctp_ep.local_auth_chunks = 2731f8829a4aSRandall Stewart sctp_copy_chunklist((*inp_p)->sctp_ep.local_auth_chunks); 2732f8829a4aSRandall Stewart 2733f8829a4aSRandall Stewart /* 2734f8829a4aSRandall Stewart * Now we must move it from one hash table to 2735f8829a4aSRandall Stewart * another and get the tcb in the right place. 2736f8829a4aSRandall Stewart */ 273788a7eb29SRandall Stewart 273888a7eb29SRandall Stewart /* 273988a7eb29SRandall Stewart * This is where the one-2-one socket is put into 274088a7eb29SRandall Stewart * the accept state waiting for the accept! 274188a7eb29SRandall Stewart */ 274288a7eb29SRandall Stewart if (*stcb) { 274388a7eb29SRandall Stewart (*stcb)->asoc.state |= SCTP_STATE_IN_ACCEPT_QUEUE; 274488a7eb29SRandall Stewart } 2745f8829a4aSRandall Stewart sctp_move_pcb_and_assoc(*inp_p, inp, *stcb); 2746d61a0ae0SRandall Stewart 2747d61a0ae0SRandall Stewart atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2748d61a0ae0SRandall Stewart SCTP_TCB_UNLOCK((*stcb)); 2749d61a0ae0SRandall Stewart 2750265de5bbSRobert Watson sctp_pull_off_control_to_new_inp((*inp_p), inp, *stcb, 2751265de5bbSRobert Watson 0); 2752d61a0ae0SRandall Stewart SCTP_TCB_LOCK((*stcb)); 2753d61a0ae0SRandall Stewart atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2754d61a0ae0SRandall Stewart 2755f8829a4aSRandall Stewart 275693164cf9SRandall Stewart /* 275793164cf9SRandall Stewart * now we must check to see if we were aborted while 275893164cf9SRandall Stewart * the move was going on and the lock/unlock 275993164cf9SRandall Stewart * happened. 276093164cf9SRandall Stewart */ 276193164cf9SRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 276293164cf9SRandall Stewart /* 276393164cf9SRandall Stewart * yep it was, we leave the assoc attached 276493164cf9SRandall Stewart * to the socket since the sctp_inpcb_free() 276593164cf9SRandall Stewart * call will send an abort for us. 276693164cf9SRandall Stewart */ 276793164cf9SRandall Stewart SCTP_INP_DECR_REF(inp); 276893164cf9SRandall Stewart return (NULL); 276993164cf9SRandall Stewart } 277093164cf9SRandall Stewart SCTP_INP_DECR_REF(inp); 2771f8829a4aSRandall Stewart /* Switch over to the new guy */ 2772f8829a4aSRandall Stewart *inp_p = inp; 2773ceaad40aSRandall Stewart sctp_ulp_notify(notification, *stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 27742fad0e55SMichael Tuexen if (send_int_conf) { 27752fad0e55SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 27762fad0e55SMichael Tuexen (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 27772fad0e55SMichael Tuexen } 277893164cf9SRandall Stewart /* 277993164cf9SRandall Stewart * Pull it from the incomplete queue and wake the 278093164cf9SRandall Stewart * guy 278193164cf9SRandall Stewart */ 2782ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2783ceaad40aSRandall Stewart atomic_add_int(&(*stcb)->asoc.refcnt, 1); 2784ceaad40aSRandall Stewart SCTP_TCB_UNLOCK((*stcb)); 2785ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2786ceaad40aSRandall Stewart #endif 278793164cf9SRandall Stewart soisconnected(so); 2788ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2789b7a446b8SRandall Stewart SCTP_TCB_LOCK((*stcb)); 2790b7a446b8SRandall Stewart atomic_subtract_int(&(*stcb)->asoc.refcnt, 1); 2791ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2792ceaad40aSRandall Stewart #endif 2793f8829a4aSRandall Stewart return (m); 2794f8829a4aSRandall Stewart } 2795f8829a4aSRandall Stewart } 27962fad0e55SMichael Tuexen if ((*inp_p)->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE) { 27972fad0e55SMichael Tuexen if (notification) { 2798ceaad40aSRandall Stewart sctp_ulp_notify(notification, *stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2799f8829a4aSRandall Stewart } 28002fad0e55SMichael Tuexen if (send_int_conf) { 28012fad0e55SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_CONFIRMED, 28022fad0e55SMichael Tuexen (*stcb), 0, (void *)netl, SCTP_SO_NOT_LOCKED); 28032fad0e55SMichael Tuexen } 28042fad0e55SMichael Tuexen } 2805f8829a4aSRandall Stewart return (m); 2806f8829a4aSRandall Stewart } 2807f8829a4aSRandall Stewart 2808f8829a4aSRandall Stewart static void 2809f8829a4aSRandall Stewart sctp_handle_cookie_ack(struct sctp_cookie_ack_chunk *cp, 2810f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net) 2811f8829a4aSRandall Stewart { 2812f8829a4aSRandall Stewart /* cp must not be used, others call this without a c-ack :-) */ 2813f8829a4aSRandall Stewart struct sctp_association *asoc; 2814f8829a4aSRandall Stewart 2815ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 2816ad81507eSRandall Stewart "sctp_handle_cookie_ack: handling COOKIE-ACK\n"); 2817f8829a4aSRandall Stewart if (stcb == NULL) 2818f8829a4aSRandall Stewart return; 2819f8829a4aSRandall Stewart 2820f8829a4aSRandall Stewart asoc = &stcb->asoc; 2821f8829a4aSRandall Stewart 2822f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 2823f8829a4aSRandall Stewart /* process according to association state */ 2824f8829a4aSRandall Stewart if (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) { 2825f8829a4aSRandall Stewart /* state change only needed when I am in right state */ 2826ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "moving to OPEN state\n"); 2827c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_OPEN); 2828f8829a4aSRandall Stewart if (asoc->state & SCTP_STATE_SHUTDOWN_PENDING) { 2829f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 2830f8829a4aSRandall Stewart stcb->sctp_ep, stcb, asoc->primary_destination); 2831f8829a4aSRandall Stewart 2832f8829a4aSRandall Stewart } 2833f8829a4aSRandall Stewart /* update RTO */ 2834f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_activeestab); 2835f8829a4aSRandall Stewart SCTP_STAT_INCR_GAUGE32(sctps_currestab); 2836f8829a4aSRandall Stewart if (asoc->overall_error_count == 0) { 2837f8829a4aSRandall Stewart net->RTO = sctp_calculate_rto(stcb, asoc, net, 283818e198d3SRandall Stewart &asoc->time_entered, sctp_align_safe_nocopy); 2839f8829a4aSRandall Stewart } 28406e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 2841ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_ASSOC_UP, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 2842f8829a4aSRandall Stewart if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 2843f8829a4aSRandall Stewart (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 2844ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2845ceaad40aSRandall Stewart struct socket *so; 2846ceaad40aSRandall Stewart 2847ceaad40aSRandall Stewart #endif 2848f8829a4aSRandall Stewart stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 2849ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2850ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 2851ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 2852ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 2853ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 2854ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 2855ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 2856ceaad40aSRandall Stewart if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 2857ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2858ceaad40aSRandall Stewart return; 2859ceaad40aSRandall Stewart } 2860ceaad40aSRandall Stewart #endif 2861ceaad40aSRandall Stewart soisconnected(stcb->sctp_socket); 2862ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 2863ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 2864ceaad40aSRandall Stewart #endif 2865f8829a4aSRandall Stewart } 2866f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, 2867f8829a4aSRandall Stewart stcb, net); 2868f8829a4aSRandall Stewart /* 2869f8829a4aSRandall Stewart * since we did not send a HB make sure we don't double 2870f8829a4aSRandall Stewart * things 2871f8829a4aSRandall Stewart */ 2872f8829a4aSRandall Stewart net->hb_responded = 1; 2873f8829a4aSRandall Stewart 2874f8829a4aSRandall Stewart if (stcb->asoc.sctp_autoclose_ticks && 2875f8829a4aSRandall Stewart sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_AUTOCLOSE)) { 2876f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, 2877f8829a4aSRandall Stewart stcb->sctp_ep, stcb, NULL); 2878f8829a4aSRandall Stewart } 2879f8829a4aSRandall Stewart /* 28801b649582SRandall Stewart * send ASCONF if parameters are pending and ASCONFs are 28811b649582SRandall Stewart * allowed (eg. addresses changed when init/cookie echo were 28821b649582SRandall Stewart * in flight) 2883f8829a4aSRandall Stewart */ 2884f8829a4aSRandall Stewart if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_DO_ASCONF)) && 2885f8829a4aSRandall Stewart (stcb->asoc.peer_supports_asconf) && 2886f8829a4aSRandall Stewart (!TAILQ_EMPTY(&stcb->asoc.asconf_queue))) { 28871b649582SRandall Stewart #ifdef SCTP_TIMER_BASED_ASCONF 2888f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, 2889f8829a4aSRandall Stewart stcb->sctp_ep, stcb, 2890f8829a4aSRandall Stewart stcb->asoc.primary_destination); 28911b649582SRandall Stewart #else 28923232788eSRandall Stewart sctp_send_asconf(stcb, stcb->asoc.primary_destination, 28933232788eSRandall Stewart SCTP_ADDR_NOT_LOCKED); 28941b649582SRandall Stewart #endif 2895f8829a4aSRandall Stewart } 2896f8829a4aSRandall Stewart } 2897f8829a4aSRandall Stewart /* Toss the cookie if I can */ 2898f8829a4aSRandall Stewart sctp_toss_old_cookies(stcb, asoc); 2899f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&asoc->sent_queue)) { 2900f8829a4aSRandall Stewart /* Restart the timer if we have pending data */ 2901f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 2902f8829a4aSRandall Stewart 2903f8829a4aSRandall Stewart chk = TAILQ_FIRST(&asoc->sent_queue); 29044a9ef3f8SMichael Tuexen sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, chk->whoTo); 2905f8829a4aSRandall Stewart } 2906f8829a4aSRandall Stewart } 2907f8829a4aSRandall Stewart 2908f8829a4aSRandall Stewart static void 2909f8829a4aSRandall Stewart sctp_handle_ecn_echo(struct sctp_ecne_chunk *cp, 2910f8829a4aSRandall Stewart struct sctp_tcb *stcb) 2911f8829a4aSRandall Stewart { 2912f8829a4aSRandall Stewart struct sctp_nets *net; 2913f8829a4aSRandall Stewart struct sctp_tmit_chunk *lchk; 2914*a21779f0SRandall Stewart struct sctp_ecne_chunk bkup; 2915*a21779f0SRandall Stewart uint8_t override_bit = 0; 2916*a21779f0SRandall Stewart uint32_t tsn, window_data_tsn; 2917*a21779f0SRandall Stewart int len; 2918*a21779f0SRandall Stewart int pkt_cnt; 2919f8829a4aSRandall Stewart 2920*a21779f0SRandall Stewart len = ntohs(cp->ch.chunk_length); 2921*a21779f0SRandall Stewart if ((len != sizeof(struct sctp_ecne_chunk)) && 2922*a21779f0SRandall Stewart (len != sizeof(struct old_sctp_ecne_chunk))) { 2923f8829a4aSRandall Stewart return; 2924f8829a4aSRandall Stewart } 2925*a21779f0SRandall Stewart if (len == sizeof(struct old_sctp_ecne_chunk)) { 2926*a21779f0SRandall Stewart /* Its the old format */ 2927*a21779f0SRandall Stewart memcpy(&bkup, cp, sizeof(struct old_sctp_ecne_chunk)); 2928*a21779f0SRandall Stewart bkup.num_pkts_since_cwr = htonl(1); 2929*a21779f0SRandall Stewart cp = &bkup; 2930*a21779f0SRandall Stewart } 2931f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvecne); 2932f8829a4aSRandall Stewart tsn = ntohl(cp->tsn); 2933*a21779f0SRandall Stewart pkt_cnt = ntohl(cp->num_pkts_since_cwr); 2934f8829a4aSRandall Stewart /* ECN Nonce stuff: need a resync and disable the nonce sum check */ 2935f8829a4aSRandall Stewart /* Also we make sure we disable the nonce_wait */ 2936*a21779f0SRandall Stewart lchk = TAILQ_LAST(&stcb->asoc.send_queue, sctpchunk_listhead); 2937f8829a4aSRandall Stewart if (lchk == NULL) { 2938*a21779f0SRandall Stewart window_data_tsn = stcb->asoc.nonce_resync_tsn = stcb->asoc.sending_seq - 1; 2939f8829a4aSRandall Stewart } else { 2940*a21779f0SRandall Stewart window_data_tsn = stcb->asoc.nonce_resync_tsn = lchk->rec.data.TSN_seq; 2941f8829a4aSRandall Stewart } 2942f8829a4aSRandall Stewart stcb->asoc.nonce_wait_for_ecne = 0; 2943f8829a4aSRandall Stewart stcb->asoc.nonce_sum_check = 0; 2944f8829a4aSRandall Stewart 2945*a21779f0SRandall Stewart /* Find where it was sent to if possible. */ 2946f8829a4aSRandall Stewart net = NULL; 29474a9ef3f8SMichael Tuexen TAILQ_FOREACH(lchk, &stcb->asoc.sent_queue, sctp_next) { 2948f8829a4aSRandall Stewart if (lchk->rec.data.TSN_seq == tsn) { 2949f8829a4aSRandall Stewart net = lchk->whoTo; 2950f8829a4aSRandall Stewart break; 2951f8829a4aSRandall Stewart } 295220b07a4dSMichael Tuexen if (SCTP_TSN_GT(lchk->rec.data.TSN_seq, tsn)) { 2953f8829a4aSRandall Stewart break; 2954f8829a4aSRandall Stewart } 295520b07a4dSMichael Tuexen } 2956*a21779f0SRandall Stewart if (net == NULL) { 2957*a21779f0SRandall Stewart /* 2958*a21779f0SRandall Stewart * What to do. A previous send of a CWR was possibly lost. 2959*a21779f0SRandall Stewart * See how old it is, we may have it marked on the actual 2960*a21779f0SRandall Stewart * net. 2961*a21779f0SRandall Stewart */ 2962*a21779f0SRandall Stewart TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 2963*a21779f0SRandall Stewart if (tsn == net->last_cwr_tsn) { 2964*a21779f0SRandall Stewart /* Found him, send it off */ 2965*a21779f0SRandall Stewart goto out; 2966*a21779f0SRandall Stewart } 2967*a21779f0SRandall Stewart } 2968*a21779f0SRandall Stewart /* 2969*a21779f0SRandall Stewart * If we reach here, we need to send a special CWR that says 2970*a21779f0SRandall Stewart * hey, we did this a long time ago and you lost the 2971*a21779f0SRandall Stewart * response. 2972*a21779f0SRandall Stewart */ 2973*a21779f0SRandall Stewart net = TAILQ_FIRST(&stcb->asoc.nets); 2974*a21779f0SRandall Stewart override_bit = SCTP_CWR_REDUCE_OVERRIDE; 2975*a21779f0SRandall Stewart } 2976*a21779f0SRandall Stewart out: 2977*a21779f0SRandall Stewart if (SCTP_TSN_GT(tsn, net->cwr_window_tsn)) { 2978b54d3a6cSRandall Stewart /* 2979b54d3a6cSRandall Stewart * JRS - Use the congestion control given in the pluggable 2980b54d3a6cSRandall Stewart * CC module 2981b54d3a6cSRandall Stewart */ 2982*a21779f0SRandall Stewart int ocwnd; 2983*a21779f0SRandall Stewart 2984*a21779f0SRandall Stewart ocwnd = net->cwnd; 2985b54d3a6cSRandall Stewart stcb->asoc.cc_functions.sctp_cwnd_update_after_ecn_echo(stcb, net); 2986f8829a4aSRandall Stewart /* 2987*a21779f0SRandall Stewart * We reduce once every RTT. So we will only lower cwnd at 2988*a21779f0SRandall Stewart * the next sending seq i.e. the window_data_tsn 2989f8829a4aSRandall Stewart */ 2990*a21779f0SRandall Stewart net->cwr_window_tsn = window_data_tsn; 2991*a21779f0SRandall Stewart net->ecn_ce_pkt_cnt += pkt_cnt; 2992*a21779f0SRandall Stewart net->lost_cnt = pkt_cnt; 2993*a21779f0SRandall Stewart net->last_cwr_tsn = tsn; 2994*a21779f0SRandall Stewart } else { 2995*a21779f0SRandall Stewart override_bit |= SCTP_CWR_IN_SAME_WINDOW; 2996*a21779f0SRandall Stewart if (SCTP_TSN_GT(tsn, net->last_cwr_tsn)) { 2997*a21779f0SRandall Stewart /* 2998*a21779f0SRandall Stewart * Another loss in the same window update how man 2999*a21779f0SRandall Stewart * marks we have had 3000*a21779f0SRandall Stewart */ 3001*a21779f0SRandall Stewart 3002*a21779f0SRandall Stewart if (pkt_cnt > net->lost_cnt) { 3003*a21779f0SRandall Stewart /* Should be the case */ 3004*a21779f0SRandall Stewart net->ecn_ce_pkt_cnt += (pkt_cnt - net->lost_cnt); 3005*a21779f0SRandall Stewart net->lost_cnt = pkt_cnt; 3006*a21779f0SRandall Stewart } 3007*a21779f0SRandall Stewart net->last_cwr_tsn = tsn; 3008*a21779f0SRandall Stewart } 3009f8829a4aSRandall Stewart } 3010f8829a4aSRandall Stewart /* 3011f8829a4aSRandall Stewart * We always send a CWR this way if our previous one was lost our 3012f8829a4aSRandall Stewart * peer will get an update, or if it is not time again to reduce we 3013*a21779f0SRandall Stewart * still get the cwr to the peer. Note we set the override when we 3014*a21779f0SRandall Stewart * could not find the TSN on the chunk or the destination network. 3015f8829a4aSRandall Stewart */ 3016*a21779f0SRandall Stewart sctp_send_cwr(stcb, net, net->last_cwr_tsn, override_bit); 3017f8829a4aSRandall Stewart } 3018f8829a4aSRandall Stewart 3019f8829a4aSRandall Stewart static void 3020*a21779f0SRandall Stewart sctp_handle_ecn_cwr(struct sctp_cwr_chunk *cp, struct sctp_tcb *stcb, struct sctp_nets *net) 3021f8829a4aSRandall Stewart { 3022f8829a4aSRandall Stewart /* 3023f8829a4aSRandall Stewart * Here we get a CWR from the peer. We must look in the outqueue and 3024f8829a4aSRandall Stewart * make sure that we have a covered ECNE in teh control chunk part. 3025f8829a4aSRandall Stewart * If so remove it. 3026f8829a4aSRandall Stewart */ 3027f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 3028f8829a4aSRandall Stewart struct sctp_ecne_chunk *ecne; 3029*a21779f0SRandall Stewart int override; 3030*a21779f0SRandall Stewart uint32_t cwr_tsn; 3031f8829a4aSRandall Stewart 3032*a21779f0SRandall Stewart cwr_tsn = ntohl(cp->tsn); 3033*a21779f0SRandall Stewart 3034*a21779f0SRandall Stewart override = cp->ch.chunk_flags & SCTP_CWR_REDUCE_OVERRIDE; 3035f8829a4aSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 3036f8829a4aSRandall Stewart if (chk->rec.chunk_id.id != SCTP_ECN_ECHO) { 3037f8829a4aSRandall Stewart continue; 3038f8829a4aSRandall Stewart } 3039*a21779f0SRandall Stewart if ((override == 0) && (chk->whoTo != net)) { 3040*a21779f0SRandall Stewart /* Must be from the right src unless override is set */ 3041*a21779f0SRandall Stewart continue; 3042*a21779f0SRandall Stewart } 3043f8829a4aSRandall Stewart ecne = mtod(chk->data, struct sctp_ecne_chunk *); 3044*a21779f0SRandall Stewart if (SCTP_TSN_GE(cwr_tsn, ntohl(ecne->tsn))) { 3045f8829a4aSRandall Stewart /* this covers this ECNE, we can remove it */ 3046f8829a4aSRandall Stewart stcb->asoc.ecn_echo_cnt_onq--; 3047f8829a4aSRandall Stewart TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, 3048f8829a4aSRandall Stewart sctp_next); 3049f8829a4aSRandall Stewart if (chk->data) { 3050f8829a4aSRandall Stewart sctp_m_freem(chk->data); 3051f8829a4aSRandall Stewart chk->data = NULL; 3052f8829a4aSRandall Stewart } 3053f8829a4aSRandall Stewart stcb->asoc.ctrl_queue_cnt--; 3054f8829a4aSRandall Stewart sctp_free_a_chunk(stcb, chk); 3055*a21779f0SRandall Stewart if (override == 0) { 3056f8829a4aSRandall Stewart break; 3057f8829a4aSRandall Stewart } 3058f8829a4aSRandall Stewart } 3059f8829a4aSRandall Stewart } 3060*a21779f0SRandall Stewart } 3061f8829a4aSRandall Stewart 3062f8829a4aSRandall Stewart static void 3063f8829a4aSRandall Stewart sctp_handle_shutdown_complete(struct sctp_shutdown_complete_chunk *cp, 3064f8829a4aSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net) 3065f8829a4aSRandall Stewart { 3066f8829a4aSRandall Stewart struct sctp_association *asoc; 3067f8829a4aSRandall Stewart 3068ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3069ceaad40aSRandall Stewart struct socket *so; 3070ceaad40aSRandall Stewart 3071ceaad40aSRandall Stewart #endif 3072ceaad40aSRandall Stewart 3073ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 3074ad81507eSRandall Stewart "sctp_handle_shutdown_complete: handling SHUTDOWN-COMPLETE\n"); 3075f8829a4aSRandall Stewart if (stcb == NULL) 3076f8829a4aSRandall Stewart return; 3077f8829a4aSRandall Stewart 3078f8829a4aSRandall Stewart asoc = &stcb->asoc; 3079f8829a4aSRandall Stewart /* process according to association state */ 3080f8829a4aSRandall Stewart if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT) { 3081f8829a4aSRandall Stewart /* unexpected SHUTDOWN-COMPLETE... so ignore... */ 30822afb3e84SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 30832afb3e84SRandall Stewart "sctp_handle_shutdown_complete: not in SCTP_STATE_SHUTDOWN_ACK_SENT --- ignore\n"); 3084f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 3085f8829a4aSRandall Stewart return; 3086f8829a4aSRandall Stewart } 3087f8829a4aSRandall Stewart /* notify upper layer protocol */ 3088f8829a4aSRandall Stewart if (stcb->sctp_socket) { 3089ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_ASSOC_DOWN, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 3090f8829a4aSRandall Stewart /* are the queues empty? they should be */ 3091f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&asoc->send_queue) || 3092f8829a4aSRandall Stewart !TAILQ_EMPTY(&asoc->sent_queue) || 3093f7a77f6fSMichael Tuexen !stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 3094ceaad40aSRandall Stewart sctp_report_all_outbound(stcb, 0, SCTP_SO_NOT_LOCKED); 3095f8829a4aSRandall Stewart } 3096f8829a4aSRandall Stewart } 3097f8829a4aSRandall Stewart /* stop the timer */ 3098eadccaccSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SHUTDOWNACK, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_22); 3099f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_shutdown); 3100f8829a4aSRandall Stewart /* free the TCB */ 31012afb3e84SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, 31022afb3e84SRandall Stewart "sctp_handle_shutdown_complete: calls free-asoc\n"); 3103ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3104ceaad40aSRandall Stewart so = SCTP_INP_SO(stcb->sctp_ep); 3105ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 3106ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 3107ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 3108ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 3109ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 3110ceaad40aSRandall Stewart #endif 3111c4739e2fSRandall Stewart (void)sctp_free_assoc(stcb->sctp_ep, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_23); 3112ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3113ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 3114ceaad40aSRandall Stewart #endif 3115f8829a4aSRandall Stewart return; 3116f8829a4aSRandall Stewart } 3117f8829a4aSRandall Stewart 3118f8829a4aSRandall Stewart static int 3119f8829a4aSRandall Stewart process_chunk_drop(struct sctp_tcb *stcb, struct sctp_chunk_desc *desc, 3120f8829a4aSRandall Stewart struct sctp_nets *net, uint8_t flg) 3121f8829a4aSRandall Stewart { 3122f8829a4aSRandall Stewart switch (desc->chunk_type) { 3123f8829a4aSRandall Stewart case SCTP_DATA: 3124f8829a4aSRandall Stewart /* find the tsn to resend (possibly */ 3125f8829a4aSRandall Stewart { 3126f8829a4aSRandall Stewart uint32_t tsn; 3127f8829a4aSRandall Stewart struct sctp_tmit_chunk *tp1; 3128f8829a4aSRandall Stewart 3129f8829a4aSRandall Stewart tsn = ntohl(desc->tsn_ifany); 31304a9ef3f8SMichael Tuexen TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3131f8829a4aSRandall Stewart if (tp1->rec.data.TSN_seq == tsn) { 3132f8829a4aSRandall Stewart /* found it */ 3133f8829a4aSRandall Stewart break; 3134f8829a4aSRandall Stewart } 313520b07a4dSMichael Tuexen if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, tsn)) { 3136f8829a4aSRandall Stewart /* not found */ 3137f8829a4aSRandall Stewart tp1 = NULL; 3138f8829a4aSRandall Stewart break; 3139f8829a4aSRandall Stewart } 3140f8829a4aSRandall Stewart } 3141f8829a4aSRandall Stewart if (tp1 == NULL) { 3142f8829a4aSRandall Stewart /* 3143f8829a4aSRandall Stewart * Do it the other way , aka without paying 3144f8829a4aSRandall Stewart * attention to queue seq order. 3145f8829a4aSRandall Stewart */ 3146f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpdnfnd); 31474a9ef3f8SMichael Tuexen TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3148f8829a4aSRandall Stewart if (tp1->rec.data.TSN_seq == tsn) { 3149f8829a4aSRandall Stewart /* found it */ 3150f8829a4aSRandall Stewart break; 3151f8829a4aSRandall Stewart } 3152f8829a4aSRandall Stewart } 3153f8829a4aSRandall Stewart } 3154f8829a4aSRandall Stewart if (tp1 == NULL) { 3155f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrptsnnf); 3156f8829a4aSRandall Stewart } 3157f8829a4aSRandall Stewart if ((tp1) && (tp1->sent < SCTP_DATAGRAM_ACKED)) { 3158f8829a4aSRandall Stewart uint8_t *ddp; 3159f8829a4aSRandall Stewart 31607da23bc8SMichael Tuexen if (((flg & SCTP_BADCRC) == 0) && 31617da23bc8SMichael Tuexen ((flg & SCTP_FROM_MIDDLE_BOX) == 0)) { 31627da23bc8SMichael Tuexen return (0); 31637da23bc8SMichael Tuexen } 3164f8829a4aSRandall Stewart if ((stcb->asoc.peers_rwnd == 0) && 3165f8829a4aSRandall Stewart ((flg & SCTP_FROM_MIDDLE_BOX) == 0)) { 3166f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpdiwnp); 3167f8829a4aSRandall Stewart return (0); 3168f8829a4aSRandall Stewart } 3169f8829a4aSRandall Stewart if (stcb->asoc.peers_rwnd == 0 && 3170f8829a4aSRandall Stewart (flg & SCTP_FROM_MIDDLE_BOX)) { 3171f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpdizrw); 3172f8829a4aSRandall Stewart return (0); 3173f8829a4aSRandall Stewart } 3174f8829a4aSRandall Stewart ddp = (uint8_t *) (mtod(tp1->data, caddr_t)+ 3175f8829a4aSRandall Stewart sizeof(struct sctp_data_chunk)); 3176f8829a4aSRandall Stewart { 3177f8829a4aSRandall Stewart unsigned int iii; 3178f8829a4aSRandall Stewart 3179f8829a4aSRandall Stewart for (iii = 0; iii < sizeof(desc->data_bytes); 3180f8829a4aSRandall Stewart iii++) { 3181f8829a4aSRandall Stewart if (ddp[iii] != desc->data_bytes[iii]) { 3182f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpbadd); 3183f8829a4aSRandall Stewart return (-1); 3184f8829a4aSRandall Stewart } 3185f8829a4aSRandall Stewart } 3186f8829a4aSRandall Stewart } 3187f8829a4aSRandall Stewart /* 3188f8829a4aSRandall Stewart * We zero out the nonce so resync not 3189f8829a4aSRandall Stewart * needed 3190f8829a4aSRandall Stewart */ 3191f8829a4aSRandall Stewart tp1->rec.data.ect_nonce = 0; 3192f8829a4aSRandall Stewart 3193f8829a4aSRandall Stewart if (tp1->do_rtt) { 3194f8829a4aSRandall Stewart /* 3195f8829a4aSRandall Stewart * this guy had a RTO calculation 3196f8829a4aSRandall Stewart * pending on it, cancel it 3197f8829a4aSRandall Stewart */ 3198f8829a4aSRandall Stewart tp1->do_rtt = 0; 3199f8829a4aSRandall Stewart } 3200f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpmark); 3201f8829a4aSRandall Stewart if (tp1->sent != SCTP_DATAGRAM_RESEND) 3202f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3203f8829a4aSRandall Stewart /* 3204f8829a4aSRandall Stewart * mark it as if we were doing a FR, since 3205f8829a4aSRandall Stewart * we will be getting gap ack reports behind 3206f8829a4aSRandall Stewart * the info from the router. 3207f8829a4aSRandall Stewart */ 3208f8829a4aSRandall Stewart tp1->rec.data.doing_fast_retransmit = 1; 3209f8829a4aSRandall Stewart /* 3210f8829a4aSRandall Stewart * mark the tsn with what sequences can 3211f8829a4aSRandall Stewart * cause a new FR. 3212f8829a4aSRandall Stewart */ 3213f8829a4aSRandall Stewart if (TAILQ_EMPTY(&stcb->asoc.send_queue)) { 3214f8829a4aSRandall Stewart tp1->rec.data.fast_retran_tsn = stcb->asoc.sending_seq; 3215f8829a4aSRandall Stewart } else { 3216f8829a4aSRandall Stewart tp1->rec.data.fast_retran_tsn = (TAILQ_FIRST(&stcb->asoc.send_queue))->rec.data.TSN_seq; 3217f8829a4aSRandall Stewart } 3218f8829a4aSRandall Stewart 3219f8829a4aSRandall Stewart /* restart the timer */ 3220f8829a4aSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 3221b54d3a6cSRandall Stewart stcb, tp1->whoTo, SCTP_FROM_SCTP_INPUT + SCTP_LOC_24); 3222f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 3223f8829a4aSRandall Stewart stcb, tp1->whoTo); 3224f8829a4aSRandall Stewart 3225f8829a4aSRandall Stewart /* fix counts and things */ 3226b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 3227c105859eSRandall Stewart sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_PDRP, 3228a5d547adSRandall Stewart tp1->whoTo->flight_size, 3229a5d547adSRandall Stewart tp1->book_size, 3230a5d547adSRandall Stewart (uintptr_t) stcb, 3231a5d547adSRandall Stewart tp1->rec.data.TSN_seq); 323280fefe0aSRandall Stewart } 32338933fa13SRandall Stewart if (tp1->sent < SCTP_DATAGRAM_RESEND) { 3234c105859eSRandall Stewart sctp_flight_size_decrease(tp1); 3235c105859eSRandall Stewart sctp_total_flight_decrease(stcb, tp1); 32368933fa13SRandall Stewart } 3237f23ba7b1SMichael Tuexen tp1->sent = SCTP_DATAGRAM_RESEND; 3238f8829a4aSRandall Stewart } { 3239f8829a4aSRandall Stewart /* audit code */ 3240f8829a4aSRandall Stewart unsigned int audit; 3241f8829a4aSRandall Stewart 3242f8829a4aSRandall Stewart audit = 0; 3243f8829a4aSRandall Stewart TAILQ_FOREACH(tp1, &stcb->asoc.sent_queue, sctp_next) { 3244f8829a4aSRandall Stewart if (tp1->sent == SCTP_DATAGRAM_RESEND) 3245f8829a4aSRandall Stewart audit++; 3246f8829a4aSRandall Stewart } 3247f8829a4aSRandall Stewart TAILQ_FOREACH(tp1, &stcb->asoc.control_send_queue, 3248f8829a4aSRandall Stewart sctp_next) { 3249f8829a4aSRandall Stewart if (tp1->sent == SCTP_DATAGRAM_RESEND) 3250f8829a4aSRandall Stewart audit++; 3251f8829a4aSRandall Stewart } 3252f8829a4aSRandall Stewart if (audit != stcb->asoc.sent_queue_retran_cnt) { 3253ad81507eSRandall Stewart SCTP_PRINTF("**Local Audit finds cnt:%d asoc cnt:%d\n", 3254f8829a4aSRandall Stewart audit, stcb->asoc.sent_queue_retran_cnt); 3255f8829a4aSRandall Stewart #ifndef SCTP_AUDITING_ENABLED 3256f8829a4aSRandall Stewart stcb->asoc.sent_queue_retran_cnt = audit; 3257f8829a4aSRandall Stewart #endif 3258f8829a4aSRandall Stewart } 3259f8829a4aSRandall Stewart } 3260f8829a4aSRandall Stewart } 3261f8829a4aSRandall Stewart break; 3262f8829a4aSRandall Stewart case SCTP_ASCONF: 3263f8829a4aSRandall Stewart { 3264f8829a4aSRandall Stewart struct sctp_tmit_chunk *asconf; 3265f8829a4aSRandall Stewart 3266f8829a4aSRandall Stewart TAILQ_FOREACH(asconf, &stcb->asoc.control_send_queue, 3267f8829a4aSRandall Stewart sctp_next) { 3268f8829a4aSRandall Stewart if (asconf->rec.chunk_id.id == SCTP_ASCONF) { 3269f8829a4aSRandall Stewart break; 3270f8829a4aSRandall Stewart } 3271f8829a4aSRandall Stewart } 3272f8829a4aSRandall Stewart if (asconf) { 3273f8829a4aSRandall Stewart if (asconf->sent != SCTP_DATAGRAM_RESEND) 3274f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3275f8829a4aSRandall Stewart asconf->sent = SCTP_DATAGRAM_RESEND; 3276f8829a4aSRandall Stewart asconf->snd_count--; 3277f8829a4aSRandall Stewart } 3278f8829a4aSRandall Stewart } 3279f8829a4aSRandall Stewart break; 3280f8829a4aSRandall Stewart case SCTP_INITIATION: 3281f8829a4aSRandall Stewart /* resend the INIT */ 3282f8829a4aSRandall Stewart stcb->asoc.dropped_special_cnt++; 3283f8829a4aSRandall Stewart if (stcb->asoc.dropped_special_cnt < SCTP_RETRY_DROPPED_THRESH) { 3284f8829a4aSRandall Stewart /* 3285f8829a4aSRandall Stewart * If we can get it in, in a few attempts we do 3286f8829a4aSRandall Stewart * this, otherwise we let the timer fire. 3287f8829a4aSRandall Stewart */ 3288f8829a4aSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_INIT, stcb->sctp_ep, 3289b54d3a6cSRandall Stewart stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_25); 3290ceaad40aSRandall Stewart sctp_send_initiate(stcb->sctp_ep, stcb, SCTP_SO_NOT_LOCKED); 3291f8829a4aSRandall Stewart } 3292f8829a4aSRandall Stewart break; 3293f8829a4aSRandall Stewart case SCTP_SELECTIVE_ACK: 3294b5c16493SMichael Tuexen case SCTP_NR_SELECTIVE_ACK: 3295f8829a4aSRandall Stewart /* resend the sack */ 3296f8829a4aSRandall Stewart sctp_send_sack(stcb); 3297f8829a4aSRandall Stewart break; 3298f8829a4aSRandall Stewart case SCTP_HEARTBEAT_REQUEST: 3299f8829a4aSRandall Stewart /* resend a demand HB */ 3300b54d3a6cSRandall Stewart if ((stcb->asoc.overall_error_count + 3) < stcb->asoc.max_send_times) { 3301b54d3a6cSRandall Stewart /* 3302b54d3a6cSRandall Stewart * Only retransmit if we KNOW we wont destroy the 3303b54d3a6cSRandall Stewart * tcb 3304b54d3a6cSRandall Stewart */ 33056e55db54SRandall Stewart (void)sctp_send_hb(stcb, 1, net); 3306b54d3a6cSRandall Stewart } 3307f8829a4aSRandall Stewart break; 3308f8829a4aSRandall Stewart case SCTP_SHUTDOWN: 3309f8829a4aSRandall Stewart sctp_send_shutdown(stcb, net); 3310f8829a4aSRandall Stewart break; 3311f8829a4aSRandall Stewart case SCTP_SHUTDOWN_ACK: 3312f8829a4aSRandall Stewart sctp_send_shutdown_ack(stcb, net); 3313f8829a4aSRandall Stewart break; 3314f8829a4aSRandall Stewart case SCTP_COOKIE_ECHO: 3315f8829a4aSRandall Stewart { 3316f8829a4aSRandall Stewart struct sctp_tmit_chunk *cookie; 3317f8829a4aSRandall Stewart 3318f8829a4aSRandall Stewart cookie = NULL; 3319f8829a4aSRandall Stewart TAILQ_FOREACH(cookie, &stcb->asoc.control_send_queue, 3320f8829a4aSRandall Stewart sctp_next) { 3321f8829a4aSRandall Stewart if (cookie->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 3322f8829a4aSRandall Stewart break; 3323f8829a4aSRandall Stewart } 3324f8829a4aSRandall Stewart } 3325f8829a4aSRandall Stewart if (cookie) { 3326f8829a4aSRandall Stewart if (cookie->sent != SCTP_DATAGRAM_RESEND) 3327f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 3328f8829a4aSRandall Stewart cookie->sent = SCTP_DATAGRAM_RESEND; 3329f8829a4aSRandall Stewart sctp_stop_all_cookie_timers(stcb); 3330f8829a4aSRandall Stewart } 3331f8829a4aSRandall Stewart } 3332f8829a4aSRandall Stewart break; 3333f8829a4aSRandall Stewart case SCTP_COOKIE_ACK: 3334f8829a4aSRandall Stewart sctp_send_cookie_ack(stcb); 3335f8829a4aSRandall Stewart break; 3336f8829a4aSRandall Stewart case SCTP_ASCONF_ACK: 3337f8829a4aSRandall Stewart /* resend last asconf ack */ 33382afb3e84SRandall Stewart sctp_send_asconf_ack(stcb); 3339f8829a4aSRandall Stewart break; 3340f8829a4aSRandall Stewart case SCTP_FORWARD_CUM_TSN: 3341f8829a4aSRandall Stewart send_forward_tsn(stcb, &stcb->asoc); 3342f8829a4aSRandall Stewart break; 3343f8829a4aSRandall Stewart /* can't do anything with these */ 3344f8829a4aSRandall Stewart case SCTP_PACKET_DROPPED: 3345f8829a4aSRandall Stewart case SCTP_INITIATION_ACK: /* this should not happen */ 3346f8829a4aSRandall Stewart case SCTP_HEARTBEAT_ACK: 3347f8829a4aSRandall Stewart case SCTP_ABORT_ASSOCIATION: 3348f8829a4aSRandall Stewart case SCTP_OPERATION_ERROR: 3349f8829a4aSRandall Stewart case SCTP_SHUTDOWN_COMPLETE: 3350f8829a4aSRandall Stewart case SCTP_ECN_ECHO: 3351f8829a4aSRandall Stewart case SCTP_ECN_CWR: 3352f8829a4aSRandall Stewart default: 3353f8829a4aSRandall Stewart break; 3354f8829a4aSRandall Stewart } 3355f8829a4aSRandall Stewart return (0); 3356f8829a4aSRandall Stewart } 3357f8829a4aSRandall Stewart 3358f8829a4aSRandall Stewart void 3359f8829a4aSRandall Stewart sctp_reset_in_stream(struct sctp_tcb *stcb, int number_entries, uint16_t * list) 3360f8829a4aSRandall Stewart { 3361f8829a4aSRandall Stewart int i; 3362f8829a4aSRandall Stewart uint16_t temp; 3363f8829a4aSRandall Stewart 3364f8829a4aSRandall Stewart /* 3365f8829a4aSRandall Stewart * We set things to 0xffff since this is the last delivered sequence 3366f8829a4aSRandall Stewart * and we will be sending in 0 after the reset. 3367f8829a4aSRandall Stewart */ 3368f8829a4aSRandall Stewart 3369f8829a4aSRandall Stewart if (number_entries) { 3370f8829a4aSRandall Stewart for (i = 0; i < number_entries; i++) { 3371f8829a4aSRandall Stewart temp = ntohs(list[i]); 3372f8829a4aSRandall Stewart if (temp >= stcb->asoc.streamincnt) { 3373f8829a4aSRandall Stewart continue; 3374f8829a4aSRandall Stewart } 3375f8829a4aSRandall Stewart stcb->asoc.strmin[temp].last_sequence_delivered = 0xffff; 3376f8829a4aSRandall Stewart } 3377f8829a4aSRandall Stewart } else { 3378f8829a4aSRandall Stewart list = NULL; 3379f8829a4aSRandall Stewart for (i = 0; i < stcb->asoc.streamincnt; i++) { 3380f8829a4aSRandall Stewart stcb->asoc.strmin[i].last_sequence_delivered = 0xffff; 3381f8829a4aSRandall Stewart } 3382f8829a4aSRandall Stewart } 3383ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_RECV, stcb, number_entries, (void *)list, SCTP_SO_NOT_LOCKED); 3384f8829a4aSRandall Stewart } 3385f8829a4aSRandall Stewart 3386f8829a4aSRandall Stewart static void 3387f8829a4aSRandall Stewart sctp_reset_out_streams(struct sctp_tcb *stcb, int number_entries, uint16_t * list) 3388f8829a4aSRandall Stewart { 3389f8829a4aSRandall Stewart int i; 3390f8829a4aSRandall Stewart 3391f8829a4aSRandall Stewart if (number_entries == 0) { 3392f8829a4aSRandall Stewart for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3393f8829a4aSRandall Stewart stcb->asoc.strmout[i].next_sequence_sent = 0; 3394f8829a4aSRandall Stewart } 3395f8829a4aSRandall Stewart } else if (number_entries) { 3396f8829a4aSRandall Stewart for (i = 0; i < number_entries; i++) { 3397f8829a4aSRandall Stewart uint16_t temp; 3398f8829a4aSRandall Stewart 3399f8829a4aSRandall Stewart temp = ntohs(list[i]); 3400f8829a4aSRandall Stewart if (temp >= stcb->asoc.streamoutcnt) { 3401f8829a4aSRandall Stewart /* no such stream */ 3402f8829a4aSRandall Stewart continue; 3403f8829a4aSRandall Stewart } 3404f8829a4aSRandall Stewart stcb->asoc.strmout[temp].next_sequence_sent = 0; 3405f8829a4aSRandall Stewart } 3406f8829a4aSRandall Stewart } 3407ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_SEND, stcb, number_entries, (void *)list, SCTP_SO_NOT_LOCKED); 3408f8829a4aSRandall Stewart } 3409f8829a4aSRandall Stewart 3410f8829a4aSRandall Stewart 3411f8829a4aSRandall Stewart struct sctp_stream_reset_out_request * 3412f8829a4aSRandall Stewart sctp_find_stream_reset(struct sctp_tcb *stcb, uint32_t seq, struct sctp_tmit_chunk **bchk) 3413f8829a4aSRandall Stewart { 3414f8829a4aSRandall Stewart struct sctp_association *asoc; 3415f8829a4aSRandall Stewart struct sctp_stream_reset_out_req *req; 3416f8829a4aSRandall Stewart struct sctp_stream_reset_out_request *r; 3417f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 3418f8829a4aSRandall Stewart int len, clen; 3419f8829a4aSRandall Stewart 3420f8829a4aSRandall Stewart asoc = &stcb->asoc; 3421f8829a4aSRandall Stewart if (TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 3422d06c82f1SRandall Stewart asoc->stream_reset_outstanding = 0; 3423f8829a4aSRandall Stewart return (NULL); 3424f8829a4aSRandall Stewart } 3425f8829a4aSRandall Stewart if (stcb->asoc.str_reset == NULL) { 3426d06c82f1SRandall Stewart asoc->stream_reset_outstanding = 0; 3427f8829a4aSRandall Stewart return (NULL); 3428f8829a4aSRandall Stewart } 3429f8829a4aSRandall Stewart chk = stcb->asoc.str_reset; 3430f8829a4aSRandall Stewart if (chk->data == NULL) { 3431f8829a4aSRandall Stewart return (NULL); 3432f8829a4aSRandall Stewart } 3433f8829a4aSRandall Stewart if (bchk) { 3434f8829a4aSRandall Stewart /* he wants a copy of the chk pointer */ 3435f8829a4aSRandall Stewart *bchk = chk; 3436f8829a4aSRandall Stewart } 3437f8829a4aSRandall Stewart clen = chk->send_size; 3438f8829a4aSRandall Stewart req = mtod(chk->data, struct sctp_stream_reset_out_req *); 3439f8829a4aSRandall Stewart r = &req->sr_req; 3440f8829a4aSRandall Stewart if (ntohl(r->request_seq) == seq) { 3441f8829a4aSRandall Stewart /* found it */ 3442f8829a4aSRandall Stewart return (r); 3443f8829a4aSRandall Stewart } 3444f8829a4aSRandall Stewart len = SCTP_SIZE32(ntohs(r->ph.param_length)); 3445f8829a4aSRandall Stewart if (clen > (len + (int)sizeof(struct sctp_chunkhdr))) { 3446f8829a4aSRandall Stewart /* move to the next one, there can only be a max of two */ 3447f8829a4aSRandall Stewart r = (struct sctp_stream_reset_out_request *)((caddr_t)r + len); 3448f8829a4aSRandall Stewart if (ntohl(r->request_seq) == seq) { 3449f8829a4aSRandall Stewart return (r); 3450f8829a4aSRandall Stewart } 3451f8829a4aSRandall Stewart } 3452f8829a4aSRandall Stewart /* that seq is not here */ 3453f8829a4aSRandall Stewart return (NULL); 3454f8829a4aSRandall Stewart } 3455f8829a4aSRandall Stewart 3456f8829a4aSRandall Stewart static void 3457f8829a4aSRandall Stewart sctp_clean_up_stream_reset(struct sctp_tcb *stcb) 3458f8829a4aSRandall Stewart { 3459f8829a4aSRandall Stewart struct sctp_association *asoc; 3460f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk = stcb->asoc.str_reset; 3461f8829a4aSRandall Stewart 3462f8829a4aSRandall Stewart if (stcb->asoc.str_reset == NULL) { 3463f8829a4aSRandall Stewart return; 3464f8829a4aSRandall Stewart } 3465f42a358aSRandall Stewart asoc = &stcb->asoc; 3466f42a358aSRandall Stewart 3467b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo, SCTP_FROM_SCTP_INPUT + SCTP_LOC_26); 3468f8829a4aSRandall Stewart TAILQ_REMOVE(&asoc->control_send_queue, 3469f8829a4aSRandall Stewart chk, 3470f8829a4aSRandall Stewart sctp_next); 3471f8829a4aSRandall Stewart if (chk->data) { 3472f8829a4aSRandall Stewart sctp_m_freem(chk->data); 3473f8829a4aSRandall Stewart chk->data = NULL; 3474f8829a4aSRandall Stewart } 3475f8829a4aSRandall Stewart asoc->ctrl_queue_cnt--; 3476f8829a4aSRandall Stewart sctp_free_a_chunk(stcb, chk); 347704ee05e8SRandall Stewart /* sa_ignore NO_NULL_CHK */ 3478f8829a4aSRandall Stewart stcb->asoc.str_reset = NULL; 3479f8829a4aSRandall Stewart } 3480f8829a4aSRandall Stewart 3481f8829a4aSRandall Stewart 3482f8829a4aSRandall Stewart static int 3483f8829a4aSRandall Stewart sctp_handle_stream_reset_response(struct sctp_tcb *stcb, 3484f8829a4aSRandall Stewart uint32_t seq, uint32_t action, 348508598d70SRandall Stewart struct sctp_stream_reset_response *respin) 3486f8829a4aSRandall Stewart { 3487f8829a4aSRandall Stewart uint16_t type; 3488f8829a4aSRandall Stewart int lparm_len; 3489f8829a4aSRandall Stewart struct sctp_association *asoc = &stcb->asoc; 3490f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 3491f8829a4aSRandall Stewart struct sctp_stream_reset_out_request *srparam; 3492f8829a4aSRandall Stewart int number_entries; 3493f8829a4aSRandall Stewart 3494f8829a4aSRandall Stewart if (asoc->stream_reset_outstanding == 0) { 3495f8829a4aSRandall Stewart /* duplicate */ 3496f8829a4aSRandall Stewart return (0); 3497f8829a4aSRandall Stewart } 3498f8829a4aSRandall Stewart if (seq == stcb->asoc.str_reset_seq_out) { 3499f8829a4aSRandall Stewart srparam = sctp_find_stream_reset(stcb, seq, &chk); 3500f8829a4aSRandall Stewart if (srparam) { 3501f8829a4aSRandall Stewart stcb->asoc.str_reset_seq_out++; 3502f8829a4aSRandall Stewart type = ntohs(srparam->ph.param_type); 3503f8829a4aSRandall Stewart lparm_len = ntohs(srparam->ph.param_length); 3504f8829a4aSRandall Stewart if (type == SCTP_STR_RESET_OUT_REQUEST) { 350508598d70SRandall Stewart number_entries = (lparm_len - sizeof(struct sctp_stream_reset_out_request)) / sizeof(uint16_t); 3506f8829a4aSRandall Stewart asoc->stream_reset_out_is_outstanding = 0; 3507f8829a4aSRandall Stewart if (asoc->stream_reset_outstanding) 3508f8829a4aSRandall Stewart asoc->stream_reset_outstanding--; 3509f8829a4aSRandall Stewart if (action == SCTP_STREAM_RESET_PERFORMED) { 3510f8829a4aSRandall Stewart /* do it */ 3511f8829a4aSRandall Stewart sctp_reset_out_streams(stcb, number_entries, srparam->list_of_streams); 3512f8829a4aSRandall Stewart } else { 3513ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_FAILED_OUT, stcb, number_entries, srparam->list_of_streams, SCTP_SO_NOT_LOCKED); 3514f8829a4aSRandall Stewart } 3515f8829a4aSRandall Stewart } else if (type == SCTP_STR_RESET_IN_REQUEST) { 3516f8829a4aSRandall Stewart /* Answered my request */ 351708598d70SRandall Stewart number_entries = (lparm_len - sizeof(struct sctp_stream_reset_in_request)) / sizeof(uint16_t); 3518f8829a4aSRandall Stewart if (asoc->stream_reset_outstanding) 3519f8829a4aSRandall Stewart asoc->stream_reset_outstanding--; 3520f8829a4aSRandall Stewart if (action != SCTP_STREAM_RESET_PERFORMED) { 3521ceaad40aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_FAILED_IN, stcb, number_entries, srparam->list_of_streams, SCTP_SO_NOT_LOCKED); 3522f8829a4aSRandall Stewart } 3523ea44232bSRandall Stewart } else if (type == SCTP_STR_RESET_ADD_STREAMS) { 3524ea44232bSRandall Stewart /* Ok we now may have more streams */ 35258aae9493SRandall Stewart if (asoc->stream_reset_outstanding) 35268aae9493SRandall Stewart asoc->stream_reset_outstanding--; 3527ea44232bSRandall Stewart if (action == SCTP_STREAM_RESET_PERFORMED) { 3528ea44232bSRandall Stewart /* Put the new streams into effect */ 3529ea44232bSRandall Stewart stcb->asoc.streamoutcnt = stcb->asoc.strm_realoutsize; 3530ea44232bSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_ADD_OK, stcb, 3531ea44232bSRandall Stewart (uint32_t) stcb->asoc.streamoutcnt, NULL, SCTP_SO_NOT_LOCKED); 3532ea44232bSRandall Stewart } else { 3533ea44232bSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_ADD_FAIL, stcb, 3534ea44232bSRandall Stewart (uint32_t) stcb->asoc.streamoutcnt, NULL, SCTP_SO_NOT_LOCKED); 3535ea44232bSRandall Stewart } 3536f8829a4aSRandall Stewart } else if (type == SCTP_STR_RESET_TSN_REQUEST) { 3537f8829a4aSRandall Stewart /** 3538f8829a4aSRandall Stewart * a) Adopt the new in tsn. 3539f8829a4aSRandall Stewart * b) reset the map 3540f8829a4aSRandall Stewart * c) Adopt the new out-tsn 3541f8829a4aSRandall Stewart */ 3542f8829a4aSRandall Stewart struct sctp_stream_reset_response_tsn *resp; 3543f8829a4aSRandall Stewart struct sctp_forward_tsn_chunk fwdtsn; 3544f8829a4aSRandall Stewart int abort_flag = 0; 3545f8829a4aSRandall Stewart 3546f8829a4aSRandall Stewart if (respin == NULL) { 3547f8829a4aSRandall Stewart /* huh ? */ 3548f8829a4aSRandall Stewart return (0); 3549f8829a4aSRandall Stewart } 3550f8829a4aSRandall Stewart if (action == SCTP_STREAM_RESET_PERFORMED) { 3551f8829a4aSRandall Stewart resp = (struct sctp_stream_reset_response_tsn *)respin; 3552f8829a4aSRandall Stewart asoc->stream_reset_outstanding--; 3553f8829a4aSRandall Stewart fwdtsn.ch.chunk_length = htons(sizeof(struct sctp_forward_tsn_chunk)); 3554f8829a4aSRandall Stewart fwdtsn.ch.chunk_type = SCTP_FORWARD_CUM_TSN; 3555f8829a4aSRandall Stewart fwdtsn.new_cumulative_tsn = htonl(ntohl(resp->senders_next_tsn) - 1); 3556671d309cSRandall Stewart sctp_handle_forward_tsn(stcb, &fwdtsn, &abort_flag, NULL, 0); 3557f8829a4aSRandall Stewart if (abort_flag) { 3558f8829a4aSRandall Stewart return (1); 3559f8829a4aSRandall Stewart } 3560f8829a4aSRandall Stewart stcb->asoc.highest_tsn_inside_map = (ntohl(resp->senders_next_tsn) - 1); 3561b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 3562b3f1ea41SRandall Stewart sctp_log_map(0, 7, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 3563b3f1ea41SRandall Stewart } 3564d6af161aSRandall Stewart stcb->asoc.tsn_last_delivered = stcb->asoc.cumulative_tsn = stcb->asoc.highest_tsn_inside_map; 3565f8829a4aSRandall Stewart stcb->asoc.mapping_array_base_tsn = ntohl(resp->senders_next_tsn); 3566f8829a4aSRandall Stewart memset(stcb->asoc.mapping_array, 0, stcb->asoc.mapping_array_size); 3567830d754dSRandall Stewart 3568830d754dSRandall Stewart stcb->asoc.highest_tsn_inside_nr_map = stcb->asoc.highest_tsn_inside_map; 3569b5c16493SMichael Tuexen memset(stcb->asoc.nr_mapping_array, 0, stcb->asoc.mapping_array_size); 357077acdc25SRandall Stewart 3571f8829a4aSRandall Stewart stcb->asoc.sending_seq = ntohl(resp->receivers_next_tsn); 3572f8829a4aSRandall Stewart stcb->asoc.last_acked_seq = stcb->asoc.cumulative_tsn; 3573f8829a4aSRandall Stewart 3574f8829a4aSRandall Stewart sctp_reset_out_streams(stcb, 0, (uint16_t *) NULL); 3575f8829a4aSRandall Stewart sctp_reset_in_stream(stcb, 0, (uint16_t *) NULL); 3576f8829a4aSRandall Stewart 3577f8829a4aSRandall Stewart } 3578f8829a4aSRandall Stewart } 3579f8829a4aSRandall Stewart /* get rid of the request and get the request flags */ 3580f8829a4aSRandall Stewart if (asoc->stream_reset_outstanding == 0) { 3581f8829a4aSRandall Stewart sctp_clean_up_stream_reset(stcb); 3582f8829a4aSRandall Stewart } 3583f8829a4aSRandall Stewart } 3584f8829a4aSRandall Stewart } 3585f8829a4aSRandall Stewart return (0); 3586f8829a4aSRandall Stewart } 3587f8829a4aSRandall Stewart 3588f8829a4aSRandall Stewart static void 3589f8829a4aSRandall Stewart sctp_handle_str_reset_request_in(struct sctp_tcb *stcb, 3590f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk, 3591671d309cSRandall Stewart struct sctp_stream_reset_in_request *req, int trunc) 3592f8829a4aSRandall Stewart { 3593f8829a4aSRandall Stewart uint32_t seq; 3594f8829a4aSRandall Stewart int len, i; 3595f8829a4aSRandall Stewart int number_entries; 3596f8829a4aSRandall Stewart uint16_t temp; 3597f8829a4aSRandall Stewart 3598f8829a4aSRandall Stewart /* 3599f8829a4aSRandall Stewart * peer wants me to send a str-reset to him for my outgoing seq's if 3600f8829a4aSRandall Stewart * seq_in is right. 3601f8829a4aSRandall Stewart */ 3602f8829a4aSRandall Stewart struct sctp_association *asoc = &stcb->asoc; 3603f8829a4aSRandall Stewart 3604f8829a4aSRandall Stewart seq = ntohl(req->request_seq); 3605f8829a4aSRandall Stewart if (asoc->str_reset_seq_in == seq) { 3606671d309cSRandall Stewart if (trunc) { 3607671d309cSRandall Stewart /* Can't do it, since they exceeded our buffer size */ 3608671d309cSRandall Stewart asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3609671d309cSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_DENIED; 3610671d309cSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3611671d309cSRandall Stewart } else if (stcb->asoc.stream_reset_out_is_outstanding == 0) { 3612f8829a4aSRandall Stewart len = ntohs(req->ph.param_length); 3613f8829a4aSRandall Stewart number_entries = ((len - sizeof(struct sctp_stream_reset_in_request)) / sizeof(uint16_t)); 3614f8829a4aSRandall Stewart for (i = 0; i < number_entries; i++) { 3615f8829a4aSRandall Stewart temp = ntohs(req->list_of_streams[i]); 3616f8829a4aSRandall Stewart req->list_of_streams[i] = temp; 3617f8829a4aSRandall Stewart } 3618f8829a4aSRandall Stewart /* move the reset action back one */ 3619f8829a4aSRandall Stewart asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3620f8829a4aSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_PERFORMED; 3621f8829a4aSRandall Stewart sctp_add_stream_reset_out(chk, number_entries, req->list_of_streams, 3622f8829a4aSRandall Stewart asoc->str_reset_seq_out, 3623f8829a4aSRandall Stewart seq, (asoc->sending_seq - 1)); 3624f8829a4aSRandall Stewart asoc->stream_reset_out_is_outstanding = 1; 3625f8829a4aSRandall Stewart asoc->str_reset = chk; 3626f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 3627f8829a4aSRandall Stewart stcb->asoc.stream_reset_outstanding++; 3628f8829a4aSRandall Stewart } else { 3629f8829a4aSRandall Stewart /* Can't do it, since we have sent one out */ 3630f8829a4aSRandall Stewart asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3631f8829a4aSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_TRY_LATER; 3632f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3633f8829a4aSRandall Stewart } 3634f8829a4aSRandall Stewart asoc->str_reset_seq_in++; 3635f8829a4aSRandall Stewart } else if (asoc->str_reset_seq_in - 1 == seq) { 3636f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3637f8829a4aSRandall Stewart } else if (asoc->str_reset_seq_in - 2 == seq) { 3638f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 3639f8829a4aSRandall Stewart } else { 3640f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_BAD_SEQNO); 3641f8829a4aSRandall Stewart } 3642f8829a4aSRandall Stewart } 3643f8829a4aSRandall Stewart 3644f8829a4aSRandall Stewart static int 3645f8829a4aSRandall Stewart sctp_handle_str_reset_request_tsn(struct sctp_tcb *stcb, 3646f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk, 3647f8829a4aSRandall Stewart struct sctp_stream_reset_tsn_request *req) 3648f8829a4aSRandall Stewart { 3649f8829a4aSRandall Stewart /* reset all in and out and update the tsn */ 3650f8829a4aSRandall Stewart /* 3651f8829a4aSRandall Stewart * A) reset my str-seq's on in and out. B) Select a receive next, 3652f8829a4aSRandall Stewart * and set cum-ack to it. Also process this selected number as a 3653f8829a4aSRandall Stewart * fwd-tsn as well. C) set in the response my next sending seq. 3654f8829a4aSRandall Stewart */ 3655f8829a4aSRandall Stewart struct sctp_forward_tsn_chunk fwdtsn; 3656f8829a4aSRandall Stewart struct sctp_association *asoc = &stcb->asoc; 3657f8829a4aSRandall Stewart int abort_flag = 0; 3658f8829a4aSRandall Stewart uint32_t seq; 3659f8829a4aSRandall Stewart 3660f8829a4aSRandall Stewart seq = ntohl(req->request_seq); 3661f8829a4aSRandall Stewart if (asoc->str_reset_seq_in == seq) { 3662f8829a4aSRandall Stewart fwdtsn.ch.chunk_length = htons(sizeof(struct sctp_forward_tsn_chunk)); 3663f8829a4aSRandall Stewart fwdtsn.ch.chunk_type = SCTP_FORWARD_CUM_TSN; 3664f8829a4aSRandall Stewart fwdtsn.ch.chunk_flags = 0; 3665f8829a4aSRandall Stewart fwdtsn.new_cumulative_tsn = htonl(stcb->asoc.highest_tsn_inside_map + 1); 3666671d309cSRandall Stewart sctp_handle_forward_tsn(stcb, &fwdtsn, &abort_flag, NULL, 0); 3667f8829a4aSRandall Stewart if (abort_flag) { 3668f8829a4aSRandall Stewart return (1); 3669f8829a4aSRandall Stewart } 3670f8829a4aSRandall Stewart stcb->asoc.highest_tsn_inside_map += SCTP_STREAM_RESET_TSN_DELTA; 3671b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) { 3672b3f1ea41SRandall Stewart sctp_log_map(0, 10, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT); 3673b3f1ea41SRandall Stewart } 3674d6af161aSRandall Stewart stcb->asoc.tsn_last_delivered = stcb->asoc.cumulative_tsn = stcb->asoc.highest_tsn_inside_map; 3675f8829a4aSRandall Stewart stcb->asoc.mapping_array_base_tsn = stcb->asoc.highest_tsn_inside_map + 1; 3676f8829a4aSRandall Stewart memset(stcb->asoc.mapping_array, 0, stcb->asoc.mapping_array_size); 3677830d754dSRandall Stewart stcb->asoc.highest_tsn_inside_nr_map = stcb->asoc.highest_tsn_inside_map; 3678b5c16493SMichael Tuexen memset(stcb->asoc.nr_mapping_array, 0, stcb->asoc.mapping_array_size); 3679f8829a4aSRandall Stewart atomic_add_int(&stcb->asoc.sending_seq, 1); 3680f8829a4aSRandall Stewart /* save off historical data for retrans */ 3681f8829a4aSRandall Stewart stcb->asoc.last_sending_seq[1] = stcb->asoc.last_sending_seq[0]; 3682f8829a4aSRandall Stewart stcb->asoc.last_sending_seq[0] = stcb->asoc.sending_seq; 3683f8829a4aSRandall Stewart stcb->asoc.last_base_tsnsent[1] = stcb->asoc.last_base_tsnsent[0]; 3684f8829a4aSRandall Stewart stcb->asoc.last_base_tsnsent[0] = stcb->asoc.mapping_array_base_tsn; 3685f8829a4aSRandall Stewart 3686f8829a4aSRandall Stewart sctp_add_stream_reset_result_tsn(chk, 3687f8829a4aSRandall Stewart ntohl(req->request_seq), 3688f8829a4aSRandall Stewart SCTP_STREAM_RESET_PERFORMED, 3689f8829a4aSRandall Stewart stcb->asoc.sending_seq, 3690f8829a4aSRandall Stewart stcb->asoc.mapping_array_base_tsn); 3691f8829a4aSRandall Stewart sctp_reset_out_streams(stcb, 0, (uint16_t *) NULL); 3692f8829a4aSRandall Stewart sctp_reset_in_stream(stcb, 0, (uint16_t *) NULL); 3693f8829a4aSRandall Stewart stcb->asoc.last_reset_action[1] = stcb->asoc.last_reset_action[0]; 3694f8829a4aSRandall Stewart stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_PERFORMED; 3695f8829a4aSRandall Stewart 3696f8829a4aSRandall Stewart asoc->str_reset_seq_in++; 3697f8829a4aSRandall Stewart } else if (asoc->str_reset_seq_in - 1 == seq) { 3698f8829a4aSRandall Stewart sctp_add_stream_reset_result_tsn(chk, seq, asoc->last_reset_action[0], 3699f8829a4aSRandall Stewart stcb->asoc.last_sending_seq[0], 3700f8829a4aSRandall Stewart stcb->asoc.last_base_tsnsent[0] 3701f8829a4aSRandall Stewart ); 3702f8829a4aSRandall Stewart } else if (asoc->str_reset_seq_in - 2 == seq) { 3703f8829a4aSRandall Stewart sctp_add_stream_reset_result_tsn(chk, seq, asoc->last_reset_action[1], 3704f8829a4aSRandall Stewart stcb->asoc.last_sending_seq[1], 3705f8829a4aSRandall Stewart stcb->asoc.last_base_tsnsent[1] 3706f8829a4aSRandall Stewart ); 3707f8829a4aSRandall Stewart } else { 3708f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_BAD_SEQNO); 3709f8829a4aSRandall Stewart } 3710f8829a4aSRandall Stewart return (0); 3711f8829a4aSRandall Stewart } 3712f8829a4aSRandall Stewart 3713f8829a4aSRandall Stewart static void 3714f8829a4aSRandall Stewart sctp_handle_str_reset_request_out(struct sctp_tcb *stcb, 3715f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk, 3716671d309cSRandall Stewart struct sctp_stream_reset_out_request *req, int trunc) 3717f8829a4aSRandall Stewart { 3718f8829a4aSRandall Stewart uint32_t seq, tsn; 3719f8829a4aSRandall Stewart int number_entries, len; 3720f8829a4aSRandall Stewart struct sctp_association *asoc = &stcb->asoc; 3721f8829a4aSRandall Stewart 3722f8829a4aSRandall Stewart seq = ntohl(req->request_seq); 3723f8829a4aSRandall Stewart 3724f8829a4aSRandall Stewart /* now if its not a duplicate we process it */ 3725f8829a4aSRandall Stewart if (asoc->str_reset_seq_in == seq) { 3726f8829a4aSRandall Stewart len = ntohs(req->ph.param_length); 3727f8829a4aSRandall Stewart number_entries = ((len - sizeof(struct sctp_stream_reset_out_request)) / sizeof(uint16_t)); 3728f8829a4aSRandall Stewart /* 3729f8829a4aSRandall Stewart * the sender is resetting, handle the list issue.. we must 3730f8829a4aSRandall Stewart * a) verify if we can do the reset, if so no problem b) If 3731f8829a4aSRandall Stewart * we can't do the reset we must copy the request. c) queue 3732f8829a4aSRandall Stewart * it, and setup the data in processor to trigger it off 3733f8829a4aSRandall Stewart * when needed and dequeue all the queued data. 3734f8829a4aSRandall Stewart */ 3735f8829a4aSRandall Stewart tsn = ntohl(req->send_reset_at_tsn); 3736f8829a4aSRandall Stewart 3737f8829a4aSRandall Stewart /* move the reset action back one */ 3738f8829a4aSRandall Stewart asoc->last_reset_action[1] = asoc->last_reset_action[0]; 3739671d309cSRandall Stewart if (trunc) { 3740671d309cSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_DENIED); 3741671d309cSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_DENIED; 374220b07a4dSMichael Tuexen } else if (SCTP_TSN_GE(asoc->cumulative_tsn, tsn)) { 3743f8829a4aSRandall Stewart /* we can do it now */ 3744f8829a4aSRandall Stewart sctp_reset_in_stream(stcb, number_entries, req->list_of_streams); 3745f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_PERFORMED); 3746f8829a4aSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_PERFORMED; 3747f8829a4aSRandall Stewart } else { 3748f8829a4aSRandall Stewart /* 3749f8829a4aSRandall Stewart * we must queue it up and thus wait for the TSN's 3750f8829a4aSRandall Stewart * to arrive that are at or before tsn 3751f8829a4aSRandall Stewart */ 3752f8829a4aSRandall Stewart struct sctp_stream_reset_list *liste; 3753f8829a4aSRandall Stewart int siz; 3754f8829a4aSRandall Stewart 3755f8829a4aSRandall Stewart siz = sizeof(struct sctp_stream_reset_list) + (number_entries * sizeof(uint16_t)); 3756f8829a4aSRandall Stewart SCTP_MALLOC(liste, struct sctp_stream_reset_list *, 3757207304d4SRandall Stewart siz, SCTP_M_STRESET); 3758f8829a4aSRandall Stewart if (liste == NULL) { 3759f8829a4aSRandall Stewart /* gak out of memory */ 3760f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_DENIED); 3761f8829a4aSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_DENIED; 3762f8829a4aSRandall Stewart return; 3763f8829a4aSRandall Stewart } 3764f8829a4aSRandall Stewart liste->tsn = tsn; 3765f8829a4aSRandall Stewart liste->number_entries = number_entries; 3766f8829a4aSRandall Stewart memcpy(&liste->req, req, 3767f8829a4aSRandall Stewart (sizeof(struct sctp_stream_reset_out_request) + (number_entries * sizeof(uint16_t)))); 3768f8829a4aSRandall Stewart TAILQ_INSERT_TAIL(&asoc->resetHead, liste, next_resp); 3769f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_PERFORMED); 3770f8829a4aSRandall Stewart asoc->last_reset_action[0] = SCTP_STREAM_RESET_PERFORMED; 3771f8829a4aSRandall Stewart } 3772f8829a4aSRandall Stewart asoc->str_reset_seq_in++; 3773f8829a4aSRandall Stewart } else if ((asoc->str_reset_seq_in - 1) == seq) { 3774f8829a4aSRandall Stewart /* 3775f8829a4aSRandall Stewart * one seq back, just echo back last action since my 3776f8829a4aSRandall Stewart * response was lost. 3777f8829a4aSRandall Stewart */ 3778f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 3779f8829a4aSRandall Stewart } else if ((asoc->str_reset_seq_in - 2) == seq) { 3780f8829a4aSRandall Stewart /* 3781f8829a4aSRandall Stewart * two seq back, just echo back last action since my 3782f8829a4aSRandall Stewart * response was lost. 3783f8829a4aSRandall Stewart */ 3784f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 3785f8829a4aSRandall Stewart } else { 3786f8829a4aSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_BAD_SEQNO); 3787f8829a4aSRandall Stewart } 3788f8829a4aSRandall Stewart } 3789f8829a4aSRandall Stewart 3790ea44232bSRandall Stewart static void 3791ea44232bSRandall Stewart sctp_handle_str_reset_add_strm(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 3792ea44232bSRandall Stewart struct sctp_stream_reset_add_strm *str_add) 3793ea44232bSRandall Stewart { 3794ea44232bSRandall Stewart /* 3795ea44232bSRandall Stewart * Peer is requesting to add more streams. If its within our 3796ea44232bSRandall Stewart * max-streams we will allow it. 3797ea44232bSRandall Stewart */ 3798ea44232bSRandall Stewart uint16_t num_stream, i; 3799ea44232bSRandall Stewart uint32_t seq; 38008aae9493SRandall Stewart struct sctp_association *asoc = &stcb->asoc; 38014a9ef3f8SMichael Tuexen struct sctp_queued_to_read *ctl, *nctl; 3802ea44232bSRandall Stewart 3803ea44232bSRandall Stewart /* Get the number. */ 3804ea44232bSRandall Stewart seq = ntohl(str_add->request_seq); 3805ea44232bSRandall Stewart num_stream = ntohs(str_add->number_of_streams); 3806ea44232bSRandall Stewart /* Now what would be the new total? */ 38078aae9493SRandall Stewart if (asoc->str_reset_seq_in == seq) { 3808ea44232bSRandall Stewart num_stream += stcb->asoc.streamincnt; 3809ea44232bSRandall Stewart if (num_stream > stcb->asoc.max_inbound_streams) { 3810ea44232bSRandall Stewart /* We must reject it they ask for to many */ 3811ea44232bSRandall Stewart denied: 3812ea44232bSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_DENIED); 3813ea44232bSRandall Stewart stcb->asoc.last_reset_action[1] = stcb->asoc.last_reset_action[0]; 3814ea44232bSRandall Stewart stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_DENIED; 3815ea44232bSRandall Stewart } else { 3816ea44232bSRandall Stewart /* Ok, we can do that :-) */ 3817ea44232bSRandall Stewart struct sctp_stream_in *oldstrm; 3818ea44232bSRandall Stewart 3819ea44232bSRandall Stewart /* save off the old */ 3820ea44232bSRandall Stewart oldstrm = stcb->asoc.strmin; 3821ea44232bSRandall Stewart SCTP_MALLOC(stcb->asoc.strmin, struct sctp_stream_in *, 3822ea44232bSRandall Stewart (num_stream * sizeof(struct sctp_stream_in)), 3823ea44232bSRandall Stewart SCTP_M_STRMI); 3824ea44232bSRandall Stewart if (stcb->asoc.strmin == NULL) { 3825ea44232bSRandall Stewart stcb->asoc.strmin = oldstrm; 3826ea44232bSRandall Stewart goto denied; 3827ea44232bSRandall Stewart } 3828ea44232bSRandall Stewart /* copy off the old data */ 38298aae9493SRandall Stewart for (i = 0; i < stcb->asoc.streamincnt; i++) { 38308aae9493SRandall Stewart TAILQ_INIT(&stcb->asoc.strmin[i].inqueue); 38318aae9493SRandall Stewart stcb->asoc.strmin[i].stream_no = i; 38328aae9493SRandall Stewart stcb->asoc.strmin[i].last_sequence_delivered = oldstrm[i].last_sequence_delivered; 38338aae9493SRandall Stewart stcb->asoc.strmin[i].delivery_started = oldstrm[i].delivery_started; 38348aae9493SRandall Stewart /* now anything on those queues? */ 38354a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(ctl, &oldstrm[i].inqueue, next, nctl) { 38368aae9493SRandall Stewart TAILQ_REMOVE(&oldstrm[i].inqueue, ctl, next); 38378aae9493SRandall Stewart TAILQ_INSERT_TAIL(&stcb->asoc.strmin[i].inqueue, ctl, next); 38388aae9493SRandall Stewart } 38398aae9493SRandall Stewart } 3840ea44232bSRandall Stewart /* Init the new streams */ 3841ea44232bSRandall Stewart for (i = stcb->asoc.streamincnt; i < num_stream; i++) { 3842ea44232bSRandall Stewart TAILQ_INIT(&stcb->asoc.strmin[i].inqueue); 3843ea44232bSRandall Stewart stcb->asoc.strmin[i].stream_no = i; 3844ea44232bSRandall Stewart stcb->asoc.strmin[i].last_sequence_delivered = 0xffff; 3845ea44232bSRandall Stewart stcb->asoc.strmin[i].delivery_started = 0; 3846ea44232bSRandall Stewart } 3847ea44232bSRandall Stewart SCTP_FREE(oldstrm, SCTP_M_STRMI); 3848ea44232bSRandall Stewart /* update the size */ 3849ea44232bSRandall Stewart stcb->asoc.streamincnt = num_stream; 3850ea44232bSRandall Stewart /* Send the ack */ 3851ea44232bSRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_PERFORMED); 3852ea44232bSRandall Stewart stcb->asoc.last_reset_action[1] = stcb->asoc.last_reset_action[0]; 3853ea44232bSRandall Stewart stcb->asoc.last_reset_action[0] = SCTP_STREAM_RESET_PERFORMED; 3854ea44232bSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_STR_RESET_INSTREAM_ADD_OK, stcb, 3855ea44232bSRandall Stewart (uint32_t) stcb->asoc.streamincnt, NULL, SCTP_SO_NOT_LOCKED); 3856ea44232bSRandall Stewart } 38578aae9493SRandall Stewart } else if ((asoc->str_reset_seq_in - 1) == seq) { 38588aae9493SRandall Stewart /* 38598aae9493SRandall Stewart * one seq back, just echo back last action since my 38608aae9493SRandall Stewart * response was lost. 38618aae9493SRandall Stewart */ 38628aae9493SRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[0]); 38638aae9493SRandall Stewart } else if ((asoc->str_reset_seq_in - 2) == seq) { 38648aae9493SRandall Stewart /* 38658aae9493SRandall Stewart * two seq back, just echo back last action since my 38668aae9493SRandall Stewart * response was lost. 38678aae9493SRandall Stewart */ 38688aae9493SRandall Stewart sctp_add_stream_reset_result(chk, seq, asoc->last_reset_action[1]); 38698aae9493SRandall Stewart } else { 38708aae9493SRandall Stewart sctp_add_stream_reset_result(chk, seq, SCTP_STREAM_RESET_BAD_SEQNO); 38718aae9493SRandall Stewart 38728aae9493SRandall Stewart } 3873ea44232bSRandall Stewart } 3874ea44232bSRandall Stewart 3875671d309cSRandall Stewart #ifdef __GNUC__ 3876671d309cSRandall Stewart __attribute__((noinline)) 3877671d309cSRandall Stewart #endif 3878f8829a4aSRandall Stewart static int 3879671d309cSRandall Stewart sctp_handle_stream_reset(struct sctp_tcb *stcb, struct mbuf *m, int offset, 3880671d309cSRandall Stewart struct sctp_stream_reset_out_req *sr_req) 3881f8829a4aSRandall Stewart { 3882f8829a4aSRandall Stewart int chk_length, param_len, ptype; 3883671d309cSRandall Stewart struct sctp_paramhdr pstore; 3884671d309cSRandall Stewart uint8_t cstore[SCTP_CHUNK_BUFFER_SIZE]; 3885671d309cSRandall Stewart 3886f8829a4aSRandall Stewart uint32_t seq; 3887f8829a4aSRandall Stewart int num_req = 0; 3888671d309cSRandall Stewart int trunc = 0; 3889f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 3890f8829a4aSRandall Stewart struct sctp_chunkhdr *ch; 3891f8829a4aSRandall Stewart struct sctp_paramhdr *ph; 3892f42a358aSRandall Stewart int ret_code = 0; 3893f42a358aSRandall Stewart int num_param = 0; 3894f8829a4aSRandall Stewart 3895f8829a4aSRandall Stewart /* now it may be a reset or a reset-response */ 3896f8829a4aSRandall Stewart chk_length = ntohs(sr_req->ch.chunk_length); 3897f8829a4aSRandall Stewart 3898f8829a4aSRandall Stewart /* setup for adding the response */ 3899f8829a4aSRandall Stewart sctp_alloc_a_chunk(stcb, chk); 3900f8829a4aSRandall Stewart if (chk == NULL) { 3901f8829a4aSRandall Stewart return (ret_code); 3902f8829a4aSRandall Stewart } 3903f8829a4aSRandall Stewart chk->rec.chunk_id.id = SCTP_STREAM_RESET; 3904d06c82f1SRandall Stewart chk->rec.chunk_id.can_take_data = 0; 3905f8829a4aSRandall Stewart chk->asoc = &stcb->asoc; 3906f8829a4aSRandall Stewart chk->no_fr_allowed = 0; 3907f8829a4aSRandall Stewart chk->book_size = chk->send_size = sizeof(struct sctp_chunkhdr); 390844b7479bSRandall Stewart chk->book_size_scale = 0; 3909139bc87fSRandall Stewart chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA); 3910f8829a4aSRandall Stewart if (chk->data == NULL) { 3911f8829a4aSRandall Stewart strres_nochunk: 3912f8829a4aSRandall Stewart if (chk->data) { 3913f8829a4aSRandall Stewart sctp_m_freem(chk->data); 3914f8829a4aSRandall Stewart chk->data = NULL; 3915f8829a4aSRandall Stewart } 3916f8829a4aSRandall Stewart sctp_free_a_chunk(stcb, chk); 3917f8829a4aSRandall Stewart return (ret_code); 3918f8829a4aSRandall Stewart } 3919139bc87fSRandall Stewart SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 3920f8829a4aSRandall Stewart 3921f8829a4aSRandall Stewart /* setup chunk parameters */ 3922f8829a4aSRandall Stewart chk->sent = SCTP_DATAGRAM_UNSENT; 3923f8829a4aSRandall Stewart chk->snd_count = 0; 3924f8829a4aSRandall Stewart chk->whoTo = stcb->asoc.primary_destination; 3925f8829a4aSRandall Stewart atomic_add_int(&chk->whoTo->ref_count, 1); 3926f8829a4aSRandall Stewart 3927f8829a4aSRandall Stewart ch = mtod(chk->data, struct sctp_chunkhdr *); 3928f8829a4aSRandall Stewart ch->chunk_type = SCTP_STREAM_RESET; 3929f8829a4aSRandall Stewart ch->chunk_flags = 0; 3930f8829a4aSRandall Stewart ch->chunk_length = htons(chk->send_size); 3931139bc87fSRandall Stewart SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 3932671d309cSRandall Stewart offset += sizeof(struct sctp_chunkhdr); 3933f8829a4aSRandall Stewart while ((size_t)chk_length >= sizeof(struct sctp_stream_reset_tsn_request)) { 3934671d309cSRandall Stewart ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, sizeof(pstore), (uint8_t *) & pstore); 3935671d309cSRandall Stewart if (ph == NULL) 3936671d309cSRandall Stewart break; 3937f8829a4aSRandall Stewart param_len = ntohs(ph->param_length); 3938f8829a4aSRandall Stewart if (param_len < (int)sizeof(struct sctp_stream_reset_tsn_request)) { 3939f8829a4aSRandall Stewart /* bad param */ 3940f8829a4aSRandall Stewart break; 3941f8829a4aSRandall Stewart } 3942a964e8deSRandall Stewart ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset, min(param_len, (int)sizeof(cstore)), 3943671d309cSRandall Stewart (uint8_t *) & cstore); 3944f8829a4aSRandall Stewart ptype = ntohs(ph->param_type); 3945f8829a4aSRandall Stewart num_param++; 3946a964e8deSRandall Stewart if (param_len > (int)sizeof(cstore)) { 3947671d309cSRandall Stewart trunc = 1; 3948671d309cSRandall Stewart } else { 3949671d309cSRandall Stewart trunc = 0; 3950671d309cSRandall Stewart } 3951671d309cSRandall Stewart 3952f8829a4aSRandall Stewart if (num_param > SCTP_MAX_RESET_PARAMS) { 3953f8829a4aSRandall Stewart /* hit the max of parameters already sorry.. */ 3954f8829a4aSRandall Stewart break; 3955f8829a4aSRandall Stewart } 3956f8829a4aSRandall Stewart if (ptype == SCTP_STR_RESET_OUT_REQUEST) { 3957f8829a4aSRandall Stewart struct sctp_stream_reset_out_request *req_out; 3958f8829a4aSRandall Stewart 3959f8829a4aSRandall Stewart req_out = (struct sctp_stream_reset_out_request *)ph; 3960f8829a4aSRandall Stewart num_req++; 3961f8829a4aSRandall Stewart if (stcb->asoc.stream_reset_outstanding) { 3962f8829a4aSRandall Stewart seq = ntohl(req_out->response_seq); 3963f8829a4aSRandall Stewart if (seq == stcb->asoc.str_reset_seq_out) { 3964f8829a4aSRandall Stewart /* implicit ack */ 3965ad81507eSRandall Stewart (void)sctp_handle_stream_reset_response(stcb, seq, SCTP_STREAM_RESET_PERFORMED, NULL); 3966f8829a4aSRandall Stewart } 3967f8829a4aSRandall Stewart } 3968671d309cSRandall Stewart sctp_handle_str_reset_request_out(stcb, chk, req_out, trunc); 3969ea44232bSRandall Stewart } else if (ptype == SCTP_STR_RESET_ADD_STREAMS) { 3970ea44232bSRandall Stewart struct sctp_stream_reset_add_strm *str_add; 3971ea44232bSRandall Stewart 3972ea44232bSRandall Stewart str_add = (struct sctp_stream_reset_add_strm *)ph; 3973ea44232bSRandall Stewart num_req++; 3974ea44232bSRandall Stewart sctp_handle_str_reset_add_strm(stcb, chk, str_add); 3975f8829a4aSRandall Stewart } else if (ptype == SCTP_STR_RESET_IN_REQUEST) { 3976f8829a4aSRandall Stewart struct sctp_stream_reset_in_request *req_in; 3977f8829a4aSRandall Stewart 3978f8829a4aSRandall Stewart num_req++; 3979671d309cSRandall Stewart 3980f8829a4aSRandall Stewart req_in = (struct sctp_stream_reset_in_request *)ph; 3981671d309cSRandall Stewart 3982671d309cSRandall Stewart sctp_handle_str_reset_request_in(stcb, chk, req_in, trunc); 3983f8829a4aSRandall Stewart } else if (ptype == SCTP_STR_RESET_TSN_REQUEST) { 3984f8829a4aSRandall Stewart struct sctp_stream_reset_tsn_request *req_tsn; 3985f8829a4aSRandall Stewart 3986f8829a4aSRandall Stewart num_req++; 3987f8829a4aSRandall Stewart req_tsn = (struct sctp_stream_reset_tsn_request *)ph; 3988671d309cSRandall Stewart 3989f8829a4aSRandall Stewart if (sctp_handle_str_reset_request_tsn(stcb, chk, req_tsn)) { 3990f8829a4aSRandall Stewart ret_code = 1; 3991f8829a4aSRandall Stewart goto strres_nochunk; 3992f8829a4aSRandall Stewart } 3993f8829a4aSRandall Stewart /* no more */ 3994f8829a4aSRandall Stewart break; 3995f8829a4aSRandall Stewart } else if (ptype == SCTP_STR_RESET_RESPONSE) { 3996f8829a4aSRandall Stewart struct sctp_stream_reset_response *resp; 3997f8829a4aSRandall Stewart uint32_t result; 3998f8829a4aSRandall Stewart 3999f8829a4aSRandall Stewart resp = (struct sctp_stream_reset_response *)ph; 4000f8829a4aSRandall Stewart seq = ntohl(resp->response_seq); 4001f8829a4aSRandall Stewart result = ntohl(resp->result); 4002f8829a4aSRandall Stewart if (sctp_handle_stream_reset_response(stcb, seq, result, resp)) { 4003f8829a4aSRandall Stewart ret_code = 1; 4004f8829a4aSRandall Stewart goto strres_nochunk; 4005f8829a4aSRandall Stewart } 4006f8829a4aSRandall Stewart } else { 4007f8829a4aSRandall Stewart break; 4008f8829a4aSRandall Stewart } 4009671d309cSRandall Stewart offset += SCTP_SIZE32(param_len); 4010f8829a4aSRandall Stewart chk_length -= SCTP_SIZE32(param_len); 4011f8829a4aSRandall Stewart } 4012f8829a4aSRandall Stewart if (num_req == 0) { 4013f8829a4aSRandall Stewart /* we have no response free the stuff */ 4014f8829a4aSRandall Stewart goto strres_nochunk; 4015f8829a4aSRandall Stewart } 4016f8829a4aSRandall Stewart /* ok we have a chunk to link in */ 4017f8829a4aSRandall Stewart TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, 4018f8829a4aSRandall Stewart chk, 4019f8829a4aSRandall Stewart sctp_next); 4020f8829a4aSRandall Stewart stcb->asoc.ctrl_queue_cnt++; 4021f8829a4aSRandall Stewart return (ret_code); 4022f8829a4aSRandall Stewart } 4023f8829a4aSRandall Stewart 4024f8829a4aSRandall Stewart /* 4025f8829a4aSRandall Stewart * Handle a router or endpoints report of a packet loss, there are two ways 4026f8829a4aSRandall Stewart * to handle this, either we get the whole packet and must disect it 4027f8829a4aSRandall Stewart * ourselves (possibly with truncation and or corruption) or it is a summary 4028f8829a4aSRandall Stewart * from a middle box that did the disectting for us. 4029f8829a4aSRandall Stewart */ 4030f8829a4aSRandall Stewart static void 4031f8829a4aSRandall Stewart sctp_handle_packet_dropped(struct sctp_pktdrop_chunk *cp, 4032458303daSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t limit) 4033f8829a4aSRandall Stewart { 4034f8829a4aSRandall Stewart uint32_t bottle_bw, on_queue; 4035f8829a4aSRandall Stewart uint16_t trunc_len; 4036f8829a4aSRandall Stewart unsigned int chlen; 4037f8829a4aSRandall Stewart unsigned int at; 4038f8829a4aSRandall Stewart struct sctp_chunk_desc desc; 4039f8829a4aSRandall Stewart struct sctp_chunkhdr *ch; 4040f8829a4aSRandall Stewart 4041f8829a4aSRandall Stewart chlen = ntohs(cp->ch.chunk_length); 4042f8829a4aSRandall Stewart chlen -= sizeof(struct sctp_pktdrop_chunk); 4043f8829a4aSRandall Stewart /* XXX possible chlen underflow */ 4044f8829a4aSRandall Stewart if (chlen == 0) { 4045f8829a4aSRandall Stewart ch = NULL; 4046f8829a4aSRandall Stewart if (cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) 4047f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpbwrpt); 4048f8829a4aSRandall Stewart } else { 4049f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)(cp->data + sizeof(struct sctphdr)); 4050f8829a4aSRandall Stewart chlen -= sizeof(struct sctphdr); 4051f8829a4aSRandall Stewart /* XXX possible chlen underflow */ 4052f8829a4aSRandall Stewart memset(&desc, 0, sizeof(desc)); 4053f8829a4aSRandall Stewart } 4054f8829a4aSRandall Stewart trunc_len = (uint16_t) ntohs(cp->trunc_len); 4055458303daSRandall Stewart if (trunc_len > limit) { 4056458303daSRandall Stewart trunc_len = limit; 4057458303daSRandall Stewart } 4058f8829a4aSRandall Stewart /* now the chunks themselves */ 4059f8829a4aSRandall Stewart while ((ch != NULL) && (chlen >= sizeof(struct sctp_chunkhdr))) { 4060f8829a4aSRandall Stewart desc.chunk_type = ch->chunk_type; 4061f8829a4aSRandall Stewart /* get amount we need to move */ 4062f8829a4aSRandall Stewart at = ntohs(ch->chunk_length); 4063f8829a4aSRandall Stewart if (at < sizeof(struct sctp_chunkhdr)) { 4064f8829a4aSRandall Stewart /* corrupt chunk, maybe at the end? */ 4065f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpcrupt); 4066f8829a4aSRandall Stewart break; 4067f8829a4aSRandall Stewart } 4068f8829a4aSRandall Stewart if (trunc_len == 0) { 4069f8829a4aSRandall Stewart /* we are supposed to have all of it */ 4070f8829a4aSRandall Stewart if (at > chlen) { 4071f8829a4aSRandall Stewart /* corrupt skip it */ 4072f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpcrupt); 4073f8829a4aSRandall Stewart break; 4074f8829a4aSRandall Stewart } 4075f8829a4aSRandall Stewart } else { 4076f8829a4aSRandall Stewart /* is there enough of it left ? */ 4077f8829a4aSRandall Stewart if (desc.chunk_type == SCTP_DATA) { 4078f8829a4aSRandall Stewart if (chlen < (sizeof(struct sctp_data_chunk) + 4079f8829a4aSRandall Stewart sizeof(desc.data_bytes))) { 4080f8829a4aSRandall Stewart break; 4081f8829a4aSRandall Stewart } 4082f8829a4aSRandall Stewart } else { 4083f8829a4aSRandall Stewart if (chlen < sizeof(struct sctp_chunkhdr)) { 4084f8829a4aSRandall Stewart break; 4085f8829a4aSRandall Stewart } 4086f8829a4aSRandall Stewart } 4087f8829a4aSRandall Stewart } 4088f8829a4aSRandall Stewart if (desc.chunk_type == SCTP_DATA) { 4089f8829a4aSRandall Stewart /* can we get out the tsn? */ 4090f8829a4aSRandall Stewart if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX)) 4091f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpmbda); 4092f8829a4aSRandall Stewart 4093f8829a4aSRandall Stewart if (chlen >= (sizeof(struct sctp_data_chunk) + sizeof(uint32_t))) { 4094f8829a4aSRandall Stewart /* yep */ 4095f8829a4aSRandall Stewart struct sctp_data_chunk *dcp; 4096f8829a4aSRandall Stewart uint8_t *ddp; 4097f8829a4aSRandall Stewart unsigned int iii; 4098f8829a4aSRandall Stewart 4099f8829a4aSRandall Stewart dcp = (struct sctp_data_chunk *)ch; 4100f8829a4aSRandall Stewart ddp = (uint8_t *) (dcp + 1); 4101f8829a4aSRandall Stewart for (iii = 0; iii < sizeof(desc.data_bytes); iii++) { 4102f8829a4aSRandall Stewart desc.data_bytes[iii] = ddp[iii]; 4103f8829a4aSRandall Stewart } 4104f8829a4aSRandall Stewart desc.tsn_ifany = dcp->dp.tsn; 4105f8829a4aSRandall Stewart } else { 4106f8829a4aSRandall Stewart /* nope we are done. */ 4107f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpnedat); 4108f8829a4aSRandall Stewart break; 4109f8829a4aSRandall Stewart } 4110f8829a4aSRandall Stewart } else { 4111f8829a4aSRandall Stewart if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX)) 4112f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpmbct); 4113f8829a4aSRandall Stewart } 4114f8829a4aSRandall Stewart 4115f8829a4aSRandall Stewart if (process_chunk_drop(stcb, &desc, net, cp->ch.chunk_flags)) { 4116f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrppdbrk); 4117f8829a4aSRandall Stewart break; 4118f8829a4aSRandall Stewart } 4119f8829a4aSRandall Stewart if (SCTP_SIZE32(at) > chlen) { 4120f8829a4aSRandall Stewart break; 4121f8829a4aSRandall Stewart } 4122f8829a4aSRandall Stewart chlen -= SCTP_SIZE32(at); 4123f8829a4aSRandall Stewart if (chlen < sizeof(struct sctp_chunkhdr)) { 4124f8829a4aSRandall Stewart /* done, none left */ 4125f8829a4aSRandall Stewart break; 4126f8829a4aSRandall Stewart } 4127f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)((caddr_t)ch + SCTP_SIZE32(at)); 4128f8829a4aSRandall Stewart } 4129f8829a4aSRandall Stewart /* Now update any rwnd --- possibly */ 4130f8829a4aSRandall Stewart if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) == 0) { 4131f8829a4aSRandall Stewart /* From a peer, we get a rwnd report */ 4132f8829a4aSRandall Stewart uint32_t a_rwnd; 4133f8829a4aSRandall Stewart 4134f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpfehos); 4135f8829a4aSRandall Stewart 4136f8829a4aSRandall Stewart bottle_bw = ntohl(cp->bottle_bw); 4137f8829a4aSRandall Stewart on_queue = ntohl(cp->current_onq); 4138f8829a4aSRandall Stewart if (bottle_bw && on_queue) { 4139f8829a4aSRandall Stewart /* a rwnd report is in here */ 4140f8829a4aSRandall Stewart if (bottle_bw > on_queue) 4141f8829a4aSRandall Stewart a_rwnd = bottle_bw - on_queue; 4142f8829a4aSRandall Stewart else 4143f8829a4aSRandall Stewart a_rwnd = 0; 4144f8829a4aSRandall Stewart 4145f8829a4aSRandall Stewart if (a_rwnd == 0) 4146f8829a4aSRandall Stewart stcb->asoc.peers_rwnd = 0; 4147f8829a4aSRandall Stewart else { 4148f8829a4aSRandall Stewart if (a_rwnd > stcb->asoc.total_flight) { 4149f8829a4aSRandall Stewart stcb->asoc.peers_rwnd = 4150f8829a4aSRandall Stewart a_rwnd - stcb->asoc.total_flight; 4151f8829a4aSRandall Stewart } else { 4152f8829a4aSRandall Stewart stcb->asoc.peers_rwnd = 0; 4153f8829a4aSRandall Stewart } 4154f8829a4aSRandall Stewart if (stcb->asoc.peers_rwnd < 4155f8829a4aSRandall Stewart stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 4156f8829a4aSRandall Stewart /* SWS sender side engages */ 4157f8829a4aSRandall Stewart stcb->asoc.peers_rwnd = 0; 4158f8829a4aSRandall Stewart } 4159f8829a4aSRandall Stewart } 4160f8829a4aSRandall Stewart } 4161f8829a4aSRandall Stewart } else { 4162f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_pdrpfmbox); 4163f8829a4aSRandall Stewart } 4164f8829a4aSRandall Stewart 4165f8829a4aSRandall Stewart /* now middle boxes in sat networks get a cwnd bump */ 4166f8829a4aSRandall Stewart if ((cp->ch.chunk_flags & SCTP_FROM_MIDDLE_BOX) && 4167f8829a4aSRandall Stewart (stcb->asoc.sat_t3_loss_recovery == 0) && 4168f8829a4aSRandall Stewart (stcb->asoc.sat_network)) { 4169f8829a4aSRandall Stewart /* 4170f8829a4aSRandall Stewart * This is debateable but for sat networks it makes sense 4171f8829a4aSRandall Stewart * Note if a T3 timer has went off, we will prohibit any 4172f8829a4aSRandall Stewart * changes to cwnd until we exit the t3 loss recovery. 4173f8829a4aSRandall Stewart */ 4174b54d3a6cSRandall Stewart stcb->asoc.cc_functions.sctp_cwnd_update_after_packet_dropped(stcb, 4175b54d3a6cSRandall Stewart net, cp, &bottle_bw, &on_queue); 4176f8829a4aSRandall Stewart } 4177f8829a4aSRandall Stewart } 4178f8829a4aSRandall Stewart 4179f8829a4aSRandall Stewart /* 4180f8829a4aSRandall Stewart * handles all control chunks in a packet inputs: - m: mbuf chain, assumed to 4181f8829a4aSRandall Stewart * still contain IP/SCTP header - stcb: is the tcb found for this packet - 4182f8829a4aSRandall Stewart * offset: offset into the mbuf chain to first chunkhdr - length: is the 4183f8829a4aSRandall Stewart * length of the complete packet outputs: - length: modified to remaining 4184f8829a4aSRandall Stewart * length after control processing - netp: modified to new sctp_nets after 4185f8829a4aSRandall Stewart * cookie-echo processing - return NULL to discard the packet (ie. no asoc, 4186f8829a4aSRandall Stewart * bad packet,...) otherwise return the tcb for this packet 4187f8829a4aSRandall Stewart */ 41883c6f3536SRandall Stewart #ifdef __GNUC__ 41893c6f3536SRandall Stewart __attribute__((noinline)) 41903c6f3536SRandall Stewart #endif 4191f8829a4aSRandall Stewart static struct sctp_tcb * 4192f8829a4aSRandall Stewart sctp_process_control(struct mbuf *m, int iphlen, int *offset, int length, 4193f8829a4aSRandall Stewart struct sctphdr *sh, struct sctp_chunkhdr *ch, struct sctp_inpcb *inp, 419417205eccSRandall Stewart struct sctp_tcb *stcb, struct sctp_nets **netp, int *fwd_tsn_seen, 4195c54a18d2SRandall Stewart uint32_t vrf_id, uint16_t port) 4196f8829a4aSRandall Stewart { 4197f8829a4aSRandall Stewart struct sctp_association *asoc; 4198f8829a4aSRandall Stewart uint32_t vtag_in; 4199f8829a4aSRandall Stewart int num_chunks = 0; /* number of control chunks processed */ 42004c9179adSRandall Stewart uint32_t chk_length; 4201f8829a4aSRandall Stewart int ret; 4202bff64a4dSRandall Stewart int abort_no_unlock = 0; 4203f8829a4aSRandall Stewart 4204f8829a4aSRandall Stewart /* 4205f8829a4aSRandall Stewart * How big should this be, and should it be alloc'd? Lets try the 4206f8829a4aSRandall Stewart * d-mtu-ceiling for now (2k) and that should hopefully work ... 4207f8829a4aSRandall Stewart * until we get into jumbo grams and such.. 4208f8829a4aSRandall Stewart */ 4209f42a358aSRandall Stewart uint8_t chunk_buf[SCTP_CHUNK_BUFFER_SIZE]; 4210f8829a4aSRandall Stewart struct sctp_tcb *locked_tcb = stcb; 4211f8829a4aSRandall Stewart int got_auth = 0; 4212f8829a4aSRandall Stewart uint32_t auth_offset = 0, auth_len = 0; 4213f8829a4aSRandall Stewart int auth_skipped = 0; 42142afb3e84SRandall Stewart int asconf_cnt = 0; 4215f8829a4aSRandall Stewart 4216ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4217ceaad40aSRandall Stewart struct socket *so; 4218ceaad40aSRandall Stewart 4219ceaad40aSRandall Stewart #endif 4220ceaad40aSRandall Stewart 4221ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "sctp_process_control: iphlen=%u, offset=%u, length=%u stcb:%p\n", 4222f8829a4aSRandall Stewart iphlen, *offset, length, stcb); 4223f8829a4aSRandall Stewart 4224f8829a4aSRandall Stewart /* validate chunk header length... */ 4225f8829a4aSRandall Stewart if (ntohs(ch->chunk_length) < sizeof(*ch)) { 4226d61a0ae0SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Invalid header length %d\n", 4227d61a0ae0SRandall Stewart ntohs(ch->chunk_length)); 4228207304d4SRandall Stewart if (locked_tcb) { 4229207304d4SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 4230207304d4SRandall Stewart } 4231f8829a4aSRandall Stewart return (NULL); 4232f8829a4aSRandall Stewart } 4233f8829a4aSRandall Stewart /* 4234f8829a4aSRandall Stewart * validate the verification tag 4235f8829a4aSRandall Stewart */ 4236f8829a4aSRandall Stewart vtag_in = ntohl(sh->v_tag); 4237f8829a4aSRandall Stewart 4238a5d547adSRandall Stewart if (locked_tcb) { 4239a5d547adSRandall Stewart SCTP_TCB_LOCK_ASSERT(locked_tcb); 4240a5d547adSRandall Stewart } 4241f8829a4aSRandall Stewart if (ch->chunk_type == SCTP_INITIATION) { 4242d61a0ae0SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Its an INIT of len:%d vtag:%x\n", 4243d61a0ae0SRandall Stewart ntohs(ch->chunk_length), vtag_in); 4244f8829a4aSRandall Stewart if (vtag_in != 0) { 4245f8829a4aSRandall Stewart /* protocol error- silently discard... */ 4246f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_badvtag); 42476e55db54SRandall Stewart if (locked_tcb) { 4248f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 42496e55db54SRandall Stewart } 4250f8829a4aSRandall Stewart return (NULL); 4251f8829a4aSRandall Stewart } 4252f8829a4aSRandall Stewart } else if (ch->chunk_type != SCTP_COOKIE_ECHO) { 4253f8829a4aSRandall Stewart /* 4254f8829a4aSRandall Stewart * If there is no stcb, skip the AUTH chunk and process 4255f8829a4aSRandall Stewart * later after a stcb is found (to validate the lookup was 4256f8829a4aSRandall Stewart * valid. 4257f8829a4aSRandall Stewart */ 4258f8829a4aSRandall Stewart if ((ch->chunk_type == SCTP_AUTHENTICATION) && 4259b3f1ea41SRandall Stewart (stcb == NULL) && 4260b3f1ea41SRandall Stewart !SCTP_BASE_SYSCTL(sctp_auth_disable)) { 4261f8829a4aSRandall Stewart /* save this chunk for later processing */ 4262f8829a4aSRandall Stewart auth_skipped = 1; 4263f8829a4aSRandall Stewart auth_offset = *offset; 4264f8829a4aSRandall Stewart auth_len = ntohs(ch->chunk_length); 4265f8829a4aSRandall Stewart 4266f8829a4aSRandall Stewart /* (temporarily) move past this chunk */ 4267f8829a4aSRandall Stewart *offset += SCTP_SIZE32(auth_len); 4268f8829a4aSRandall Stewart if (*offset >= length) { 4269f8829a4aSRandall Stewart /* no more data left in the mbuf chain */ 4270f8829a4aSRandall Stewart *offset = length; 4271207304d4SRandall Stewart if (locked_tcb) { 4272207304d4SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 4273207304d4SRandall Stewart } 4274f8829a4aSRandall Stewart return (NULL); 4275f8829a4aSRandall Stewart } 4276f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4277f8829a4aSRandall Stewart sizeof(struct sctp_chunkhdr), chunk_buf); 4278f8829a4aSRandall Stewart } 4279ad81507eSRandall Stewart if (ch == NULL) { 4280ad81507eSRandall Stewart /* Help */ 4281ad81507eSRandall Stewart *offset = length; 4282207304d4SRandall Stewart if (locked_tcb) { 4283207304d4SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 4284207304d4SRandall Stewart } 4285ad81507eSRandall Stewart return (NULL); 4286ad81507eSRandall Stewart } 4287f8829a4aSRandall Stewart if (ch->chunk_type == SCTP_COOKIE_ECHO) { 4288f8829a4aSRandall Stewart goto process_control_chunks; 4289f8829a4aSRandall Stewart } 4290f8829a4aSRandall Stewart /* 4291f8829a4aSRandall Stewart * first check if it's an ASCONF with an unknown src addr we 4292f8829a4aSRandall Stewart * need to look inside to find the association 4293f8829a4aSRandall Stewart */ 4294f8829a4aSRandall Stewart if (ch->chunk_type == SCTP_ASCONF && stcb == NULL) { 42952afb3e84SRandall Stewart struct sctp_chunkhdr *asconf_ch = ch; 42962afb3e84SRandall Stewart uint32_t asconf_offset = 0, asconf_len = 0; 42972afb3e84SRandall Stewart 4298f8829a4aSRandall Stewart /* inp's refcount may be reduced */ 4299f8829a4aSRandall Stewart SCTP_INP_INCR_REF(inp); 4300f8829a4aSRandall Stewart 43012afb3e84SRandall Stewart asconf_offset = *offset; 43022afb3e84SRandall Stewart do { 43032afb3e84SRandall Stewart asconf_len = ntohs(asconf_ch->chunk_length); 43042afb3e84SRandall Stewart if (asconf_len < sizeof(struct sctp_asconf_paramhdr)) 43052afb3e84SRandall Stewart break; 4306f8829a4aSRandall Stewart stcb = sctp_findassociation_ep_asconf(m, iphlen, 4307830d754dSRandall Stewart *offset, sh, &inp, netp, vrf_id); 43082afb3e84SRandall Stewart if (stcb != NULL) 43092afb3e84SRandall Stewart break; 43102afb3e84SRandall Stewart asconf_offset += SCTP_SIZE32(asconf_len); 43112afb3e84SRandall Stewart asconf_ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, asconf_offset, 43122afb3e84SRandall Stewart sizeof(struct sctp_chunkhdr), chunk_buf); 43132afb3e84SRandall Stewart } while (asconf_ch != NULL && asconf_ch->chunk_type == SCTP_ASCONF); 4314f8829a4aSRandall Stewart if (stcb == NULL) { 4315f8829a4aSRandall Stewart /* 4316f8829a4aSRandall Stewart * reduce inp's refcount if not reduced in 4317f8829a4aSRandall Stewart * sctp_findassociation_ep_asconf(). 4318f8829a4aSRandall Stewart */ 4319f8829a4aSRandall Stewart SCTP_INP_DECR_REF(inp); 43202afb3e84SRandall Stewart } else { 43212afb3e84SRandall Stewart locked_tcb = stcb; 4322f8829a4aSRandall Stewart } 43232afb3e84SRandall Stewart 4324f8829a4aSRandall Stewart /* now go back and verify any auth chunk to be sure */ 4325f8829a4aSRandall Stewart if (auth_skipped && (stcb != NULL)) { 4326f8829a4aSRandall Stewart struct sctp_auth_chunk *auth; 4327f8829a4aSRandall Stewart 4328f8829a4aSRandall Stewart auth = (struct sctp_auth_chunk *) 4329f8829a4aSRandall Stewart sctp_m_getptr(m, auth_offset, 4330f8829a4aSRandall Stewart auth_len, chunk_buf); 4331f8829a4aSRandall Stewart got_auth = 1; 4332f8829a4aSRandall Stewart auth_skipped = 0; 4333ad81507eSRandall Stewart if ((auth == NULL) || sctp_handle_auth(stcb, auth, m, 4334f8829a4aSRandall Stewart auth_offset)) { 4335f8829a4aSRandall Stewart /* auth HMAC failed so dump it */ 4336f8829a4aSRandall Stewart *offset = length; 4337207304d4SRandall Stewart if (locked_tcb) { 4338207304d4SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 4339207304d4SRandall Stewart } 4340f8829a4aSRandall Stewart return (NULL); 4341f8829a4aSRandall Stewart } else { 4342f8829a4aSRandall Stewart /* remaining chunks are HMAC checked */ 4343f8829a4aSRandall Stewart stcb->asoc.authenticated = 1; 4344f8829a4aSRandall Stewart } 4345f8829a4aSRandall Stewart } 4346f8829a4aSRandall Stewart } 4347f8829a4aSRandall Stewart if (stcb == NULL) { 4348f8829a4aSRandall Stewart /* no association, so it's out of the blue... */ 434917205eccSRandall Stewart sctp_handle_ootb(m, iphlen, *offset, sh, inp, NULL, 4350c54a18d2SRandall Stewart vrf_id, port); 4351f8829a4aSRandall Stewart *offset = length; 43526e55db54SRandall Stewart if (locked_tcb) { 4353f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 43546e55db54SRandall Stewart } 4355f8829a4aSRandall Stewart return (NULL); 4356f8829a4aSRandall Stewart } 4357f8829a4aSRandall Stewart asoc = &stcb->asoc; 4358f8829a4aSRandall Stewart /* ABORT and SHUTDOWN can use either v_tag... */ 4359f8829a4aSRandall Stewart if ((ch->chunk_type == SCTP_ABORT_ASSOCIATION) || 4360f8829a4aSRandall Stewart (ch->chunk_type == SCTP_SHUTDOWN_COMPLETE) || 4361f8829a4aSRandall Stewart (ch->chunk_type == SCTP_PACKET_DROPPED)) { 4362f8829a4aSRandall Stewart if ((vtag_in == asoc->my_vtag) || 4363f8829a4aSRandall Stewart ((ch->chunk_flags & SCTP_HAD_NO_TCB) && 4364f8829a4aSRandall Stewart (vtag_in == asoc->peer_vtag))) { 4365f8829a4aSRandall Stewart /* this is valid */ 4366f8829a4aSRandall Stewart } else { 4367f8829a4aSRandall Stewart /* drop this packet... */ 4368f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_badvtag); 43696e55db54SRandall Stewart if (locked_tcb) { 4370f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 43716e55db54SRandall Stewart } 4372f8829a4aSRandall Stewart return (NULL); 4373f8829a4aSRandall Stewart } 4374f8829a4aSRandall Stewart } else if (ch->chunk_type == SCTP_SHUTDOWN_ACK) { 4375f8829a4aSRandall Stewart if (vtag_in != asoc->my_vtag) { 4376f8829a4aSRandall Stewart /* 4377f8829a4aSRandall Stewart * this could be a stale SHUTDOWN-ACK or the 4378f8829a4aSRandall Stewart * peer never got the SHUTDOWN-COMPLETE and 4379f8829a4aSRandall Stewart * is still hung; we have started a new asoc 4380f8829a4aSRandall Stewart * but it won't complete until the shutdown 4381f8829a4aSRandall Stewart * is completed 4382f8829a4aSRandall Stewart */ 43836e55db54SRandall Stewart if (locked_tcb) { 4384f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 43856e55db54SRandall Stewart } 4386f8829a4aSRandall Stewart sctp_handle_ootb(m, iphlen, *offset, sh, inp, 4387c54a18d2SRandall Stewart NULL, vrf_id, port); 4388f8829a4aSRandall Stewart return (NULL); 4389f8829a4aSRandall Stewart } 4390f8829a4aSRandall Stewart } else { 4391f8829a4aSRandall Stewart /* for all other chunks, vtag must match */ 4392f8829a4aSRandall Stewart if (vtag_in != asoc->my_vtag) { 4393f8829a4aSRandall Stewart /* invalid vtag... */ 4394ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, 4395ad81507eSRandall Stewart "invalid vtag: %xh, expect %xh\n", 4396ad81507eSRandall Stewart vtag_in, asoc->my_vtag); 4397f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_badvtag); 43986e55db54SRandall Stewart if (locked_tcb) { 4399f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 44006e55db54SRandall Stewart } 4401f8829a4aSRandall Stewart *offset = length; 4402f8829a4aSRandall Stewart return (NULL); 4403f8829a4aSRandall Stewart } 4404f8829a4aSRandall Stewart } 4405f8829a4aSRandall Stewart } /* end if !SCTP_COOKIE_ECHO */ 4406f8829a4aSRandall Stewart /* 4407f8829a4aSRandall Stewart * process all control chunks... 4408f8829a4aSRandall Stewart */ 4409f8829a4aSRandall Stewart if (((ch->chunk_type == SCTP_SELECTIVE_ACK) || 4410830d754dSRandall Stewart /* EY */ 4411830d754dSRandall Stewart (ch->chunk_type == SCTP_NR_SELECTIVE_ACK) || 4412f8829a4aSRandall Stewart (ch->chunk_type == SCTP_HEARTBEAT_REQUEST)) && 4413f8829a4aSRandall Stewart (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED)) { 4414f8829a4aSRandall Stewart /* implied cookie-ack.. we must have lost the ack */ 4415b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 4416c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 4417c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 4418c4739e2fSRandall Stewart 0, 4419c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 4420c4739e2fSRandall Stewart __LINE__); 4421c4739e2fSRandall Stewart } 4422f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 4423f8829a4aSRandall Stewart sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, 4424f8829a4aSRandall Stewart *netp); 4425f8829a4aSRandall Stewart } 4426f8829a4aSRandall Stewart process_control_chunks: 4427f8829a4aSRandall Stewart while (IS_SCTP_CONTROL(ch)) { 4428f8829a4aSRandall Stewart /* validate chunk length */ 4429f8829a4aSRandall Stewart chk_length = ntohs(ch->chunk_length); 4430ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT2, "sctp_process_control: processing a chunk type=%u, len=%u\n", 4431f8829a4aSRandall Stewart ch->chunk_type, chk_length); 443280fefe0aSRandall Stewart SCTP_LTRACE_CHK(inp, stcb, ch->chunk_type, chk_length); 44334c9179adSRandall Stewart if (chk_length < sizeof(*ch) || 44344c9179adSRandall Stewart (*offset + (int)chk_length) > length) { 4435f8829a4aSRandall Stewart *offset = length; 44366e55db54SRandall Stewart if (locked_tcb) { 4437f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 44386e55db54SRandall Stewart } 4439f8829a4aSRandall Stewart return (NULL); 4440f8829a4aSRandall Stewart } 4441f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER64(sctps_incontrolchunks); 4442f8829a4aSRandall Stewart /* 4443f8829a4aSRandall Stewart * INIT-ACK only gets the init ack "header" portion only 4444f8829a4aSRandall Stewart * because we don't have to process the peer's COOKIE. All 4445f8829a4aSRandall Stewart * others get a complete chunk. 4446f8829a4aSRandall Stewart */ 4447d06c82f1SRandall Stewart if ((ch->chunk_type == SCTP_INITIATION_ACK) || 4448d06c82f1SRandall Stewart (ch->chunk_type == SCTP_INITIATION)) { 4449f8829a4aSRandall Stewart /* get an init-ack chunk */ 4450f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4451f8829a4aSRandall Stewart sizeof(struct sctp_init_ack_chunk), chunk_buf); 4452f8829a4aSRandall Stewart if (ch == NULL) { 4453f8829a4aSRandall Stewart *offset = length; 44546e55db54SRandall Stewart if (locked_tcb) { 4455f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 44566e55db54SRandall Stewart } 4457f8829a4aSRandall Stewart return (NULL); 4458f8829a4aSRandall Stewart } 44599a972525SRandall Stewart } else { 4460e1461651SRandall Stewart /* For cookies and all other chunks. */ 4461d06c82f1SRandall Stewart if (chk_length > sizeof(chunk_buf)) { 4462d06c82f1SRandall Stewart /* 4463d06c82f1SRandall Stewart * use just the size of the chunk buffer so 44649a972525SRandall Stewart * the front part of our chunks fit in 44659a972525SRandall Stewart * contiguous space up to the chunk buffer 44669a972525SRandall Stewart * size (508 bytes). For chunks that need to 4467e1461651SRandall Stewart * get more than that they must use the 44689a972525SRandall Stewart * sctp_m_getptr() function or other means 4469e1461651SRandall Stewart * (e.g. know how to parse mbuf chains). 4470e1461651SRandall Stewart * Cookies do this already. 4471d06c82f1SRandall Stewart */ 4472d06c82f1SRandall Stewart ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4473d06c82f1SRandall Stewart (sizeof(chunk_buf) - 4), 4474d06c82f1SRandall Stewart chunk_buf); 4475d06c82f1SRandall Stewart if (ch == NULL) { 4476d06c82f1SRandall Stewart *offset = length; 44776e55db54SRandall Stewart if (locked_tcb) { 4478d06c82f1SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 44796e55db54SRandall Stewart } 4480d06c82f1SRandall Stewart return (NULL); 4481d06c82f1SRandall Stewart } 4482d06c82f1SRandall Stewart } else { 4483d06c82f1SRandall Stewart /* We can fit it all */ 4484f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 4485f8829a4aSRandall Stewart chk_length, chunk_buf); 4486f8829a4aSRandall Stewart if (ch == NULL) { 4487ad81507eSRandall Stewart SCTP_PRINTF("sctp_process_control: Can't get the all data....\n"); 4488f8829a4aSRandall Stewart *offset = length; 44896e55db54SRandall Stewart if (locked_tcb) { 4490f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 44916e55db54SRandall Stewart } 4492f8829a4aSRandall Stewart return (NULL); 4493f8829a4aSRandall Stewart } 4494f8829a4aSRandall Stewart } 44959a972525SRandall Stewart } 4496f8829a4aSRandall Stewart num_chunks++; 4497f8829a4aSRandall Stewart /* Save off the last place we got a control from */ 4498f8829a4aSRandall Stewart if (stcb != NULL) { 4499ad81507eSRandall Stewart if (((netp != NULL) && (*netp != NULL)) || (ch->chunk_type == SCTP_ASCONF)) { 4500f8829a4aSRandall Stewart /* 4501f8829a4aSRandall Stewart * allow last_control to be NULL if 4502f8829a4aSRandall Stewart * ASCONF... ASCONF processing will find the 4503f8829a4aSRandall Stewart * right net later 4504f8829a4aSRandall Stewart */ 4505ad81507eSRandall Stewart if ((netp != NULL) && (*netp != NULL)) 4506f8829a4aSRandall Stewart stcb->asoc.last_control_chunk_from = *netp; 4507f8829a4aSRandall Stewart } 4508f8829a4aSRandall Stewart } 4509f8829a4aSRandall Stewart #ifdef SCTP_AUDITING_ENABLED 4510f8829a4aSRandall Stewart sctp_audit_log(0xB0, ch->chunk_type); 4511f8829a4aSRandall Stewart #endif 4512f8829a4aSRandall Stewart 4513f8829a4aSRandall Stewart /* check to see if this chunk required auth, but isn't */ 4514b3f1ea41SRandall Stewart if ((stcb != NULL) && 4515b3f1ea41SRandall Stewart !SCTP_BASE_SYSCTL(sctp_auth_disable) && 4516b3f1ea41SRandall Stewart sctp_auth_is_required_chunk(ch->chunk_type, stcb->asoc.local_auth_chunks) && 4517f8829a4aSRandall Stewart !stcb->asoc.authenticated) { 4518f8829a4aSRandall Stewart /* "silently" ignore */ 4519f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvauthmissing); 4520f8829a4aSRandall Stewart goto next_chunk; 4521f8829a4aSRandall Stewart } 4522f8829a4aSRandall Stewart switch (ch->chunk_type) { 4523f8829a4aSRandall Stewart case SCTP_INITIATION: 4524f8829a4aSRandall Stewart /* must be first and only chunk */ 4525ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_INIT\n"); 4526f8829a4aSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 4527f8829a4aSRandall Stewart /* We are not interested anymore? */ 4528f8829a4aSRandall Stewart if ((stcb) && (stcb->asoc.total_output_queue_size)) { 4529f8829a4aSRandall Stewart /* 4530f8829a4aSRandall Stewart * collision case where we are 4531f8829a4aSRandall Stewart * sending to them too 4532f8829a4aSRandall Stewart */ 4533f8829a4aSRandall Stewart ; 4534f8829a4aSRandall Stewart } else { 45356e55db54SRandall Stewart if (locked_tcb) { 4536f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 45376e55db54SRandall Stewart } 4538f8829a4aSRandall Stewart *offset = length; 4539f8829a4aSRandall Stewart return (NULL); 4540f8829a4aSRandall Stewart } 4541f8829a4aSRandall Stewart } 45422afb3e84SRandall Stewart if ((chk_length > SCTP_LARGEST_INIT_ACCEPTED) || 45432afb3e84SRandall Stewart (num_chunks > 1) || 4544b3f1ea41SRandall Stewart (SCTP_BASE_SYSCTL(sctp_strict_init) && (length - *offset > (int)SCTP_SIZE32(chk_length)))) { 4545f8829a4aSRandall Stewart *offset = length; 45466e55db54SRandall Stewart if (locked_tcb) { 4547f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 45486e55db54SRandall Stewart } 4549f8829a4aSRandall Stewart return (NULL); 4550f8829a4aSRandall Stewart } 4551f8829a4aSRandall Stewart if ((stcb != NULL) && 4552f8829a4aSRandall Stewart (SCTP_GET_STATE(&stcb->asoc) == 4553f8829a4aSRandall Stewart SCTP_STATE_SHUTDOWN_ACK_SENT)) { 4554f8829a4aSRandall Stewart sctp_send_shutdown_ack(stcb, 4555f8829a4aSRandall Stewart stcb->asoc.primary_destination); 4556f8829a4aSRandall Stewart *offset = length; 4557ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 45586e55db54SRandall Stewart if (locked_tcb) { 4559f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 45606e55db54SRandall Stewart } 4561f8829a4aSRandall Stewart return (NULL); 4562f8829a4aSRandall Stewart } 4563ad81507eSRandall Stewart if (netp) { 4564f8829a4aSRandall Stewart sctp_handle_init(m, iphlen, *offset, sh, 4565ad81507eSRandall Stewart (struct sctp_init_chunk *)ch, inp, 4566c54a18d2SRandall Stewart stcb, *netp, &abort_no_unlock, vrf_id, port); 4567ad81507eSRandall Stewart } 4568bff64a4dSRandall Stewart if (abort_no_unlock) 4569bff64a4dSRandall Stewart return (NULL); 4570bff64a4dSRandall Stewart 4571f8829a4aSRandall Stewart *offset = length; 45726e55db54SRandall Stewart if (locked_tcb) { 4573f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 45746e55db54SRandall Stewart } 4575f8829a4aSRandall Stewart return (NULL); 4576f8829a4aSRandall Stewart break; 45779a972525SRandall Stewart case SCTP_PAD_CHUNK: 45789a972525SRandall Stewart break; 4579f8829a4aSRandall Stewart case SCTP_INITIATION_ACK: 4580f8829a4aSRandall Stewart /* must be first and only chunk */ 4581ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_INIT-ACK\n"); 4582f8829a4aSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 4583f8829a4aSRandall Stewart /* We are not interested anymore */ 4584f8829a4aSRandall Stewart if ((stcb) && (stcb->asoc.total_output_queue_size)) { 4585f8829a4aSRandall Stewart ; 4586f8829a4aSRandall Stewart } else { 4587faa1e3f4SRandall Stewart if (locked_tcb != stcb) { 4588faa1e3f4SRandall Stewart /* Very unlikely */ 4589f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 45906e55db54SRandall Stewart } 4591f8829a4aSRandall Stewart *offset = length; 4592f8829a4aSRandall Stewart if (stcb) { 4593ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4594ceaad40aSRandall Stewart so = SCTP_INP_SO(inp); 4595ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 4596ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 4597ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 4598ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 4599ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 4600ceaad40aSRandall Stewart #endif 4601c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_27); 4602ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4603ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 4604ceaad40aSRandall Stewart #endif 4605f8829a4aSRandall Stewart } 4606f8829a4aSRandall Stewart return (NULL); 4607f8829a4aSRandall Stewart } 4608f8829a4aSRandall Stewart } 4609f8829a4aSRandall Stewart if ((num_chunks > 1) || 4610b3f1ea41SRandall Stewart (SCTP_BASE_SYSCTL(sctp_strict_init) && (length - *offset > (int)SCTP_SIZE32(chk_length)))) { 4611f8829a4aSRandall Stewart *offset = length; 46126e55db54SRandall Stewart if (locked_tcb) { 4613f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 46146e55db54SRandall Stewart } 4615f8829a4aSRandall Stewart return (NULL); 4616f8829a4aSRandall Stewart } 4617ad81507eSRandall Stewart if ((netp) && (*netp)) { 4618f8829a4aSRandall Stewart ret = sctp_handle_init_ack(m, iphlen, *offset, sh, 4619ad21a364SRandall Stewart (struct sctp_init_ack_chunk *)ch, stcb, *netp, &abort_no_unlock, vrf_id); 4620ad81507eSRandall Stewart } else { 4621ad81507eSRandall Stewart ret = -1; 4622ad81507eSRandall Stewart } 4623f8829a4aSRandall Stewart /* 4624f8829a4aSRandall Stewart * Special case, I must call the output routine to 4625f8829a4aSRandall Stewart * get the cookie echoed 4626f8829a4aSRandall Stewart */ 4627bff64a4dSRandall Stewart if (abort_no_unlock) 4628bff64a4dSRandall Stewart return (NULL); 4629bff64a4dSRandall Stewart 4630f8829a4aSRandall Stewart if ((stcb) && ret == 0) 4631ceaad40aSRandall Stewart sctp_chunk_output(stcb->sctp_ep, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 4632f8829a4aSRandall Stewart *offset = length; 46336e55db54SRandall Stewart if (locked_tcb) { 4634f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 46356e55db54SRandall Stewart } 4636f8829a4aSRandall Stewart return (NULL); 4637f8829a4aSRandall Stewart break; 4638f8829a4aSRandall Stewart case SCTP_SELECTIVE_ACK: 4639f8829a4aSRandall Stewart { 4640f8829a4aSRandall Stewart struct sctp_sack_chunk *sack; 4641f8829a4aSRandall Stewart int abort_now = 0; 4642f8829a4aSRandall Stewart uint32_t a_rwnd, cum_ack; 4643cd554309SMichael Tuexen uint16_t num_seg, num_dup; 4644cd554309SMichael Tuexen uint8_t flags; 4645cd554309SMichael Tuexen int offset_seg, offset_dup; 4646f8829a4aSRandall Stewart int nonce_sum_flag; 4647f8829a4aSRandall Stewart 464820083c2eSMichael Tuexen SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SACK\n"); 464920083c2eSMichael Tuexen SCTP_STAT_INCR(sctps_recvsacks); 4650cd554309SMichael Tuexen if (stcb == NULL) { 4651cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "No stcb when processing SACK chunk\n"); 4652cd554309SMichael Tuexen break; 46536e55db54SRandall Stewart } 4654cd554309SMichael Tuexen if (chk_length < sizeof(struct sctp_sack_chunk)) { 4655cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size on SACK chunk, too small\n"); 4656cd554309SMichael Tuexen break; 4657d06c82f1SRandall Stewart } 46582afb3e84SRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 46592afb3e84SRandall Stewart /*- 46602afb3e84SRandall Stewart * If we have sent a shutdown-ack, we will pay no 46612afb3e84SRandall Stewart * attention to a sack sent in to us since 46622afb3e84SRandall Stewart * we don't care anymore. 46632afb3e84SRandall Stewart */ 4664a1e13272SRandall Stewart break; 46652afb3e84SRandall Stewart } 4666f8829a4aSRandall Stewart sack = (struct sctp_sack_chunk *)ch; 4667cd554309SMichael Tuexen flags = ch->chunk_flags; 4668cd554309SMichael Tuexen nonce_sum_flag = flags & SCTP_SACK_NONCE_SUM; 4669f8829a4aSRandall Stewart cum_ack = ntohl(sack->sack.cum_tsn_ack); 4670f8829a4aSRandall Stewart num_seg = ntohs(sack->sack.num_gap_ack_blks); 4671cd554309SMichael Tuexen num_dup = ntohs(sack->sack.num_dup_tsns); 4672f8829a4aSRandall Stewart a_rwnd = (uint32_t) ntohl(sack->sack.a_rwnd); 4673cd554309SMichael Tuexen if (sizeof(struct sctp_sack_chunk) + 4674cd554309SMichael Tuexen num_seg * sizeof(struct sctp_gap_ack_block) + 4675cd554309SMichael Tuexen num_dup * sizeof(uint32_t) != chk_length) { 4676cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size of SACK chunk\n"); 4677cd554309SMichael Tuexen break; 4678cd554309SMichael Tuexen } 4679cd554309SMichael Tuexen offset_seg = *offset + sizeof(struct sctp_sack_chunk); 4680cd554309SMichael Tuexen offset_dup = offset_seg + num_seg * sizeof(struct sctp_gap_ack_block); 468135918f85SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SACK process cum_ack:%x num_seg:%d a_rwnd:%d\n", 4682cd554309SMichael Tuexen cum_ack, num_seg, a_rwnd); 4683f8829a4aSRandall Stewart stcb->asoc.seen_a_sack_this_pkt = 1; 4684f8829a4aSRandall Stewart if ((stcb->asoc.pr_sctp_cnt == 0) && 4685f8829a4aSRandall Stewart (num_seg == 0) && 468620b07a4dSMichael Tuexen SCTP_TSN_GE(cum_ack, stcb->asoc.last_acked_seq) && 4687f8829a4aSRandall Stewart (stcb->asoc.saw_sack_with_frags == 0) && 4688d9c5cfeaSMichael Tuexen (stcb->asoc.saw_sack_with_nr_frags == 0) && 4689f8829a4aSRandall Stewart (!TAILQ_EMPTY(&stcb->asoc.sent_queue)) 4690f8829a4aSRandall Stewart ) { 4691f8829a4aSRandall Stewart /* 4692f8829a4aSRandall Stewart * We have a SIMPLE sack having no 4693f8829a4aSRandall Stewart * prior segments and data on sent 4694f8829a4aSRandall Stewart * queue to be acked.. Use the 4695f8829a4aSRandall Stewart * faster path sack processing. We 4696f8829a4aSRandall Stewart * also allow window update sacks 4697f8829a4aSRandall Stewart * with no missing segments to go 4698f8829a4aSRandall Stewart * this way too. 4699f8829a4aSRandall Stewart */ 4700d06c82f1SRandall Stewart sctp_express_handle_sack(stcb, cum_ack, a_rwnd, nonce_sum_flag, 4701d06c82f1SRandall Stewart &abort_now); 4702f8829a4aSRandall Stewart } else { 4703ad81507eSRandall Stewart if (netp && *netp) 4704cd554309SMichael Tuexen sctp_handle_sack(m, offset_seg, offset_dup, 4705cd554309SMichael Tuexen stcb, *netp, 4706cd554309SMichael Tuexen num_seg, 0, num_dup, &abort_now, flags, 4707cd554309SMichael Tuexen cum_ack, a_rwnd); 4708830d754dSRandall Stewart } 4709f8829a4aSRandall Stewart if (abort_now) { 4710f8829a4aSRandall Stewart /* ABORT signal from sack processing */ 4711f8829a4aSRandall Stewart *offset = length; 4712f8829a4aSRandall Stewart return (NULL); 4713f8829a4aSRandall Stewart } 4714cd554309SMichael Tuexen if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 4715cd554309SMichael Tuexen TAILQ_EMPTY(&stcb->asoc.sent_queue) && 4716cd554309SMichael Tuexen (stcb->asoc.stream_queue_cnt == 0)) { 4717cd554309SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 4718cd554309SMichael Tuexen } 4719f8829a4aSRandall Stewart } 4720f8829a4aSRandall Stewart break; 4721830d754dSRandall Stewart /* 4722830d754dSRandall Stewart * EY - nr_sack: If the received chunk is an 4723830d754dSRandall Stewart * nr_sack chunk 4724830d754dSRandall Stewart */ 4725830d754dSRandall Stewart case SCTP_NR_SELECTIVE_ACK: 4726830d754dSRandall Stewart { 4727830d754dSRandall Stewart struct sctp_nr_sack_chunk *nr_sack; 4728830d754dSRandall Stewart int abort_now = 0; 4729830d754dSRandall Stewart uint32_t a_rwnd, cum_ack; 4730cd554309SMichael Tuexen uint16_t num_seg, num_nr_seg, num_dup; 4731cd554309SMichael Tuexen uint8_t flags; 4732cd554309SMichael Tuexen int offset_seg, offset_dup; 4733d50c1d79SRandall Stewart int nonce_sum_flag; 4734830d754dSRandall Stewart 473520083c2eSMichael Tuexen SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_NR_SACK\n"); 473620083c2eSMichael Tuexen SCTP_STAT_INCR(sctps_recvsacks); 4737cd554309SMichael Tuexen if (stcb == NULL) { 4738cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "No stcb when processing NR-SACK chunk\n"); 4739cd554309SMichael Tuexen break; 4740cd554309SMichael Tuexen } 474152129fcdSRandall Stewart if ((stcb->asoc.sctp_nr_sack_on_off == 0) || 474252129fcdSRandall Stewart (stcb->asoc.peer_supports_nr_sack == 0)) { 474352129fcdSRandall Stewart goto unknown_chunk; 474452129fcdSRandall Stewart } 4745cd554309SMichael Tuexen if (chk_length < sizeof(struct sctp_nr_sack_chunk)) { 4746cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size on NR-SACK chunk, too small\n"); 4747cd554309SMichael Tuexen break; 4748cd554309SMichael Tuexen } 4749830d754dSRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) { 4750830d754dSRandall Stewart /*- 4751830d754dSRandall Stewart * If we have sent a shutdown-ack, we will pay no 4752830d754dSRandall Stewart * attention to a sack sent in to us since 4753830d754dSRandall Stewart * we don't care anymore. 4754830d754dSRandall Stewart */ 4755cd554309SMichael Tuexen break; 4756830d754dSRandall Stewart } 4757830d754dSRandall Stewart nr_sack = (struct sctp_nr_sack_chunk *)ch; 4758cd554309SMichael Tuexen flags = ch->chunk_flags; 4759cd554309SMichael Tuexen nonce_sum_flag = flags & SCTP_SACK_NONCE_SUM; 4760830d754dSRandall Stewart 4761830d754dSRandall Stewart cum_ack = ntohl(nr_sack->nr_sack.cum_tsn_ack); 4762830d754dSRandall Stewart num_seg = ntohs(nr_sack->nr_sack.num_gap_ack_blks); 4763830d754dSRandall Stewart num_nr_seg = ntohs(nr_sack->nr_sack.num_nr_gap_ack_blks); 4764cd554309SMichael Tuexen num_dup = ntohs(nr_sack->nr_sack.num_dup_tsns); 4765830d754dSRandall Stewart a_rwnd = (uint32_t) ntohl(nr_sack->nr_sack.a_rwnd); 4766cd554309SMichael Tuexen if (sizeof(struct sctp_nr_sack_chunk) + 4767cd554309SMichael Tuexen (num_seg + num_nr_seg) * sizeof(struct sctp_gap_ack_block) + 4768cd554309SMichael Tuexen num_dup * sizeof(uint32_t) != chk_length) { 4769cd554309SMichael Tuexen SCTPDBG(SCTP_DEBUG_INDATA1, "Bad size of NR_SACK chunk\n"); 4770cd554309SMichael Tuexen break; 4771cd554309SMichael Tuexen } 4772cd554309SMichael Tuexen offset_seg = *offset + sizeof(struct sctp_nr_sack_chunk); 4773cd554309SMichael Tuexen offset_dup = offset_seg + num_seg * sizeof(struct sctp_gap_ack_block); 4774830d754dSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_NR_SACK process cum_ack:%x num_seg:%d a_rwnd:%d\n", 4775cd554309SMichael Tuexen cum_ack, num_seg, a_rwnd); 4776830d754dSRandall Stewart stcb->asoc.seen_a_sack_this_pkt = 1; 4777830d754dSRandall Stewart if ((stcb->asoc.pr_sctp_cnt == 0) && 4778cd554309SMichael Tuexen (num_seg == 0) && (num_nr_seg == 0) && 477920b07a4dSMichael Tuexen SCTP_TSN_GE(cum_ack, stcb->asoc.last_acked_seq) && 4780830d754dSRandall Stewart (stcb->asoc.saw_sack_with_frags == 0) && 4781d9c5cfeaSMichael Tuexen (stcb->asoc.saw_sack_with_nr_frags == 0) && 4782cd554309SMichael Tuexen (!TAILQ_EMPTY(&stcb->asoc.sent_queue))) { 4783830d754dSRandall Stewart /* 4784830d754dSRandall Stewart * We have a SIMPLE sack having no 4785830d754dSRandall Stewart * prior segments and data on sent 4786cd554309SMichael Tuexen * queue to be acked. Use the faster 4787cd554309SMichael Tuexen * path sack processing. We also 4788cd554309SMichael Tuexen * allow window update sacks with no 4789cd554309SMichael Tuexen * missing segments to go this way 4790cd554309SMichael Tuexen * too. 4791830d754dSRandall Stewart */ 4792cd554309SMichael Tuexen sctp_express_handle_sack(stcb, cum_ack, a_rwnd, nonce_sum_flag, 4793830d754dSRandall Stewart &abort_now); 4794830d754dSRandall Stewart } else { 4795830d754dSRandall Stewart if (netp && *netp) 4796cd554309SMichael Tuexen sctp_handle_sack(m, offset_seg, offset_dup, 4797cd554309SMichael Tuexen stcb, *netp, 4798cd554309SMichael Tuexen num_seg, num_nr_seg, num_dup, &abort_now, flags, 4799cd554309SMichael Tuexen cum_ack, a_rwnd); 4800830d754dSRandall Stewart } 4801830d754dSRandall Stewart if (abort_now) { 4802830d754dSRandall Stewart /* ABORT signal from sack processing */ 4803830d754dSRandall Stewart *offset = length; 4804830d754dSRandall Stewart return (NULL); 4805830d754dSRandall Stewart } 4806cd554309SMichael Tuexen if (TAILQ_EMPTY(&stcb->asoc.send_queue) && 4807cd554309SMichael Tuexen TAILQ_EMPTY(&stcb->asoc.sent_queue) && 4808cd554309SMichael Tuexen (stcb->asoc.stream_queue_cnt == 0)) { 4809cd554309SMichael Tuexen sctp_ulp_notify(SCTP_NOTIFY_SENDER_DRY, stcb, 0, NULL, SCTP_SO_NOT_LOCKED); 4810cd554309SMichael Tuexen } 4811830d754dSRandall Stewart } 4812830d754dSRandall Stewart break; 4813830d754dSRandall Stewart 4814f8829a4aSRandall Stewart case SCTP_HEARTBEAT_REQUEST: 4815ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_HEARTBEAT\n"); 4816ad81507eSRandall Stewart if ((stcb) && netp && *netp) { 4817f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvheartbeat); 4818ad81507eSRandall Stewart sctp_send_heartbeat_ack(stcb, m, *offset, 4819ad81507eSRandall Stewart chk_length, *netp); 4820f8829a4aSRandall Stewart 4821f8829a4aSRandall Stewart /* He's alive so give him credit */ 4822b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 4823c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 4824c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 4825c4739e2fSRandall Stewart 0, 4826c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 4827c4739e2fSRandall Stewart __LINE__); 4828c4739e2fSRandall Stewart } 4829f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 4830ad81507eSRandall Stewart } 4831f8829a4aSRandall Stewart break; 4832f8829a4aSRandall Stewart case SCTP_HEARTBEAT_ACK: 4833ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_HEARTBEAT-ACK\n"); 4834ad81507eSRandall Stewart if ((stcb == NULL) || (chk_length != sizeof(struct sctp_heartbeat_chunk))) { 4835d06c82f1SRandall Stewart /* Its not ours */ 483617205eccSRandall Stewart *offset = length; 48376e55db54SRandall Stewart if (locked_tcb) { 48386114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 48396e55db54SRandall Stewart } 4840d06c82f1SRandall Stewart return (NULL); 4841d06c82f1SRandall Stewart } 4842f8829a4aSRandall Stewart /* He's alive so give him credit */ 4843b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 4844c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 4845c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 4846c4739e2fSRandall Stewart 0, 4847c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 4848c4739e2fSRandall Stewart __LINE__); 4849c4739e2fSRandall Stewart } 4850f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 4851f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvheartbeatack); 4852ad81507eSRandall Stewart if (netp && *netp) 4853f8829a4aSRandall Stewart sctp_handle_heartbeat_ack((struct sctp_heartbeat_chunk *)ch, 4854f8829a4aSRandall Stewart stcb, *netp); 4855f8829a4aSRandall Stewart break; 4856f8829a4aSRandall Stewart case SCTP_ABORT_ASSOCIATION: 4857207304d4SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ABORT, stcb %p\n", 4858207304d4SRandall Stewart stcb); 4859ad81507eSRandall Stewart if ((stcb) && netp && *netp) 4860f8829a4aSRandall Stewart sctp_handle_abort((struct sctp_abort_chunk *)ch, 4861f8829a4aSRandall Stewart stcb, *netp); 4862f8829a4aSRandall Stewart *offset = length; 4863f8829a4aSRandall Stewart return (NULL); 4864f8829a4aSRandall Stewart break; 4865f8829a4aSRandall Stewart case SCTP_SHUTDOWN: 4866207304d4SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN, stcb %p\n", 4867207304d4SRandall Stewart stcb); 4868ad81507eSRandall Stewart if ((stcb == NULL) || (chk_length != sizeof(struct sctp_shutdown_chunk))) { 4869d06c82f1SRandall Stewart *offset = length; 48706e55db54SRandall Stewart if (locked_tcb) { 48716114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 48726e55db54SRandall Stewart } 4873d06c82f1SRandall Stewart return (NULL); 4874ad81507eSRandall Stewart } 4875ad81507eSRandall Stewart if (netp && *netp) { 4876f8829a4aSRandall Stewart int abort_flag = 0; 4877f8829a4aSRandall Stewart 4878f8829a4aSRandall Stewart sctp_handle_shutdown((struct sctp_shutdown_chunk *)ch, 4879f8829a4aSRandall Stewart stcb, *netp, &abort_flag); 4880f8829a4aSRandall Stewart if (abort_flag) { 4881f8829a4aSRandall Stewart *offset = length; 4882f8829a4aSRandall Stewart return (NULL); 4883f8829a4aSRandall Stewart } 4884f8829a4aSRandall Stewart } 4885f8829a4aSRandall Stewart break; 4886f8829a4aSRandall Stewart case SCTP_SHUTDOWN_ACK: 4887207304d4SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN-ACK, stcb %p\n", stcb); 4888ad81507eSRandall Stewart if ((stcb) && (netp) && (*netp)) 4889f8829a4aSRandall Stewart sctp_handle_shutdown_ack((struct sctp_shutdown_ack_chunk *)ch, stcb, *netp); 4890f8829a4aSRandall Stewart *offset = length; 4891f8829a4aSRandall Stewart return (NULL); 4892f8829a4aSRandall Stewart break; 4893ad81507eSRandall Stewart 4894f8829a4aSRandall Stewart case SCTP_OPERATION_ERROR: 4895ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_OP-ERR\n"); 4896ad81507eSRandall Stewart if ((stcb) && netp && *netp && sctp_handle_error(ch, stcb, *netp) < 0) { 4897ad81507eSRandall Stewart 4898f8829a4aSRandall Stewart *offset = length; 4899f8829a4aSRandall Stewart return (NULL); 4900f8829a4aSRandall Stewart } 4901f8829a4aSRandall Stewart break; 4902f8829a4aSRandall Stewart case SCTP_COOKIE_ECHO: 4903ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, 4904207304d4SRandall Stewart "SCTP_COOKIE-ECHO, stcb %p\n", stcb); 4905f8829a4aSRandall Stewart if ((stcb) && (stcb->asoc.total_output_queue_size)) { 4906f8829a4aSRandall Stewart ; 4907f8829a4aSRandall Stewart } else { 4908ad81507eSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 4909f8829a4aSRandall Stewart /* We are not interested anymore */ 49100c7dc840SRandall Stewart abend: 491128085b2eSRandall Stewart if (stcb) { 491228085b2eSRandall Stewart SCTP_TCB_UNLOCK(stcb); 491328085b2eSRandall Stewart } 4914f8829a4aSRandall Stewart *offset = length; 4915f8829a4aSRandall Stewart return (NULL); 4916f8829a4aSRandall Stewart } 4917f8829a4aSRandall Stewart } 4918f8829a4aSRandall Stewart /* 4919f8829a4aSRandall Stewart * First are we accepting? We do this again here 492088a7eb29SRandall Stewart * since it is possible that a previous endpoint WAS 492188a7eb29SRandall Stewart * listening responded to a INIT-ACK and then 4922f8829a4aSRandall Stewart * closed. We opened and bound.. and are now no 4923f8829a4aSRandall Stewart * longer listening. 4924f8829a4aSRandall Stewart */ 4925b201f536SRandall Stewart 4926b201f536SRandall Stewart if ((stcb == NULL) && (inp->sctp_socket->so_qlen >= inp->sctp_socket->so_qlimit)) { 4927b201f536SRandall Stewart if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 4928b3f1ea41SRandall Stewart (SCTP_BASE_SYSCTL(sctp_abort_if_one_2_one_hits_limit))) { 4929f8829a4aSRandall Stewart struct mbuf *oper; 4930f8829a4aSRandall Stewart struct sctp_paramhdr *phdr; 4931f8829a4aSRandall Stewart 4932f8829a4aSRandall Stewart oper = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 4933139bc87fSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 4934f8829a4aSRandall Stewart if (oper) { 4935139bc87fSRandall Stewart SCTP_BUF_LEN(oper) = 4936f8829a4aSRandall Stewart sizeof(struct sctp_paramhdr); 4937f8829a4aSRandall Stewart phdr = mtod(oper, 4938f8829a4aSRandall Stewart struct sctp_paramhdr *); 4939f8829a4aSRandall Stewart phdr->param_type = 4940f8829a4aSRandall Stewart htons(SCTP_CAUSE_OUT_OF_RESC); 4941f8829a4aSRandall Stewart phdr->param_length = 4942f8829a4aSRandall Stewart htons(sizeof(struct sctp_paramhdr)); 4943f8829a4aSRandall Stewart } 4944f8829a4aSRandall Stewart sctp_abort_association(inp, stcb, m, 4945c54a18d2SRandall Stewart iphlen, sh, oper, vrf_id, port); 4946f8829a4aSRandall Stewart } 4947f8829a4aSRandall Stewart *offset = length; 4948f8829a4aSRandall Stewart return (NULL); 4949b201f536SRandall Stewart } else { 4950f8829a4aSRandall Stewart struct mbuf *ret_buf; 4951a5d547adSRandall Stewart struct sctp_inpcb *linp; 4952f8829a4aSRandall Stewart 4953ad81507eSRandall Stewart if (stcb) { 4954a5d547adSRandall Stewart linp = NULL; 4955ad81507eSRandall Stewart } else { 4956a5d547adSRandall Stewart linp = inp; 4957ad81507eSRandall Stewart } 4958a5d547adSRandall Stewart 4959ad81507eSRandall Stewart if (linp) { 4960a5d547adSRandall Stewart SCTP_ASOC_CREATE_LOCK(linp); 49610c7dc840SRandall Stewart if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 49620c7dc840SRandall Stewart (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 49630c7dc840SRandall Stewart SCTP_ASOC_CREATE_UNLOCK(linp); 49640c7dc840SRandall Stewart goto abend; 49650c7dc840SRandall Stewart } 4966ad81507eSRandall Stewart } 4967ad81507eSRandall Stewart if (netp) { 4968f8829a4aSRandall Stewart ret_buf = 4969f8829a4aSRandall Stewart sctp_handle_cookie_echo(m, iphlen, 4970f8829a4aSRandall Stewart *offset, sh, 4971f8829a4aSRandall Stewart (struct sctp_cookie_echo_chunk *)ch, 4972f8829a4aSRandall Stewart &inp, &stcb, netp, 4973f8829a4aSRandall Stewart auth_skipped, 4974f8829a4aSRandall Stewart auth_offset, 4975a5d547adSRandall Stewart auth_len, 497617205eccSRandall Stewart &locked_tcb, 4977c54a18d2SRandall Stewart vrf_id, 4978c54a18d2SRandall Stewart port); 4979ad81507eSRandall Stewart } else { 4980ad81507eSRandall Stewart ret_buf = NULL; 4981ad81507eSRandall Stewart } 4982ad81507eSRandall Stewart if (linp) { 4983a5d547adSRandall Stewart SCTP_ASOC_CREATE_UNLOCK(linp); 4984ad81507eSRandall Stewart } 4985f8829a4aSRandall Stewart if (ret_buf == NULL) { 4986f8829a4aSRandall Stewart if (locked_tcb) { 4987f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 4988f8829a4aSRandall Stewart } 4989ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, 4990ad81507eSRandall Stewart "GAK, null buffer\n"); 4991f8829a4aSRandall Stewart auth_skipped = 0; 4992f8829a4aSRandall Stewart *offset = length; 4993f8829a4aSRandall Stewart return (NULL); 4994f8829a4aSRandall Stewart } 4995f8829a4aSRandall Stewart /* if AUTH skipped, see if it verified... */ 4996f8829a4aSRandall Stewart if (auth_skipped) { 4997f8829a4aSRandall Stewart got_auth = 1; 4998f8829a4aSRandall Stewart auth_skipped = 0; 4999f8829a4aSRandall Stewart } 5000f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&stcb->asoc.sent_queue)) { 5001f8829a4aSRandall Stewart /* 5002f8829a4aSRandall Stewart * Restart the timer if we have 5003f8829a4aSRandall Stewart * pending data 5004f8829a4aSRandall Stewart */ 5005f8829a4aSRandall Stewart struct sctp_tmit_chunk *chk; 5006f8829a4aSRandall Stewart 5007f8829a4aSRandall Stewart chk = TAILQ_FIRST(&stcb->asoc.sent_queue); 50084a9ef3f8SMichael Tuexen sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, chk->whoTo); 5009f8829a4aSRandall Stewart } 5010f8829a4aSRandall Stewart } 5011f8829a4aSRandall Stewart break; 5012f8829a4aSRandall Stewart case SCTP_COOKIE_ACK: 5013207304d4SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_COOKIE-ACK, stcb %p\n", stcb); 5014ad81507eSRandall Stewart if ((stcb == NULL) || chk_length != sizeof(struct sctp_cookie_ack_chunk)) { 50156e55db54SRandall Stewart if (locked_tcb) { 501617205eccSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 50176e55db54SRandall Stewart } 501817205eccSRandall Stewart return (NULL); 501917205eccSRandall Stewart } 5020f8829a4aSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5021f8829a4aSRandall Stewart /* We are not interested anymore */ 5022f8829a4aSRandall Stewart if ((stcb) && (stcb->asoc.total_output_queue_size)) { 5023f8829a4aSRandall Stewart ; 5024ad81507eSRandall Stewart } else if (stcb) { 5025ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5026ceaad40aSRandall Stewart so = SCTP_INP_SO(inp); 5027ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 5028ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5029ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 5030ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 5031ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 5032ceaad40aSRandall Stewart #endif 5033c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_27); 5034ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5035ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 5036ceaad40aSRandall Stewart #endif 5037f8829a4aSRandall Stewart *offset = length; 5038f8829a4aSRandall Stewart return (NULL); 5039f8829a4aSRandall Stewart } 5040f8829a4aSRandall Stewart } 5041f8829a4aSRandall Stewart /* He's alive so give him credit */ 5042ad81507eSRandall Stewart if ((stcb) && netp && *netp) { 5043b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5044c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5045c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5046c4739e2fSRandall Stewart 0, 5047c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5048c4739e2fSRandall Stewart __LINE__); 5049c4739e2fSRandall Stewart } 5050f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5051f8829a4aSRandall Stewart sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, *netp); 50526e55db54SRandall Stewart } 5053f8829a4aSRandall Stewart break; 5054f8829a4aSRandall Stewart case SCTP_ECN_ECHO: 5055ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ECN-ECHO\n"); 5056f8829a4aSRandall Stewart /* He's alive so give him credit */ 5057ad81507eSRandall Stewart if ((stcb == NULL) || (chk_length != sizeof(struct sctp_ecne_chunk))) { 5058d06c82f1SRandall Stewart /* Its not ours */ 50596e55db54SRandall Stewart if (locked_tcb) { 50606114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 50616e55db54SRandall Stewart } 5062d06c82f1SRandall Stewart *offset = length; 5063d06c82f1SRandall Stewart return (NULL); 5064d06c82f1SRandall Stewart } 50656e55db54SRandall Stewart if (stcb) { 5066b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5067c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5068c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5069c4739e2fSRandall Stewart 0, 5070c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5071c4739e2fSRandall Stewart __LINE__); 5072c4739e2fSRandall Stewart } 5073f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5074f8829a4aSRandall Stewart sctp_handle_ecn_echo((struct sctp_ecne_chunk *)ch, 5075f8829a4aSRandall Stewart stcb); 50766e55db54SRandall Stewart } 5077f8829a4aSRandall Stewart break; 5078f8829a4aSRandall Stewart case SCTP_ECN_CWR: 5079ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ECN-CWR\n"); 5080f8829a4aSRandall Stewart /* He's alive so give him credit */ 5081ad81507eSRandall Stewart if ((stcb == NULL) || (chk_length != sizeof(struct sctp_cwr_chunk))) { 5082d06c82f1SRandall Stewart /* Its not ours */ 50836e55db54SRandall Stewart if (locked_tcb) { 50846114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 50856e55db54SRandall Stewart } 5086d06c82f1SRandall Stewart *offset = length; 5087d06c82f1SRandall Stewart return (NULL); 5088d06c82f1SRandall Stewart } 50896e55db54SRandall Stewart if (stcb) { 5090b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5091c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5092c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5093c4739e2fSRandall Stewart 0, 5094c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5095c4739e2fSRandall Stewart __LINE__); 5096c4739e2fSRandall Stewart } 5097f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5098*a21779f0SRandall Stewart sctp_handle_ecn_cwr((struct sctp_cwr_chunk *)ch, stcb, *netp); 50996e55db54SRandall Stewart } 5100f8829a4aSRandall Stewart break; 5101f8829a4aSRandall Stewart case SCTP_SHUTDOWN_COMPLETE: 5102207304d4SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_SHUTDOWN-COMPLETE, stcb %p\n", stcb); 5103f8829a4aSRandall Stewart /* must be first and only chunk */ 5104f8829a4aSRandall Stewart if ((num_chunks > 1) || 51054c9179adSRandall Stewart (length - *offset > (int)SCTP_SIZE32(chk_length))) { 5106f8829a4aSRandall Stewart *offset = length; 51076e55db54SRandall Stewart if (locked_tcb) { 5108f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 51096e55db54SRandall Stewart } 5110f8829a4aSRandall Stewart return (NULL); 5111f8829a4aSRandall Stewart } 5112ad81507eSRandall Stewart if ((stcb) && netp && *netp) { 5113f8829a4aSRandall Stewart sctp_handle_shutdown_complete((struct sctp_shutdown_complete_chunk *)ch, 5114f8829a4aSRandall Stewart stcb, *netp); 51156e55db54SRandall Stewart } 5116f8829a4aSRandall Stewart *offset = length; 5117f8829a4aSRandall Stewart return (NULL); 5118f8829a4aSRandall Stewart break; 5119f8829a4aSRandall Stewart case SCTP_ASCONF: 5120ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ASCONF\n"); 5121f8829a4aSRandall Stewart /* He's alive so give him credit */ 51226e55db54SRandall Stewart if (stcb) { 5123b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5124c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5125c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5126c4739e2fSRandall Stewart 0, 5127c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5128c4739e2fSRandall Stewart __LINE__); 5129c4739e2fSRandall Stewart } 5130f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5131f8829a4aSRandall Stewart sctp_handle_asconf(m, *offset, 51322afb3e84SRandall Stewart (struct sctp_asconf_chunk *)ch, stcb, asconf_cnt == 0); 51332afb3e84SRandall Stewart asconf_cnt++; 51346e55db54SRandall Stewart } 5135f8829a4aSRandall Stewart break; 5136f8829a4aSRandall Stewart case SCTP_ASCONF_ACK: 5137ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_ASCONF-ACK\n"); 5138d06c82f1SRandall Stewart if (chk_length < sizeof(struct sctp_asconf_ack_chunk)) { 5139d06c82f1SRandall Stewart /* Its not ours */ 51406e55db54SRandall Stewart if (locked_tcb) { 51416114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 51426e55db54SRandall Stewart } 5143d06c82f1SRandall Stewart *offset = length; 5144d06c82f1SRandall Stewart return (NULL); 5145d06c82f1SRandall Stewart } 5146ad81507eSRandall Stewart if ((stcb) && netp && *netp) { 5147f8829a4aSRandall Stewart /* He's alive so give him credit */ 5148b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5149c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5150c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5151c4739e2fSRandall Stewart 0, 5152c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5153c4739e2fSRandall Stewart __LINE__); 5154c4739e2fSRandall Stewart } 5155f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5156f8829a4aSRandall Stewart sctp_handle_asconf_ack(m, *offset, 51573232788eSRandall Stewart (struct sctp_asconf_ack_chunk *)ch, stcb, *netp, &abort_no_unlock); 51583232788eSRandall Stewart if (abort_no_unlock) 51593232788eSRandall Stewart return (NULL); 51606e55db54SRandall Stewart } 5161f8829a4aSRandall Stewart break; 5162f8829a4aSRandall Stewart case SCTP_FORWARD_CUM_TSN: 5163ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_FWD-TSN\n"); 5164d06c82f1SRandall Stewart if (chk_length < sizeof(struct sctp_forward_tsn_chunk)) { 5165d06c82f1SRandall Stewart /* Its not ours */ 51666e55db54SRandall Stewart if (locked_tcb) { 51676114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 51686e55db54SRandall Stewart } 5169d06c82f1SRandall Stewart *offset = length; 5170d06c82f1SRandall Stewart return (NULL); 5171d06c82f1SRandall Stewart } 5172f8829a4aSRandall Stewart /* He's alive so give him credit */ 51736e55db54SRandall Stewart if (stcb) { 5174f8829a4aSRandall Stewart int abort_flag = 0; 5175f8829a4aSRandall Stewart 5176f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5177b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5178c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5179c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5180c4739e2fSRandall Stewart 0, 5181c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5182c4739e2fSRandall Stewart __LINE__); 5183c4739e2fSRandall Stewart } 5184f8829a4aSRandall Stewart *fwd_tsn_seen = 1; 5185f8829a4aSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5186f8829a4aSRandall Stewart /* We are not interested anymore */ 5187ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5188ceaad40aSRandall Stewart so = SCTP_INP_SO(inp); 5189ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 5190ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5191ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 5192ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 5193ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 5194ceaad40aSRandall Stewart #endif 5195c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_29); 5196ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5197ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 5198ceaad40aSRandall Stewart #endif 5199f8829a4aSRandall Stewart *offset = length; 5200f8829a4aSRandall Stewart return (NULL); 5201f8829a4aSRandall Stewart } 5202f8829a4aSRandall Stewart sctp_handle_forward_tsn(stcb, 5203671d309cSRandall Stewart (struct sctp_forward_tsn_chunk *)ch, &abort_flag, m, *offset); 5204f8829a4aSRandall Stewart if (abort_flag) { 5205f8829a4aSRandall Stewart *offset = length; 5206f8829a4aSRandall Stewart return (NULL); 5207f8829a4aSRandall Stewart } else { 5208b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5209c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5210c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5211c4739e2fSRandall Stewart 0, 5212c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5213c4739e2fSRandall Stewart __LINE__); 5214c4739e2fSRandall Stewart } 5215f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5216f8829a4aSRandall Stewart } 5217f8829a4aSRandall Stewart 5218f8829a4aSRandall Stewart } 5219f8829a4aSRandall Stewart break; 5220f8829a4aSRandall Stewart case SCTP_STREAM_RESET: 5221ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_STREAM_RESET\n"); 5222ad81507eSRandall Stewart if (((stcb == NULL) || (ch == NULL) || (chk_length < sizeof(struct sctp_stream_reset_tsn_req)))) { 5223d06c82f1SRandall Stewart /* Its not ours */ 52246e55db54SRandall Stewart if (locked_tcb) { 52256114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 52266e55db54SRandall Stewart } 5227d06c82f1SRandall Stewart *offset = length; 5228d06c82f1SRandall Stewart return (NULL); 5229d06c82f1SRandall Stewart } 5230f8829a4aSRandall Stewart if (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) { 5231f8829a4aSRandall Stewart /* We are not interested anymore */ 5232ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5233ceaad40aSRandall Stewart so = SCTP_INP_SO(inp); 5234ceaad40aSRandall Stewart atomic_add_int(&stcb->asoc.refcnt, 1); 5235ceaad40aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5236ceaad40aSRandall Stewart SCTP_SOCKET_LOCK(so, 1); 5237ceaad40aSRandall Stewart SCTP_TCB_LOCK(stcb); 5238ceaad40aSRandall Stewart atomic_subtract_int(&stcb->asoc.refcnt, 1); 5239ceaad40aSRandall Stewart #endif 5240c4739e2fSRandall Stewart (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, SCTP_FROM_SCTP_INPUT + SCTP_LOC_30); 5241ceaad40aSRandall Stewart #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 5242ceaad40aSRandall Stewart SCTP_SOCKET_UNLOCK(so, 1); 5243ceaad40aSRandall Stewart #endif 5244f8829a4aSRandall Stewart *offset = length; 5245f8829a4aSRandall Stewart return (NULL); 5246f8829a4aSRandall Stewart } 5247f8829a4aSRandall Stewart if (stcb->asoc.peer_supports_strreset == 0) { 5248f8829a4aSRandall Stewart /* 5249ad81507eSRandall Stewart * hmm, peer should have announced this, but 5250ad81507eSRandall Stewart * we will turn it on since he is sending us 5251ad81507eSRandall Stewart * a stream reset. 5252f8829a4aSRandall Stewart */ 5253f8829a4aSRandall Stewart stcb->asoc.peer_supports_strreset = 1; 5254f8829a4aSRandall Stewart } 5255671d309cSRandall Stewart if (sctp_handle_stream_reset(stcb, m, *offset, (struct sctp_stream_reset_out_req *)ch)) { 5256f8829a4aSRandall Stewart /* stop processing */ 5257f8829a4aSRandall Stewart *offset = length; 5258f8829a4aSRandall Stewart return (NULL); 5259f8829a4aSRandall Stewart } 5260f8829a4aSRandall Stewart break; 5261f8829a4aSRandall Stewart case SCTP_PACKET_DROPPED: 5262ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_PACKET_DROPPED\n"); 5263f8829a4aSRandall Stewart /* re-get it all please */ 5264d06c82f1SRandall Stewart if (chk_length < sizeof(struct sctp_pktdrop_chunk)) { 5265d06c82f1SRandall Stewart /* Its not ours */ 52666e55db54SRandall Stewart if (locked_tcb) { 52676114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 52686e55db54SRandall Stewart } 5269d06c82f1SRandall Stewart *offset = length; 5270d06c82f1SRandall Stewart return (NULL); 5271d06c82f1SRandall Stewart } 5272ad81507eSRandall Stewart if (ch && (stcb) && netp && (*netp)) { 5273f8829a4aSRandall Stewart sctp_handle_packet_dropped((struct sctp_pktdrop_chunk *)ch, 5274458303daSRandall Stewart stcb, *netp, 5275458303daSRandall Stewart min(chk_length, (sizeof(chunk_buf) - 4))); 5276458303daSRandall Stewart 52776e55db54SRandall Stewart } 5278f8829a4aSRandall Stewart break; 5279f8829a4aSRandall Stewart 5280f8829a4aSRandall Stewart case SCTP_AUTHENTICATION: 5281ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "SCTP_AUTHENTICATION\n"); 5282b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_auth_disable)) 5283f8829a4aSRandall Stewart goto unknown_chunk; 5284f8829a4aSRandall Stewart 5285f8829a4aSRandall Stewart if (stcb == NULL) { 5286f8829a4aSRandall Stewart /* save the first AUTH for later processing */ 5287f8829a4aSRandall Stewart if (auth_skipped == 0) { 5288f8829a4aSRandall Stewart auth_offset = *offset; 5289f8829a4aSRandall Stewart auth_len = chk_length; 5290f8829a4aSRandall Stewart auth_skipped = 1; 5291f8829a4aSRandall Stewart } 5292f8829a4aSRandall Stewart /* skip this chunk (temporarily) */ 5293f8829a4aSRandall Stewart goto next_chunk; 5294f8829a4aSRandall Stewart } 5295d06c82f1SRandall Stewart if ((chk_length < (sizeof(struct sctp_auth_chunk))) || 5296ad81507eSRandall Stewart (chk_length > (sizeof(struct sctp_auth_chunk) + 5297ad81507eSRandall Stewart SCTP_AUTH_DIGEST_LEN_MAX))) { 5298d06c82f1SRandall Stewart /* Its not ours */ 52996e55db54SRandall Stewart if (locked_tcb) { 53006114cd96SRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 53016e55db54SRandall Stewart } 5302d06c82f1SRandall Stewart *offset = length; 5303d06c82f1SRandall Stewart return (NULL); 5304d06c82f1SRandall Stewart } 5305f8829a4aSRandall Stewart if (got_auth == 1) { 5306f8829a4aSRandall Stewart /* skip this chunk... it's already auth'd */ 5307f8829a4aSRandall Stewart goto next_chunk; 5308f8829a4aSRandall Stewart } 5309f8829a4aSRandall Stewart got_auth = 1; 5310ad81507eSRandall Stewart if ((ch == NULL) || sctp_handle_auth(stcb, (struct sctp_auth_chunk *)ch, 5311f8829a4aSRandall Stewart m, *offset)) { 5312f8829a4aSRandall Stewart /* auth HMAC failed so dump the packet */ 5313f8829a4aSRandall Stewart *offset = length; 5314f8829a4aSRandall Stewart return (stcb); 5315f8829a4aSRandall Stewart } else { 5316f8829a4aSRandall Stewart /* remaining chunks are HMAC checked */ 5317f8829a4aSRandall Stewart stcb->asoc.authenticated = 1; 5318f8829a4aSRandall Stewart } 5319f8829a4aSRandall Stewart break; 5320f8829a4aSRandall Stewart 5321f8829a4aSRandall Stewart default: 5322f8829a4aSRandall Stewart unknown_chunk: 5323f8829a4aSRandall Stewart /* it's an unknown chunk! */ 5324f8829a4aSRandall Stewart if ((ch->chunk_type & 0x40) && (stcb != NULL)) { 5325f8829a4aSRandall Stewart struct mbuf *mm; 5326f8829a4aSRandall Stewart struct sctp_paramhdr *phd; 5327f8829a4aSRandall Stewart 5328f8829a4aSRandall Stewart mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 5329139bc87fSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 5330f8829a4aSRandall Stewart if (mm) { 5331f8829a4aSRandall Stewart phd = mtod(mm, struct sctp_paramhdr *); 5332f8829a4aSRandall Stewart /* 5333f8829a4aSRandall Stewart * We cheat and use param type since 5334f8829a4aSRandall Stewart * we did not bother to define a 5335f8829a4aSRandall Stewart * error cause struct. They are the 5336f8829a4aSRandall Stewart * same basic format with different 5337f8829a4aSRandall Stewart * names. 5338f8829a4aSRandall Stewart */ 5339f8829a4aSRandall Stewart phd->param_type = htons(SCTP_CAUSE_UNRECOG_CHUNK); 5340f8829a4aSRandall Stewart phd->param_length = htons(chk_length + sizeof(*phd)); 5341139bc87fSRandall Stewart SCTP_BUF_LEN(mm) = sizeof(*phd); 534244b7479bSRandall Stewart SCTP_BUF_NEXT(mm) = SCTP_M_COPYM(m, *offset, SCTP_SIZE32(chk_length), 5343f8829a4aSRandall Stewart M_DONTWAIT); 5344139bc87fSRandall Stewart if (SCTP_BUF_NEXT(mm)) { 5345eadccaccSRandall Stewart #ifdef SCTP_MBUF_LOGGING 5346b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 5347eadccaccSRandall Stewart struct mbuf *mat; 5348eadccaccSRandall Stewart 5349eadccaccSRandall Stewart mat = SCTP_BUF_NEXT(mm); 5350eadccaccSRandall Stewart while (mat) { 5351eadccaccSRandall Stewart if (SCTP_BUF_IS_EXTENDED(mat)) { 5352eadccaccSRandall Stewart sctp_log_mb(mat, SCTP_MBUF_ICOPY); 5353eadccaccSRandall Stewart } 5354eadccaccSRandall Stewart mat = SCTP_BUF_NEXT(mat); 5355eadccaccSRandall Stewart } 5356eadccaccSRandall Stewart } 5357eadccaccSRandall Stewart #endif 5358f8829a4aSRandall Stewart sctp_queue_op_err(stcb, mm); 5359f8829a4aSRandall Stewart } else { 5360f8829a4aSRandall Stewart sctp_m_freem(mm); 5361f8829a4aSRandall Stewart } 5362f8829a4aSRandall Stewart } 5363f8829a4aSRandall Stewart } 5364f8829a4aSRandall Stewart if ((ch->chunk_type & 0x80) == 0) { 5365f8829a4aSRandall Stewart /* discard this packet */ 5366f8829a4aSRandall Stewart *offset = length; 5367f8829a4aSRandall Stewart return (stcb); 5368f8829a4aSRandall Stewart } /* else skip this bad chunk and continue... */ 5369f8829a4aSRandall Stewart break; 5370f8829a4aSRandall Stewart } /* switch (ch->chunk_type) */ 5371f8829a4aSRandall Stewart 5372f8829a4aSRandall Stewart 5373f8829a4aSRandall Stewart next_chunk: 5374f8829a4aSRandall Stewart /* get the next chunk */ 5375f8829a4aSRandall Stewart *offset += SCTP_SIZE32(chk_length); 5376f8829a4aSRandall Stewart if (*offset >= length) { 5377f8829a4aSRandall Stewart /* no more data left in the mbuf chain */ 5378f8829a4aSRandall Stewart break; 5379f8829a4aSRandall Stewart } 5380f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, *offset, 5381f8829a4aSRandall Stewart sizeof(struct sctp_chunkhdr), chunk_buf); 5382f8829a4aSRandall Stewart if (ch == NULL) { 53836e55db54SRandall Stewart if (locked_tcb) { 5384f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(locked_tcb); 53856e55db54SRandall Stewart } 5386f8829a4aSRandall Stewart *offset = length; 5387f8829a4aSRandall Stewart return (NULL); 5388f8829a4aSRandall Stewart } 5389f8829a4aSRandall Stewart } /* while */ 53902afb3e84SRandall Stewart 53912afb3e84SRandall Stewart if (asconf_cnt > 0 && stcb != NULL) { 53922afb3e84SRandall Stewart sctp_send_asconf_ack(stcb); 53932afb3e84SRandall Stewart } 5394f8829a4aSRandall Stewart return (stcb); 5395f8829a4aSRandall Stewart } 5396f8829a4aSRandall Stewart 5397f8829a4aSRandall Stewart 5398f8829a4aSRandall Stewart /* 5399f8829a4aSRandall Stewart * Process the ECN bits we have something set so we must look to see if it is 5400f8829a4aSRandall Stewart * ECN(0) or ECN(1) or CE 5401f8829a4aSRandall Stewart */ 540272fb6fdbSRandall Stewart static void 5403f8829a4aSRandall Stewart sctp_process_ecn_marked_a(struct sctp_tcb *stcb, struct sctp_nets *net, 5404f8829a4aSRandall Stewart uint8_t ecn_bits) 5405f8829a4aSRandall Stewart { 5406f8829a4aSRandall Stewart if ((ecn_bits & SCTP_CE_BITS) == SCTP_CE_BITS) { 5407f8829a4aSRandall Stewart ; 5408f8829a4aSRandall Stewart } else if ((ecn_bits & SCTP_ECT1_BIT) == SCTP_ECT1_BIT) { 5409f8829a4aSRandall Stewart /* 5410f8829a4aSRandall Stewart * we only add to the nonce sum for ECT1, ECT0 does not 5411f8829a4aSRandall Stewart * change the NS bit (that we have yet to find a way to send 5412f8829a4aSRandall Stewart * it yet). 5413f8829a4aSRandall Stewart */ 5414f8829a4aSRandall Stewart 5415f8829a4aSRandall Stewart /* ECN Nonce stuff */ 5416f8829a4aSRandall Stewart stcb->asoc.receiver_nonce_sum++; 5417f8829a4aSRandall Stewart stcb->asoc.receiver_nonce_sum &= SCTP_SACK_NONCE_SUM; 5418f8829a4aSRandall Stewart 5419f8829a4aSRandall Stewart /* 5420f8829a4aSRandall Stewart * Drag up the last_echo point if cumack is larger since we 5421f8829a4aSRandall Stewart * don't want the point falling way behind by more than 5422f8829a4aSRandall Stewart * 2^^31 and then having it be incorrect. 5423f8829a4aSRandall Stewart */ 542420b07a4dSMichael Tuexen if (SCTP_TSN_GT(stcb->asoc.cumulative_tsn, stcb->asoc.last_echo_tsn)) { 5425f8829a4aSRandall Stewart stcb->asoc.last_echo_tsn = stcb->asoc.cumulative_tsn; 5426f8829a4aSRandall Stewart } 5427f8829a4aSRandall Stewart } else if ((ecn_bits & SCTP_ECT0_BIT) == SCTP_ECT0_BIT) { 5428f8829a4aSRandall Stewart /* 5429f8829a4aSRandall Stewart * Drag up the last_echo point if cumack is larger since we 5430f8829a4aSRandall Stewart * don't want the point falling way behind by more than 5431f8829a4aSRandall Stewart * 2^^31 and then having it be incorrect. 5432f8829a4aSRandall Stewart */ 543320b07a4dSMichael Tuexen if (SCTP_TSN_GT(stcb->asoc.cumulative_tsn, stcb->asoc.last_echo_tsn)) { 5434f8829a4aSRandall Stewart stcb->asoc.last_echo_tsn = stcb->asoc.cumulative_tsn; 5435f8829a4aSRandall Stewart } 5436f8829a4aSRandall Stewart } 5437f8829a4aSRandall Stewart } 5438f8829a4aSRandall Stewart 543972fb6fdbSRandall Stewart static void 5440f8829a4aSRandall Stewart sctp_process_ecn_marked_b(struct sctp_tcb *stcb, struct sctp_nets *net, 5441f8829a4aSRandall Stewart uint32_t high_tsn, uint8_t ecn_bits) 5442f8829a4aSRandall Stewart { 5443f8829a4aSRandall Stewart if ((ecn_bits & SCTP_CE_BITS) == SCTP_CE_BITS) { 5444f8829a4aSRandall Stewart /* 5445f8829a4aSRandall Stewart * we possibly must notify the sender that a congestion 5446f8829a4aSRandall Stewart * window reduction is in order. We do this by adding a ECNE 5447f8829a4aSRandall Stewart * chunk to the output chunk queue. The incoming CWR will 5448f8829a4aSRandall Stewart * remove this chunk. 5449f8829a4aSRandall Stewart */ 545020b07a4dSMichael Tuexen if (SCTP_TSN_GT(high_tsn, stcb->asoc.last_echo_tsn)) { 5451f8829a4aSRandall Stewart /* Yep, we need to add a ECNE */ 5452f8829a4aSRandall Stewart sctp_send_ecn_echo(stcb, net, high_tsn); 5453f8829a4aSRandall Stewart stcb->asoc.last_echo_tsn = high_tsn; 5454f8829a4aSRandall Stewart } 5455f8829a4aSRandall Stewart } 5456f8829a4aSRandall Stewart } 5457f8829a4aSRandall Stewart 5458b54d3a6cSRandall Stewart #ifdef INVARIANTS 545928085b2eSRandall Stewart #ifdef __GNUC__ 546028085b2eSRandall Stewart __attribute__((noinline)) 546128085b2eSRandall Stewart #endif 546228085b2eSRandall Stewart void 5463b54d3a6cSRandall Stewart sctp_validate_no_locks(struct sctp_inpcb *inp) 5464b54d3a6cSRandall Stewart { 546528085b2eSRandall Stewart struct sctp_tcb *lstcb; 5466b54d3a6cSRandall Stewart 546728085b2eSRandall Stewart LIST_FOREACH(lstcb, &inp->sctp_asoc_list, sctp_tcblist) { 546828085b2eSRandall Stewart if (mtx_owned(&lstcb->tcb_mtx)) { 5469b54d3a6cSRandall Stewart panic("Own lock on stcb at return from input"); 5470b54d3a6cSRandall Stewart } 5471b54d3a6cSRandall Stewart } 5472faa1e3f4SRandall Stewart if (mtx_owned(&inp->inp_create_mtx)) { 5473faa1e3f4SRandall Stewart panic("Own create lock on inp"); 5474faa1e3f4SRandall Stewart } 5475faa1e3f4SRandall Stewart if (mtx_owned(&inp->inp_mtx)) { 5476faa1e3f4SRandall Stewart panic("Own inp lock on inp"); 5477faa1e3f4SRandall Stewart } 5478b54d3a6cSRandall Stewart } 5479b54d3a6cSRandall Stewart 5480b54d3a6cSRandall Stewart #endif 5481b54d3a6cSRandall Stewart 5482f8829a4aSRandall Stewart /* 5483f8829a4aSRandall Stewart * common input chunk processing (v4 and v6) 5484f8829a4aSRandall Stewart */ 54856e55db54SRandall Stewart void 5486f8829a4aSRandall Stewart sctp_common_input_processing(struct mbuf **mm, int iphlen, int offset, 5487f8829a4aSRandall Stewart int length, struct sctphdr *sh, struct sctp_chunkhdr *ch, 5488f8829a4aSRandall Stewart struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net, 5489c54a18d2SRandall Stewart uint8_t ecn_bits, uint32_t vrf_id, uint16_t port) 5490f8829a4aSRandall Stewart { 5491f8829a4aSRandall Stewart /* 5492f8829a4aSRandall Stewart * Control chunk processing 5493f8829a4aSRandall Stewart */ 5494f8829a4aSRandall Stewart uint32_t high_tsn; 5495f8829a4aSRandall Stewart int fwd_tsn_seen = 0, data_processed = 0; 5496f8829a4aSRandall Stewart struct mbuf *m = *mm; 5497f8829a4aSRandall Stewart int abort_flag = 0; 5498f8829a4aSRandall Stewart int un_sent; 5499f8829a4aSRandall Stewart 5500f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvdatagrams); 5501f8829a4aSRandall Stewart #ifdef SCTP_AUDITING_ENABLED 5502f8829a4aSRandall Stewart sctp_audit_log(0xE0, 1); 5503f8829a4aSRandall Stewart sctp_auditing(0, inp, stcb, net); 5504f8829a4aSRandall Stewart #endif 5505f8829a4aSRandall Stewart 5506b3f1ea41SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Ok, Common input processing called, m:%p iphlen:%d offset:%d length:%d stcb:%p\n", 5507b3f1ea41SRandall Stewart m, iphlen, offset, length, stcb); 5508f8829a4aSRandall Stewart if (stcb) { 5509f8829a4aSRandall Stewart /* always clear this before beginning a packet */ 5510f8829a4aSRandall Stewart stcb->asoc.authenticated = 0; 5511f8829a4aSRandall Stewart stcb->asoc.seen_a_sack_this_pkt = 0; 55122afb3e84SRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "stcb:%p state:%x\n", 55132afb3e84SRandall Stewart stcb, stcb->asoc.state); 55142afb3e84SRandall Stewart 5515c4739e2fSRandall Stewart if ((stcb->asoc.state & SCTP_STATE_WAS_ABORTED) || 5516c4739e2fSRandall Stewart (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED)) { 551763981c2bSRandall Stewart /*- 551863981c2bSRandall Stewart * If we hit here, we had a ref count 551963981c2bSRandall Stewart * up when the assoc was aborted and the 552063981c2bSRandall Stewart * timer is clearing out the assoc, we should 552163981c2bSRandall Stewart * NOT respond to any packet.. its OOTB. 552263981c2bSRandall Stewart */ 552363981c2bSRandall Stewart SCTP_TCB_UNLOCK(stcb); 552463981c2bSRandall Stewart sctp_handle_ootb(m, iphlen, offset, sh, inp, NULL, 5525c54a18d2SRandall Stewart vrf_id, port); 552663981c2bSRandall Stewart goto out_now; 552763981c2bSRandall Stewart } 5528f8829a4aSRandall Stewart } 5529f8829a4aSRandall Stewart if (IS_SCTP_CONTROL(ch)) { 5530f8829a4aSRandall Stewart /* process the control portion of the SCTP packet */ 55313c503c28SRandall Stewart /* sa_ignore NO_NULL_CHK */ 5532f8829a4aSRandall Stewart stcb = sctp_process_control(m, iphlen, &offset, length, sh, ch, 5533c54a18d2SRandall Stewart inp, stcb, &net, &fwd_tsn_seen, vrf_id, port); 5534f8829a4aSRandall Stewart if (stcb) { 5535f8829a4aSRandall Stewart /* 5536f8829a4aSRandall Stewart * This covers us if the cookie-echo was there and 5537f8829a4aSRandall Stewart * it changes our INP. 5538f8829a4aSRandall Stewart */ 5539f8829a4aSRandall Stewart inp = stcb->sctp_ep; 5540b3f1ea41SRandall Stewart if ((net) && (port)) { 5541b3f1ea41SRandall Stewart if (net->port == 0) { 5542b3f1ea41SRandall Stewart sctp_pathmtu_adjustment(inp, stcb, net, net->mtu - sizeof(struct udphdr)); 5543b3f1ea41SRandall Stewart } 5544b3f1ea41SRandall Stewart net->port = port; 5545b3f1ea41SRandall Stewart } 5546f8829a4aSRandall Stewart } 5547f8829a4aSRandall Stewart } else { 5548f8829a4aSRandall Stewart /* 5549f8829a4aSRandall Stewart * no control chunks, so pre-process DATA chunks (these 5550f8829a4aSRandall Stewart * checks are taken care of by control processing) 5551f8829a4aSRandall Stewart */ 5552f8829a4aSRandall Stewart 5553f8829a4aSRandall Stewart /* 5554f8829a4aSRandall Stewart * if DATA only packet, and auth is required, then punt... 5555f8829a4aSRandall Stewart * can't have authenticated without any AUTH (control) 5556f8829a4aSRandall Stewart * chunks 5557f8829a4aSRandall Stewart */ 5558b3f1ea41SRandall Stewart if ((stcb != NULL) && 5559b3f1ea41SRandall Stewart !SCTP_BASE_SYSCTL(sctp_auth_disable) && 5560b3f1ea41SRandall Stewart sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.local_auth_chunks)) { 5561f8829a4aSRandall Stewart /* "silently" ignore */ 5562f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvauthmissing); 5563f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5564b54d3a6cSRandall Stewart goto out_now; 5565f8829a4aSRandall Stewart } 5566f8829a4aSRandall Stewart if (stcb == NULL) { 5567f8829a4aSRandall Stewart /* out of the blue DATA chunk */ 556817205eccSRandall Stewart sctp_handle_ootb(m, iphlen, offset, sh, inp, NULL, 5569c54a18d2SRandall Stewart vrf_id, port); 5570b54d3a6cSRandall Stewart goto out_now; 5571f8829a4aSRandall Stewart } 5572f8829a4aSRandall Stewart if (stcb->asoc.my_vtag != ntohl(sh->v_tag)) { 5573f8829a4aSRandall Stewart /* v_tag mismatch! */ 5574f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_badvtag); 5575f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5576b54d3a6cSRandall Stewart goto out_now; 5577f8829a4aSRandall Stewart } 5578f8829a4aSRandall Stewart } 5579f8829a4aSRandall Stewart 5580f8829a4aSRandall Stewart if (stcb == NULL) { 5581f8829a4aSRandall Stewart /* 5582f8829a4aSRandall Stewart * no valid TCB for this packet, or we found it's a bad 5583f8829a4aSRandall Stewart * packet while processing control, or we're done with this 5584f8829a4aSRandall Stewart * packet (done or skip rest of data), so we drop it... 5585f8829a4aSRandall Stewart */ 5586b54d3a6cSRandall Stewart goto out_now; 5587f8829a4aSRandall Stewart } 5588f8829a4aSRandall Stewart /* 5589f8829a4aSRandall Stewart * DATA chunk processing 5590f8829a4aSRandall Stewart */ 5591f8829a4aSRandall Stewart /* plow through the data chunks while length > offset */ 5592f8829a4aSRandall Stewart 5593f8829a4aSRandall Stewart /* 5594f8829a4aSRandall Stewart * Rest should be DATA only. Check authentication state if AUTH for 5595f8829a4aSRandall Stewart * DATA is required. 5596f8829a4aSRandall Stewart */ 5597b3f1ea41SRandall Stewart if ((length > offset) && 5598b3f1ea41SRandall Stewart (stcb != NULL) && 5599b3f1ea41SRandall Stewart !SCTP_BASE_SYSCTL(sctp_auth_disable) && 5600b3f1ea41SRandall Stewart sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.local_auth_chunks) && 5601f8829a4aSRandall Stewart !stcb->asoc.authenticated) { 5602f8829a4aSRandall Stewart /* "silently" ignore */ 5603f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvauthmissing); 5604ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_AUTH1, 5605ad81507eSRandall Stewart "Data chunk requires AUTH, skipped\n"); 5606a5d547adSRandall Stewart goto trigger_send; 5607f8829a4aSRandall Stewart } 5608f8829a4aSRandall Stewart if (length > offset) { 5609f8829a4aSRandall Stewart int retval; 5610f8829a4aSRandall Stewart 5611f8829a4aSRandall Stewart /* 5612f8829a4aSRandall Stewart * First check to make sure our state is correct. We would 5613f8829a4aSRandall Stewart * not get here unless we really did have a tag, so we don't 5614f8829a4aSRandall Stewart * abort if this happens, just dump the chunk silently. 5615f8829a4aSRandall Stewart */ 5616f8829a4aSRandall Stewart switch (SCTP_GET_STATE(&stcb->asoc)) { 5617f8829a4aSRandall Stewart case SCTP_STATE_COOKIE_ECHOED: 5618f8829a4aSRandall Stewart /* 5619f8829a4aSRandall Stewart * we consider data with valid tags in this state 5620f8829a4aSRandall Stewart * shows us the cookie-ack was lost. Imply it was 5621f8829a4aSRandall Stewart * there. 5622f8829a4aSRandall Stewart */ 5623b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 5624c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_CLEAR, 5625c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 5626c4739e2fSRandall Stewart 0, 5627c4739e2fSRandall Stewart SCTP_FROM_SCTP_INPUT, 5628c4739e2fSRandall Stewart __LINE__); 5629c4739e2fSRandall Stewart } 5630f8829a4aSRandall Stewart stcb->asoc.overall_error_count = 0; 5631f8829a4aSRandall Stewart sctp_handle_cookie_ack((struct sctp_cookie_ack_chunk *)ch, stcb, net); 5632f8829a4aSRandall Stewart break; 5633f8829a4aSRandall Stewart case SCTP_STATE_COOKIE_WAIT: 5634f8829a4aSRandall Stewart /* 5635f8829a4aSRandall Stewart * We consider OOTB any data sent during asoc setup. 5636f8829a4aSRandall Stewart */ 563717205eccSRandall Stewart sctp_handle_ootb(m, iphlen, offset, sh, inp, NULL, 5638c54a18d2SRandall Stewart vrf_id, port); 5639f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5640b54d3a6cSRandall Stewart goto out_now; 564152be287eSRandall Stewart /* sa_ignore NOTREACHED */ 5642f8829a4aSRandall Stewart break; 5643f8829a4aSRandall Stewart case SCTP_STATE_EMPTY: /* should not happen */ 5644f8829a4aSRandall Stewart case SCTP_STATE_INUSE: /* should not happen */ 5645f8829a4aSRandall Stewart case SCTP_STATE_SHUTDOWN_RECEIVED: /* This is a peer error */ 5646f8829a4aSRandall Stewart case SCTP_STATE_SHUTDOWN_ACK_SENT: 5647f8829a4aSRandall Stewart default: 5648f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5649b54d3a6cSRandall Stewart goto out_now; 565052be287eSRandall Stewart /* sa_ignore NOTREACHED */ 5651f8829a4aSRandall Stewart break; 5652f8829a4aSRandall Stewart case SCTP_STATE_OPEN: 5653f8829a4aSRandall Stewart case SCTP_STATE_SHUTDOWN_SENT: 5654f8829a4aSRandall Stewart break; 5655f8829a4aSRandall Stewart } 5656f8829a4aSRandall Stewart /* take care of ECN, part 1. */ 5657f8829a4aSRandall Stewart if (stcb->asoc.ecn_allowed && 5658f8829a4aSRandall Stewart (ecn_bits & (SCTP_ECT0_BIT | SCTP_ECT1_BIT))) { 5659f8829a4aSRandall Stewart sctp_process_ecn_marked_a(stcb, net, ecn_bits); 5660f8829a4aSRandall Stewart } 5661f8829a4aSRandall Stewart /* plow through the data chunks while length > offset */ 5662f8829a4aSRandall Stewart retval = sctp_process_data(mm, iphlen, &offset, length, sh, 5663f8829a4aSRandall Stewart inp, stcb, net, &high_tsn); 5664f8829a4aSRandall Stewart if (retval == 2) { 5665f8829a4aSRandall Stewart /* 5666f8829a4aSRandall Stewart * The association aborted, NO UNLOCK needed since 5667f8829a4aSRandall Stewart * the association is destroyed. 5668f8829a4aSRandall Stewart */ 5669b54d3a6cSRandall Stewart goto out_now; 5670f8829a4aSRandall Stewart } 5671f8829a4aSRandall Stewart data_processed = 1; 5672f8829a4aSRandall Stewart if (retval == 0) { 5673f8829a4aSRandall Stewart /* take care of ecn part 2. */ 5674f8829a4aSRandall Stewart if (stcb->asoc.ecn_allowed && 5675f8829a4aSRandall Stewart (ecn_bits & (SCTP_ECT0_BIT | SCTP_ECT1_BIT))) { 5676f8829a4aSRandall Stewart sctp_process_ecn_marked_b(stcb, net, high_tsn, 5677f8829a4aSRandall Stewart ecn_bits); 5678f8829a4aSRandall Stewart } 5679f8829a4aSRandall Stewart } 5680f8829a4aSRandall Stewart /* 5681f8829a4aSRandall Stewart * Anything important needs to have been m_copy'ed in 5682f8829a4aSRandall Stewart * process_data 5683f8829a4aSRandall Stewart */ 5684f8829a4aSRandall Stewart } 5685f8829a4aSRandall Stewart if ((data_processed == 0) && (fwd_tsn_seen)) { 56868f777478SMichael Tuexen int was_a_gap; 56878f777478SMichael Tuexen uint32_t highest_tsn; 5688f8829a4aSRandall Stewart 568920b07a4dSMichael Tuexen if (SCTP_TSN_GT(stcb->asoc.highest_tsn_inside_nr_map, stcb->asoc.highest_tsn_inside_map)) { 56908f777478SMichael Tuexen highest_tsn = stcb->asoc.highest_tsn_inside_nr_map; 56918f777478SMichael Tuexen } else { 56928f777478SMichael Tuexen highest_tsn = stcb->asoc.highest_tsn_inside_map; 5693f8829a4aSRandall Stewart } 569420b07a4dSMichael Tuexen was_a_gap = SCTP_TSN_GT(highest_tsn, stcb->asoc.cumulative_tsn); 56958933fa13SRandall Stewart stcb->asoc.send_sack = 1; 5696b5c16493SMichael Tuexen sctp_sack_check(stcb, was_a_gap, &abort_flag); 5697f8829a4aSRandall Stewart if (abort_flag) { 5698f8829a4aSRandall Stewart /* Again, we aborted so NO UNLOCK needed */ 5699b54d3a6cSRandall Stewart goto out_now; 5700f8829a4aSRandall Stewart } 57018933fa13SRandall Stewart } else if (fwd_tsn_seen) { 57028933fa13SRandall Stewart stcb->asoc.send_sack = 1; 5703f8829a4aSRandall Stewart } 5704f8829a4aSRandall Stewart /* trigger send of any chunks in queue... */ 5705a5d547adSRandall Stewart trigger_send: 5706f8829a4aSRandall Stewart #ifdef SCTP_AUDITING_ENABLED 5707f8829a4aSRandall Stewart sctp_audit_log(0xE0, 2); 5708f8829a4aSRandall Stewart sctp_auditing(1, inp, stcb, net); 5709f8829a4aSRandall Stewart #endif 5710ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 5711ad81507eSRandall Stewart "Check for chunk output prw:%d tqe:%d tf=%d\n", 5712f8829a4aSRandall Stewart stcb->asoc.peers_rwnd, 5713f8829a4aSRandall Stewart TAILQ_EMPTY(&stcb->asoc.control_send_queue), 5714f8829a4aSRandall Stewart stcb->asoc.total_flight); 5715f8829a4aSRandall Stewart un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 5716f8829a4aSRandall Stewart 5717f8829a4aSRandall Stewart if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue) || 5718f8829a4aSRandall Stewart ((un_sent) && 5719f8829a4aSRandall Stewart (stcb->asoc.peers_rwnd > 0 || 5720f8829a4aSRandall Stewart (stcb->asoc.peers_rwnd <= 0 && stcb->asoc.total_flight == 0)))) { 5721ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "Calling chunk OUTPUT\n"); 5722ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_CONTROL_PROC, SCTP_SO_NOT_LOCKED); 5723ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT3, "chunk OUTPUT returns\n"); 5724f8829a4aSRandall Stewart } 5725f8829a4aSRandall Stewart #ifdef SCTP_AUDITING_ENABLED 5726f8829a4aSRandall Stewart sctp_audit_log(0xE0, 3); 5727f8829a4aSRandall Stewart sctp_auditing(2, inp, stcb, net); 5728f8829a4aSRandall Stewart #endif 5729f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5730b54d3a6cSRandall Stewart out_now: 5731b54d3a6cSRandall Stewart #ifdef INVARIANTS 5732b54d3a6cSRandall Stewart sctp_validate_no_locks(inp); 5733b54d3a6cSRandall Stewart #endif 57346e55db54SRandall Stewart return; 5735f8829a4aSRandall Stewart } 5736f8829a4aSRandall Stewart 5737830d754dSRandall Stewart #if 0 5738830d754dSRandall Stewart static void 5739830d754dSRandall Stewart sctp_print_mbuf_chain(struct mbuf *m) 5740830d754dSRandall Stewart { 5741830d754dSRandall Stewart for (; m; m = SCTP_BUF_NEXT(m)) { 5742830d754dSRandall Stewart printf("%p: m_len = %ld\n", m, SCTP_BUF_LEN(m)); 5743830d754dSRandall Stewart if (SCTP_BUF_IS_EXTENDED(m)) 5744830d754dSRandall Stewart printf("%p: extend_size = %d\n", m, SCTP_BUF_EXTEND_SIZE(m)); 5745830d754dSRandall Stewart } 5746830d754dSRandall Stewart } 5747830d754dSRandall Stewart 5748830d754dSRandall Stewart #endif 5749a5d547adSRandall Stewart 5750f8829a4aSRandall Stewart void 5751af83f5d7SRoman Divacky sctp_input_with_port(struct mbuf *i_pak, int off, uint16_t port) 5752f8829a4aSRandall Stewart { 5753f8829a4aSRandall Stewart #ifdef SCTP_MBUF_LOGGING 5754f8829a4aSRandall Stewart struct mbuf *mat; 5755f8829a4aSRandall Stewart 5756f8829a4aSRandall Stewart #endif 5757139bc87fSRandall Stewart struct mbuf *m; 5758f8829a4aSRandall Stewart int iphlen; 5759ad21a364SRandall Stewart uint32_t vrf_id = 0; 5760f8829a4aSRandall Stewart uint8_t ecn_bits; 5761f8829a4aSRandall Stewart struct ip *ip; 5762f8829a4aSRandall Stewart struct sctphdr *sh; 5763f8829a4aSRandall Stewart struct sctp_inpcb *inp = NULL; 5764f8829a4aSRandall Stewart struct sctp_nets *net; 5765f8829a4aSRandall Stewart struct sctp_tcb *stcb = NULL; 5766f8829a4aSRandall Stewart struct sctp_chunkhdr *ch; 5767f8829a4aSRandall Stewart int refcount_up = 0; 5768f8829a4aSRandall Stewart int length, mlen, offset; 5769f8829a4aSRandall Stewart 57709c7635e1SMichael Tuexen #if !defined(SCTP_WITH_NO_CSUM) 57719c7635e1SMichael Tuexen uint32_t check, calc_check; 57729c7635e1SMichael Tuexen 57739c7635e1SMichael Tuexen #endif 57749c7635e1SMichael Tuexen 577517205eccSRandall Stewart if (SCTP_GET_PKT_VRFID(i_pak, vrf_id)) { 577617205eccSRandall Stewart SCTP_RELEASE_PKT(i_pak); 577717205eccSRandall Stewart return; 577817205eccSRandall Stewart } 5779bff64a4dSRandall Stewart mlen = SCTP_HEADER_LEN(i_pak); 5780f8829a4aSRandall Stewart iphlen = off; 5781139bc87fSRandall Stewart m = SCTP_HEADER_TO_CHAIN(i_pak); 5782d61a0ae0SRandall Stewart 5783f8829a4aSRandall Stewart net = NULL; 5784f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_recvpackets); 5785f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER64(sctps_inpackets); 5786f8829a4aSRandall Stewart 5787207304d4SRandall Stewart 5788f8829a4aSRandall Stewart #ifdef SCTP_MBUF_LOGGING 5789f8829a4aSRandall Stewart /* Log in any input mbufs */ 5790b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 5791f8829a4aSRandall Stewart mat = m; 5792f8829a4aSRandall Stewart while (mat) { 5793139bc87fSRandall Stewart if (SCTP_BUF_IS_EXTENDED(mat)) { 5794f8829a4aSRandall Stewart sctp_log_mb(mat, SCTP_MBUF_INPUT); 5795f8829a4aSRandall Stewart } 5796139bc87fSRandall Stewart mat = SCTP_BUF_NEXT(mat); 5797f8829a4aSRandall Stewart } 579880fefe0aSRandall Stewart } 5799f8829a4aSRandall Stewart #endif 5800207304d4SRandall Stewart #ifdef SCTP_PACKET_LOGGING 5801b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 5802207304d4SRandall Stewart sctp_packet_log(m, mlen); 5803207304d4SRandall Stewart #endif 5804207304d4SRandall Stewart /* 5805207304d4SRandall Stewart * Must take out the iphlen, since mlen expects this (only effect lb 5806207304d4SRandall Stewart * case) 5807207304d4SRandall Stewart */ 5808207304d4SRandall Stewart mlen -= iphlen; 58095e54f665SRandall Stewart 5810f8829a4aSRandall Stewart /* 5811f8829a4aSRandall Stewart * Get IP, SCTP, and first chunk header together in first mbuf. 5812f8829a4aSRandall Stewart */ 5813f8829a4aSRandall Stewart ip = mtod(m, struct ip *); 5814f8829a4aSRandall Stewart offset = iphlen + sizeof(*sh) + sizeof(*ch); 5815139bc87fSRandall Stewart if (SCTP_BUF_LEN(m) < offset) { 5816f8829a4aSRandall Stewart if ((m = m_pullup(m, offset)) == 0) { 5817f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_hdrops); 5818f8829a4aSRandall Stewart return; 5819f8829a4aSRandall Stewart } 5820f8829a4aSRandall Stewart ip = mtod(m, struct ip *); 5821f8829a4aSRandall Stewart } 5822a99b6783SRandall Stewart /* validate mbuf chain length with IP payload length */ 5823a99b6783SRandall Stewart if (mlen < (SCTP_GET_IPV4_LENGTH(ip) - iphlen)) { 5824a99b6783SRandall Stewart SCTP_STAT_INCR(sctps_hdrops); 5825a99b6783SRandall Stewart goto bad; 5826a99b6783SRandall Stewart } 5827f8829a4aSRandall Stewart sh = (struct sctphdr *)((caddr_t)ip + iphlen); 5828f8829a4aSRandall Stewart ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(*sh)); 5829e42a0f5eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 5830e42a0f5eSRandall Stewart "sctp_input() length:%d iphlen:%d\n", mlen, iphlen); 5831f8829a4aSRandall Stewart 5832f8829a4aSRandall Stewart /* SCTP does not allow broadcasts or multicasts */ 5833f8829a4aSRandall Stewart if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) { 5834f8829a4aSRandall Stewart goto bad; 5835f8829a4aSRandall Stewart } 58365e54f665SRandall Stewart if (SCTP_IS_IT_BROADCAST(ip->ip_dst, m)) { 5837f8829a4aSRandall Stewart /* 5838f8829a4aSRandall Stewart * We only look at broadcast if its a front state, All 5839f8829a4aSRandall Stewart * others we will not have a tcb for anyway. 5840f8829a4aSRandall Stewart */ 5841f8829a4aSRandall Stewart goto bad; 5842f8829a4aSRandall Stewart } 5843f8829a4aSRandall Stewart /* validate SCTP checksum */ 5844a99b6783SRandall Stewart SCTPDBG(SCTP_DEBUG_CRCOFFLOAD, 5845a99b6783SRandall Stewart "sctp_input(): Packet of length %d received on %s with csum_flags 0x%x.\n", 5846a99b6783SRandall Stewart m->m_pkthdr.len, 5847a99b6783SRandall Stewart if_name(m->m_pkthdr.rcvif), 5848a99b6783SRandall Stewart m->m_pkthdr.csum_flags); 58499c7635e1SMichael Tuexen #if defined(SCTP_WITH_NO_CSUM) 58509c7635e1SMichael Tuexen SCTP_STAT_INCR(sctps_recvnocrc); 58519c7635e1SMichael Tuexen #else 5852a99b6783SRandall Stewart if (m->m_pkthdr.csum_flags & CSUM_SCTP_VALID) { 5853a99b6783SRandall Stewart SCTP_STAT_INCR(sctps_recvhwcrc); 5854a99b6783SRandall Stewart goto sctp_skip_csum_4; 5855a99b6783SRandall Stewart } 5856f8829a4aSRandall Stewart check = sh->checksum; /* save incoming checksum */ 5857f8829a4aSRandall Stewart sh->checksum = 0; /* prepare for calc */ 5858a99b6783SRandall Stewart calc_check = sctp_calculate_cksum(m, iphlen); 5859f1150dc0SMichael Tuexen sh->checksum = check; 5860a99b6783SRandall Stewart SCTP_STAT_INCR(sctps_recvswcrc); 5861f8829a4aSRandall Stewart if (calc_check != check) { 5862ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, "Bad CSUM on SCTP packet calc_check:%x check:%x m:%p mlen:%d iphlen:%d\n", 586350cec919SRandall Stewart calc_check, check, m, mlen, iphlen); 5864f8829a4aSRandall Stewart 5865f8829a4aSRandall Stewart stcb = sctp_findassociation_addr(m, iphlen, 5866f8829a4aSRandall Stewart offset - sizeof(*ch), 5867ad81507eSRandall Stewart sh, ch, &inp, &net, 5868ad81507eSRandall Stewart vrf_id); 5869c54a18d2SRandall Stewart if ((net) && (port)) { 5870c54a18d2SRandall Stewart if (net->port == 0) { 5871c54a18d2SRandall Stewart sctp_pathmtu_adjustment(inp, stcb, net, net->mtu - sizeof(struct udphdr)); 5872c54a18d2SRandall Stewart } 5873c54a18d2SRandall Stewart net->port = port; 5874c54a18d2SRandall Stewart } 5875f8829a4aSRandall Stewart if ((inp) && (stcb)) { 5876f8829a4aSRandall Stewart sctp_send_packet_dropped(stcb, net, m, iphlen, 1); 5877ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_INPUT_ERROR, SCTP_SO_NOT_LOCKED); 5878f8829a4aSRandall Stewart } else if ((inp != NULL) && (stcb == NULL)) { 5879f8829a4aSRandall Stewart refcount_up = 1; 5880f8829a4aSRandall Stewart } 5881f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_badsum); 5882f8829a4aSRandall Stewart SCTP_STAT_INCR_COUNTER32(sctps_checksumerrors); 5883f8829a4aSRandall Stewart goto bad; 5884f8829a4aSRandall Stewart } 5885bff64a4dSRandall Stewart sctp_skip_csum_4: 58869c7635e1SMichael Tuexen #endif 58875e54f665SRandall Stewart /* destination port of 0 is illegal, based on RFC2960. */ 58885e54f665SRandall Stewart if (sh->dest_port == 0) { 58895e54f665SRandall Stewart SCTP_STAT_INCR(sctps_hdrops); 58905e54f665SRandall Stewart goto bad; 5891f8829a4aSRandall Stewart } 5892f8829a4aSRandall Stewart /* 5893f8829a4aSRandall Stewart * Locate pcb and tcb for datagram sctp_findassociation_addr() wants 5894f8829a4aSRandall Stewart * IP/SCTP/first chunk header... 5895f8829a4aSRandall Stewart */ 5896f8829a4aSRandall Stewart stcb = sctp_findassociation_addr(m, iphlen, offset - sizeof(*ch), 5897bff64a4dSRandall Stewart sh, ch, &inp, &net, vrf_id); 5898c54a18d2SRandall Stewart if ((net) && (port)) { 5899c54a18d2SRandall Stewart if (net->port == 0) { 5900c54a18d2SRandall Stewart sctp_pathmtu_adjustment(inp, stcb, net, net->mtu - sizeof(struct udphdr)); 5901c54a18d2SRandall Stewart } 5902c54a18d2SRandall Stewart net->port = port; 5903c54a18d2SRandall Stewart } 5904f8829a4aSRandall Stewart /* inp's ref-count increased && stcb locked */ 5905f8829a4aSRandall Stewart if (inp == NULL) { 5906f8829a4aSRandall Stewart struct sctp_init_chunk *init_chk, chunk_buf; 5907f8829a4aSRandall Stewart 5908f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_noport); 5909f8829a4aSRandall Stewart #ifdef ICMP_BANDLIM 5910f8829a4aSRandall Stewart /* 5911f8829a4aSRandall Stewart * we use the bandwidth limiting to protect against sending 5912f8829a4aSRandall Stewart * too many ABORTS all at once. In this case these count the 5913f8829a4aSRandall Stewart * same as an ICMP message. 5914f8829a4aSRandall Stewart */ 5915f8829a4aSRandall Stewart if (badport_bandlim(0) < 0) 5916f8829a4aSRandall Stewart goto bad; 5917f8829a4aSRandall Stewart #endif /* ICMP_BANDLIM */ 5918ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_INPUT1, 5919ad81507eSRandall Stewart "Sending a ABORT from packet entry!\n"); 5920f8829a4aSRandall Stewart if (ch->chunk_type == SCTP_INITIATION) { 5921f8829a4aSRandall Stewart /* 5922f8829a4aSRandall Stewart * we do a trick here to get the INIT tag, dig in 5923f8829a4aSRandall Stewart * and get the tag from the INIT and put it in the 5924f8829a4aSRandall Stewart * common header. 5925f8829a4aSRandall Stewart */ 5926f8829a4aSRandall Stewart init_chk = (struct sctp_init_chunk *)sctp_m_getptr(m, 5927f8829a4aSRandall Stewart iphlen + sizeof(*sh), sizeof(*init_chk), 5928f8829a4aSRandall Stewart (uint8_t *) & chunk_buf); 5929f8829a4aSRandall Stewart if (init_chk != NULL) 5930f8829a4aSRandall Stewart sh->v_tag = init_chk->init.initiate_tag; 5931f8829a4aSRandall Stewart } 5932a5d547adSRandall Stewart if (ch->chunk_type == SCTP_SHUTDOWN_ACK) { 5933c54a18d2SRandall Stewart sctp_send_shutdown_complete2(m, iphlen, sh, vrf_id, port); 5934a5d547adSRandall Stewart goto bad; 5935a5d547adSRandall Stewart } 5936a5d547adSRandall Stewart if (ch->chunk_type == SCTP_SHUTDOWN_COMPLETE) { 5937a5d547adSRandall Stewart goto bad; 5938a5d547adSRandall Stewart } 5939a5d547adSRandall Stewart if (ch->chunk_type != SCTP_ABORT_ASSOCIATION) 5940c54a18d2SRandall Stewart sctp_send_abort(m, iphlen, sh, 0, NULL, vrf_id, port); 5941f8829a4aSRandall Stewart goto bad; 5942f8829a4aSRandall Stewart } else if (stcb == NULL) { 5943f8829a4aSRandall Stewart refcount_up = 1; 5944f8829a4aSRandall Stewart } 5945b2630c29SGeorge V. Neville-Neil #ifdef IPSEC 5946f8829a4aSRandall Stewart /* 5947f8829a4aSRandall Stewart * I very much doubt any of the IPSEC stuff will work but I have no 5948f8829a4aSRandall Stewart * idea, so I will leave it in place. 5949f8829a4aSRandall Stewart */ 595050cec919SRandall Stewart if (inp && ipsec4_in_reject(m, &inp->ip_inp.inp)) { 5951482444b4SRandall Stewart MODULE_GLOBAL(ipsec4stat).in_polvio++; 5952f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_hdrops); 5953f8829a4aSRandall Stewart goto bad; 5954f8829a4aSRandall Stewart } 5955f8829a4aSRandall Stewart #endif /* IPSEC */ 5956f8829a4aSRandall Stewart 5957f8829a4aSRandall Stewart /* 5958f8829a4aSRandall Stewart * common chunk processing 5959f8829a4aSRandall Stewart */ 5960f8829a4aSRandall Stewart length = ip->ip_len + iphlen; 5961f8829a4aSRandall Stewart offset -= sizeof(struct sctp_chunkhdr); 5962f8829a4aSRandall Stewart 5963f8829a4aSRandall Stewart ecn_bits = ip->ip_tos; 5964f8829a4aSRandall Stewart 59653c503c28SRandall Stewart /* sa_ignore NO_NULL_CHK */ 5966f8829a4aSRandall Stewart sctp_common_input_processing(&m, iphlen, offset, length, sh, ch, 5967c54a18d2SRandall Stewart inp, stcb, net, ecn_bits, vrf_id, port); 5968f8829a4aSRandall Stewart /* inp's ref-count reduced && stcb unlocked */ 5969f8829a4aSRandall Stewart if (m) { 5970f8829a4aSRandall Stewart sctp_m_freem(m); 5971f8829a4aSRandall Stewart } 5972f8829a4aSRandall Stewart if ((inp) && (refcount_up)) { 5973f8829a4aSRandall Stewart /* reduce ref-count */ 5974f8829a4aSRandall Stewart SCTP_INP_DECR_REF(inp); 5975f8829a4aSRandall Stewart } 5976f8829a4aSRandall Stewart return; 5977f8829a4aSRandall Stewart bad: 5978ad81507eSRandall Stewart if (stcb) { 5979f8829a4aSRandall Stewart SCTP_TCB_UNLOCK(stcb); 5980ad81507eSRandall Stewart } 5981f8829a4aSRandall Stewart if ((inp) && (refcount_up)) { 5982f8829a4aSRandall Stewart /* reduce ref-count */ 5983f8829a4aSRandall Stewart SCTP_INP_DECR_REF(inp); 5984f8829a4aSRandall Stewart } 5985f8829a4aSRandall Stewart if (m) { 5986f8829a4aSRandall Stewart sctp_m_freem(m); 5987f8829a4aSRandall Stewart } 5988f8829a4aSRandall Stewart return; 5989f8829a4aSRandall Stewart } 5990c54a18d2SRandall Stewart void 5991c54a18d2SRandall Stewart sctp_input(i_pak, off) 5992c54a18d2SRandall Stewart struct mbuf *i_pak; 5993c54a18d2SRandall Stewart int off; 5994c54a18d2SRandall Stewart { 5995c54a18d2SRandall Stewart sctp_input_with_port(i_pak, off, 0); 5996c54a18d2SRandall Stewart } 5997