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