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