FreeBSD kernel IPv4 code
sctputil.c
Go to the documentation of this file.
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 <sys/cdefs.h>
36__FBSDID("$FreeBSD$");
37
38#include <netinet/sctp_os.h>
39#include <netinet/sctp_pcb.h>
40#include <netinet/sctputil.h>
41#include <netinet/sctp_var.h>
42#include <netinet/sctp_sysctl.h>
43#ifdef INET6
44#include <netinet6/sctp6_var.h>
45#endif
46#include <netinet/sctp_header.h>
47#include <netinet/sctp_output.h>
48#include <netinet/sctp_uio.h>
49#include <netinet/sctp_timer.h>
50#include <netinet/sctp_indata.h>
51#include <netinet/sctp_auth.h>
52#include <netinet/sctp_asconf.h>
55#if defined(INET6) || defined(INET)
56#include <netinet/tcp_var.h>
57#endif
58#include <netinet/udp.h>
59#include <netinet/udp_var.h>
60#include <sys/proc.h>
61#ifdef INET6
62#include <netinet/icmp6.h>
63#endif
64
65#ifndef KTR_SCTP
66#define KTR_SCTP KTR_SUBSYS
67#endif
68
69extern const struct sctp_cc_functions sctp_cc_functions[];
70extern const struct sctp_ss_functions sctp_ss_functions[];
71
72void
73sctp_sblog(struct sockbuf *sb, struct sctp_tcb *stcb, int from, int incr)
74{
75#if defined(SCTP_LOCAL_TRACE_BUF)
76 struct sctp_cwnd_log sctp_clog;
77
78 sctp_clog.x.sb.stcb = stcb;
79 sctp_clog.x.sb.so_sbcc = sb->sb_cc;
80 if (stcb)
81 sctp_clog.x.sb.stcb_sbcc = stcb->asoc.sb_cc;
82 else
83 sctp_clog.x.sb.stcb_sbcc = 0;
84 sctp_clog.x.sb.incr = incr;
85 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
87 from,
88 sctp_clog.x.misc.log1,
89 sctp_clog.x.misc.log2,
90 sctp_clog.x.misc.log3,
91 sctp_clog.x.misc.log4);
92#endif
93}
94
95void
96sctp_log_closing(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int16_t loc)
97{
98#if defined(SCTP_LOCAL_TRACE_BUF)
99 struct sctp_cwnd_log sctp_clog;
100
101 sctp_clog.x.close.inp = (void *)inp;
102 sctp_clog.x.close.sctp_flags = inp->sctp_flags;
103 if (stcb) {
104 sctp_clog.x.close.stcb = (void *)stcb;
105 sctp_clog.x.close.state = (uint16_t)stcb->asoc.state;
106 } else {
107 sctp_clog.x.close.stcb = 0;
108 sctp_clog.x.close.state = 0;
109 }
110 sctp_clog.x.close.loc = loc;
111 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
113 0,
114 sctp_clog.x.misc.log1,
115 sctp_clog.x.misc.log2,
116 sctp_clog.x.misc.log3,
117 sctp_clog.x.misc.log4);
118#endif
119}
120
121void
122rto_logging(struct sctp_nets *net, int from)
123{
124#if defined(SCTP_LOCAL_TRACE_BUF)
125 struct sctp_cwnd_log sctp_clog;
126
127 memset(&sctp_clog, 0, sizeof(sctp_clog));
128 sctp_clog.x.rto.net = (void *)net;
129 sctp_clog.x.rto.rtt = net->rtt / 1000;
130 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
132 from,
133 sctp_clog.x.misc.log1,
134 sctp_clog.x.misc.log2,
135 sctp_clog.x.misc.log3,
136 sctp_clog.x.misc.log4);
137#endif
138}
139
140void
141sctp_log_strm_del_alt(struct sctp_tcb *stcb, uint32_t tsn, uint16_t sseq, uint16_t stream, int from)
142{
143#if defined(SCTP_LOCAL_TRACE_BUF)
144 struct sctp_cwnd_log sctp_clog;
145
146 sctp_clog.x.strlog.stcb = stcb;
147 sctp_clog.x.strlog.n_tsn = tsn;
148 sctp_clog.x.strlog.n_sseq = sseq;
149 sctp_clog.x.strlog.e_tsn = 0;
150 sctp_clog.x.strlog.e_sseq = 0;
151 sctp_clog.x.strlog.strm = stream;
152 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
154 from,
155 sctp_clog.x.misc.log1,
156 sctp_clog.x.misc.log2,
157 sctp_clog.x.misc.log3,
158 sctp_clog.x.misc.log4);
159#endif
160}
161
162void
163sctp_log_nagle_event(struct sctp_tcb *stcb, int action)
164{
165#if defined(SCTP_LOCAL_TRACE_BUF)
166 struct sctp_cwnd_log sctp_clog;
167
168 sctp_clog.x.nagle.stcb = (void *)stcb;
169 sctp_clog.x.nagle.total_flight = stcb->asoc.total_flight;
173 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
175 action,
176 sctp_clog.x.misc.log1,
177 sctp_clog.x.misc.log2,
178 sctp_clog.x.misc.log3,
179 sctp_clog.x.misc.log4);
180#endif
181}
182
183void
184sctp_log_sack(uint32_t old_cumack, uint32_t cumack, uint32_t tsn, uint16_t gaps, uint16_t dups, int from)
185{
186#if defined(SCTP_LOCAL_TRACE_BUF)
187 struct sctp_cwnd_log sctp_clog;
188
189 sctp_clog.x.sack.cumack = cumack;
190 sctp_clog.x.sack.oldcumack = old_cumack;
191 sctp_clog.x.sack.tsn = tsn;
192 sctp_clog.x.sack.numGaps = gaps;
193 sctp_clog.x.sack.numDups = dups;
194 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
196 from,
197 sctp_clog.x.misc.log1,
198 sctp_clog.x.misc.log2,
199 sctp_clog.x.misc.log3,
200 sctp_clog.x.misc.log4);
201#endif
202}
203
204void
206{
207#if defined(SCTP_LOCAL_TRACE_BUF)
208 struct sctp_cwnd_log sctp_clog;
209
210 memset(&sctp_clog, 0, sizeof(sctp_clog));
211 sctp_clog.x.map.base = map;
212 sctp_clog.x.map.cum = cum;
213 sctp_clog.x.map.high = high;
214 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
216 from,
217 sctp_clog.x.misc.log1,
218 sctp_clog.x.misc.log2,
219 sctp_clog.x.misc.log3,
220 sctp_clog.x.misc.log4);
221#endif
222}
223
224void
225sctp_log_fr(uint32_t biggest_tsn, uint32_t biggest_new_tsn, uint32_t tsn, int from)
226{
227#if defined(SCTP_LOCAL_TRACE_BUF)
228 struct sctp_cwnd_log sctp_clog;
229
230 memset(&sctp_clog, 0, sizeof(sctp_clog));
231 sctp_clog.x.fr.largest_tsn = biggest_tsn;
232 sctp_clog.x.fr.largest_new_tsn = biggest_new_tsn;
233 sctp_clog.x.fr.tsn = tsn;
234 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
236 from,
237 sctp_clog.x.misc.log1,
238 sctp_clog.x.misc.log2,
239 sctp_clog.x.misc.log3,
240 sctp_clog.x.misc.log4);
241#endif
242}
243
244#ifdef SCTP_MBUF_LOGGING
245void
246sctp_log_mb(struct mbuf *m, int from)
247{
248#if defined(SCTP_LOCAL_TRACE_BUF)
249 struct sctp_cwnd_log sctp_clog;
250
251 sctp_clog.x.mb.mp = m;
252 sctp_clog.x.mb.mbuf_flags = (uint8_t)(SCTP_BUF_GET_FLAGS(m));
253 sctp_clog.x.mb.size = (uint16_t)(SCTP_BUF_LEN(m));
254 sctp_clog.x.mb.data = SCTP_BUF_AT(m, 0);
255 if (SCTP_BUF_IS_EXTENDED(m)) {
256 sctp_clog.x.mb.ext = SCTP_BUF_EXTEND_BASE(m);
257 sctp_clog.x.mb.refcnt = (uint8_t)(SCTP_BUF_EXTEND_REFCNT(m));
258 } else {
259 sctp_clog.x.mb.ext = 0;
260 sctp_clog.x.mb.refcnt = 0;
261 }
262 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
264 from,
265 sctp_clog.x.misc.log1,
266 sctp_clog.x.misc.log2,
267 sctp_clog.x.misc.log3,
268 sctp_clog.x.misc.log4);
269#endif
270}
271
272void
273sctp_log_mbc(struct mbuf *m, int from)
274{
275 struct mbuf *mat;
276
277 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
278 sctp_log_mb(mat, from);
279 }
280}
281#endif
282
283void
284sctp_log_strm_del(struct sctp_queued_to_read *control, struct sctp_queued_to_read *poschk, int from)
285{
286#if defined(SCTP_LOCAL_TRACE_BUF)
287 struct sctp_cwnd_log sctp_clog;
288
289 if (control == NULL) {
290 SCTP_PRINTF("Gak log of NULL?\n");
291 return;
292 }
293 sctp_clog.x.strlog.stcb = control->stcb;
294 sctp_clog.x.strlog.n_tsn = control->sinfo_tsn;
295 sctp_clog.x.strlog.n_sseq = (uint16_t)control->mid;
296 sctp_clog.x.strlog.strm = control->sinfo_stream;
297 if (poschk != NULL) {
298 sctp_clog.x.strlog.e_tsn = poschk->sinfo_tsn;
299 sctp_clog.x.strlog.e_sseq = (uint16_t)poschk->mid;
300 } else {
301 sctp_clog.x.strlog.e_tsn = 0;
302 sctp_clog.x.strlog.e_sseq = 0;
303 }
304 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
306 from,
307 sctp_clog.x.misc.log1,
308 sctp_clog.x.misc.log2,
309 sctp_clog.x.misc.log3,
310 sctp_clog.x.misc.log4);
311#endif
312}
313
314void
315sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *net, int augment, uint8_t from)
316{
317#if defined(SCTP_LOCAL_TRACE_BUF)
318 struct sctp_cwnd_log sctp_clog;
319
320 sctp_clog.x.cwnd.net = net;
321 if (stcb->asoc.send_queue_cnt > 255)
322 sctp_clog.x.cwnd.cnt_in_send = 255;
323 else
324 sctp_clog.x.cwnd.cnt_in_send = stcb->asoc.send_queue_cnt;
325 if (stcb->asoc.stream_queue_cnt > 255)
326 sctp_clog.x.cwnd.cnt_in_str = 255;
327 else
328 sctp_clog.x.cwnd.cnt_in_str = stcb->asoc.stream_queue_cnt;
329
330 if (net) {
331 sctp_clog.x.cwnd.cwnd_new_value = net->cwnd;
332 sctp_clog.x.cwnd.inflight = net->flight_size;
333 sctp_clog.x.cwnd.pseudo_cumack = net->pseudo_cumack;
336 }
337 if (SCTP_CWNDLOG_PRESEND == from) {
338 sctp_clog.x.cwnd.meets_pseudo_cumack = stcb->asoc.peers_rwnd;
339 }
340 sctp_clog.x.cwnd.cwnd_augment = augment;
341 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
343 from,
344 sctp_clog.x.misc.log1,
345 sctp_clog.x.misc.log2,
346 sctp_clog.x.misc.log3,
347 sctp_clog.x.misc.log4);
348#endif
349}
350
351void
352sctp_log_lock(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint8_t from)
353{
354#if defined(SCTP_LOCAL_TRACE_BUF)
355 struct sctp_cwnd_log sctp_clog;
356
357 memset(&sctp_clog, 0, sizeof(sctp_clog));
358 if (inp) {
359 sctp_clog.x.lock.sock = (void *)inp->sctp_socket;
360
361 } else {
362 sctp_clog.x.lock.sock = (void *)NULL;
363 }
364 sctp_clog.x.lock.inp = (void *)inp;
365 if (stcb) {
366 sctp_clog.x.lock.tcb_lock = mtx_owned(&stcb->tcb_mtx);
367 } else {
368 sctp_clog.x.lock.tcb_lock = SCTP_LOCK_UNKNOWN;
369 }
370 if (inp) {
371 sctp_clog.x.lock.inp_lock = mtx_owned(&inp->inp_mtx);
372 sctp_clog.x.lock.create_lock = mtx_owned(&inp->inp_create_mtx);
373 } else {
374 sctp_clog.x.lock.inp_lock = SCTP_LOCK_UNKNOWN;
376 }
377 sctp_clog.x.lock.info_lock = rw_wowned(&SCTP_BASE_INFO(ipi_ep_mtx));
378 if (inp && (inp->sctp_socket)) {
379 sctp_clog.x.lock.sock_lock = mtx_owned(SOCK_MTX(inp->sctp_socket));
380 sctp_clog.x.lock.sockrcvbuf_lock = mtx_owned(SOCKBUF_MTX(&inp->sctp_socket->so_rcv));
381 sctp_clog.x.lock.socksndbuf_lock = mtx_owned(SOCKBUF_MTX(&inp->sctp_socket->so_snd));
382 } else {
383 sctp_clog.x.lock.sock_lock = SCTP_LOCK_UNKNOWN;
386 }
387 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
389 from,
390 sctp_clog.x.misc.log1,
391 sctp_clog.x.misc.log2,
392 sctp_clog.x.misc.log3,
393 sctp_clog.x.misc.log4);
394#endif
395}
396
397void
398sctp_log_maxburst(struct sctp_tcb *stcb, struct sctp_nets *net, int error, int burst, uint8_t from)
399{
400#if defined(SCTP_LOCAL_TRACE_BUF)
401 struct sctp_cwnd_log sctp_clog;
402
403 memset(&sctp_clog, 0, sizeof(sctp_clog));
404 sctp_clog.x.cwnd.net = net;
405 sctp_clog.x.cwnd.cwnd_new_value = error;
406 sctp_clog.x.cwnd.inflight = net->flight_size;
407 sctp_clog.x.cwnd.cwnd_augment = burst;
408 if (stcb->asoc.send_queue_cnt > 255)
409 sctp_clog.x.cwnd.cnt_in_send = 255;
410 else
411 sctp_clog.x.cwnd.cnt_in_send = stcb->asoc.send_queue_cnt;
412 if (stcb->asoc.stream_queue_cnt > 255)
413 sctp_clog.x.cwnd.cnt_in_str = 255;
414 else
415 sctp_clog.x.cwnd.cnt_in_str = stcb->asoc.stream_queue_cnt;
416 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
418 from,
419 sctp_clog.x.misc.log1,
420 sctp_clog.x.misc.log2,
421 sctp_clog.x.misc.log3,
422 sctp_clog.x.misc.log4);
423#endif
424}
425
426void
427sctp_log_rwnd(uint8_t from, uint32_t peers_rwnd, uint32_t snd_size, uint32_t overhead)
428{
429#if defined(SCTP_LOCAL_TRACE_BUF)
430 struct sctp_cwnd_log sctp_clog;
431
432 sctp_clog.x.rwnd.rwnd = peers_rwnd;
433 sctp_clog.x.rwnd.send_size = snd_size;
434 sctp_clog.x.rwnd.overhead = overhead;
435 sctp_clog.x.rwnd.new_rwnd = 0;
436 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
438 from,
439 sctp_clog.x.misc.log1,
440 sctp_clog.x.misc.log2,
441 sctp_clog.x.misc.log3,
442 sctp_clog.x.misc.log4);
443#endif
444}
445
446void
447sctp_log_rwnd_set(uint8_t from, uint32_t peers_rwnd, uint32_t flight_size, uint32_t overhead, uint32_t a_rwndval)
448{
449#if defined(SCTP_LOCAL_TRACE_BUF)
450 struct sctp_cwnd_log sctp_clog;
451
452 sctp_clog.x.rwnd.rwnd = peers_rwnd;
453 sctp_clog.x.rwnd.send_size = flight_size;
454 sctp_clog.x.rwnd.overhead = overhead;
455 sctp_clog.x.rwnd.new_rwnd = a_rwndval;
456 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
458 from,
459 sctp_clog.x.misc.log1,
460 sctp_clog.x.misc.log2,
461 sctp_clog.x.misc.log3,
462 sctp_clog.x.misc.log4);
463#endif
464}
465
466#ifdef SCTP_MBCNT_LOGGING
467static void
468sctp_log_mbcnt(uint8_t from, uint32_t total_oq, uint32_t book, uint32_t total_mbcnt_q, uint32_t mbcnt)
469{
470#if defined(SCTP_LOCAL_TRACE_BUF)
471 struct sctp_cwnd_log sctp_clog;
472
473 sctp_clog.x.mbcnt.total_queue_size = total_oq;
474 sctp_clog.x.mbcnt.size_change = book;
475 sctp_clog.x.mbcnt.total_queue_mb_size = total_mbcnt_q;
476 sctp_clog.x.mbcnt.mbcnt_change = mbcnt;
477 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
479 from,
480 sctp_clog.x.misc.log1,
481 sctp_clog.x.misc.log2,
482 sctp_clog.x.misc.log3,
483 sctp_clog.x.misc.log4);
484#endif
485}
486#endif
487
488void
490{
491#if defined(SCTP_LOCAL_TRACE_BUF)
492 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
494 from,
495 a, b, c, d);
496#endif
497}
498
499void
500sctp_wakeup_log(struct sctp_tcb *stcb, uint32_t wake_cnt, int from)
501{
502#if defined(SCTP_LOCAL_TRACE_BUF)
503 struct sctp_cwnd_log sctp_clog;
504
505 sctp_clog.x.wake.stcb = (void *)stcb;
506 sctp_clog.x.wake.wake_cnt = wake_cnt;
507 sctp_clog.x.wake.flight = stcb->asoc.total_flight_count;
508 sctp_clog.x.wake.send_q = stcb->asoc.send_queue_cnt;
509 sctp_clog.x.wake.sent_q = stcb->asoc.sent_queue_cnt;
510
511 if (stcb->asoc.stream_queue_cnt < 0xff)
512 sctp_clog.x.wake.stream_qcnt = (uint8_t)stcb->asoc.stream_queue_cnt;
513 else
514 sctp_clog.x.wake.stream_qcnt = 0xff;
515
516 if (stcb->asoc.chunks_on_out_queue < 0xff)
518 else
519 sctp_clog.x.wake.chunks_on_oque = 0xff;
520
521 sctp_clog.x.wake.sctpflags = 0;
522 /* set in the defered mode stuff */
524 sctp_clog.x.wake.sctpflags |= 1;
526 sctp_clog.x.wake.sctpflags |= 2;
528 sctp_clog.x.wake.sctpflags |= 4;
529 /* what about the sb */
530 if (stcb->sctp_socket) {
531 struct socket *so = stcb->sctp_socket;
532
533 sctp_clog.x.wake.sbflags = (uint8_t)((so->so_snd.sb_flags & 0x00ff));
534 } else {
535 sctp_clog.x.wake.sbflags = 0xff;
536 }
537 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
539 from,
540 sctp_clog.x.misc.log1,
541 sctp_clog.x.misc.log2,
542 sctp_clog.x.misc.log3,
543 sctp_clog.x.misc.log4);
544#endif
545}
546
547void
548sctp_log_block(uint8_t from, struct sctp_association *asoc, ssize_t sendlen)
549{
550#if defined(SCTP_LOCAL_TRACE_BUF)
551 struct sctp_cwnd_log sctp_clog;
552
553 sctp_clog.x.blk.onsb = asoc->total_output_queue_size;
554 sctp_clog.x.blk.send_sent_qcnt = (uint16_t)(asoc->send_queue_cnt + asoc->sent_queue_cnt);
555 sctp_clog.x.blk.peer_rwnd = asoc->peers_rwnd;
556 sctp_clog.x.blk.stream_qcnt = (uint16_t)asoc->stream_queue_cnt;
558 sctp_clog.x.blk.flight_size = (uint16_t)(asoc->total_flight / 1024);
559 sctp_clog.x.blk.sndlen = (uint32_t)sendlen;
560 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
562 from,
563 sctp_clog.x.misc.log1,
564 sctp_clog.x.misc.log2,
565 sctp_clog.x.misc.log3,
566 sctp_clog.x.misc.log4);
567#endif
568}
569
570int
571sctp_fill_stat_log(void *optval SCTP_UNUSED, size_t *optsize SCTP_UNUSED)
572{
573 /* May need to fix this if ktrdump does not work */
574 return (0);
575}
576
577#ifdef SCTP_AUDITING_ENABLED
578uint8_t sctp_audit_data[SCTP_AUDIT_SIZE][2];
579static int sctp_audit_indx = 0;
580
581static
582void
583sctp_print_audit_report(void)
584{
585 int i;
586 int cnt;
587
588 cnt = 0;
589 for (i = sctp_audit_indx; i < SCTP_AUDIT_SIZE; i++) {
590 if ((sctp_audit_data[i][0] == 0xe0) &&
591 (sctp_audit_data[i][1] == 0x01)) {
592 cnt = 0;
593 SCTP_PRINTF("\n");
594 } else if (sctp_audit_data[i][0] == 0xf0) {
595 cnt = 0;
596 SCTP_PRINTF("\n");
597 } else if ((sctp_audit_data[i][0] == 0xc0) &&
598 (sctp_audit_data[i][1] == 0x01)) {
599 SCTP_PRINTF("\n");
600 cnt = 0;
601 }
602 SCTP_PRINTF("%2.2x%2.2x ", (uint32_t)sctp_audit_data[i][0],
603 (uint32_t)sctp_audit_data[i][1]);
604 cnt++;
605 if ((cnt % 14) == 0)
606 SCTP_PRINTF("\n");
607 }
608 for (i = 0; i < sctp_audit_indx; i++) {
609 if ((sctp_audit_data[i][0] == 0xe0) &&
610 (sctp_audit_data[i][1] == 0x01)) {
611 cnt = 0;
612 SCTP_PRINTF("\n");
613 } else if (sctp_audit_data[i][0] == 0xf0) {
614 cnt = 0;
615 SCTP_PRINTF("\n");
616 } else if ((sctp_audit_data[i][0] == 0xc0) &&
617 (sctp_audit_data[i][1] == 0x01)) {
618 SCTP_PRINTF("\n");
619 cnt = 0;
620 }
621 SCTP_PRINTF("%2.2x%2.2x ", (uint32_t)sctp_audit_data[i][0],
622 (uint32_t)sctp_audit_data[i][1]);
623 cnt++;
624 if ((cnt % 14) == 0)
625 SCTP_PRINTF("\n");
626 }
627 SCTP_PRINTF("\n");
628}
629
630void
631sctp_auditing(int from, struct sctp_inpcb *inp, struct sctp_tcb *stcb,
632 struct sctp_nets *net)
633{
634 int resend_cnt, tot_out, rep, tot_book_cnt;
635 struct sctp_nets *lnet;
636 struct sctp_tmit_chunk *chk;
637
638 sctp_audit_data[sctp_audit_indx][0] = 0xAA;
639 sctp_audit_data[sctp_audit_indx][1] = 0x000000ff & from;
640 sctp_audit_indx++;
641 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
642 sctp_audit_indx = 0;
643 }
644 if (inp == NULL) {
645 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
646 sctp_audit_data[sctp_audit_indx][1] = 0x01;
647 sctp_audit_indx++;
648 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
649 sctp_audit_indx = 0;
650 }
651 return;
652 }
653 if (stcb == NULL) {
654 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
655 sctp_audit_data[sctp_audit_indx][1] = 0x02;
656 sctp_audit_indx++;
657 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
658 sctp_audit_indx = 0;
659 }
660 return;
661 }
662 sctp_audit_data[sctp_audit_indx][0] = 0xA1;
663 sctp_audit_data[sctp_audit_indx][1] =
664 (0x000000ff & stcb->asoc.sent_queue_retran_cnt);
665 sctp_audit_indx++;
666 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
667 sctp_audit_indx = 0;
668 }
669 rep = 0;
670 tot_book_cnt = 0;
671 resend_cnt = tot_out = 0;
672 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
673 if (chk->sent == SCTP_DATAGRAM_RESEND) {
674 resend_cnt++;
675 } else if (chk->sent < SCTP_DATAGRAM_RESEND) {
676 tot_out += chk->book_size;
677 tot_book_cnt++;
678 }
679 }
680 if (resend_cnt != stcb->asoc.sent_queue_retran_cnt) {
681 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
682 sctp_audit_data[sctp_audit_indx][1] = 0xA1;
683 sctp_audit_indx++;
684 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
685 sctp_audit_indx = 0;
686 }
687 SCTP_PRINTF("resend_cnt:%d asoc-tot:%d\n",
688 resend_cnt, stcb->asoc.sent_queue_retran_cnt);
689 rep = 1;
690 stcb->asoc.sent_queue_retran_cnt = resend_cnt;
691 sctp_audit_data[sctp_audit_indx][0] = 0xA2;
692 sctp_audit_data[sctp_audit_indx][1] =
693 (0x000000ff & stcb->asoc.sent_queue_retran_cnt);
694 sctp_audit_indx++;
695 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
696 sctp_audit_indx = 0;
697 }
698 }
699 if (tot_out != stcb->asoc.total_flight) {
700 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
701 sctp_audit_data[sctp_audit_indx][1] = 0xA2;
702 sctp_audit_indx++;
703 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
704 sctp_audit_indx = 0;
705 }
706 rep = 1;
707 SCTP_PRINTF("tot_flt:%d asoc_tot:%d\n", tot_out,
708 (int)stcb->asoc.total_flight);
709 stcb->asoc.total_flight = tot_out;
710 }
711 if (tot_book_cnt != stcb->asoc.total_flight_count) {
712 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
713 sctp_audit_data[sctp_audit_indx][1] = 0xA5;
714 sctp_audit_indx++;
715 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
716 sctp_audit_indx = 0;
717 }
718 rep = 1;
719 SCTP_PRINTF("tot_flt_book:%d\n", tot_book_cnt);
720
721 stcb->asoc.total_flight_count = tot_book_cnt;
722 }
723 tot_out = 0;
724 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) {
725 tot_out += lnet->flight_size;
726 }
727 if (tot_out != stcb->asoc.total_flight) {
728 sctp_audit_data[sctp_audit_indx][0] = 0xAF;
729 sctp_audit_data[sctp_audit_indx][1] = 0xA3;
730 sctp_audit_indx++;
731 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
732 sctp_audit_indx = 0;
733 }
734 rep = 1;
735 SCTP_PRINTF("real flight:%d net total was %d\n",
736 stcb->asoc.total_flight, tot_out);
737 /* now corrective action */
738 TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) {
739 tot_out = 0;
740 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
741 if ((chk->whoTo == lnet) &&
742 (chk->sent < SCTP_DATAGRAM_RESEND)) {
743 tot_out += chk->book_size;
744 }
745 }
746 if (lnet->flight_size != tot_out) {
747 SCTP_PRINTF("net:%p flight was %d corrected to %d\n",
748 (void *)lnet, lnet->flight_size,
749 tot_out);
750 lnet->flight_size = tot_out;
751 }
752 }
753 }
754 if (rep) {
755 sctp_print_audit_report();
756 }
757}
758
759void
760sctp_audit_log(uint8_t ev, uint8_t fd)
761{
762
763 sctp_audit_data[sctp_audit_indx][0] = ev;
764 sctp_audit_data[sctp_audit_indx][1] = fd;
765 sctp_audit_indx++;
766 if (sctp_audit_indx >= SCTP_AUDIT_SIZE) {
767 sctp_audit_indx = 0;
768 }
769}
770
771#endif
772
773/*
774 * The conversion from time to ticks and vice versa is done by rounding
775 * upwards. This way we can test in the code the time to be positive and
776 * know that this corresponds to a positive number of ticks.
777 */
778
781{
782 uint64_t temp;
783 uint32_t ticks;
784
785 if (hz == 1000) {
786 ticks = msecs;
787 } else {
788 temp = (((uint64_t)msecs * hz) + 999) / 1000;
789 if (temp > UINT32_MAX) {
790 ticks = UINT32_MAX;
791 } else {
792 ticks = (uint32_t)temp;
793 }
794 }
795 return (ticks);
796}
797
800{
801 uint64_t temp;
802 uint32_t msecs;
803
804 if (hz == 1000) {
805 msecs = ticks;
806 } else {
807 temp = (((uint64_t)ticks * 1000) + (hz - 1)) / hz;
808 if (temp > UINT32_MAX) {
809 msecs = UINT32_MAX;
810 } else {
811 msecs = (uint32_t)temp;
812 }
813 }
814 return (msecs);
815}
816
819{
820 uint64_t temp;
821 uint32_t ticks;
822
823 temp = (uint64_t)secs * hz;
824 if (temp > UINT32_MAX) {
825 ticks = UINT32_MAX;
826 } else {
827 ticks = (uint32_t)temp;
828 }
829 return (ticks);
830}
831
834{
835 uint64_t temp;
836 uint32_t secs;
837
838 temp = ((uint64_t)ticks + (hz - 1)) / hz;
839 if (temp > UINT32_MAX) {
840 secs = UINT32_MAX;
841 } else {
842 secs = (uint32_t)temp;
843 }
844 return (secs);
845}
846
847/*
848 * sctp_stop_timers_for_shutdown() should be called
849 * when entering the SHUTDOWN_SENT or SHUTDOWN_ACK_SENT
850 * state to make sure that all timers are stopped.
851 */
852void
854{
855 struct sctp_inpcb *inp;
856 struct sctp_nets *net;
857
858 inp = stcb->sctp_ep;
859
860 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, inp, stcb, NULL,
868 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
873 }
874}
875
876void
877sctp_stop_association_timers(struct sctp_tcb *stcb, bool stop_assoc_kill_timer)
878{
879 struct sctp_inpcb *inp;
880 struct sctp_nets *net;
881
882 inp = stcb->sctp_ep;
883 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, inp, stcb, NULL,
887 if (stop_assoc_kill_timer) {
890 }
897 /* Mobility adaptation */
900 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
915 }
916}
917
918/*
919 * A list of sizes based on typical mtu's, used only if next hop size not
920 * returned. These values MUST be multiples of 4 and MUST be ordered.
921 */
923 68,
924 296,
925 508,
926 512,
927 544,
928 576,
929 1004,
930 1492,
931 1500,
932 1536,
933 2000,
934 2048,
935 4352,
936 4464,
937 8168,
938 17912,
939 32000,
940 65532
941};
942
943/*
944 * Return the largest MTU in sctp_mtu_sizes smaller than val.
945 * If val is smaller than the minimum, just return the largest
946 * multiple of 4 smaller or equal to val.
947 * Ensure that the result is a multiple of 4.
948 */
951{
952 uint32_t i;
953
954 val &= 0xfffffffc;
955 if (val <= sctp_mtu_sizes[0]) {
956 return (val);
957 }
958 for (i = 1; i < (sizeof(sctp_mtu_sizes) / sizeof(uint32_t)); i++) {
959 if (val <= sctp_mtu_sizes[i]) {
960 break;
961 }
962 }
963 KASSERT((sctp_mtu_sizes[i - 1] & 0x00000003) == 0,
964 ("sctp_mtu_sizes[%u] not a multiple of 4", i - 1));
965 return (sctp_mtu_sizes[i - 1]);
966}
967
968/*
969 * Return the smallest MTU in sctp_mtu_sizes larger than val.
970 * If val is larger than the maximum, just return the largest multiple of 4 smaller
971 * or equal to val.
972 * Ensure that the result is a multiple of 4.
973 */
976{
977 /* select another MTU that is just bigger than this one */
978 uint32_t i;
979
980 val &= 0xfffffffc;
981 for (i = 0; i < (sizeof(sctp_mtu_sizes) / sizeof(uint32_t)); i++) {
982 if (val < sctp_mtu_sizes[i]) {
983 KASSERT((sctp_mtu_sizes[i] & 0x00000003) == 0,
984 ("sctp_mtu_sizes[%u] not a multiple of 4", i));
985 return (sctp_mtu_sizes[i]);
986 }
987 }
988 return (val);
989}
990
991void
993{
994 /*
995 * Here we use the MD5/SHA-1 to hash with our good randomNumbers and
996 * our counter. The result becomes our good random numbers and we
997 * then setup to give these out. Note that we do no locking to
998 * protect this. This is ok, since if competing folks call this we
999 * will get more gobbled gook in the random store which is what we
1000 * want. There is a danger that two guys will use the same random
1001 * numbers, but thats ok too since that is random as well :->
1002 */
1003 m->store_at = 0;
1005 sizeof(m->random_numbers), (uint8_t *)&m->random_counter,
1006 sizeof(m->random_counter), (uint8_t *)m->random_store);
1007 m->random_counter++;
1008}
1009
1012{
1013 /*
1014 * A true implementation should use random selection process to get
1015 * the initial stream sequence number, using RFC1750 as a good
1016 * guideline
1017 */
1018 uint32_t x, *xp;
1019 uint8_t *p;
1020 int store_at, new_store;
1021
1022 if (inp->initial_sequence_debug != 0) {
1023 uint32_t ret;
1024
1025 ret = inp->initial_sequence_debug;
1027 return (ret);
1028 }
1029retry:
1030 store_at = inp->store_at;
1031 new_store = store_at + sizeof(uint32_t);
1032 if (new_store >= (SCTP_SIGNATURE_SIZE - 3)) {
1033 new_store = 0;
1034 }
1035 if (!atomic_cmpset_int(&inp->store_at, store_at, new_store)) {
1036 goto retry;
1037 }
1038 if (new_store == 0) {
1039 /* Refill the random store */
1041 }
1042 p = &inp->random_store[store_at];
1043 xp = (uint32_t *)p;
1044 x = *xp;
1045 return (x);
1046}
1047
1049sctp_select_a_tag(struct sctp_inpcb *inp, uint16_t lport, uint16_t rport, int check)
1050{
1051 uint32_t x;
1052 struct timeval now;
1053
1054 if (check) {
1055 (void)SCTP_GETTIME_TIMEVAL(&now);
1056 }
1057 for (;;) {
1059 if (x == 0) {
1060 /* we never use 0 */
1061 continue;
1062 }
1063 if (!check || sctp_is_vtag_good(x, lport, rport, &now)) {
1064 break;
1065 }
1066 }
1067 return (x);
1068}
1069
1070int32_t
1071sctp_map_assoc_state(int kernel_state)
1072{
1073 int32_t user_state;
1074
1075 if (kernel_state & SCTP_STATE_WAS_ABORTED) {
1076 user_state = SCTP_CLOSED;
1077 } else if (kernel_state & SCTP_STATE_SHUTDOWN_PENDING) {
1078 user_state = SCTP_SHUTDOWN_PENDING;
1079 } else {
1080 switch (kernel_state & SCTP_STATE_MASK) {
1081 case SCTP_STATE_EMPTY:
1082 user_state = SCTP_CLOSED;
1083 break;
1084 case SCTP_STATE_INUSE:
1085 user_state = SCTP_CLOSED;
1086 break;
1088 user_state = SCTP_COOKIE_WAIT;
1089 break;
1091 user_state = SCTP_COOKIE_ECHOED;
1092 break;
1093 case SCTP_STATE_OPEN:
1094 user_state = SCTP_ESTABLISHED;
1095 break;
1097 user_state = SCTP_SHUTDOWN_SENT;
1098 break;
1100 user_state = SCTP_SHUTDOWN_RECEIVED;
1101 break;
1103 user_state = SCTP_SHUTDOWN_ACK_SENT;
1104 break;
1105 default:
1106 user_state = SCTP_CLOSED;
1107 break;
1108 }
1109 }
1110 return (user_state);
1111}
1112
1113int
1114sctp_init_asoc(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1115 uint32_t override_tag, uint32_t initial_tsn, uint32_t vrf_id,
1116 uint16_t o_strms)
1117{
1118 struct sctp_association *asoc;
1119
1120 /*
1121 * Anything set to zero is taken care of by the allocation routine's
1122 * bzero
1123 */
1124
1125 /*
1126 * Up front select what scoping to apply on addresses I tell my peer
1127 * Not sure what to do with these right now, we will need to come up
1128 * with a way to set them. We may need to pass them through from the
1129 * caller in the sctp_aloc_assoc() function.
1130 */
1131 int i;
1132#if defined(SCTP_DETAILED_STR_STATS)
1133 int j;
1134#endif
1135
1136 asoc = &stcb->asoc;
1137 /* init all variables to a known value. */
1139 asoc->max_burst = inp->sctp_ep.max_burst;
1140 asoc->fr_max_burst = inp->sctp_ep.fr_max_burst;
1142 asoc->cookie_life = inp->sctp_ep.def_cookie_life;
1143 asoc->sctp_cmt_on_off = inp->sctp_cmt_on_off;
1144 asoc->ecn_supported = inp->ecn_supported;
1146 asoc->auth_supported = inp->auth_supported;
1151 asoc->idata_supported = inp->idata_supported;
1152 asoc->sctp_cmt_pf = (uint8_t)0;
1153 asoc->sctp_frag_point = inp->sctp_frag_point;
1154 asoc->sctp_features = inp->sctp_features;
1155 asoc->default_dscp = inp->sctp_ep.default_dscp;
1156 asoc->max_cwnd = inp->max_cwnd;
1157#ifdef INET6
1158 if (inp->sctp_ep.default_flowlabel) {
1159 asoc->default_flowlabel = inp->sctp_ep.default_flowlabel;
1160 } else {
1162 asoc->default_flowlabel = sctp_select_initial_TSN(&inp->sctp_ep);
1163 asoc->default_flowlabel &= 0x000fffff;
1164 asoc->default_flowlabel |= 0x80000000;
1165 } else {
1166 asoc->default_flowlabel = 0;
1167 }
1168 }
1169#endif
1170 asoc->sb_send_resv = 0;
1171 if (override_tag) {
1172 asoc->my_vtag = override_tag;
1173 } else {
1174 asoc->my_vtag = sctp_select_a_tag(inp, stcb->sctp_ep->sctp_lport, stcb->rport, 1);
1175 }
1176 /* Get the nonce tags */
1177 asoc->my_vtag_nonce = sctp_select_a_tag(inp, stcb->sctp_ep->sctp_lport, stcb->rport, 0);
1178 asoc->peer_vtag_nonce = sctp_select_a_tag(inp, stcb->sctp_ep->sctp_lport, stcb->rport, 0);
1179 asoc->vrf_id = vrf_id;
1180
1181#ifdef SCTP_ASOCLOG_OF_TSNS
1182 asoc->tsn_in_at = 0;
1183 asoc->tsn_out_at = 0;
1184 asoc->tsn_in_wrapped = 0;
1185 asoc->tsn_out_wrapped = 0;
1186 asoc->cumack_log_at = 0;
1187 asoc->cumack_log_atsnt = 0;
1188#endif
1189#ifdef SCTP_FS_SPEC_LOG
1190 asoc->fs_index = 0;
1191#endif
1192 asoc->refcnt = 0;
1193 asoc->assoc_up_sent = 0;
1194 if (override_tag) {
1195 asoc->init_seq_number = initial_tsn;
1196 } else {
1198 }
1199 asoc->asconf_seq_out = asoc->init_seq_number;
1200 asoc->str_reset_seq_out = asoc->init_seq_number;
1201 asoc->sending_seq = asoc->init_seq_number;
1202 asoc->asconf_seq_out_acked = asoc->init_seq_number - 1;
1203 /* we are optimisitic here */
1204 asoc->peer_supports_nat = 0;
1205 asoc->sent_queue_retran_cnt = 0;
1206
1207 /* for CMT */
1208 asoc->last_net_cmt_send_started = NULL;
1209
1210 asoc->last_acked_seq = asoc->init_seq_number - 1;
1211 asoc->advanced_peer_ack_point = asoc->init_seq_number - 1;
1212 asoc->asconf_seq_in = asoc->init_seq_number - 1;
1213
1214 /* here we are different, we hold the next one we expect */
1215 asoc->str_reset_seq_in = asoc->init_seq_number;
1216
1218 asoc->initial_rto = inp->sctp_ep.initial_rto;
1219
1220 asoc->default_mtu = inp->sctp_ep.default_mtu;
1225 asoc->free_chunk_cnt = 0;
1226
1227 asoc->iam_blocking = 0;
1228 asoc->context = inp->sctp_context;
1230 asoc->def_send = inp->def_send;
1232 asoc->sack_freq = inp->sctp_ep.sctp_sack_freq;
1233 asoc->pr_sctp_cnt = 0;
1234 asoc->total_output_queue_size = 0;
1235
1237 asoc->scope.ipv6_addr_legal = 1;
1238 if (SCTP_IPV6_V6ONLY(inp) == 0) {
1239 asoc->scope.ipv4_addr_legal = 1;
1240 } else {
1241 asoc->scope.ipv4_addr_legal = 0;
1242 }
1243 } else {
1244 asoc->scope.ipv6_addr_legal = 0;
1245 asoc->scope.ipv4_addr_legal = 1;
1246 }
1247
1250
1251 asoc->smallest_mtu = 0;
1252 asoc->minrto = inp->sctp_ep.sctp_minrto;
1253 asoc->maxrto = inp->sctp_ep.sctp_maxrto;
1254
1255 asoc->stream_locked_on = 0;
1256 asoc->ecn_echo_cnt_onq = 0;
1257 asoc->stream_locked = 0;
1258
1259 asoc->send_sack = 1;
1260
1261 LIST_INIT(&asoc->sctp_restricted_addrs);
1262
1263 TAILQ_INIT(&asoc->nets);
1264 TAILQ_INIT(&asoc->pending_reply_queue);
1265 TAILQ_INIT(&asoc->asconf_ack_sent);
1266 /* Setup to fill the hb random cache at first HB */
1267 asoc->hb_random_idx = 4;
1268
1270
1273
1276
1277 /*
1278 * Now the stream parameters, here we allocate space for all streams
1279 * that we request by default.
1280 */
1281 asoc->strm_realoutsize = asoc->streamoutcnt = asoc->pre_open_streams =
1282 o_strms;
1283 SCTP_MALLOC(asoc->strmout, struct sctp_stream_out *,
1284 asoc->streamoutcnt * sizeof(struct sctp_stream_out),
1285 SCTP_M_STRMO);
1286 if (asoc->strmout == NULL) {
1287 /* big trouble no memory */
1288 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ENOMEM);
1289 return (ENOMEM);
1290 }
1291 SCTP_TCB_SEND_LOCK(stcb);
1292 for (i = 0; i < asoc->streamoutcnt; i++) {
1293 /*
1294 * inbound side must be set to 0xffff, also NOTE when we get
1295 * the INIT-ACK back (for INIT sender) we MUST reduce the
1296 * count (streamoutcnt) but first check if we sent to any of
1297 * the upper streams that were dropped (if some were). Those
1298 * that were dropped must be notified to the upper layer as
1299 * failed to send.
1300 */
1301 TAILQ_INIT(&asoc->strmout[i].outqueue);
1302 asoc->ss_functions.sctp_ss_init_stream(stcb, &asoc->strmout[i], NULL);
1303 asoc->strmout[i].chunks_on_queues = 0;
1304#if defined(SCTP_DETAILED_STR_STATS)
1305 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
1306 asoc->strmout[i].abandoned_sent[j] = 0;
1307 asoc->strmout[i].abandoned_unsent[j] = 0;
1308 }
1309#else
1310 asoc->strmout[i].abandoned_sent[0] = 0;
1311 asoc->strmout[i].abandoned_unsent[0] = 0;
1312#endif
1313 asoc->strmout[i].next_mid_ordered = 0;
1314 asoc->strmout[i].next_mid_unordered = 0;
1315 asoc->strmout[i].sid = i;
1316 asoc->strmout[i].last_msg_incomplete = 0;
1318 }
1319 asoc->ss_functions.sctp_ss_init(stcb, asoc);
1321
1322 /* Now the mapping array */
1325 SCTP_M_MAP);
1326 if (asoc->mapping_array == NULL) {
1327 SCTP_FREE(asoc->strmout, SCTP_M_STRMO);
1328 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ENOMEM);
1329 return (ENOMEM);
1330 }
1331 memset(asoc->mapping_array, 0, asoc->mapping_array_size);
1333 SCTP_M_MAP);
1334 if (asoc->nr_mapping_array == NULL) {
1335 SCTP_FREE(asoc->strmout, SCTP_M_STRMO);
1336 SCTP_FREE(asoc->mapping_array, SCTP_M_MAP);
1337 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ENOMEM);
1338 return (ENOMEM);
1339 }
1340 memset(asoc->nr_mapping_array, 0, asoc->mapping_array_size);
1341
1342 /* Now the init of the other outqueues */
1343 TAILQ_INIT(&asoc->free_chunks);
1344 TAILQ_INIT(&asoc->control_send_queue);
1345 TAILQ_INIT(&asoc->asconf_send_queue);
1346 TAILQ_INIT(&asoc->send_queue);
1347 TAILQ_INIT(&asoc->sent_queue);
1348 TAILQ_INIT(&asoc->resetHead);
1350 TAILQ_INIT(&asoc->asconf_queue);
1351 /* authentication fields */
1352 asoc->authinfo.random = NULL;
1353 asoc->authinfo.active_keyid = 0;
1354 asoc->authinfo.assoc_key = NULL;
1355 asoc->authinfo.assoc_keyid = 0;
1356 asoc->authinfo.recv_key = NULL;
1357 asoc->authinfo.recv_keyid = 0;
1358 LIST_INIT(&asoc->shared_keys);
1359 asoc->marked_retrans = 0;
1360 asoc->port = inp->sctp_ep.port;
1361 asoc->timoinit = 0;
1362 asoc->timodata = 0;
1363 asoc->timosack = 0;
1364 asoc->timoshutdown = 0;
1365 asoc->timoheartbeat = 0;
1366 asoc->timocookie = 0;
1367 asoc->timoshutdownack = 0;
1368 (void)SCTP_GETTIME_TIMEVAL(&asoc->start_time);
1369 asoc->discontinuity_time = asoc->start_time;
1370 for (i = 0; i < SCTP_PR_SCTP_MAX + 1; i++) {
1371 asoc->abandoned_unsent[i] = 0;
1372 asoc->abandoned_sent[i] = 0;
1373 }
1374 /*
1375 * sa_ignore MEMLEAK {memory is put in the assoc mapping array and
1376 * freed later when the association is freed.
1377 */
1378 return (0);
1379}
1380
1381void
1383{
1384 unsigned int i, limit;
1385
1386 SCTP_PRINTF("Mapping array size: %d, baseTSN: %8.8x, cumAck: %8.8x, highestTSN: (%8.8x, %8.8x).\n",
1387 asoc->mapping_array_size,
1389 asoc->cumulative_tsn,
1392 for (limit = asoc->mapping_array_size; limit > 1; limit--) {
1393 if (asoc->mapping_array[limit - 1] != 0) {
1394 break;
1395 }
1396 }
1397 SCTP_PRINTF("Renegable mapping array (last %d entries are zero):\n", asoc->mapping_array_size - limit);
1398 for (i = 0; i < limit; i++) {
1399 SCTP_PRINTF("%2.2x%c", asoc->mapping_array[i], ((i + 1) % 16) ? ' ' : '\n');
1400 }
1401 if (limit % 16)
1402 SCTP_PRINTF("\n");
1403 for (limit = asoc->mapping_array_size; limit > 1; limit--) {
1404 if (asoc->nr_mapping_array[limit - 1]) {
1405 break;
1406 }
1407 }
1408 SCTP_PRINTF("Non renegable mapping array (last %d entries are zero):\n", asoc->mapping_array_size - limit);
1409 for (i = 0; i < limit; i++) {
1410 SCTP_PRINTF("%2.2x%c", asoc->nr_mapping_array[i], ((i + 1) % 16) ? ' ' : '\n');
1411 }
1412 if (limit % 16)
1413 SCTP_PRINTF("\n");
1414}
1415
1416int
1418{
1419 /* mapping array needs to grow */
1420 uint8_t *new_array1, *new_array2;
1421 uint32_t new_size;
1422
1423 new_size = asoc->mapping_array_size + ((needed + 7) / 8 + SCTP_MAPPING_ARRAY_INCR);
1424 SCTP_MALLOC(new_array1, uint8_t *, new_size, SCTP_M_MAP);
1425 SCTP_MALLOC(new_array2, uint8_t *, new_size, SCTP_M_MAP);
1426 if ((new_array1 == NULL) || (new_array2 == NULL)) {
1427 /* can't get more, forget it */
1428 SCTP_PRINTF("No memory for expansion of SCTP mapping array %d\n", new_size);
1429 if (new_array1) {
1430 SCTP_FREE(new_array1, SCTP_M_MAP);
1431 }
1432 if (new_array2) {
1433 SCTP_FREE(new_array2, SCTP_M_MAP);
1434 }
1435 return (-1);
1436 }
1437 memset(new_array1, 0, new_size);
1438 memset(new_array2, 0, new_size);
1439 memcpy(new_array1, asoc->mapping_array, asoc->mapping_array_size);
1440 memcpy(new_array2, asoc->nr_mapping_array, asoc->mapping_array_size);
1441 SCTP_FREE(asoc->mapping_array, SCTP_M_MAP);
1442 SCTP_FREE(asoc->nr_mapping_array, SCTP_M_MAP);
1443 asoc->mapping_array = new_array1;
1444 asoc->nr_mapping_array = new_array2;
1445 asoc->mapping_array_size = new_size;
1446 return (0);
1447}
1448
1449static void
1451{
1452 struct epoch_tracker et;
1453 struct sctp_inpcb *tinp;
1454 int iteration_count = 0;
1455 int inp_skip = 0;
1456 int first_in = 1;
1457
1458 NET_EPOCH_ENTER(et);
1461 sctp_it_ctl.cur_it = it;
1462 if (it->inp) {
1463 SCTP_INP_RLOCK(it->inp);
1465 }
1466 if (it->inp == NULL) {
1467 /* iterator is complete */
1468done_with_iterator:
1469 sctp_it_ctl.cur_it = NULL;
1472 if (it->function_atend != NULL) {
1473 (*it->function_atend) (it->pointer, it->val);
1474 }
1475 SCTP_FREE(it, SCTP_M_ITER);
1476 NET_EPOCH_EXIT(et);
1477 return;
1478 }
1479select_a_new_ep:
1480 if (first_in) {
1481 first_in = 0;
1482 } else {
1483 SCTP_INP_RLOCK(it->inp);
1484 }
1485 while (((it->pcb_flags) &&
1486 ((it->inp->sctp_flags & it->pcb_flags) != it->pcb_flags)) ||
1487 ((it->pcb_features) &&
1488 ((it->inp->sctp_features & it->pcb_features) != it->pcb_features))) {
1489 /* endpoint flags or features don't match, so keep looking */
1491 SCTP_INP_RUNLOCK(it->inp);
1492 goto done_with_iterator;
1493 }
1494 tinp = it->inp;
1495 it->inp = LIST_NEXT(it->inp, sctp_list);
1496 it->stcb = NULL;
1497 SCTP_INP_RUNLOCK(tinp);
1498 if (it->inp == NULL) {
1499 goto done_with_iterator;
1500 }
1501 SCTP_INP_RLOCK(it->inp);
1502 }
1503 /* now go through each assoc which is in the desired state */
1504 if (it->done_current_ep == 0) {
1505 if (it->function_inp != NULL)
1506 inp_skip = (*it->function_inp) (it->inp, it->pointer, it->val);
1507 it->done_current_ep = 1;
1508 }
1509 if (it->stcb == NULL) {
1510 /* run the per instance function */
1511 it->stcb = LIST_FIRST(&it->inp->sctp_asoc_list);
1512 }
1513 if ((inp_skip) || it->stcb == NULL) {
1514 if (it->function_inp_end != NULL) {
1515 inp_skip = (*it->function_inp_end) (it->inp,
1516 it->pointer,
1517 it->val);
1518 }
1519 SCTP_INP_RUNLOCK(it->inp);
1520 goto no_stcb;
1521 }
1522 while (it->stcb != NULL) {
1523 SCTP_TCB_LOCK(it->stcb);
1524 if (it->asoc_state && ((it->stcb->asoc.state & it->asoc_state) != it->asoc_state)) {
1525 /* not in the right state... keep looking */
1526 SCTP_TCB_UNLOCK(it->stcb);
1527 goto next_assoc;
1528 }
1529 /* see if we have limited out the iterator loop */
1530 iteration_count++;
1531 if (iteration_count > SCTP_ITERATOR_MAX_AT_ONCE) {
1532 /* Pause to let others grab the lock */
1533 atomic_add_int(&it->stcb->asoc.refcnt, 1);
1534 SCTP_TCB_UNLOCK(it->stcb);
1536 SCTP_INP_RUNLOCK(it->inp);
1542 /* We won't be staying here */
1544 atomic_subtract_int(&it->stcb->asoc.refcnt, 1);
1547 sctp_it_ctl.iterator_flags &= ~SCTP_ITERATOR_STOP_CUR_IT;
1548 goto done_with_iterator;
1549 }
1552 sctp_it_ctl.iterator_flags &= ~SCTP_ITERATOR_STOP_CUR_INP;
1553 goto no_stcb;
1554 }
1555 /* If we reach here huh? */
1556 SCTP_PRINTF("Unknown it ctl flag %x\n",
1559 }
1560 SCTP_INP_RLOCK(it->inp);
1562 SCTP_TCB_LOCK(it->stcb);
1563 atomic_subtract_int(&it->stcb->asoc.refcnt, 1);
1564 iteration_count = 0;
1565 }
1566 KASSERT(it->inp == it->stcb->sctp_ep,
1567 ("%s: stcb %p does not belong to inp %p, but inp %p",
1568 __func__, it->stcb, it->inp, it->stcb->sctp_ep));
1571
1572 /* run function on this one */
1573 (*it->function_assoc) (it->inp, it->stcb, it->pointer, it->val);
1576
1577 /*
1578 * we lie here, it really needs to have its own type but
1579 * first I must verify that this won't effect things :-0
1580 */
1581 if (it->no_chunk_output == 0) {
1585 }
1586
1587 SCTP_TCB_UNLOCK(it->stcb);
1588next_assoc:
1589 it->stcb = LIST_NEXT(it->stcb, sctp_tcblist);
1590 if (it->stcb == NULL) {
1591 /* Run last function */
1592 if (it->function_inp_end != NULL) {
1593 inp_skip = (*it->function_inp_end) (it->inp,
1594 it->pointer,
1595 it->val);
1596 }
1597 }
1598 }
1599 SCTP_INP_RUNLOCK(it->inp);
1600no_stcb:
1601 /* done with all assocs on this endpoint, move on to next endpoint */
1602 it->done_current_ep = 0;
1604 it->inp = NULL;
1605 } else {
1606 it->inp = LIST_NEXT(it->inp, sctp_list);
1607 }
1608 it->stcb = NULL;
1609 if (it->inp == NULL) {
1610 goto done_with_iterator;
1611 }
1612 goto select_a_new_ep;
1613}
1614
1615void
1617{
1618 struct sctp_iterator *it;
1619
1620 /* This function is called with the WQ lock in place */
1622 while ((it = TAILQ_FIRST(&sctp_it_ctl.iteratorhead)) != NULL) {
1623 /* now lets work on this one */
1624 TAILQ_REMOVE(&sctp_it_ctl.iteratorhead, it, sctp_nxt_itr);
1626 CURVNET_SET(it->vn);
1628 CURVNET_RESTORE();
1630 /* sa_ignore FREED_MEMORY */
1631 }
1633 return;
1634}
1635
1636static void
1638{
1639 /* deal with the ADDR wq from the rtsock calls */
1640 struct sctp_laddr *wi, *nwi;
1641 struct sctp_asconf_iterator *asc;
1642
1643 SCTP_MALLOC(asc, struct sctp_asconf_iterator *,
1644 sizeof(struct sctp_asconf_iterator), SCTP_M_ASC_IT);
1645 if (asc == NULL) {
1646 /* Try later, no memory */
1648 (struct sctp_inpcb *)NULL,
1649 (struct sctp_tcb *)NULL,
1650 (struct sctp_nets *)NULL);
1651 return;
1652 }
1653 LIST_INIT(&asc->list_of_work);
1654 asc->cnt = 0;
1655
1656 LIST_FOREACH_SAFE(wi, &SCTP_BASE_INFO(addr_wq), sctp_nxt_addr, nwi) {
1657 LIST_REMOVE(wi, sctp_nxt_addr);
1658 LIST_INSERT_HEAD(&asc->list_of_work, wi, sctp_nxt_addr);
1659 asc->cnt++;
1660 }
1661
1662 if (asc->cnt == 0) {
1663 SCTP_FREE(asc, SCTP_M_ASC_IT);
1664 } else {
1665 int ret;
1666
1669 NULL, /* No ep end for boundall */
1673 (void *)asc, 0,
1674 sctp_asconf_iterator_end, NULL, 0);
1675 if (ret) {
1676 SCTP_PRINTF("Failed to initiate iterator for handle_addr_wq\n");
1677 /*
1678 * Freeing if we are stopping or put back on the
1679 * addr_wq.
1680 */
1681 if (SCTP_BASE_VAR(sctp_pcb_initialized) == 0) {
1683 } else {
1684 LIST_FOREACH(wi, &asc->list_of_work, sctp_nxt_addr) {
1685 LIST_INSERT_HEAD(&SCTP_BASE_INFO(addr_wq), wi, sctp_nxt_addr);
1686 }
1687 SCTP_FREE(asc, SCTP_M_ASC_IT);
1688 }
1689 }
1690 }
1691}
1692
1693/*-
1694 * The following table shows which pointers for the inp, stcb, or net are
1695 * stored for each timer after it was started.
1696 *
1697 *|Name |Timer |inp |stcb|net |
1698 *|-----------------------------|-----------------------------|----|----|----|
1699 *|SCTP_TIMER_TYPE_SEND |net->rxt_timer |Yes |Yes |Yes |
1700 *|SCTP_TIMER_TYPE_INIT |net->rxt_timer |Yes |Yes |Yes |
1701 *|SCTP_TIMER_TYPE_RECV |stcb->asoc.dack_timer |Yes |Yes |No |
1702 *|SCTP_TIMER_TYPE_SHUTDOWN |net->rxt_timer |Yes |Yes |Yes |
1703 *|SCTP_TIMER_TYPE_HEARTBEAT |net->hb_timer |Yes |Yes |Yes |
1704 *|SCTP_TIMER_TYPE_COOKIE |net->rxt_timer |Yes |Yes |Yes |
1705 *|SCTP_TIMER_TYPE_NEWCOOKIE |inp->sctp_ep.signature_change|Yes |No |No |
1706 *|SCTP_TIMER_TYPE_PATHMTURAISE |net->pmtu_timer |Yes |Yes |Yes |
1707 *|SCTP_TIMER_TYPE_SHUTDOWNACK |net->rxt_timer |Yes |Yes |Yes |
1708 *|SCTP_TIMER_TYPE_ASCONF |stcb->asoc.asconf_timer |Yes |Yes |Yes |
1709 *|SCTP_TIMER_TYPE_SHUTDOWNGUARD|stcb->asoc.shut_guard_timer |Yes |Yes |No |
1710 *|SCTP_TIMER_TYPE_AUTOCLOSE |stcb->asoc.autoclose_timer |Yes |Yes |No |
1711 *|SCTP_TIMER_TYPE_STRRESET |stcb->asoc.strreset_timer |Yes |Yes |No |
1712 *|SCTP_TIMER_TYPE_INPKILL |inp->sctp_ep.signature_change|Yes |No |No |
1713 *|SCTP_TIMER_TYPE_ASOCKILL |stcb->asoc.strreset_timer |Yes |Yes |No |
1714 *|SCTP_TIMER_TYPE_ADDR_WQ |SCTP_BASE_INFO(addr_wq_timer)|No |No |No |
1715 *|SCTP_TIMER_TYPE_PRIM_DELETED |stcb->asoc.delete_prim_timer |Yes |Yes |No |
1716 */
1717
1718void
1720{
1721 struct epoch_tracker et;
1722 struct timeval tv;
1723 struct sctp_inpcb *inp;
1724 struct sctp_tcb *stcb;
1725 struct sctp_nets *net;
1726 struct sctp_timer *tmr;
1727 struct mbuf *op_err;
1728 int type;
1729 int i, secret;
1730 bool did_output, released_asoc_reference;
1731
1732 /*
1733 * If inp, stcb or net are not NULL, then references to these were
1734 * added when the timer was started, and must be released before
1735 * this function returns.
1736 */
1737 tmr = (struct sctp_timer *)t;
1738 inp = (struct sctp_inpcb *)tmr->ep;
1739 stcb = (struct sctp_tcb *)tmr->tcb;
1740 net = (struct sctp_nets *)tmr->net;
1741 CURVNET_SET((struct vnet *)tmr->vnet);
1742 NET_EPOCH_ENTER(et);
1743 released_asoc_reference = false;
1744
1745#ifdef SCTP_AUDITING_ENABLED
1746 sctp_audit_log(0xF0, (uint8_t)tmr->type);
1747 sctp_auditing(3, inp, stcb, net);
1748#endif
1749
1750 /* sanity checks... */
1751 KASSERT(tmr->self == NULL || tmr->self == tmr,
1752 ("sctp_timeout_handler: tmr->self corrupted"));
1753 KASSERT(SCTP_IS_TIMER_TYPE_VALID(tmr->type),
1754 ("sctp_timeout_handler: invalid timer type %d", tmr->type));
1755 type = tmr->type;
1756 KASSERT(stcb == NULL || stcb->sctp_ep == inp,
1757 ("sctp_timeout_handler of type %d: inp = %p, stcb->sctp_ep %p",
1758 type, stcb, stcb->sctp_ep));
1759 tmr->stopped_from = 0xa001;
1760 if ((stcb != NULL) && (stcb->asoc.state == SCTP_STATE_EMPTY)) {
1762 "Timer type %d handler exiting due to CLOSED association.\n",
1763 type);
1764 goto out_decr;
1765 }
1766 tmr->stopped_from = 0xa002;
1767 SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d goes off.\n", type);
1768 if (!SCTP_OS_TIMER_ACTIVE(&tmr->timer)) {
1770 "Timer type %d handler exiting due to not being active.\n",
1771 type);
1772 goto out_decr;
1773 }
1774
1775 tmr->stopped_from = 0xa003;
1776 if (stcb) {
1777 SCTP_TCB_LOCK(stcb);
1778 /*
1779 * Release reference so that association can be freed if
1780 * necessary below. This is safe now that we have acquired
1781 * the lock.
1782 */
1783 atomic_subtract_int(&stcb->asoc.refcnt, 1);
1784 released_asoc_reference = true;
1785 if ((type != SCTP_TIMER_TYPE_ASOCKILL) &&
1786 ((stcb->asoc.state == SCTP_STATE_EMPTY) ||
1789 "Timer type %d handler exiting due to CLOSED association.\n",
1790 type);
1791 goto out;
1792 }
1793 } else if (inp != NULL) {
1794 SCTP_INP_WLOCK(inp);
1795 } else {
1797 }
1798
1799 /* Record in stopped_from which timeout occurred. */
1800 tmr->stopped_from = type;
1801 /* mark as being serviced now */
1802 if (SCTP_OS_TIMER_PENDING(&tmr->timer)) {
1803 /*
1804 * Callout has been rescheduled.
1805 */
1806 goto out;
1807 }
1808 if (!SCTP_OS_TIMER_ACTIVE(&tmr->timer)) {
1809 /*
1810 * Not active, so no action.
1811 */
1812 goto out;
1813 }
1815
1816 /* call the handler for the appropriate timer type */
1817 switch (type) {
1819 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1820 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1821 type, inp, stcb, net));
1822 SCTP_STAT_INCR(sctps_timodata);
1823 stcb->asoc.timodata++;
1824 stcb->asoc.num_send_timers_up--;
1825 if (stcb->asoc.num_send_timers_up < 0) {
1826 stcb->asoc.num_send_timers_up = 0;
1827 }
1829 if (sctp_t3rxt_timer(inp, stcb, net)) {
1830 /* no need to unlock on tcb its gone */
1831
1832 goto out_decr;
1833 }
1835#ifdef SCTP_AUDITING_ENABLED
1836 sctp_auditing(4, inp, stcb, net);
1837#endif
1839 did_output = true;
1840 if ((stcb->asoc.num_send_timers_up == 0) &&
1841 (stcb->asoc.sent_queue_cnt > 0)) {
1842 struct sctp_tmit_chunk *chk;
1843
1844 /*
1845 * Safeguard. If there on some on the sent queue
1846 * somewhere but no timers running something is
1847 * wrong... so we start a timer on the first chunk
1848 * on the send queue on whatever net it is sent to.
1849 */
1850 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
1851 if (chk->whoTo != NULL) {
1852 break;
1853 }
1854 }
1855 if (chk != NULL) {
1857 }
1858 }
1859 break;
1861 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1862 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1863 type, inp, stcb, net));
1864 SCTP_STAT_INCR(sctps_timoinit);
1865 stcb->asoc.timoinit++;
1866 if (sctp_t1init_timer(inp, stcb, net)) {
1867 /* no need to unlock on tcb its gone */
1868 goto out_decr;
1869 }
1870 did_output = false;
1871 break;
1873 KASSERT(inp != NULL && stcb != NULL && net == NULL,
1874 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1875 type, inp, stcb, net));
1876 SCTP_STAT_INCR(sctps_timosack);
1877 stcb->asoc.timosack++;
1879#ifdef SCTP_AUDITING_ENABLED
1880 sctp_auditing(4, inp, stcb, NULL);
1881#endif
1883 did_output = true;
1884 break;
1886 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1887 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1888 type, inp, stcb, net));
1889 SCTP_STAT_INCR(sctps_timoshutdown);
1890 stcb->asoc.timoshutdown++;
1891 if (sctp_shutdown_timer(inp, stcb, net)) {
1892 /* no need to unlock on tcb its gone */
1893 goto out_decr;
1894 }
1895#ifdef SCTP_AUDITING_ENABLED
1896 sctp_auditing(4, inp, stcb, net);
1897#endif
1899 did_output = true;
1900 break;
1902 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1903 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1904 type, inp, stcb, net));
1905 SCTP_STAT_INCR(sctps_timoheartbeat);
1906 stcb->asoc.timoheartbeat++;
1907 if (sctp_heartbeat_timer(inp, stcb, net)) {
1908 /* no need to unlock on tcb its gone */
1909 goto out_decr;
1910 }
1911#ifdef SCTP_AUDITING_ENABLED
1912 sctp_auditing(4, inp, stcb, net);
1913#endif
1914 if (!(net->dest_state & SCTP_ADDR_NOHB)) {
1917 did_output = true;
1918 } else {
1919 did_output = false;
1920 }
1921 break;
1923 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1924 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1925 type, inp, stcb, net));
1926 SCTP_STAT_INCR(sctps_timocookie);
1927 stcb->asoc.timocookie++;
1928 if (sctp_cookie_timer(inp, stcb, net)) {
1929 /* no need to unlock on tcb its gone */
1930 goto out_decr;
1931 }
1932#ifdef SCTP_AUDITING_ENABLED
1933 sctp_auditing(4, inp, stcb, net);
1934#endif
1935 /*
1936 * We consider T3 and Cookie timer pretty much the same with
1937 * respect to where from in chunk_output.
1938 */
1940 did_output = true;
1941 break;
1943 KASSERT(inp != NULL && stcb == NULL && net == NULL,
1944 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1945 type, inp, stcb, net));
1946 SCTP_STAT_INCR(sctps_timosecret);
1947 (void)SCTP_GETTIME_TIMEVAL(&tv);
1948 inp->sctp_ep.time_of_secret_change = (unsigned int)tv.tv_sec;
1952 if (inp->sctp_ep.current_secret_number >=
1955 }
1956 secret = (int)inp->sctp_ep.current_secret_number;
1957 for (i = 0; i < SCTP_NUMBER_OF_SECRETS; i++) {
1958 inp->sctp_ep.secret_key[secret][i] =
1960 }
1962 did_output = false;
1963 break;
1965 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1966 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1967 type, inp, stcb, net));
1968 SCTP_STAT_INCR(sctps_timopathmtu);
1969 sctp_pathmtu_timer(inp, stcb, net);
1970 did_output = false;
1971 break;
1973 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1974 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1975 type, inp, stcb, net));
1976 if (sctp_shutdownack_timer(inp, stcb, net)) {
1977 /* no need to unlock on tcb its gone */
1978 goto out_decr;
1979 }
1980 SCTP_STAT_INCR(sctps_timoshutdownack);
1981 stcb->asoc.timoshutdownack++;
1982#ifdef SCTP_AUDITING_ENABLED
1983 sctp_auditing(4, inp, stcb, net);
1984#endif
1986 did_output = true;
1987 break;
1989 KASSERT(inp != NULL && stcb != NULL && net != NULL,
1990 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
1991 type, inp, stcb, net));
1992 SCTP_STAT_INCR(sctps_timoasconf);
1993 if (sctp_asconf_timer(inp, stcb, net)) {
1994 /* no need to unlock on tcb its gone */
1995 goto out_decr;
1996 }
1997#ifdef SCTP_AUDITING_ENABLED
1998 sctp_auditing(4, inp, stcb, net);
1999#endif
2001 did_output = true;
2002 break;
2004 KASSERT(inp != NULL && stcb != NULL && net == NULL,
2005 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2006 type, inp, stcb, net));
2007 SCTP_STAT_INCR(sctps_timoshutdownguard);
2008 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
2009 "Shutdown guard timer expired");
2010 sctp_abort_an_association(inp, stcb, op_err, true, SCTP_SO_NOT_LOCKED);
2011 /* no need to unlock on tcb its gone */
2012 goto out_decr;
2014 KASSERT(inp != NULL && stcb != NULL && net == NULL,
2015 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2016 type, inp, stcb, net));
2017 SCTP_STAT_INCR(sctps_timoautoclose);
2018 sctp_autoclose_timer(inp, stcb);
2020 did_output = true;
2021 break;
2023 KASSERT(inp != NULL && stcb != NULL && net == NULL,
2024 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2025 type, inp, stcb, net));
2026 SCTP_STAT_INCR(sctps_timostrmrst);
2027 if (sctp_strreset_timer(inp, stcb)) {
2028 /* no need to unlock on tcb its gone */
2029 goto out_decr;
2030 }
2032 did_output = true;
2033 break;
2035 KASSERT(inp != NULL && stcb == NULL && net == NULL,
2036 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2037 type, inp, stcb, net));
2038 SCTP_STAT_INCR(sctps_timoinpkill);
2039 /*
2040 * special case, take away our increment since WE are the
2041 * killer
2042 */
2045 SCTP_INP_DECR_REF(inp);
2046 SCTP_INP_WUNLOCK(inp);
2049 inp = NULL;
2050 goto out_decr;
2052 KASSERT(inp != NULL && stcb != NULL && net == NULL,
2053 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2054 type, inp, stcb, net));
2055 SCTP_STAT_INCR(sctps_timoassockill);
2056 /* Can we free it yet? */
2059 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
2061 /*
2062 * free asoc, always unlocks (or destroy's) so prevent
2063 * duplicate unlock or unlock of a free mtx :-0
2064 */
2065 stcb = NULL;
2066 goto out_decr;
2068 KASSERT(inp == NULL && stcb == NULL && net == NULL,
2069 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2070 type, inp, stcb, net));
2072 did_output = true;
2073 break;
2075 KASSERT(inp != NULL && stcb != NULL && net == NULL,
2076 ("timeout of type %d: inp = %p, stcb = %p, net = %p",
2077 type, inp, stcb, net));
2078 SCTP_STAT_INCR(sctps_timodelprim);
2079 sctp_delete_prim_timer(inp, stcb);
2080 did_output = false;
2081 break;
2082 default:
2083#ifdef INVARIANTS
2084 panic("Unknown timer type %d", type);
2085#else
2086 goto out;
2087#endif
2088 }
2089#ifdef SCTP_AUDITING_ENABLED
2090 sctp_audit_log(0xF1, (uint8_t)type);
2091 if (inp != NULL)
2092 sctp_auditing(5, inp, stcb, net);
2093#endif
2094 if (did_output && (stcb != NULL)) {
2095 /*
2096 * Now we need to clean up the control chunk chain if an
2097 * ECNE is on it. It must be marked as UNSENT again so next
2098 * call will continue to send it until such time that we get
2099 * a CWR, to remove it. It is, however, less likely that we
2100 * will find a ecn echo on the chain though.
2101 */
2102 sctp_fix_ecn_echo(&stcb->asoc);
2103 }
2104out:
2105 if (stcb != NULL) {
2106 SCTP_TCB_UNLOCK(stcb);
2107 } else if (inp != NULL) {
2108 SCTP_INP_WUNLOCK(inp);
2109 } else {
2111 }
2112
2113out_decr:
2114 /* These reference counts were incremented in sctp_timer_start(). */
2115 if (inp != NULL) {
2116 SCTP_INP_DECR_REF(inp);
2117 }
2118 if ((stcb != NULL) && !released_asoc_reference) {
2119 atomic_subtract_int(&stcb->asoc.refcnt, 1);
2120 }
2121 if (net != NULL) {
2123 }
2124 SCTPDBG(SCTP_DEBUG_TIMER2, "Timer type %d handler finished.\n", type);
2125 CURVNET_RESTORE();
2126 NET_EPOCH_EXIT(et);
2127}
2128
2129/*-
2130 * The following table shows which parameters must be provided
2131 * when calling sctp_timer_start(). For parameters not being
2132 * provided, NULL must be used.
2133 *
2134 * |Name |inp |stcb|net |
2135 * |-----------------------------|----|----|----|
2136 * |SCTP_TIMER_TYPE_SEND |Yes |Yes |Yes |
2137 * |SCTP_TIMER_TYPE_INIT |Yes |Yes |Yes |
2138 * |SCTP_TIMER_TYPE_RECV |Yes |Yes |No |
2139 * |SCTP_TIMER_TYPE_SHUTDOWN |Yes |Yes |Yes |
2140 * |SCTP_TIMER_TYPE_HEARTBEAT |Yes |Yes |Yes |
2141 * |SCTP_TIMER_TYPE_COOKIE |Yes |Yes |Yes |
2142 * |SCTP_TIMER_TYPE_NEWCOOKIE |Yes |No |No |
2143 * |SCTP_TIMER_TYPE_PATHMTURAISE |Yes |Yes |Yes |
2144 * |SCTP_TIMER_TYPE_SHUTDOWNACK |Yes |Yes |Yes |
2145 * |SCTP_TIMER_TYPE_ASCONF |Yes |Yes |Yes |
2146 * |SCTP_TIMER_TYPE_SHUTDOWNGUARD|Yes |Yes |No |
2147 * |SCTP_TIMER_TYPE_AUTOCLOSE |Yes |Yes |No |
2148 * |SCTP_TIMER_TYPE_STRRESET |Yes |Yes |Yes |
2149 * |SCTP_TIMER_TYPE_INPKILL |Yes |No |No |
2150 * |SCTP_TIMER_TYPE_ASOCKILL |Yes |Yes |No |
2151 * |SCTP_TIMER_TYPE_ADDR_WQ |No |No |No |
2152 * |SCTP_TIMER_TYPE_PRIM_DELETED |Yes |Yes |No |
2153 *
2154 */
2155
2156void
2157sctp_timer_start(int t_type, struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2158 struct sctp_nets *net)
2159{
2160 struct sctp_timer *tmr;
2161 uint32_t to_ticks;
2162 uint32_t rndval, jitter;
2163
2164 KASSERT(stcb == NULL || stcb->sctp_ep == inp,
2165 ("sctp_timer_start of type %d: inp = %p, stcb->sctp_ep %p",
2166 t_type, stcb, stcb->sctp_ep));
2167 tmr = NULL;
2168 if (stcb != NULL) {
2170 } else if (inp != NULL) {
2172 } else {
2174 }
2175 if (stcb != NULL) {
2176 /*
2177 * Don't restart timer on association that's about to be
2178 * killed.
2179 */
2180 if ((stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) &&
2181 (t_type != SCTP_TIMER_TYPE_ASOCKILL)) {
2183 "Timer type %d not started: inp=%p, stcb=%p, net=%p (stcb deleted).\n",
2184 t_type, inp, stcb, net);
2185 return;
2186 }
2187 /* Don't restart timer on net that's been removed. */
2188 if (net != NULL && (net->dest_state & SCTP_ADDR_BEING_DELETED)) {
2190 "Timer type %d not started: inp=%p, stcb=%p, net=%p (net deleted).\n",
2191 t_type, inp, stcb, net);
2192 return;
2193 }
2194 }
2195 switch (t_type) {
2197 /* Here we use the RTO timer. */
2198 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2199#ifdef INVARIANTS
2200 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2201 t_type, inp, stcb, net);
2202#else
2203 return;
2204#endif
2205 }
2206 tmr = &net->rxt_timer;
2207 if (net->RTO == 0) {
2208 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2209 } else {
2210 to_ticks = sctp_msecs_to_ticks(net->RTO);
2211 }
2212 break;
2214 /*
2215 * Here we use the INIT timer default usually about 1
2216 * second.
2217 */
2218 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2219#ifdef INVARIANTS
2220 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2221 t_type, inp, stcb, net);
2222#else
2223 return;
2224#endif
2225 }
2226 tmr = &net->rxt_timer;
2227 if (net->RTO == 0) {
2228 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2229 } else {
2230 to_ticks = sctp_msecs_to_ticks(net->RTO);
2231 }
2232 break;
2234 /*
2235 * Here we use the Delayed-Ack timer value from the inp,
2236 * ususually about 200ms.
2237 */
2238 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2239#ifdef INVARIANTS
2240 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2241 t_type, inp, stcb, net);
2242#else
2243 return;
2244#endif
2245 }
2246 tmr = &stcb->asoc.dack_timer;
2247 to_ticks = sctp_msecs_to_ticks(stcb->asoc.delayed_ack);
2248 break;
2250 /* Here we use the RTO of the destination. */
2251 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2252#ifdef INVARIANTS
2253 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2254 t_type, inp, stcb, net);
2255#else
2256 return;
2257#endif
2258 }
2259 tmr = &net->rxt_timer;
2260 if (net->RTO == 0) {
2261 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2262 } else {
2263 to_ticks = sctp_msecs_to_ticks(net->RTO);
2264 }
2265 break;
2267 /*
2268 * The net is used here so that we can add in the RTO. Even
2269 * though we use a different timer. We also add the HB timer
2270 * PLUS a random jitter.
2271 */
2272 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2273#ifdef INVARIANTS
2274 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2275 t_type, inp, stcb, net);
2276#else
2277 return;
2278#endif
2279 }
2280 if ((net->dest_state & SCTP_ADDR_NOHB) &&
2281 !(net->dest_state & SCTP_ADDR_UNCONFIRMED)) {
2283 "Timer type %d not started: inp=%p, stcb=%p, net=%p.\n",
2284 t_type, inp, stcb, net);
2285 return;
2286 }
2287 tmr = &net->hb_timer;
2288 if (net->RTO == 0) {
2289 to_ticks = stcb->asoc.initial_rto;
2290 } else {
2291 to_ticks = net->RTO;
2292 }
2293 rndval = sctp_select_initial_TSN(&inp->sctp_ep);
2294 jitter = rndval % to_ticks;
2295 if (to_ticks > 1) {
2296 to_ticks >>= 1;
2297 }
2298 if (jitter < (UINT32_MAX - to_ticks)) {
2299 to_ticks += jitter;
2300 } else {
2301 to_ticks = UINT32_MAX;
2302 }
2303 if (!(net->dest_state & SCTP_ADDR_UNCONFIRMED) &&
2304 !(net->dest_state & SCTP_ADDR_PF)) {
2305 if (net->heart_beat_delay < (UINT32_MAX - to_ticks)) {
2306 to_ticks += net->heart_beat_delay;
2307 } else {
2308 to_ticks = UINT32_MAX;
2309 }
2310 }
2311 /*
2312 * Now we must convert the to_ticks that are now in ms to
2313 * ticks.
2314 */
2315 to_ticks = sctp_msecs_to_ticks(to_ticks);
2316 break;
2318 /*
2319 * Here we can use the RTO timer from the network since one
2320 * RTT was complete. If a retransmission happened then we
2321 * will be using the RTO initial value.
2322 */
2323 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2324#ifdef INVARIANTS
2325 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2326 t_type, inp, stcb, net);
2327#else
2328 return;
2329#endif
2330 }
2331 tmr = &net->rxt_timer;
2332 if (net->RTO == 0) {
2333 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2334 } else {
2335 to_ticks = sctp_msecs_to_ticks(net->RTO);
2336 }
2337 break;
2339 /*
2340 * Nothing needed but the endpoint here ususually about 60
2341 * minutes.
2342 */
2343 if ((inp == NULL) || (stcb != NULL) || (net != NULL)) {
2344#ifdef INVARIANTS
2345 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2346 t_type, inp, stcb, net);
2347#else
2348 return;
2349#endif
2350 }
2351 tmr = &inp->sctp_ep.signature_change;
2353 break;
2355 /*
2356 * Here we use the value found in the EP for PMTUD,
2357 * ususually about 10 minutes.
2358 */
2359 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2360#ifdef INVARIANTS
2361 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2362 t_type, inp, stcb, net);
2363#else
2364 return;
2365#endif
2366 }
2367 if (net->dest_state & SCTP_ADDR_NO_PMTUD) {
2369 "Timer type %d not started: inp=%p, stcb=%p, net=%p.\n",
2370 t_type, inp, stcb, net);
2371 return;
2372 }
2373 tmr = &net->pmtu_timer;
2374 to_ticks = inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_PMTU];
2375 break;
2377 /* Here we use the RTO of the destination. */
2378 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2379#ifdef INVARIANTS
2380 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2381 t_type, inp, stcb, net);
2382#else
2383 return;
2384#endif
2385 }
2386 tmr = &net->rxt_timer;
2387 if (net->RTO == 0) {
2388 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2389 } else {
2390 to_ticks = sctp_msecs_to_ticks(net->RTO);
2391 }
2392 break;
2394 /*
2395 * Here the timer comes from the stcb but its value is from
2396 * the net's RTO.
2397 */
2398 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2399#ifdef INVARIANTS
2400 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2401 t_type, inp, stcb, net);
2402#else
2403 return;
2404#endif
2405 }
2406 tmr = &stcb->asoc.asconf_timer;
2407 if (net->RTO == 0) {
2408 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2409 } else {
2410 to_ticks = sctp_msecs_to_ticks(net->RTO);
2411 }
2412 break;
2414 /*
2415 * Here we use the endpoints shutdown guard timer usually
2416 * about 3 minutes.
2417 */
2418 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2419#ifdef INVARIANTS
2420 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2421 t_type, inp, stcb, net);
2422#else
2423 return;
2424#endif
2425 }
2426 tmr = &stcb->asoc.shut_guard_timer;
2428 if (stcb->asoc.maxrto < UINT32_MAX / 5) {
2429 to_ticks = sctp_msecs_to_ticks(5 * stcb->asoc.maxrto);
2430 } else {
2431 to_ticks = sctp_msecs_to_ticks(UINT32_MAX);
2432 }
2433 } else {
2435 }
2436 break;
2438 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2439#ifdef INVARIANTS
2440 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2441 t_type, inp, stcb, net);
2442#else
2443 return;
2444#endif
2445 }
2446 tmr = &stcb->asoc.autoclose_timer;
2447 to_ticks = stcb->asoc.sctp_autoclose_ticks;
2448 break;
2450 /*
2451 * Here the timer comes from the stcb but its value is from
2452 * the net's RTO.
2453 */
2454 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2455#ifdef INVARIANTS
2456 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2457 t_type, inp, stcb, net);
2458#else
2459 return;
2460#endif
2461 }
2462 tmr = &stcb->asoc.strreset_timer;
2463 if (net->RTO == 0) {
2464 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2465 } else {
2466 to_ticks = sctp_msecs_to_ticks(net->RTO);
2467 }
2468 break;
2470 /*
2471 * The inp is setup to die. We re-use the signature_chage
2472 * timer since that has stopped and we are in the GONE
2473 * state.
2474 */
2475 if ((inp == NULL) || (stcb != NULL) || (net != NULL)) {
2476#ifdef INVARIANTS
2477 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2478 t_type, inp, stcb, net);
2479#else
2480 return;
2481#endif
2482 }
2483 tmr = &inp->sctp_ep.signature_change;
2485 break;
2487 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2488#ifdef INVARIANTS
2489 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2490 t_type, inp, stcb, net);
2491#else
2492 return;
2493#endif
2494 }
2495 tmr = &stcb->asoc.strreset_timer;
2497 break;
2499 if ((inp != NULL) || (stcb != NULL) || (net != NULL)) {
2500#ifdef INVARIANTS
2501 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2502 t_type, inp, stcb, net);
2503#else
2504 return;
2505#endif
2506 }
2507 /* Only 1 tick away :-) */
2508 tmr = &SCTP_BASE_INFO(addr_wq_timer);
2509 to_ticks = SCTP_ADDRESS_TICK_DELAY;
2510 break;
2512 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2513#ifdef INVARIANTS
2514 panic("sctp_timer_start of type %d: inp = %p, stcb = %p, net = %p",
2515 t_type, inp, stcb, net);
2516#else
2517 return;
2518#endif
2519 }
2520 tmr = &stcb->asoc.delete_prim_timer;
2521 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto);
2522 break;
2523 default:
2524#ifdef INVARIANTS
2525 panic("Unknown timer type %d", t_type);
2526#else
2527 return;
2528#endif
2529 }
2530 KASSERT(tmr != NULL, ("tmr is NULL for timer type %d", t_type));
2531 KASSERT(to_ticks > 0, ("to_ticks == 0 for timer type %d", t_type));
2532 if (SCTP_OS_TIMER_PENDING(&tmr->timer)) {
2533 /*
2534 * We do NOT allow you to have it already running. If it is,
2535 * we leave the current one up unchanged.
2536 */
2538 "Timer type %d already running: inp=%p, stcb=%p, net=%p.\n",
2539 t_type, inp, stcb, net);
2540 return;
2541 }
2542 /* At this point we can proceed. */
2543 if (t_type == SCTP_TIMER_TYPE_SEND) {
2544 stcb->asoc.num_send_timers_up++;
2545 }
2546 tmr->stopped_from = 0;
2547 tmr->type = t_type;
2548 tmr->ep = (void *)inp;
2549 tmr->tcb = (void *)stcb;
2550 if (t_type == SCTP_TIMER_TYPE_STRRESET) {
2551 tmr->net = NULL;
2552 } else {
2553 tmr->net = (void *)net;
2554 }
2555 tmr->self = (void *)tmr;
2556 tmr->vnet = (void *)curvnet;
2557 tmr->ticks = sctp_get_tick_count();
2558 if (SCTP_OS_TIMER_START(&tmr->timer, to_ticks, sctp_timeout_handler, tmr) == 0) {
2560 "Timer type %d started: ticks=%u, inp=%p, stcb=%p, net=%p.\n",
2561 t_type, to_ticks, inp, stcb, net);
2562 /*
2563 * If this is a newly scheduled callout, as opposed to a
2564 * rescheduled one, increment relevant reference counts.
2565 */
2566 if (tmr->ep != NULL) {
2567 SCTP_INP_INCR_REF(inp);
2568 }
2569 if (tmr->tcb != NULL) {
2570 atomic_add_int(&stcb->asoc.refcnt, 1);
2571 }
2572 if (tmr->net != NULL) {
2573 atomic_add_int(&net->ref_count, 1);
2574 }
2575 } else {
2576 /*
2577 * This should not happen, since we checked for pending
2578 * above.
2579 */
2581 "Timer type %d restarted: ticks=%u, inp=%p, stcb=%p, net=%p.\n",
2582 t_type, to_ticks, inp, stcb, net);
2583 }
2584 return;
2585}
2586
2587/*-
2588 * The following table shows which parameters must be provided
2589 * when calling sctp_timer_stop(). For parameters not being
2590 * provided, NULL must be used.
2591 *
2592 * |Name |inp |stcb|net |
2593 * |-----------------------------|----|----|----|
2594 * |SCTP_TIMER_TYPE_SEND |Yes |Yes |Yes |
2595 * |SCTP_TIMER_TYPE_INIT |Yes |Yes |Yes |
2596 * |SCTP_TIMER_TYPE_RECV |Yes |Yes |No |
2597 * |SCTP_TIMER_TYPE_SHUTDOWN |Yes |Yes |Yes |
2598 * |SCTP_TIMER_TYPE_HEARTBEAT |Yes |Yes |Yes |
2599 * |SCTP_TIMER_TYPE_COOKIE |Yes |Yes |Yes |
2600 * |SCTP_TIMER_TYPE_NEWCOOKIE |Yes |No |No |
2601 * |SCTP_TIMER_TYPE_PATHMTURAISE |Yes |Yes |Yes |
2602 * |SCTP_TIMER_TYPE_SHUTDOWNACK |Yes |Yes |Yes |
2603 * |SCTP_TIMER_TYPE_ASCONF |Yes |Yes |No |
2604 * |SCTP_TIMER_TYPE_SHUTDOWNGUARD|Yes |Yes |No |
2605 * |SCTP_TIMER_TYPE_AUTOCLOSE |Yes |Yes |No |
2606 * |SCTP_TIMER_TYPE_STRRESET |Yes |Yes |No |
2607 * |SCTP_TIMER_TYPE_INPKILL |Yes |No |No |
2608 * |SCTP_TIMER_TYPE_ASOCKILL |Yes |Yes |No |
2609 * |SCTP_TIMER_TYPE_ADDR_WQ |No |No |No |
2610 * |SCTP_TIMER_TYPE_PRIM_DELETED |Yes |Yes |No |
2611 *
2612 */
2613
2614void
2615sctp_timer_stop(int t_type, struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2616 struct sctp_nets *net, uint32_t from)
2617{
2618 struct sctp_timer *tmr;
2619
2620 KASSERT(stcb == NULL || stcb->sctp_ep == inp,
2621 ("sctp_timer_stop of type %d: inp = %p, stcb->sctp_ep %p",
2622 t_type, stcb, stcb->sctp_ep));
2623 if (stcb != NULL) {
2625 } else if (inp != NULL) {
2627 } else {
2629 }
2630 tmr = NULL;
2631 switch (t_type) {
2633 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2634#ifdef INVARIANTS
2635 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2636 t_type, inp, stcb, net);
2637#else
2638 return;
2639#endif
2640 }
2641 tmr = &net->rxt_timer;
2642 break;
2644 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2645#ifdef INVARIANTS
2646 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2647 t_type, inp, stcb, net);
2648#else
2649 return;
2650#endif
2651 }
2652 tmr = &net->rxt_timer;
2653 break;
2655 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2656#ifdef INVARIANTS
2657 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2658 t_type, inp, stcb, net);
2659#else
2660 return;
2661#endif
2662 }
2663 tmr = &stcb->asoc.dack_timer;
2664 break;
2666 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2667#ifdef INVARIANTS
2668 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2669 t_type, inp, stcb, net);
2670#else
2671 return;
2672#endif
2673 }
2674 tmr = &net->rxt_timer;
2675 break;
2677 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2678#ifdef INVARIANTS
2679 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2680 t_type, inp, stcb, net);
2681#else
2682 return;
2683#endif
2684 }
2685 tmr = &net->hb_timer;
2686 break;
2688 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2689#ifdef INVARIANTS
2690 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2691 t_type, inp, stcb, net);
2692#else
2693 return;
2694#endif
2695 }
2696 tmr = &net->rxt_timer;
2697 break;
2699 if ((inp == NULL) || (stcb != NULL) || (net != NULL)) {
2700#ifdef INVARIANTS
2701 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2702 t_type, inp, stcb, net);
2703#else
2704 return;
2705#endif
2706 }
2707 tmr = &inp->sctp_ep.signature_change;
2708 break;
2710 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2711#ifdef INVARIANTS
2712 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2713 t_type, inp, stcb, net);
2714#else
2715 return;
2716#endif
2717 }
2718 tmr = &net->pmtu_timer;
2719 break;
2721 if ((inp == NULL) || (stcb == NULL) || (net == NULL)) {
2722#ifdef INVARIANTS
2723 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2724 t_type, inp, stcb, net);
2725#else
2726 return;
2727#endif
2728 }
2729 tmr = &net->rxt_timer;
2730 break;
2732 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2733#ifdef INVARIANTS
2734 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2735 t_type, inp, stcb, net);
2736#else
2737 return;
2738#endif
2739 }
2740 tmr = &stcb->asoc.asconf_timer;
2741 break;
2743 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2744#ifdef INVARIANTS
2745 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2746 t_type, inp, stcb, net);
2747#else
2748 return;
2749#endif
2750 }
2751 tmr = &stcb->asoc.shut_guard_timer;
2752 break;
2754 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2755#ifdef INVARIANTS
2756 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2757 t_type, inp, stcb, net);
2758#else
2759 return;
2760#endif
2761 }
2762 tmr = &stcb->asoc.autoclose_timer;
2763 break;
2765 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2766#ifdef INVARIANTS
2767 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2768 t_type, inp, stcb, net);
2769#else
2770 return;
2771#endif
2772 }
2773 tmr = &stcb->asoc.strreset_timer;
2774 break;
2776 /*
2777 * The inp is setup to die. We re-use the signature_chage
2778 * timer since that has stopped and we are in the GONE
2779 * state.
2780 */
2781 if ((inp == NULL) || (stcb != NULL) || (net != NULL)) {
2782#ifdef INVARIANTS
2783 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2784 t_type, inp, stcb, net);
2785#else
2786 return;
2787#endif
2788 }
2789 tmr = &inp->sctp_ep.signature_change;
2790 break;
2792 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2793#ifdef INVARIANTS
2794 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2795 t_type, inp, stcb, net);
2796#else
2797 return;
2798#endif
2799 }
2800 tmr = &stcb->asoc.strreset_timer;
2801 break;
2803 if ((inp != NULL) || (stcb != NULL) || (net != NULL)) {
2804#ifdef INVARIANTS
2805 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2806 t_type, inp, stcb, net);
2807#else
2808 return;
2809#endif
2810 }
2811 tmr = &SCTP_BASE_INFO(addr_wq_timer);
2812 break;
2814 if ((inp == NULL) || (stcb == NULL) || (net != NULL)) {
2815#ifdef INVARIANTS
2816 panic("sctp_timer_stop of type %d: inp = %p, stcb = %p, net = %p",
2817 t_type, inp, stcb, net);
2818#else
2819 return;
2820#endif
2821 }
2822 tmr = &stcb->asoc.delete_prim_timer;
2823 break;
2824 default:
2825#ifdef INVARIANTS
2826 panic("Unknown timer type %d", t_type);
2827#else
2828 return;
2829#endif
2830 }
2831 KASSERT(tmr != NULL, ("tmr is NULL for timer type %d", t_type));
2832 if ((tmr->type != SCTP_TIMER_TYPE_NONE) &&
2833 (tmr->type != t_type)) {
2834 /*
2835 * Ok we have a timer that is under joint use. Cookie timer
2836 * per chance with the SEND timer. We therefore are NOT
2837 * running the timer that the caller wants stopped. So just
2838 * return.
2839 */
2841 "Shared timer type %d not running: inp=%p, stcb=%p, net=%p.\n",
2842 t_type, inp, stcb, net);
2843 return;
2844 }
2845 if ((t_type == SCTP_TIMER_TYPE_SEND) && (stcb != NULL)) {
2846 stcb->asoc.num_send_timers_up--;
2847 if (stcb->asoc.num_send_timers_up < 0) {
2848 stcb->asoc.num_send_timers_up = 0;
2849 }
2850 }
2851 tmr->self = NULL;
2852 tmr->stopped_from = from;
2853 if (SCTP_OS_TIMER_STOP(&tmr->timer) == 1) {
2854 KASSERT(tmr->ep == inp,
2855 ("sctp_timer_stop of type %d: inp = %p, tmr->inp = %p",
2856 t_type, inp, tmr->ep));
2857 KASSERT(tmr->tcb == stcb,
2858 ("sctp_timer_stop of type %d: stcb = %p, tmr->stcb = %p",
2859 t_type, stcb, tmr->tcb));
2860 KASSERT(((t_type == SCTP_TIMER_TYPE_ASCONF) && (tmr->net != NULL)) ||
2861 ((t_type != SCTP_TIMER_TYPE_ASCONF) && (tmr->net == net)),
2862 ("sctp_timer_stop of type %d: net = %p, tmr->net = %p",
2863 t_type, net, tmr->net));
2865 "Timer type %d stopped: inp=%p, stcb=%p, net=%p.\n",
2866 t_type, inp, stcb, net);
2867 /*
2868 * If the timer was actually stopped, decrement reference
2869 * counts that were incremented in sctp_timer_start().
2870 */
2871 if (tmr->ep != NULL) {
2872 SCTP_INP_DECR_REF(inp);
2873 tmr->ep = NULL;
2874 }
2875 if (tmr->tcb != NULL) {
2876 atomic_subtract_int(&stcb->asoc.refcnt, 1);
2877 tmr->tcb = NULL;
2878 }
2879 if (tmr->net != NULL) {
2880 /*
2881 * Can't use net, since it doesn't work for
2882 * SCTP_TIMER_TYPE_ASCONF.
2883 */
2884 sctp_free_remote_addr((struct sctp_nets *)tmr->net);
2885 tmr->net = NULL;
2886 }
2887 } else {
2889 "Timer type %d not stopped: inp=%p, stcb=%p, net=%p.\n",
2890 t_type, inp, stcb, net);
2891 }
2892 return;
2893}
2894
2896sctp_calculate_len(struct mbuf *m)
2897{
2898 struct mbuf *at;
2899 uint32_t tlen;
2900
2901 tlen = 0;
2902 for (at = m; at != NULL; at = SCTP_BUF_NEXT(at)) {
2903 tlen += SCTP_BUF_LEN(at);
2904 }
2905 return (tlen);
2906}
2907
2908/*
2909 * Given an association and starting time of the current RTT period, update
2910 * RTO in number of msecs. net should point to the current network.
2911 * Return 1, if an RTO update was performed, return 0 if no update was
2912 * performed due to invalid starting point.
2913 */
2914
2915int
2917 struct sctp_association *asoc,
2918 struct sctp_nets *net,
2919 struct timeval *old,
2920 int rtt_from_sack)
2921{
2922 struct timeval now;
2923 uint64_t rtt_us; /* RTT in us */
2924 int32_t rtt; /* RTT in ms */
2925 uint32_t new_rto;
2926 int first_measure = 0;
2927
2928 /************************/
2929 /* 1. calculate new RTT */
2930 /************************/
2931 /* get the current time */
2932 if (stcb->asoc.use_precise_time) {
2933 (void)SCTP_GETPTIME_TIMEVAL(&now);
2934 } else {
2935 (void)SCTP_GETTIME_TIMEVAL(&now);
2936 }
2937 if ((old->tv_sec > now.tv_sec) ||
2938 ((old->tv_sec == now.tv_sec) && (old->tv_usec > now.tv_usec))) {
2939 /* The starting point is in the future. */
2940 return (0);
2941 }
2942 timevalsub(&now, old);
2943 rtt_us = (uint64_t)1000000 * (uint64_t)now.tv_sec + (uint64_t)now.tv_usec;
2944 if (rtt_us > SCTP_RTO_UPPER_BOUND * 1000) {
2945 /* The RTT is larger than a sane value. */
2946 return (0);
2947 }
2948 /* store the current RTT in us */
2949 net->rtt = rtt_us;
2950 /* compute rtt in ms */
2951 rtt = (int32_t)(net->rtt / 1000);
2952 if ((asoc->cc_functions.sctp_rtt_calculated) && (rtt_from_sack == SCTP_RTT_FROM_DATA)) {
2953 /*
2954 * Tell the CC module that a new update has just occurred
2955 * from a sack
2956 */
2957 (*asoc->cc_functions.sctp_rtt_calculated) (stcb, net, &now);
2958 }
2959 /*
2960 * Do we need to determine the lan? We do this only on sacks i.e.
2961 * RTT being determined from data not non-data (HB/INIT->INITACK).
2962 */
2963 if ((rtt_from_sack == SCTP_RTT_FROM_DATA) &&
2964 (net->lan_type == SCTP_LAN_UNKNOWN)) {
2965 if (net->rtt > SCTP_LOCAL_LAN_RTT) {
2967 } else {
2968 net->lan_type = SCTP_LAN_LOCAL;
2969 }
2970 }
2971
2972 /***************************/
2973 /* 2. update RTTVAR & SRTT */
2974 /***************************/
2975 /*-
2976 * Compute the scaled average lastsa and the
2977 * scaled variance lastsv as described in van Jacobson
2978 * Paper "Congestion Avoidance and Control", Annex A.
2979 *
2980 * (net->lastsa >> SCTP_RTT_SHIFT) is the srtt
2981 * (net->lastsv >> SCTP_RTT_VAR_SHIFT) is the rttvar
2982 */
2983 if (net->RTO_measured) {
2984 rtt -= (net->lastsa >> SCTP_RTT_SHIFT);
2985 net->lastsa += rtt;
2986 if (rtt < 0) {
2987 rtt = -rtt;
2988 }
2989 rtt -= (net->lastsv >> SCTP_RTT_VAR_SHIFT);
2990 net->lastsv += rtt;
2991 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_RTTVAR_LOGGING_ENABLE) {
2993 }
2994 } else {
2995 /* First RTO measurment */
2996 net->RTO_measured = 1;
2997 first_measure = 1;
2998 net->lastsa = rtt << SCTP_RTT_SHIFT;
2999 net->lastsv = (rtt / 2) << SCTP_RTT_VAR_SHIFT;
3000 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_RTTVAR_LOGGING_ENABLE) {
3002 }
3003 }
3004 if (net->lastsv == 0) {
3006 }
3007 new_rto = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv;
3008 if ((new_rto > SCTP_SAT_NETWORK_MIN) &&
3009 (stcb->asoc.sat_network_lockout == 0)) {
3010 stcb->asoc.sat_network = 1;
3011 } else if ((!first_measure) && stcb->asoc.sat_network) {
3012 stcb->asoc.sat_network = 0;
3013 stcb->asoc.sat_network_lockout = 1;
3014 }
3015 /* bound it, per C6/C7 in Section 5.3.1 */
3016 if (new_rto < stcb->asoc.minrto) {
3017 new_rto = stcb->asoc.minrto;
3018 }
3019 if (new_rto > stcb->asoc.maxrto) {
3020 new_rto = stcb->asoc.maxrto;
3021 }
3022 net->RTO = new_rto;
3023 return (1);
3024}
3025
3026/*
3027 * return a pointer to a contiguous piece of data from the given mbuf chain
3028 * starting at 'off' for 'len' bytes. If the desired piece spans more than
3029 * one mbuf, a copy is made at 'ptr'. caller must ensure that the buffer size
3030 * is >= 'len' returns NULL if there there isn't 'len' bytes in the chain.
3031 */
3032caddr_t
3033sctp_m_getptr(struct mbuf *m, int off, int len, uint8_t *in_ptr)
3034{
3036 uint8_t *ptr;
3037
3038 ptr = in_ptr;
3039 if ((off < 0) || (len <= 0))
3040 return (NULL);
3041
3042 /* find the desired start location */
3043 while ((m != NULL) && (off > 0)) {
3044 if (off < SCTP_BUF_LEN(m))
3045 break;
3046 off -= SCTP_BUF_LEN(m);
3047 m = SCTP_BUF_NEXT(m);
3048 }
3049 if (m == NULL)
3050 return (NULL);
3051
3052 /* is the current mbuf large enough (eg. contiguous)? */
3053 if ((SCTP_BUF_LEN(m) - off) >= len) {
3054 return (mtod(m, caddr_t)+off);
3055 } else {
3056 /* else, it spans more than one mbuf, so save a temp copy... */
3057 while ((m != NULL) && (len > 0)) {
3058 count = min(SCTP_BUF_LEN(m) - off, len);
3059 memcpy(ptr, mtod(m, caddr_t)+off, count);
3060 len -= count;
3061 ptr += count;
3062 off = 0;
3063 m = SCTP_BUF_NEXT(m);
3064 }
3065 if ((m == NULL) && (len > 0))
3066 return (NULL);
3067 else
3068 return ((caddr_t)in_ptr);
3069 }
3070}
3071
3072struct sctp_paramhdr *
3073sctp_get_next_param(struct mbuf *m,
3074 int offset,
3075 struct sctp_paramhdr *pull,
3076 int pull_limit)
3077{
3078 /* This just provides a typed signature to Peter's Pull routine */
3079 return ((struct sctp_paramhdr *)sctp_m_getptr(m, offset, pull_limit,
3080 (uint8_t *)pull));
3081}
3082
3083struct mbuf *
3084sctp_add_pad_tombuf(struct mbuf *m, int padlen)
3085{
3086 struct mbuf *m_last;
3087 caddr_t dp;
3088
3089 if (padlen > 3) {
3090 return (NULL);
3091 }
3092 if (padlen <= M_TRAILINGSPACE(m)) {
3093 /*
3094 * The easy way. We hope the majority of the time we hit
3095 * here :)
3096 */
3097 m_last = m;
3098 } else {
3099 /* Hard way we must grow the mbuf chain */
3100 m_last = sctp_get_mbuf_for_msg(padlen, 0, M_NOWAIT, 1, MT_DATA);
3101 if (m_last == NULL) {
3102 return (NULL);
3103 }
3104 SCTP_BUF_LEN(m_last) = 0;
3105 SCTP_BUF_NEXT(m_last) = NULL;
3106 SCTP_BUF_NEXT(m) = m_last;
3107 }
3108 dp = mtod(m_last, caddr_t)+SCTP_BUF_LEN(m_last);
3109 SCTP_BUF_LEN(m_last) += padlen;
3110 memset(dp, 0, padlen);
3111 return (m_last);
3112}
3113
3114struct mbuf *
3115sctp_pad_lastmbuf(struct mbuf *m, int padval, struct mbuf *last_mbuf)
3116{
3117 /* find the last mbuf in chain and pad it */
3118 struct mbuf *m_at;
3119
3120 if (last_mbuf != NULL) {
3121 return (sctp_add_pad_tombuf(last_mbuf, padval));
3122 } else {
3123 for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3124 if (SCTP_BUF_NEXT(m_at) == NULL) {
3125 return (sctp_add_pad_tombuf(m_at, padval));
3126 }
3127 }
3128 }
3129 return (NULL);
3130}
3131
3132static void
3134 uint16_t error, struct sctp_abort_chunk *abort,
3135 bool from_peer, bool timedout, int so_locked)
3136{
3137 struct mbuf *m_notify;
3138 struct sctp_assoc_change *sac;
3139 struct sctp_queued_to_read *control;
3140 unsigned int notif_len;
3141 uint16_t abort_len;
3142 unsigned int i;
3143
3144 KASSERT(abort == NULL || from_peer,
3145 ("sctp_notify_assoc_change: ABORT chunk provided for local termination"));
3146 KASSERT(!from_peer || !timedout,
3147 ("sctp_notify_assoc_change: timeouts can only be local"));
3148 if (stcb == NULL) {
3149 return;
3150 }
3152 notif_len = (unsigned int)sizeof(struct sctp_assoc_change);
3153 if (abort != NULL) {
3154 abort_len = ntohs(abort->ch.chunk_length);
3155 /*
3156 * Only SCTP_CHUNK_BUFFER_SIZE are guaranteed to be
3157 * contiguous.
3158 */
3159 if (abort_len > SCTP_CHUNK_BUFFER_SIZE) {
3160 abort_len = SCTP_CHUNK_BUFFER_SIZE;
3161 }
3162 } else {
3163 abort_len = 0;
3164 }
3165 if ((state == SCTP_COMM_UP) || (state == SCTP_RESTART)) {
3166 notif_len += SCTP_ASSOC_SUPPORTS_MAX;
3167 } else if ((state == SCTP_COMM_LOST) || (state == SCTP_CANT_STR_ASSOC)) {
3168 notif_len += abort_len;
3169 }
3170 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA);
3171 if (m_notify == NULL) {
3172 /* Retry with smaller value. */
3173 notif_len = (unsigned int)sizeof(struct sctp_assoc_change);
3174 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA);
3175 if (m_notify == NULL) {
3176 goto set_error;
3177 }
3178 }
3179 SCTP_BUF_NEXT(m_notify) = NULL;
3180 sac = mtod(m_notify, struct sctp_assoc_change *);
3181 memset(sac, 0, notif_len);
3183 sac->sac_flags = 0;
3184 sac->sac_length = sizeof(struct sctp_assoc_change);
3185 sac->sac_state = state;
3186 sac->sac_error = error;
3187 if (state == SCTP_CANT_STR_ASSOC) {
3188 sac->sac_outbound_streams = 0;
3189 sac->sac_inbound_streams = 0;
3190 } else {
3193 }
3194 sac->sac_assoc_id = sctp_get_associd(stcb);
3195 if (notif_len > sizeof(struct sctp_assoc_change)) {
3196 if ((state == SCTP_COMM_UP) || (state == SCTP_RESTART)) {
3197 i = 0;
3198 if (stcb->asoc.prsctp_supported == 1) {
3199 sac->sac_info[i++] = SCTP_ASSOC_SUPPORTS_PR;
3200 }
3201 if (stcb->asoc.auth_supported == 1) {
3203 }
3204 if (stcb->asoc.asconf_supported == 1) {
3206 }
3207 if (stcb->asoc.idata_supported == 1) {
3209 }
3211 if (stcb->asoc.reconfig_supported == 1) {
3213 }
3214 sac->sac_length += i;
3215 } else if ((state == SCTP_COMM_LOST) || (state == SCTP_CANT_STR_ASSOC)) {
3216 memcpy(sac->sac_info, abort, abort_len);
3217 sac->sac_length += abort_len;
3218 }
3219 }
3220 SCTP_BUF_LEN(m_notify) = sac->sac_length;
3221 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3222 0, 0, stcb->asoc.context, 0, 0, 0,
3223 m_notify);
3224 if (control != NULL) {
3225 control->length = SCTP_BUF_LEN(m_notify);
3226 control->spec_flags = M_NOTIFICATION;
3227 /* not that we need this */
3228 control->tail_mbuf = m_notify;
3229 sctp_add_to_readq(stcb->sctp_ep, stcb,
3230 control,
3231 &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_NOT_HELD,
3232 so_locked);
3233 } else {
3234 sctp_m_freem(m_notify);
3235 }
3236 }
3237 /*
3238 * For 1-to-1 style sockets, we send up and error when an ABORT
3239 * comes in.
3240 */
3241set_error:
3242 if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
3245 SOCK_LOCK(stcb->sctp_socket);
3246 if (from_peer) {
3248 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ECONNREFUSED);
3249 stcb->sctp_socket->so_error = ECONNREFUSED;
3250 } else {
3251 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ECONNRESET);
3252 stcb->sctp_socket->so_error = ECONNRESET;
3253 }
3254 } else {
3255 if (timedout) {
3256 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ETIMEDOUT);
3257 stcb->sctp_socket->so_error = ETIMEDOUT;
3258 } else {
3259 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ECONNABORTED);
3260 stcb->sctp_socket->so_error = ECONNABORTED;
3261 }
3262 }
3263 SOCK_UNLOCK(stcb->sctp_socket);
3264 }
3265 /* Wake ANY sleepers */
3266 if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
3269 socantrcvmore(stcb->sctp_socket);
3270 }
3271 sorwakeup(stcb->sctp_socket);
3272 sowwakeup(stcb->sctp_socket);
3273}
3274
3275static void
3277 struct sockaddr *sa, uint32_t error, int so_locked)
3278{
3279 struct mbuf *m_notify;
3280 struct sctp_paddr_change *spc;
3281 struct sctp_queued_to_read *control;
3282
3283 if ((stcb == NULL) ||
3285 /* event not enabled */
3286 return;
3287 }
3288 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_paddr_change), 0, M_NOWAIT, 1, MT_DATA);
3289 if (m_notify == NULL)
3290 return;
3291 SCTP_BUF_LEN(m_notify) = 0;
3292 spc = mtod(m_notify, struct sctp_paddr_change *);
3293 memset(spc, 0, sizeof(struct sctp_paddr_change));
3295 spc->spc_flags = 0;
3296 spc->spc_length = sizeof(struct sctp_paddr_change);
3297 switch (sa->sa_family) {
3298#ifdef INET
3299 case AF_INET:
3300#ifdef INET6
3302 in6_sin_2_v4mapsin6((struct sockaddr_in *)sa,
3303 (struct sockaddr_in6 *)&spc->spc_aaddr);
3304 } else {
3305 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in));
3306 }
3307#else
3308 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in));
3309#endif
3310 break;
3311#endif
3312#ifdef INET6
3313 case AF_INET6:
3314 {
3315 struct sockaddr_in6 *sin6;
3316
3317 memcpy(&spc->spc_aaddr, sa, sizeof(struct sockaddr_in6));
3318
3319 sin6 = (struct sockaddr_in6 *)&spc->spc_aaddr;
3320 if (IN6_IS_SCOPE_LINKLOCAL(&sin6->sin6_addr)) {
3321 if (sin6->sin6_scope_id == 0) {
3322 /* recover scope_id for user */
3323 (void)sa6_recoverscope(sin6);
3324 } else {
3325 /* clear embedded scope_id for user */
3326 in6_clearscope(&sin6->sin6_addr);
3327 }
3328 }
3329 break;
3330 }
3331#endif
3332 default:
3333 /* TSNH */
3334 break;
3335 }
3336 spc->spc_state = state;
3337 spc->spc_error = error;
3338 spc->spc_assoc_id = sctp_get_associd(stcb);
3339
3340 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_paddr_change);
3341 SCTP_BUF_NEXT(m_notify) = NULL;
3342
3343 /* append to socket */
3344 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3345 0, 0, stcb->asoc.context, 0, 0, 0,
3346 m_notify);
3347 if (control == NULL) {
3348 /* no memory */
3349 sctp_m_freem(m_notify);
3350 return;
3351 }
3352 control->length = SCTP_BUF_LEN(m_notify);
3353 control->spec_flags = M_NOTIFICATION;
3354 /* not that we need this */
3355 control->tail_mbuf = m_notify;
3356 sctp_add_to_readq(stcb->sctp_ep, stcb,
3357 control,
3358 &stcb->sctp_socket->so_rcv, 1,
3360 so_locked);
3361}
3362
3363static void
3365 struct sctp_tmit_chunk *chk, int so_locked)
3366{
3367 struct mbuf *m_notify;
3368 struct sctp_send_failed *ssf;
3369 struct sctp_send_failed_event *ssfe;
3370 struct sctp_queued_to_read *control;
3371 struct sctp_chunkhdr *chkhdr;
3372 int notifhdr_len, chk_len, chkhdr_len, padding_len, payload_len;
3373
3374 if ((stcb == NULL) ||
3377 /* event not enabled */
3378 return;
3379 }
3380
3382 notifhdr_len = sizeof(struct sctp_send_failed_event);
3383 } else {
3384 notifhdr_len = sizeof(struct sctp_send_failed);
3385 }
3386 m_notify = sctp_get_mbuf_for_msg(notifhdr_len, 0, M_NOWAIT, 1, MT_DATA);
3387 if (m_notify == NULL)
3388 /* no space left */
3389 return;
3390 SCTP_BUF_LEN(m_notify) = notifhdr_len;
3391 if (stcb->asoc.idata_supported) {
3392 chkhdr_len = sizeof(struct sctp_idata_chunk);
3393 } else {
3394 chkhdr_len = sizeof(struct sctp_data_chunk);
3395 }
3396 /* Use some defaults in case we can't access the chunk header */
3397 if (chk->send_size >= chkhdr_len) {
3398 payload_len = chk->send_size - chkhdr_len;
3399 } else {
3400 payload_len = 0;
3401 }
3402 padding_len = 0;
3403 if (chk->data != NULL) {
3404 chkhdr = mtod(chk->data, struct sctp_chunkhdr *);
3405 if (chkhdr != NULL) {
3406 chk_len = ntohs(chkhdr->chunk_length);
3407 if ((chk_len >= chkhdr_len) &&
3408 (chk->send_size >= chk_len) &&
3409 (chk->send_size - chk_len < 4)) {
3410 padding_len = chk->send_size - chk_len;
3411 payload_len = chk->send_size - chkhdr_len - padding_len;
3412 }
3413 }
3414 }
3416 ssfe = mtod(m_notify, struct sctp_send_failed_event *);
3417 memset(ssfe, 0, notifhdr_len);
3419 if (sent) {
3420 ssfe->ssfe_flags = SCTP_DATA_SENT;
3421 } else {
3423 }
3424 ssfe->ssfe_length = (uint32_t)(notifhdr_len + payload_len);
3425 ssfe->ssfe_error = error;
3426 /* not exactly what the user sent in, but should be close :) */
3427 ssfe->ssfe_info.snd_sid = chk->rec.data.sid;
3428 ssfe->ssfe_info.snd_flags = chk->rec.data.rcv_flags;
3429 ssfe->ssfe_info.snd_ppid = chk->rec.data.ppid;
3430 ssfe->ssfe_info.snd_context = chk->rec.data.context;
3432 ssfe->ssfe_assoc_id = sctp_get_associd(stcb);
3433 } else {
3434 ssf = mtod(m_notify, struct sctp_send_failed *);
3435 memset(ssf, 0, notifhdr_len);
3437 if (sent) {
3439 } else {
3441 }
3442 ssf->ssf_length = (uint32_t)(notifhdr_len + payload_len);
3443 ssf->ssf_error = error;
3444 /* not exactly what the user sent in, but should be close :) */
3445 ssf->ssf_info.sinfo_stream = chk->rec.data.sid;
3446 ssf->ssf_info.sinfo_ssn = (uint16_t)chk->rec.data.mid;
3448 ssf->ssf_info.sinfo_ppid = chk->rec.data.ppid;
3451 ssf->ssf_assoc_id = sctp_get_associd(stcb);
3452 }
3453 if (chk->data != NULL) {
3454 /* Trim off the sctp chunk header (it should be there) */
3455 if (chk->send_size == chkhdr_len + payload_len + padding_len) {
3456 m_adj(chk->data, chkhdr_len);
3457 m_adj(chk->data, -padding_len);
3458 sctp_mbuf_crush(chk->data);
3459 chk->send_size -= (chkhdr_len + padding_len);
3460 }
3461 }
3462 SCTP_BUF_NEXT(m_notify) = chk->data;
3463 /* Steal off the mbuf */
3464 chk->data = NULL;
3465 /*
3466 * For this case, we check the actual socket buffer, since the assoc
3467 * is going away we don't want to overfill the socket buffer for a
3468 * non-reader
3469 */
3470 if (sctp_sbspace_failedmsgs(&stcb->sctp_socket->so_rcv) < SCTP_BUF_LEN(m_notify)) {
3471 sctp_m_freem(m_notify);
3472 return;
3473 }
3474 /* append to socket */
3475 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3476 0, 0, stcb->asoc.context, 0, 0, 0,
3477 m_notify);
3478 if (control == NULL) {
3479 /* no memory */
3480 sctp_m_freem(m_notify);
3481 return;
3482 }
3483 control->length = SCTP_BUF_LEN(m_notify);
3484 control->spec_flags = M_NOTIFICATION;
3485 /* not that we need this */
3486 control->tail_mbuf = m_notify;
3487 sctp_add_to_readq(stcb->sctp_ep, stcb,
3488 control,
3489 &stcb->sctp_socket->so_rcv, 1,
3491 so_locked);
3492}
3493
3494static void
3496 struct sctp_stream_queue_pending *sp, int so_locked)
3497{
3498 struct mbuf *m_notify;
3499 struct sctp_send_failed *ssf;
3500 struct sctp_send_failed_event *ssfe;
3501 struct sctp_queued_to_read *control;
3502 int notifhdr_len;
3503
3504 if ((stcb == NULL) ||
3507 /* event not enabled */
3508 return;
3509 }
3511 notifhdr_len = sizeof(struct sctp_send_failed_event);
3512 } else {
3513 notifhdr_len = sizeof(struct sctp_send_failed);
3514 }
3515 m_notify = sctp_get_mbuf_for_msg(notifhdr_len, 0, M_NOWAIT, 1, MT_DATA);
3516 if (m_notify == NULL) {
3517 /* no space left */
3518 return;
3519 }
3520 SCTP_BUF_LEN(m_notify) = notifhdr_len;
3522 ssfe = mtod(m_notify, struct sctp_send_failed_event *);
3523 memset(ssfe, 0, notifhdr_len);
3526 ssfe->ssfe_length = (uint32_t)(notifhdr_len + sp->length);
3527 ssfe->ssfe_error = error;
3528 /* not exactly what the user sent in, but should be close :) */
3529 ssfe->ssfe_info.snd_sid = sp->sid;
3530 if (sp->some_taken) {
3532 } else {
3534 }
3535 ssfe->ssfe_info.snd_ppid = sp->ppid;
3536 ssfe->ssfe_info.snd_context = sp->context;
3538 ssfe->ssfe_assoc_id = sctp_get_associd(stcb);
3539 } else {
3540 ssf = mtod(m_notify, struct sctp_send_failed *);
3541 memset(ssf, 0, notifhdr_len);
3544 ssf->ssf_length = (uint32_t)(notifhdr_len + sp->length);
3545 ssf->ssf_error = error;
3546 /* not exactly what the user sent in, but should be close :) */
3547 ssf->ssf_info.sinfo_stream = sp->sid;
3548 ssf->ssf_info.sinfo_ssn = 0;
3549 if (sp->some_taken) {
3551 } else {
3553 }
3554 ssf->ssf_info.sinfo_ppid = sp->ppid;
3555 ssf->ssf_info.sinfo_context = sp->context;
3557 ssf->ssf_assoc_id = sctp_get_associd(stcb);
3558 }
3559 SCTP_BUF_NEXT(m_notify) = sp->data;
3560
3561 /* Steal off the mbuf */
3562 sp->data = NULL;
3563 /*
3564 * For this case, we check the actual socket buffer, since the assoc
3565 * is going away we don't want to overfill the socket buffer for a
3566 * non-reader
3567 */
3568 if (sctp_sbspace_failedmsgs(&stcb->sctp_socket->so_rcv) < SCTP_BUF_LEN(m_notify)) {
3569 sctp_m_freem(m_notify);
3570 return;
3571 }
3572 /* append to socket */
3573 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3574 0, 0, stcb->asoc.context, 0, 0, 0,
3575 m_notify);
3576 if (control == NULL) {
3577 /* no memory */
3578 sctp_m_freem(m_notify);
3579 return;
3580 }
3581 control->length = SCTP_BUF_LEN(m_notify);
3582 control->spec_flags = M_NOTIFICATION;
3583 /* not that we need this */
3584 control->tail_mbuf = m_notify;
3585 sctp_add_to_readq(stcb->sctp_ep, stcb,
3586 control,
3587 &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_NOT_HELD, so_locked);
3588}
3589
3590static void
3592{
3593 struct mbuf *m_notify;
3594 struct sctp_adaptation_event *sai;
3595 struct sctp_queued_to_read *control;
3596
3597 if ((stcb == NULL) ||
3599 /* event not enabled */
3600 return;
3601 }
3602
3603 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_adaption_event), 0, M_NOWAIT, 1, MT_DATA);
3604 if (m_notify == NULL)
3605 /* no space left */
3606 return;
3607 SCTP_BUF_LEN(m_notify) = 0;
3608 sai = mtod(m_notify, struct sctp_adaptation_event *);
3609 memset(sai, 0, sizeof(struct sctp_adaptation_event));
3611 sai->sai_flags = 0;
3612 sai->sai_length = sizeof(struct sctp_adaptation_event);
3614 sai->sai_assoc_id = sctp_get_associd(stcb);
3615
3616 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_adaptation_event);
3617 SCTP_BUF_NEXT(m_notify) = NULL;
3618
3619 /* append to socket */
3620 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3621 0, 0, stcb->asoc.context, 0, 0, 0,
3622 m_notify);
3623 if (control == NULL) {
3624 /* no memory */
3625 sctp_m_freem(m_notify);
3626 return;
3627 }
3628 control->length = SCTP_BUF_LEN(m_notify);
3629 control->spec_flags = M_NOTIFICATION;
3630 /* not that we need this */
3631 control->tail_mbuf = m_notify;
3632 sctp_add_to_readq(stcb->sctp_ep, stcb,
3633 control,
3635}
3636
3637/* This always must be called with the read-queue LOCKED in the INP */
3638static void
3640 uint32_t val, int so_locked)
3641{
3642 struct mbuf *m_notify;
3643 struct sctp_pdapi_event *pdapi;
3644 struct sctp_queued_to_read *control;
3645 struct sockbuf *sb;
3646
3647 if ((stcb == NULL) ||
3649 /* event not enabled */
3650 return;
3651 }
3653 return;
3654 }
3655
3656 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_pdapi_event), 0, M_NOWAIT, 1, MT_DATA);
3657 if (m_notify == NULL)
3658 /* no space left */
3659 return;
3660 SCTP_BUF_LEN(m_notify) = 0;
3661 pdapi = mtod(m_notify, struct sctp_pdapi_event *);
3662 memset(pdapi, 0, sizeof(struct sctp_pdapi_event));
3664 pdapi->pdapi_flags = 0;
3665 pdapi->pdapi_length = sizeof(struct sctp_pdapi_event);
3666 pdapi->pdapi_indication = error;
3667 pdapi->pdapi_stream = (val >> 16);
3668 pdapi->pdapi_seq = (val & 0x0000ffff);
3669 pdapi->pdapi_assoc_id = sctp_get_associd(stcb);
3670
3671 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_pdapi_event);
3672 SCTP_BUF_NEXT(m_notify) = NULL;
3673 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3674 0, 0, stcb->asoc.context, 0, 0, 0,
3675 m_notify);
3676 if (control == NULL) {
3677 /* no memory */
3678 sctp_m_freem(m_notify);
3679 return;
3680 }
3681 control->length = SCTP_BUF_LEN(m_notify);
3682 control->spec_flags = M_NOTIFICATION;
3683 /* not that we need this */
3684 control->tail_mbuf = m_notify;
3685 sb = &stcb->sctp_socket->so_rcv;
3686 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
3687 sctp_sblog(sb, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBALLOC, SCTP_BUF_LEN(m_notify));
3688 }
3689 sctp_sballoc(stcb, sb, m_notify);
3690 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
3691 sctp_sblog(sb, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
3692 }
3693 control->end_added = 1;
3694 if (stcb->asoc.control_pdapi)
3695 TAILQ_INSERT_AFTER(&stcb->sctp_ep->read_queue, stcb->asoc.control_pdapi, control, next);
3696 else {
3697 /* we really should not see this case */
3698 TAILQ_INSERT_TAIL(&stcb->sctp_ep->read_queue, control, next);
3699 }
3700 if (stcb->sctp_ep && stcb->sctp_socket) {
3701 /* This should always be the case */
3702 sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket);
3703 }
3704}
3705
3706static void
3708{
3709 struct mbuf *m_notify;
3710 struct sctp_shutdown_event *sse;
3711 struct sctp_queued_to_read *control;
3712
3713 /*
3714 * For TCP model AND UDP connected sockets we will send an error up
3715 * when an SHUTDOWN completes
3716 */
3719 /* mark socket closed for read/write and wakeup! */
3720 socantsendmore(stcb->sctp_socket);
3721 }
3723 /* event not enabled */
3724 return;
3725 }
3726
3727 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_event), 0, M_NOWAIT, 1, MT_DATA);
3728 if (m_notify == NULL)
3729 /* no space left */
3730 return;
3731 sse = mtod(m_notify, struct sctp_shutdown_event *);
3732 memset(sse, 0, sizeof(struct sctp_shutdown_event));
3734 sse->sse_flags = 0;
3735 sse->sse_length = sizeof(struct sctp_shutdown_event);
3736 sse->sse_assoc_id = sctp_get_associd(stcb);
3737
3738 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_shutdown_event);
3739 SCTP_BUF_NEXT(m_notify) = NULL;
3740
3741 /* append to socket */
3742 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3743 0, 0, stcb->asoc.context, 0, 0, 0,
3744 m_notify);
3745 if (control == NULL) {
3746 /* no memory */
3747 sctp_m_freem(m_notify);
3748 return;
3749 }
3750 control->length = SCTP_BUF_LEN(m_notify);
3751 control->spec_flags = M_NOTIFICATION;
3752 /* not that we need this */
3753 control->tail_mbuf = m_notify;
3754 sctp_add_to_readq(stcb->sctp_ep, stcb,
3755 control,
3757}
3758
3759static void
3761 int so_locked)
3762{
3763 struct mbuf *m_notify;
3764 struct sctp_sender_dry_event *event;
3765 struct sctp_queued_to_read *control;
3766
3767 if ((stcb == NULL) ||
3769 /* event not enabled */
3770 return;
3771 }
3772
3773 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_sender_dry_event), 0, M_NOWAIT, 1, MT_DATA);
3774 if (m_notify == NULL) {
3775 /* no space left */
3776 return;
3777 }
3778 SCTP_BUF_LEN(m_notify) = 0;
3779 event = mtod(m_notify, struct sctp_sender_dry_event *);
3780 memset(event, 0, sizeof(struct sctp_sender_dry_event));
3781 event->sender_dry_type = SCTP_SENDER_DRY_EVENT;
3782 event->sender_dry_flags = 0;
3783 event->sender_dry_length = sizeof(struct sctp_sender_dry_event);
3784 event->sender_dry_assoc_id = sctp_get_associd(stcb);
3785
3786 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_sender_dry_event);
3787 SCTP_BUF_NEXT(m_notify) = NULL;
3788
3789 /* append to socket */
3790 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3791 0, 0, stcb->asoc.context, 0, 0, 0,
3792 m_notify);
3793 if (control == NULL) {
3794 /* no memory */
3795 sctp_m_freem(m_notify);
3796 return;
3797 }
3798 control->length = SCTP_BUF_LEN(m_notify);
3799 control->spec_flags = M_NOTIFICATION;
3800 /* not that we need this */
3801 control->tail_mbuf = m_notify;
3802 sctp_add_to_readq(stcb->sctp_ep, stcb, control,
3803 &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_NOT_HELD, so_locked);
3804}
3805
3806void
3807sctp_notify_stream_reset_add(struct sctp_tcb *stcb, uint16_t numberin, uint16_t numberout, int flag)
3808{
3809 struct mbuf *m_notify;
3810 struct sctp_queued_to_read *control;
3811 struct sctp_stream_change_event *stradd;
3812
3813 if ((stcb == NULL) ||
3815 /* event not enabled */
3816 return;
3817 }
3818 if ((stcb->asoc.peer_req_out) && flag) {
3819 /* Peer made the request, don't tell the local user */
3820 stcb->asoc.peer_req_out = 0;
3821 return;
3822 }
3823 stcb->asoc.peer_req_out = 0;
3824 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_stream_change_event), 0, M_NOWAIT, 1, MT_DATA);
3825 if (m_notify == NULL)
3826 /* no space left */
3827 return;
3828 SCTP_BUF_LEN(m_notify) = 0;
3829 stradd = mtod(m_notify, struct sctp_stream_change_event *);
3830 memset(stradd, 0, sizeof(struct sctp_stream_change_event));
3832 stradd->strchange_flags = flag;
3833 stradd->strchange_length = sizeof(struct sctp_stream_change_event);
3834 stradd->strchange_assoc_id = sctp_get_associd(stcb);
3835 stradd->strchange_instrms = numberin;
3836 stradd->strchange_outstrms = numberout;
3837 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_stream_change_event);
3838 SCTP_BUF_NEXT(m_notify) = NULL;
3839 if (sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv) < SCTP_BUF_LEN(m_notify)) {
3840 /* no space */
3841 sctp_m_freem(m_notify);
3842 return;
3843 }
3844 /* append to socket */
3845 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3846 0, 0, stcb->asoc.context, 0, 0, 0,
3847 m_notify);
3848 if (control == NULL) {
3849 /* no memory */
3850 sctp_m_freem(m_notify);
3851 return;
3852 }
3853 control->length = SCTP_BUF_LEN(m_notify);
3854 control->spec_flags = M_NOTIFICATION;
3855 /* not that we need this */
3856 control->tail_mbuf = m_notify;
3857 sctp_add_to_readq(stcb->sctp_ep, stcb,
3858 control,
3860}
3861
3862void
3863sctp_notify_stream_reset_tsn(struct sctp_tcb *stcb, uint32_t sending_tsn, uint32_t recv_tsn, int flag)
3864{
3865 struct mbuf *m_notify;
3866 struct sctp_queued_to_read *control;
3867 struct sctp_assoc_reset_event *strasoc;
3868
3869 if ((stcb == NULL) ||
3871 /* event not enabled */
3872 return;
3873 }
3874 m_notify = sctp_get_mbuf_for_msg(sizeof(struct sctp_assoc_reset_event), 0, M_NOWAIT, 1, MT_DATA);
3875 if (m_notify == NULL)
3876 /* no space left */
3877 return;
3878 SCTP_BUF_LEN(m_notify) = 0;
3879 strasoc = mtod(m_notify, struct sctp_assoc_reset_event *);
3880 memset(strasoc, 0, sizeof(struct sctp_assoc_reset_event));
3882 strasoc->assocreset_flags = flag;
3883 strasoc->assocreset_length = sizeof(struct sctp_assoc_reset_event);
3884 strasoc->assocreset_assoc_id = sctp_get_associd(stcb);
3885 strasoc->assocreset_local_tsn = sending_tsn;
3886 strasoc->assocreset_remote_tsn = recv_tsn;
3887 SCTP_BUF_LEN(m_notify) = sizeof(struct sctp_assoc_reset_event);
3888 SCTP_BUF_NEXT(m_notify) = NULL;
3889 if (sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv) < SCTP_BUF_LEN(m_notify)) {
3890 /* no space */
3891 sctp_m_freem(m_notify);
3892 return;
3893 }
3894 /* append to socket */
3895 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3896 0, 0, stcb->asoc.context, 0, 0, 0,
3897 m_notify);
3898 if (control == NULL) {
3899 /* no memory */
3900 sctp_m_freem(m_notify);
3901 return;
3902 }
3903 control->length = SCTP_BUF_LEN(m_notify);
3904 control->spec_flags = M_NOTIFICATION;
3905 /* not that we need this */
3906 control->tail_mbuf = m_notify;
3907 sctp_add_to_readq(stcb->sctp_ep, stcb,
3908 control,
3910}
3911
3912static void
3914 int number_entries, uint16_t *list, int flag)
3915{
3916 struct mbuf *m_notify;
3917 struct sctp_queued_to_read *control;
3918 struct sctp_stream_reset_event *strreset;
3919 int len;
3920
3921 if ((stcb == NULL) ||
3923 /* event not enabled */
3924 return;
3925 }
3926
3927 m_notify = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
3928 if (m_notify == NULL)
3929 /* no space left */
3930 return;
3931 SCTP_BUF_LEN(m_notify) = 0;
3932 len = sizeof(struct sctp_stream_reset_event) + (number_entries * sizeof(uint16_t));
3933 if (len > M_TRAILINGSPACE(m_notify)) {
3934 /* never enough room */
3935 sctp_m_freem(m_notify);
3936 return;
3937 }
3938 strreset = mtod(m_notify, struct sctp_stream_reset_event *);
3939 memset(strreset, 0, len);
3941 strreset->strreset_flags = flag;
3942 strreset->strreset_length = len;
3943 strreset->strreset_assoc_id = sctp_get_associd(stcb);
3944 if (number_entries) {
3945 int i;
3946
3947 for (i = 0; i < number_entries; i++) {
3948 strreset->strreset_stream_list[i] = ntohs(list[i]);
3949 }
3950 }
3951 SCTP_BUF_LEN(m_notify) = len;
3952 SCTP_BUF_NEXT(m_notify) = NULL;
3953 if (sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv) < SCTP_BUF_LEN(m_notify)) {
3954 /* no space */
3955 sctp_m_freem(m_notify);
3956 return;
3957 }
3958 /* append to socket */
3959 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
3960 0, 0, stcb->asoc.context, 0, 0, 0,
3961 m_notify);
3962 if (control == NULL) {
3963 /* no memory */
3964 sctp_m_freem(m_notify);
3965 return;
3966 }
3967 control->length = SCTP_BUF_LEN(m_notify);
3968 control->spec_flags = M_NOTIFICATION;
3969 /* not that we need this */
3970 control->tail_mbuf = m_notify;
3971 sctp_add_to_readq(stcb->sctp_ep, stcb,
3972 control,
3974}
3975
3976static void
3978{
3979 struct mbuf *m_notify;
3980 struct sctp_remote_error *sre;
3981 struct sctp_queued_to_read *control;
3982 unsigned int notif_len;
3983 uint16_t chunk_len;
3984
3985 if ((stcb == NULL) ||
3987 return;
3988 }
3989 if (chunk != NULL) {
3990 chunk_len = ntohs(chunk->ch.chunk_length);
3991 /*
3992 * Only SCTP_CHUNK_BUFFER_SIZE are guaranteed to be
3993 * contiguous.
3994 */
3995 if (chunk_len > SCTP_CHUNK_BUFFER_SIZE) {
3996 chunk_len = SCTP_CHUNK_BUFFER_SIZE;
3997 }
3998 } else {
3999 chunk_len = 0;
4000 }
4001 notif_len = (unsigned int)(sizeof(struct sctp_remote_error) + chunk_len);
4002 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA);
4003 if (m_notify == NULL) {
4004 /* Retry with smaller value. */
4005 notif_len = (unsigned int)sizeof(struct sctp_remote_error);
4006 m_notify = sctp_get_mbuf_for_msg(notif_len, 0, M_NOWAIT, 1, MT_DATA);
4007 if (m_notify == NULL) {
4008 return;
4009 }
4010 }
4011 SCTP_BUF_NEXT(m_notify) = NULL;
4012 sre = mtod(m_notify, struct sctp_remote_error *);
4013 memset(sre, 0, notif_len);
4015 sre->sre_flags = 0;
4016 sre->sre_length = sizeof(struct sctp_remote_error);
4017 sre->sre_error = error;
4018 sre->sre_assoc_id = sctp_get_associd(stcb);
4019 if (notif_len > sizeof(struct sctp_remote_error)) {
4020 memcpy(sre->sre_data, chunk, chunk_len);
4021 sre->sre_length += chunk_len;
4022 }
4023 SCTP_BUF_LEN(m_notify) = sre->sre_length;
4024 control = sctp_build_readq_entry(stcb, stcb->asoc.primary_destination,
4025 0, 0, stcb->asoc.context, 0, 0, 0,
4026 m_notify);
4027 if (control != NULL) {
4028 control->length = SCTP_BUF_LEN(m_notify);
4029 control->spec_flags = M_NOTIFICATION;
4030 /* not that we need this */
4031 control->tail_mbuf = m_notify;
4032 sctp_add_to_readq(stcb->sctp_ep, stcb,
4033 control,
4034 &stcb->sctp_socket->so_rcv, 1,
4036 } else {
4037 sctp_m_freem(m_notify);
4038 }
4039}
4040
4041void
4042sctp_ulp_notify(uint32_t notification, struct sctp_tcb *stcb,
4043 uint32_t error, void *data, int so_locked)
4044{
4045 if ((stcb == NULL) ||
4049 /* If the socket is gone we are out of here */
4050 return;
4051 }
4052 if (stcb->sctp_socket->so_rcv.sb_state & SBS_CANTRCVMORE) {
4053 return;
4054 }
4055 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
4057 if ((notification == SCTP_NOTIFY_INTERFACE_DOWN) ||
4058 (notification == SCTP_NOTIFY_INTERFACE_UP) ||
4059 (notification == SCTP_NOTIFY_INTERFACE_CONFIRMED)) {
4060 /* Don't report these in front states */
4061 return;
4062 }
4063 }
4064 switch (notification) {
4066 if (stcb->asoc.assoc_up_sent == 0) {
4067 sctp_notify_assoc_change(SCTP_COMM_UP, stcb, error, NULL, false, false, so_locked);
4068 stcb->asoc.assoc_up_sent = 1;
4069 }
4070 if (stcb->asoc.adaptation_needed && (stcb->asoc.adaptation_sent == 0)) {
4072 }
4073 if (stcb->asoc.auth_supported == 0) {
4075 NULL, so_locked);
4076 }
4077 break;
4079 sctp_notify_assoc_change(SCTP_SHUTDOWN_COMP, stcb, error, NULL, false, false, so_locked);
4080 break;
4082 {
4083 struct sctp_nets *net;
4084
4085 net = (struct sctp_nets *)data;
4087 (struct sockaddr *)&net->ro._l_addr, error, so_locked);
4088 break;
4089 }
4091 {
4092 struct sctp_nets *net;
4093
4094 net = (struct sctp_nets *)data;
4096 (struct sockaddr *)&net->ro._l_addr, error, so_locked);
4097 break;
4098 }
4100 {
4101 struct sctp_nets *net;
4102
4103 net = (struct sctp_nets *)data;
4105 (struct sockaddr *)&net->ro._l_addr, error, so_locked);
4106 break;
4107 }
4109 sctp_notify_send_failed2(stcb, error,
4110 (struct sctp_stream_queue_pending *)data, so_locked);
4111 break;
4113 sctp_notify_send_failed(stcb, 1, error,
4114 (struct sctp_tmit_chunk *)data, so_locked);
4115 break;
4117 sctp_notify_send_failed(stcb, 0, error,
4118 (struct sctp_tmit_chunk *)data, so_locked);
4119 break;
4121 {
4122 uint32_t val;
4123
4124 val = *((uint32_t *)data);
4125
4126 sctp_notify_partial_delivery_indication(stcb, error, val, so_locked);
4127 break;
4128 }
4130 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
4132 sctp_notify_assoc_change(SCTP_CANT_STR_ASSOC, stcb, error, data, false, false, so_locked);
4133 } else {
4134 sctp_notify_assoc_change(SCTP_COMM_LOST, stcb, error, data, false, false, so_locked);
4135 }
4136 break;
4138 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
4140 sctp_notify_assoc_change(SCTP_CANT_STR_ASSOC, stcb, error, data, true, false, so_locked);
4141 } else {
4142 sctp_notify_assoc_change(SCTP_COMM_LOST, stcb, error, data, true, false, so_locked);
4143 }
4144 break;
4146 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
4148 sctp_notify_assoc_change(SCTP_CANT_STR_ASSOC, stcb, error, data, false, true, so_locked);
4149 } else {
4150 sctp_notify_assoc_change(SCTP_COMM_LOST, stcb, error, data, false, true, so_locked);
4151 }
4152 break;
4154 sctp_notify_assoc_change(SCTP_RESTART, stcb, error, NULL, false, false, so_locked);
4155 if (stcb->asoc.auth_supported == 0) {
4157 NULL, so_locked);
4158 }
4159 break;
4162 break;
4165 break;
4167 sctp_notify_stream_reset(stcb, error, ((uint16_t *)data),
4169 break;
4171 sctp_notify_stream_reset(stcb, error, ((uint16_t *)data),
4173 break;
4175 sctp_notify_stream_reset(stcb, error, ((uint16_t *)data),
4177 break;
4179 sctp_notify_stream_reset(stcb, error, ((uint16_t *)data),
4181 break;
4184 error, so_locked);
4185 break;
4188 error, so_locked);
4189 break;
4192 error, so_locked);
4193 break;
4196 break;
4199 (uint16_t)(uintptr_t)data,
4200 so_locked);
4201 break;
4204 (uint16_t)(uintptr_t)data,
4205 so_locked);
4206 break;
4209 (uint16_t)(uintptr_t)data,
4210 so_locked);
4211 break;
4213 sctp_notify_sender_dry_event(stcb, so_locked);
4214 break;
4216 sctp_notify_remote_error(stcb, error, data);
4217 break;
4218 default:
4219 SCTPDBG(SCTP_DEBUG_UTIL1, "%s: unknown notification %xh (%u)\n",
4220 __func__, notification, notification);
4221 break;
4222 } /* end switch */
4223}
4224
4225void
4226sctp_report_all_outbound(struct sctp_tcb *stcb, uint16_t error, int so_locked)
4227{
4228 struct sctp_association *asoc;
4229 struct sctp_stream_out *outs;
4230 struct sctp_tmit_chunk *chk, *nchk;
4231 struct sctp_stream_queue_pending *sp, *nsp;
4232 int i;
4233
4234 if (stcb == NULL) {
4235 return;
4236 }
4237 asoc = &stcb->asoc;
4238 if (asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) {
4239 /* already being freed */
4240 return;
4241 }
4244 (asoc->state & SCTP_STATE_CLOSED_SOCKET)) {
4245 return;
4246 }
4247 /* now through all the gunk freeing chunks */
4248 /* sent queue SHOULD be empty */
4249 TAILQ_FOREACH_SAFE(chk, &asoc->sent_queue, sctp_next, nchk) {
4250 TAILQ_REMOVE(&asoc->sent_queue, chk, sctp_next);
4251 asoc->sent_queue_cnt--;
4252 if (chk->sent != SCTP_DATAGRAM_NR_ACKED) {
4253 if (asoc->strmout[chk->rec.data.sid].chunks_on_queues > 0) {
4254 asoc->strmout[chk->rec.data.sid].chunks_on_queues--;
4255#ifdef INVARIANTS
4256 } else {
4257 panic("No chunks on the queues for sid %u.", chk->rec.data.sid);
4258#endif
4259 }
4260 }
4261 if (chk->data != NULL) {
4262 sctp_free_bufspace(stcb, asoc, chk, 1);
4264 error, chk, so_locked);
4265 if (chk->data) {
4266 sctp_m_freem(chk->data);
4267 chk->data = NULL;
4268 }
4269 }
4270 sctp_free_a_chunk(stcb, chk, so_locked);
4271 /* sa_ignore FREED_MEMORY */
4272 }
4273 /* pending send queue SHOULD be empty */
4274 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
4275 TAILQ_REMOVE(&asoc->send_queue, chk, sctp_next);
4276 asoc->send_queue_cnt--;
4277 if (asoc->strmout[chk->rec.data.sid].chunks_on_queues > 0) {
4278 asoc->strmout[chk->rec.data.sid].chunks_on_queues--;
4279#ifdef INVARIANTS
4280 } else {
4281 panic("No chunks on the queues for sid %u.", chk->rec.data.sid);
4282#endif
4283 }
4284 if (chk->data != NULL) {
4285 sctp_free_bufspace(stcb, asoc, chk, 1);
4287 error, chk, so_locked);
4288 if (chk->data) {
4289 sctp_m_freem(chk->data);
4290 chk->data = NULL;
4291 }
4292 }
4293 sctp_free_a_chunk(stcb, chk, so_locked);
4294 /* sa_ignore FREED_MEMORY */
4295 }
4296 for (i = 0; i < asoc->streamoutcnt; i++) {
4297 /* For each stream */
4298 outs = &asoc->strmout[i];
4299 /* clean up any sends there */
4300 TAILQ_FOREACH_SAFE(sp, &outs->outqueue, next, nsp) {
4301 atomic_subtract_int(&asoc->stream_queue_cnt, 1);
4302 TAILQ_REMOVE(&outs->outqueue, sp, next);
4303 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, outs, sp);
4304 sctp_free_spbufspace(stcb, asoc, sp);
4305 if (sp->data) {
4307 error, (void *)sp, so_locked);
4308 if (sp->data) {
4309 sctp_m_freem(sp->data);
4310 sp->data = NULL;
4311 sp->tail_mbuf = NULL;
4312 sp->length = 0;
4313 }
4314 }
4315 if (sp->net) {
4317 sp->net = NULL;
4318 }
4319 /* Free the chunk */
4320 sctp_free_a_strmoq(stcb, sp, so_locked);
4321 /* sa_ignore FREED_MEMORY */
4322 }
4323 }
4324}
4325
4326void
4327sctp_abort_notification(struct sctp_tcb *stcb, bool from_peer, bool timeout,
4328 uint16_t error, struct sctp_abort_chunk *abort,
4329 int so_locked)
4330{
4331 if (stcb == NULL) {
4332 return;
4333 }
4338 }
4342 return;
4343 }
4344 SCTP_TCB_SEND_LOCK(stcb);
4346 /* Tell them we lost the asoc */
4347 sctp_report_all_outbound(stcb, error, so_locked);
4349 if (from_peer) {
4350 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_REM_ABORTED, stcb, error, abort, so_locked);
4351 } else {
4352 if (timeout) {
4353 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_TIMEDOUT, stcb, error, abort, so_locked);
4354 } else {
4355 sctp_ulp_notify(SCTP_NOTIFY_ASSOC_LOC_ABORTED, stcb, error, abort, so_locked);
4356 }
4357 }
4358}
4359
4360void
4362 struct mbuf *m, int iphlen,
4363 struct sockaddr *src, struct sockaddr *dst,
4364 struct sctphdr *sh, struct mbuf *op_err,
4365 uint8_t mflowtype, uint32_t mflowid,
4366 uint32_t vrf_id, uint16_t port)
4367{
4368 struct sctp_gen_error_cause *cause;
4369 uint32_t vtag;
4370 uint16_t cause_code;
4371
4372 if (stcb != NULL) {
4373 vtag = stcb->asoc.peer_vtag;
4374 vrf_id = stcb->asoc.vrf_id;
4375 if (op_err != NULL) {
4376 /* Read the cause code from the error cause. */
4377 cause = mtod(op_err, struct sctp_gen_error_cause *);
4378 cause_code = ntohs(cause->code);
4379 } else {
4380 cause_code = 0;
4381 }
4382 } else {
4383 vtag = 0;
4384 }
4385 sctp_send_abort(m, iphlen, src, dst, sh, vtag, op_err,
4386 mflowtype, mflowid, inp->fibnum,
4387 vrf_id, port);
4388 if (stcb != NULL) {
4389 /* We have a TCB to abort, send notification too */
4390 sctp_abort_notification(stcb, false, false, cause_code, NULL, SCTP_SO_NOT_LOCKED);
4391 /* Ok, now lets free it */
4392 SCTP_STAT_INCR_COUNTER32(sctps_aborted);
4393 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) ||
4395 SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4396 }
4397 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
4399 }
4400}
4401#ifdef SCTP_ASOCLOG_OF_TSNS
4402void
4403sctp_print_out_track_log(struct sctp_tcb *stcb)
4404{
4405#ifdef NOSIY_PRINTS
4406 int i;
4407
4408 SCTP_PRINTF("Last ep reason:%x\n", stcb->sctp_ep->last_abort_code);
4409 SCTP_PRINTF("IN bound TSN log-aaa\n");
4410 if ((stcb->asoc.tsn_in_at == 0) && (stcb->asoc.tsn_in_wrapped == 0)) {
4411 SCTP_PRINTF("None rcvd\n");
4412 goto none_in;
4413 }
4414 if (stcb->asoc.tsn_in_wrapped) {
4415 for (i = stcb->asoc.tsn_in_at; i < SCTP_TSN_LOG_SIZE; i++) {
4416 SCTP_PRINTF("TSN:%x strm:%d seq:%d flags:%x sz:%d\n",
4417 stcb->asoc.in_tsnlog[i].tsn,
4418 stcb->asoc.in_tsnlog[i].strm,
4419 stcb->asoc.in_tsnlog[i].seq,
4420 stcb->asoc.in_tsnlog[i].flgs,
4421 stcb->asoc.in_tsnlog[i].sz);
4422 }
4423 }
4424 if (stcb->asoc.tsn_in_at) {
4425 for (i = 0; i < stcb->asoc.tsn_in_at; i++) {
4426 SCTP_PRINTF("TSN:%x strm:%d seq:%d flags:%x sz:%d\n",
4427 stcb->asoc.in_tsnlog[i].tsn,
4428 stcb->asoc.in_tsnlog[i].strm,
4429 stcb->asoc.in_tsnlog[i].seq,
4430 stcb->asoc.in_tsnlog[i].flgs,
4431 stcb->asoc.in_tsnlog[i].sz);
4432 }
4433 }
4434none_in:
4435 SCTP_PRINTF("OUT bound TSN log-aaa\n");
4436 if ((stcb->asoc.tsn_out_at == 0) &&
4437 (stcb->asoc.tsn_out_wrapped == 0)) {
4438 SCTP_PRINTF("None sent\n");
4439 }
4440 if (stcb->asoc.tsn_out_wrapped) {
4441 for (i = stcb->asoc.tsn_out_at; i < SCTP_TSN_LOG_SIZE; i++) {
4442 SCTP_PRINTF("TSN:%x strm:%d seq:%d flags:%x sz:%d\n",
4443 stcb->asoc.out_tsnlog[i].tsn,
4444 stcb->asoc.out_tsnlog[i].strm,
4445 stcb->asoc.out_tsnlog[i].seq,
4446 stcb->asoc.out_tsnlog[i].flgs,
4447 stcb->asoc.out_tsnlog[i].sz);
4448 }
4449 }
4450 if (stcb->asoc.tsn_out_at) {
4451 for (i = 0; i < stcb->asoc.tsn_out_at; i++) {
4452 SCTP_PRINTF("TSN:%x strm:%d seq:%d flags:%x sz:%d\n",
4453 stcb->asoc.out_tsnlog[i].tsn,
4454 stcb->asoc.out_tsnlog[i].strm,
4455 stcb->asoc.out_tsnlog[i].seq,
4456 stcb->asoc.out_tsnlog[i].flgs,
4457 stcb->asoc.out_tsnlog[i].sz);
4458 }
4459 }
4460#endif
4461}
4462#endif
4463
4464void
4466 struct mbuf *op_err, bool timedout, int so_locked)
4467{
4468 struct sctp_gen_error_cause *cause;
4469 uint16_t cause_code;
4470
4471 if (stcb == NULL) {
4472 /* Got to have a TCB */
4474 if (LIST_EMPTY(&inp->sctp_asoc_list)) {
4477 }
4478 }
4479 return;
4480 }
4481 if (op_err != NULL) {
4482 /* Read the cause code from the error cause. */
4483 cause = mtod(op_err, struct sctp_gen_error_cause *);
4484 cause_code = ntohs(cause->code);
4485 } else {
4486 cause_code = 0;
4487 }
4488 /* notify the peer */
4489 sctp_send_abort_tcb(stcb, op_err, so_locked);
4490 SCTP_STAT_INCR_COUNTER32(sctps_aborted);
4491 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) ||
4493 SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4494 }
4495 /* notify the ulp */
4496 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) == 0) {
4497 sctp_abort_notification(stcb, false, timedout, cause_code, NULL, so_locked);
4498 }
4499 /* now free the asoc */
4500#ifdef SCTP_ASOCLOG_OF_TSNS
4501 sctp_print_out_track_log(stcb);
4502#endif
4503 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
4505}
4506
4507void
4508sctp_handle_ootb(struct mbuf *m, int iphlen, int offset,
4509 struct sockaddr *src, struct sockaddr *dst,
4510 struct sctphdr *sh, struct sctp_inpcb *inp,
4511 struct mbuf *cause,
4512 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
4513 uint32_t vrf_id, uint16_t port)
4514{
4515 struct sctp_chunkhdr *ch, chunk_buf;
4516 unsigned int chk_length;
4517 int contains_init_chunk;
4518
4519 SCTP_STAT_INCR_COUNTER32(sctps_outoftheblue);
4520 /* Generate a TO address for future reference */
4521 if (inp && (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE)) {
4522 if (LIST_EMPTY(&inp->sctp_asoc_list)) {
4525 }
4526 }
4527 contains_init_chunk = 0;
4528 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
4529 sizeof(*ch), (uint8_t *)&chunk_buf);
4530 while (ch != NULL) {
4531 chk_length = ntohs(ch->chunk_length);
4532 if (chk_length < sizeof(*ch)) {
4533 /* break to abort land */
4534 break;
4535 }
4536 switch (ch->chunk_type) {
4537 case SCTP_INIT:
4538 contains_init_chunk = 1;
4539 break;
4541 /* we don't respond to pkt-dropped */
4542 return;
4544 /* we don't respond with an ABORT to an ABORT */
4545 return;
4547 /*
4548 * we ignore it since we are not waiting for it and
4549 * peer is gone
4550 */
4551 return;
4552 case SCTP_SHUTDOWN_ACK:
4553 sctp_send_shutdown_complete2(src, dst, sh,
4554 mflowtype, mflowid, fibnum,
4555 vrf_id, port);
4556 return;
4557 default:
4558 break;
4559 }
4560 offset += SCTP_SIZE32(chk_length);
4561 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
4562 sizeof(*ch), (uint8_t *)&chunk_buf);
4563 }
4564 if ((SCTP_BASE_SYSCTL(sctp_blackhole) == 0) ||
4565 ((SCTP_BASE_SYSCTL(sctp_blackhole) == 1) &&
4566 (contains_init_chunk == 0))) {
4567 sctp_send_abort(m, iphlen, src, dst, sh, 0, cause,
4568 mflowtype, mflowid, fibnum,
4569 vrf_id, port);
4570 }
4571}
4572
4573/*
4574 * check the inbound datagram to make sure there is not an abort inside it,
4575 * if there is return 1, else return 0.
4576 */
4577int
4578sctp_is_there_an_abort_here(struct mbuf *m, int iphlen, uint32_t *vtag)
4579{
4580 struct sctp_chunkhdr *ch;
4581 struct sctp_init_chunk *init_chk, chunk_buf;
4582 int offset;
4583 unsigned int chk_length;
4584
4585 offset = iphlen + sizeof(struct sctphdr);
4586 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, sizeof(*ch),
4587 (uint8_t *)&chunk_buf);
4588 while (ch != NULL) {
4589 chk_length = ntohs(ch->chunk_length);
4590 if (chk_length < sizeof(*ch)) {
4591 /* packet is probably corrupt */
4592 break;
4593 }
4594 /* we seem to be ok, is it an abort? */
4596 /* yep, tell them */
4597 return (1);
4598 }
4599 if ((ch->chunk_type == SCTP_INITIATION) ||
4601 /* need to update the Vtag */
4602 init_chk = (struct sctp_init_chunk *)sctp_m_getptr(m,
4603 offset, sizeof(struct sctp_init_chunk), (uint8_t *)&chunk_buf);
4604 if (init_chk != NULL) {
4605 *vtag = ntohl(init_chk->init.initiate_tag);
4606 }
4607 }
4608 /* Nope, move to the next chunk */
4609 offset += SCTP_SIZE32(chk_length);
4610 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
4611 sizeof(*ch), (uint8_t *)&chunk_buf);
4612 }
4613 return (0);
4614}
4615
4616/*
4617 * currently (2/02), ifa_addr embeds scope_id's and don't have sin6_scope_id
4618 * set (i.e. it's 0) so, create this function to compare link local scopes
4619 */
4620#ifdef INET6
4622sctp_is_same_scope(struct sockaddr_in6 *addr1, struct sockaddr_in6 *addr2)
4623{
4624 struct sockaddr_in6 a, b;
4625
4626 /* save copies */
4627 a = *addr1;
4628 b = *addr2;
4629
4630 if (a.sin6_scope_id == 0)
4631 if (sa6_recoverscope(&a)) {
4632 /* can't get scope, so can't match */
4633 return (0);
4634 }
4635 if (b.sin6_scope_id == 0)
4636 if (sa6_recoverscope(&b)) {
4637 /* can't get scope, so can't match */
4638 return (0);
4639 }
4640 if (a.sin6_scope_id != b.sin6_scope_id)
4641 return (0);
4642
4643 return (1);
4644}
4645
4646/*
4647 * returns a sockaddr_in6 with embedded scope recovered and removed
4648 */
4649struct sockaddr_in6 *
4650sctp_recover_scope(struct sockaddr_in6 *addr, struct sockaddr_in6 *store)
4651{
4652 /* check and strip embedded scope junk */
4653 if (addr->sin6_family == AF_INET6) {
4654 if (IN6_IS_SCOPE_LINKLOCAL(&addr->sin6_addr)) {
4655 if (addr->sin6_scope_id == 0) {
4656 *store = *addr;
4657 if (!sa6_recoverscope(store)) {
4658 /* use the recovered scope */
4659 addr = store;
4660 }
4661 } else {
4662 /* else, return the original "to" addr */
4663 in6_clearscope(&addr->sin6_addr);
4664 }
4665 }
4666 }
4667 return (addr);
4668}
4669#endif
4670
4671/*
4672 * are the two addresses the same? currently a "scopeless" check returns: 1
4673 * if same, 0 if not
4674 */
4675int
4676sctp_cmpaddr(struct sockaddr *sa1, struct sockaddr *sa2)
4677{
4678
4679 /* must be valid */
4680 if (sa1 == NULL || sa2 == NULL)
4681 return (0);
4682
4683 /* must be the same family */
4684 if (sa1->sa_family != sa2->sa_family)
4685 return (0);
4686
4687 switch (sa1->sa_family) {
4688#ifdef INET6
4689 case AF_INET6:
4690 {
4691 /* IPv6 addresses */
4692 struct sockaddr_in6 *sin6_1, *sin6_2;
4693
4694 sin6_1 = (struct sockaddr_in6 *)sa1;
4695 sin6_2 = (struct sockaddr_in6 *)sa2;
4696 return (SCTP6_ARE_ADDR_EQUAL(sin6_1,
4697 sin6_2));
4698 }
4699#endif
4700#ifdef INET
4701 case AF_INET:
4702 {
4703 /* IPv4 addresses */
4704 struct sockaddr_in *sin_1, *sin_2;
4705
4706 sin_1 = (struct sockaddr_in *)sa1;
4707 sin_2 = (struct sockaddr_in *)sa2;
4708 return (sin_1->sin_addr.s_addr == sin_2->sin_addr.s_addr);
4709 }
4710#endif
4711 default:
4712 /* we don't do these... */
4713 return (0);
4714 }
4715}
4716
4717void
4718sctp_print_address(struct sockaddr *sa)
4719{
4720#ifdef INET6
4721 char ip6buf[INET6_ADDRSTRLEN];
4722#endif
4723
4724 switch (sa->sa_family) {
4725#ifdef INET6
4726 case AF_INET6:
4727 {
4728 struct sockaddr_in6 *sin6;
4729
4730 sin6 = (struct sockaddr_in6 *)sa;
4731 SCTP_PRINTF("IPv6 address: %s:port:%d scope:%u\n",
4732 ip6_sprintf(ip6buf, &sin6->sin6_addr),
4733 ntohs(sin6->sin6_port),
4734 sin6->sin6_scope_id);
4735 break;
4736 }
4737#endif
4738#ifdef INET
4739 case AF_INET:
4740 {
4741 struct sockaddr_in *sin;
4742 unsigned char *p;
4743
4744 sin = (struct sockaddr_in *)sa;
4745 p = (unsigned char *)&sin->sin_addr;
4746 SCTP_PRINTF("IPv4 address: %u.%u.%u.%u:%d\n",
4747 p[0], p[1], p[2], p[3], ntohs(sin->sin_port));
4748 break;
4749 }
4750#endif
4751 default:
4752 SCTP_PRINTF("?\n");
4753 break;
4754 }
4755}
4756
4757void
4759 struct sctp_inpcb *new_inp,
4760 struct sctp_tcb *stcb,
4761 int waitflags)
4762{
4763 /*
4764 * go through our old INP and pull off any control structures that
4765 * belong to stcb and move then to the new inp.
4766 */
4767 struct socket *old_so, *new_so;
4768 struct sctp_queued_to_read *control, *nctl;
4769 struct sctp_readhead tmp_queue;
4770 struct mbuf *m;
4771 int error = 0;
4772
4773 old_so = old_inp->sctp_socket;
4774 new_so = new_inp->sctp_socket;
4775 TAILQ_INIT(&tmp_queue);
4776 error = SOCK_IO_RECV_LOCK(old_so, waitflags);
4777 if (error) {
4778 /*
4779 * Gak, can't get I/O lock, we have a problem. data will be
4780 * left stranded.. and we don't dare look at it since the
4781 * other thread may be reading something. Oh well, its a
4782 * screwed up app that does a peeloff OR a accept while
4783 * reading from the main socket... actually its only the
4784 * peeloff() case, since I think read will fail on a
4785 * listening socket..
4786 */
4787 return;
4788 }
4789 /* lock the socket buffers */
4790 SCTP_INP_READ_LOCK(old_inp);
4791 TAILQ_FOREACH_SAFE(control, &old_inp->read_queue, next, nctl) {
4792 /* Pull off all for out target stcb */
4793 if (control->stcb == stcb) {
4794 /* remove it we want it */
4795 TAILQ_REMOVE(&old_inp->read_queue, control, next);
4796 TAILQ_INSERT_TAIL(&tmp_queue, control, next);
4797 m = control->data;
4798 while (m) {
4799 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4800 sctp_sblog(&old_so->so_rcv, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBFREE, SCTP_BUF_LEN(m));
4801 }
4802 sctp_sbfree(control, stcb, &old_so->so_rcv, m);
4803 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4804 sctp_sblog(&old_so->so_rcv, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
4805 }
4806 m = SCTP_BUF_NEXT(m);
4807 }
4808 }
4809 }
4810 SCTP_INP_READ_UNLOCK(old_inp);
4811 /* Remove the recv-lock on the old socket */
4812 SOCK_IO_RECV_UNLOCK(old_so);
4813 /* Now we move them over to the new socket buffer */
4814 SCTP_INP_READ_LOCK(new_inp);
4815 TAILQ_FOREACH_SAFE(control, &tmp_queue, next, nctl) {
4816 TAILQ_INSERT_TAIL(&new_inp->read_queue, control, next);
4817 m = control->data;
4818 while (m) {
4819 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4820 sctp_sblog(&new_so->so_rcv, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBALLOC, SCTP_BUF_LEN(m));
4821 }
4822 sctp_sballoc(stcb, &new_so->so_rcv, m);
4823 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4824 sctp_sblog(&new_so->so_rcv, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
4825 }
4826 m = SCTP_BUF_NEXT(m);
4827 }
4828 }
4829 SCTP_INP_READ_UNLOCK(new_inp);
4830}
4831
4832void
4834 struct sctp_tcb *stcb,
4835 int so_locked
4837)
4838{
4839 if ((inp != NULL) && (inp->sctp_socket != NULL)) {
4840 sctp_sorwakeup(inp, inp->sctp_socket);
4841 }
4842}
4843
4844void
4846 struct sctp_tcb *stcb,
4847 struct sctp_queued_to_read *control,
4848 struct sockbuf *sb,
4849 int end,
4850 int inp_read_lock_held,
4851 int so_locked)
4852{
4853 /*
4854 * Here we must place the control on the end of the socket read
4855 * queue AND increment sb_cc so that select will work properly on
4856 * read.
4857 */
4858 struct mbuf *m, *prev = NULL;
4859
4860 if (inp == NULL) {
4861 /* Gak, TSNH!! */
4862#ifdef INVARIANTS
4863 panic("Gak, inp NULL on add_to_readq");
4864#endif
4865 return;
4866 }
4867 if (inp_read_lock_held == 0)
4868 SCTP_INP_READ_LOCK(inp);
4870 if (!control->on_strm_q) {
4872 if (control->data) {
4873 sctp_m_freem(control->data);
4874 control->data = NULL;
4875 }
4876 sctp_free_a_readq(stcb, control);
4877 }
4878 if (inp_read_lock_held == 0)
4880 return;
4881 }
4882 if (!(control->spec_flags & M_NOTIFICATION)) {
4883 atomic_add_int(&inp->total_recvs, 1);
4884 if (!control->do_not_ref_stcb) {
4885 atomic_add_int(&stcb->total_recvs, 1);
4886 }
4887 }
4888 m = control->data;
4889 control->held_length = 0;
4890 control->length = 0;
4891 while (m) {
4892 if (SCTP_BUF_LEN(m) == 0) {
4893 /* Skip mbufs with NO length */
4894 if (prev == NULL) {
4895 /* First one */
4896 control->data = sctp_m_free(m);
4897 m = control->data;
4898 } else {
4899 SCTP_BUF_NEXT(prev) = sctp_m_free(m);
4900 m = SCTP_BUF_NEXT(prev);
4901 }
4902 if (m == NULL) {
4903 control->tail_mbuf = prev;
4904 }
4905 continue;
4906 }
4907 prev = m;
4908 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4909 sctp_sblog(sb, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBALLOC, SCTP_BUF_LEN(m));
4910 }
4911 sctp_sballoc(stcb, sb, m);
4912 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
4913 sctp_sblog(sb, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
4914 }
4915 atomic_add_int(&control->length, SCTP_BUF_LEN(m));
4916 m = SCTP_BUF_NEXT(m);
4917 }
4918 if (prev != NULL) {
4919 control->tail_mbuf = prev;
4920 } else {
4921 /* Everything got collapsed out?? */
4922 if (!control->on_strm_q) {
4924 sctp_free_a_readq(stcb, control);
4925 }
4926 if (inp_read_lock_held == 0)
4928 return;
4929 }
4930 if (end) {
4931 control->end_added = 1;
4932 }
4933 TAILQ_INSERT_TAIL(&inp->read_queue, control, next);
4934 control->on_read_q = 1;
4935 if (inp_read_lock_held == 0)
4937 if (inp && inp->sctp_socket) {
4938 sctp_wakeup_the_read_socket(inp, stcb, so_locked);
4939 }
4940}
4941
4942/*************HOLD THIS COMMENT FOR PATCH FILE OF
4943 *************ALTERNATE ROUTING CODE
4944 */
4945
4946/*************HOLD THIS COMMENT FOR END OF PATCH FILE OF
4947 *************ALTERNATE ROUTING CODE
4948 */
4949
4950struct mbuf *
4952{
4953 struct mbuf *m;
4954 struct sctp_gen_error_cause *cause;
4955 size_t info_len;
4956 uint16_t len;
4957
4958 if ((code == 0) || (info == NULL)) {
4959 return (NULL);
4960 }
4961 info_len = strlen(info);
4962 if (info_len > (SCTP_MAX_CAUSE_LENGTH - sizeof(struct sctp_paramhdr))) {
4963 return (NULL);
4964 }
4965 len = (uint16_t)(sizeof(struct sctp_paramhdr) + info_len);
4966 m = sctp_get_mbuf_for_msg(len, 0, M_NOWAIT, 1, MT_DATA);
4967 if (m != NULL) {
4968 SCTP_BUF_LEN(m) = len;
4969 cause = mtod(m, struct sctp_gen_error_cause *);
4970 cause->code = htons(code);
4971 cause->length = htons(len);
4972 memcpy(cause->info, info, info_len);
4973 }
4974 return (m);
4975}
4976
4977struct mbuf *
4979{
4980 struct mbuf *m;
4981 struct sctp_error_no_user_data *no_user_data_cause;
4982 uint16_t len;
4983
4984 len = (uint16_t)sizeof(struct sctp_error_no_user_data);
4985 m = sctp_get_mbuf_for_msg(len, 0, M_NOWAIT, 1, MT_DATA);
4986 if (m != NULL) {
4987 SCTP_BUF_LEN(m) = len;
4988 no_user_data_cause = mtod(m, struct sctp_error_no_user_data *);
4989 no_user_data_cause->cause.code = htons(SCTP_CAUSE_NO_USER_DATA);
4990 no_user_data_cause->cause.length = htons(len);
4991 no_user_data_cause->tsn = htonl(tsn);
4992 }
4993 return (m);
4994}
4995
4996#ifdef SCTP_MBCNT_LOGGING
4997void
4998sctp_free_bufspace(struct sctp_tcb *stcb, struct sctp_association *asoc,
4999 struct sctp_tmit_chunk *tp1, int chk_cnt)
5000{
5001 if (tp1->data == NULL) {
5002 return;
5003 }
5004 asoc->chunks_on_out_queue -= chk_cnt;
5005 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBCNT_LOGGING_ENABLE) {
5006 sctp_log_mbcnt(SCTP_LOG_MBCNT_DECREASE,
5008 tp1->book_size,
5009 0,
5010 tp1->mbcnt);
5011 }
5012 if (asoc->total_output_queue_size >= tp1->book_size) {
5013 atomic_add_int(&asoc->total_output_queue_size, -tp1->book_size);
5014 } else {
5015 asoc->total_output_queue_size = 0;
5016 }
5017
5018 if (stcb->sctp_socket && (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) ||
5020 if (stcb->sctp_socket->so_snd.sb_cc >= tp1->book_size) {
5021 stcb->sctp_socket->so_snd.sb_cc -= tp1->book_size;
5022 } else {
5023 stcb->sctp_socket->so_snd.sb_cc = 0;
5024 }
5025 }
5026}
5027
5028#endif
5029
5030int
5032 uint8_t sent, int so_locked)
5033{
5034 struct sctp_stream_out *strq;
5035 struct sctp_tmit_chunk *chk = NULL, *tp2;
5036 struct sctp_stream_queue_pending *sp;
5037 uint32_t mid;
5038 uint16_t sid;
5039 uint8_t foundeom = 0;
5040 int ret_sz = 0;
5041 int notdone;
5042 int do_wakeup_routine = 0;
5043
5044 sid = tp1->rec.data.sid;
5045 mid = tp1->rec.data.mid;
5046 if (sent || !(tp1->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG)) {
5047 stcb->asoc.abandoned_sent[0]++;
5048 stcb->asoc.abandoned_sent[PR_SCTP_POLICY(tp1->flags)]++;
5049 stcb->asoc.strmout[sid].abandoned_sent[0]++;
5050#if defined(SCTP_DETAILED_STR_STATS)
5052#endif
5053 } else {
5054 stcb->asoc.abandoned_unsent[0]++;
5056 stcb->asoc.strmout[sid].abandoned_unsent[0]++;
5057#if defined(SCTP_DETAILED_STR_STATS)
5059#endif
5060 }
5061 do {
5062 ret_sz += tp1->book_size;
5063 if (tp1->data != NULL) {
5064 if (tp1->sent < SCTP_DATAGRAM_RESEND) {
5066 sctp_total_flight_decrease(stcb, tp1);
5067 }
5068 sctp_free_bufspace(stcb, &stcb->asoc, tp1, 1);
5069 stcb->asoc.peers_rwnd += tp1->send_size;
5070 stcb->asoc.peers_rwnd += SCTP_BASE_SYSCTL(sctp_peer_chunk_oh);
5071 if (sent) {
5072 sctp_ulp_notify(SCTP_NOTIFY_SENT_DG_FAIL, stcb, 0, tp1, so_locked);
5073 } else {
5074 sctp_ulp_notify(SCTP_NOTIFY_UNSENT_DG_FAIL, stcb, 0, tp1, so_locked);
5075 }
5076 if (tp1->data) {
5077 sctp_m_freem(tp1->data);
5078 tp1->data = NULL;
5079 }
5080 do_wakeup_routine = 1;
5081 if (PR_SCTP_BUF_ENABLED(tp1->flags)) {
5083 }
5084 }
5086 if ((tp1->rec.data.rcv_flags & SCTP_DATA_NOT_FRAG) ==
5088 /* not frag'ed we ae done */
5089 notdone = 0;
5090 foundeom = 1;
5091 } else if (tp1->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) {
5092 /* end of frag, we are done */
5093 notdone = 0;
5094 foundeom = 1;
5095 } else {
5096 /*
5097 * Its a begin or middle piece, we must mark all of
5098 * it
5099 */
5100 notdone = 1;
5101 tp1 = TAILQ_NEXT(tp1, sctp_next);
5102 }
5103 } while (tp1 && notdone);
5104 if (foundeom == 0) {
5105 /*
5106 * The multi-part message was scattered across the send and
5107 * sent queue.
5108 */
5109 TAILQ_FOREACH_SAFE(tp1, &stcb->asoc.send_queue, sctp_next, tp2) {
5110 if ((tp1->rec.data.sid != sid) ||
5111 (!SCTP_MID_EQ(stcb->asoc.idata_supported, tp1->rec.data.mid, mid))) {
5112 break;
5113 }
5114 /*
5115 * save to chk in case we have some on stream out
5116 * queue. If so and we have an un-transmitted one we
5117 * don't have to fudge the TSN.
5118 */
5119 chk = tp1;
5120 ret_sz += tp1->book_size;
5121 sctp_free_bufspace(stcb, &stcb->asoc, tp1, 1);
5122 if (sent) {
5123 sctp_ulp_notify(SCTP_NOTIFY_SENT_DG_FAIL, stcb, 0, tp1, so_locked);
5124 } else {
5125 sctp_ulp_notify(SCTP_NOTIFY_UNSENT_DG_FAIL, stcb, 0, tp1, so_locked);
5126 }
5127 if (tp1->data) {
5128 sctp_m_freem(tp1->data);
5129 tp1->data = NULL;
5130 }
5131 /* No flight involved here book the size to 0 */
5132 tp1->book_size = 0;
5134 foundeom = 1;
5135 }
5136 do_wakeup_routine = 1;
5138 TAILQ_REMOVE(&stcb->asoc.send_queue, tp1, sctp_next);
5139 /*
5140 * on to the sent queue so we can wait for it to be
5141 * passed by.
5142 */
5143 TAILQ_INSERT_TAIL(&stcb->asoc.sent_queue, tp1,
5144 sctp_next);
5145 stcb->asoc.send_queue_cnt--;
5146 stcb->asoc.sent_queue_cnt++;
5147 }
5148 }
5149 if (foundeom == 0) {
5150 /*
5151 * Still no eom found. That means there is stuff left on the
5152 * stream out queue.. yuck.
5153 */
5154 SCTP_TCB_SEND_LOCK(stcb);
5155 strq = &stcb->asoc.strmout[sid];
5156 sp = TAILQ_FIRST(&strq->outqueue);
5157 if (sp != NULL) {
5158 sp->discard_rest = 1;
5159 /*
5160 * We may need to put a chunk on the queue that
5161 * holds the TSN that would have been sent with the
5162 * LAST bit.
5163 */
5164 if (chk == NULL) {
5165 /* Yep, we have to */
5166 sctp_alloc_a_chunk(stcb, chk);
5167 if (chk == NULL) {
5168 /*
5169 * we are hosed. All we can do is
5170 * nothing.. which will cause an
5171 * abort if the peer is paying
5172 * attention.
5173 */
5174 goto oh_well;
5175 }
5176 memset(chk, 0, sizeof(*chk));
5177 chk->rec.data.rcv_flags = 0;
5179 chk->asoc = &stcb->asoc;
5180 if (stcb->asoc.idata_supported == 0) {
5181 if (sp->sinfo_flags & SCTP_UNORDERED) {
5182 chk->rec.data.mid = 0;
5183 } else {
5184 chk->rec.data.mid = strq->next_mid_ordered;
5185 }
5186 } else {
5187 if (sp->sinfo_flags & SCTP_UNORDERED) {
5188 chk->rec.data.mid = strq->next_mid_unordered;
5189 } else {
5190 chk->rec.data.mid = strq->next_mid_ordered;
5191 }
5192 }
5193 chk->rec.data.sid = sp->sid;
5194 chk->rec.data.ppid = sp->ppid;
5195 chk->rec.data.context = sp->context;
5196 chk->flags = sp->act_flags;
5197 chk->whoTo = NULL;
5198 chk->rec.data.tsn = atomic_fetchadd_int(&stcb->asoc.sending_seq, 1);
5199 strq->chunks_on_queues++;
5200 TAILQ_INSERT_TAIL(&stcb->asoc.sent_queue, chk, sctp_next);
5201 stcb->asoc.sent_queue_cnt++;
5202 stcb->asoc.pr_sctp_cnt++;
5203 }
5205 if (sp->sinfo_flags & SCTP_UNORDERED) {
5207 }
5208 if (stcb->asoc.idata_supported == 0) {
5209 if ((sp->sinfo_flags & SCTP_UNORDERED) == 0) {
5210 strq->next_mid_ordered++;
5211 }
5212 } else {
5213 if (sp->sinfo_flags & SCTP_UNORDERED) {
5214 strq->next_mid_unordered++;
5215 } else {
5216 strq->next_mid_ordered++;
5217 }
5218 }
5219 oh_well:
5220 if (sp->data) {
5221 /*
5222 * Pull any data to free up the SB and allow
5223 * sender to "add more" while we will throw
5224 * away :-)
5225 */
5226 sctp_free_spbufspace(stcb, &stcb->asoc, sp);
5227 ret_sz += sp->length;
5228 do_wakeup_routine = 1;
5229 sp->some_taken = 1;
5230 sctp_m_freem(sp->data);
5231 sp->data = NULL;
5232 sp->tail_mbuf = NULL;
5233 sp->length = 0;
5234 }
5235 }
5237 }
5238 if (do_wakeup_routine) {
5239 sctp_sowwakeup(stcb->sctp_ep, stcb->sctp_socket);
5240 }
5241 return (ret_sz);
5242}
5243
5244/*
5245 * checks to see if the given address, sa, is one that is currently known by
5246 * the kernel note: can't distinguish the same address on multiple interfaces
5247 * and doesn't handle multiple addresses with different zone/scope id's note:
5248 * ifa_ifwithaddr() compares the entire sockaddr struct
5249 */
5250struct sctp_ifa *
5251sctp_find_ifa_in_ep(struct sctp_inpcb *inp, struct sockaddr *addr,
5252 int holds_lock)
5253{
5254 struct sctp_laddr *laddr;
5255
5256 if (holds_lock == 0) {
5257 SCTP_INP_RLOCK(inp);
5258 }
5259
5260 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
5261 if (laddr->ifa == NULL)
5262 continue;
5263 if (addr->sa_family != laddr->ifa->address.sa.sa_family)
5264 continue;
5265#ifdef INET
5266 if (addr->sa_family == AF_INET) {
5267 if (((struct sockaddr_in *)addr)->sin_addr.s_addr ==
5268 laddr->ifa->address.sin.sin_addr.s_addr) {
5269 /* found him. */
5270 break;
5271 }
5272 }
5273#endif
5274#ifdef INET6
5275 if (addr->sa_family == AF_INET6) {
5276 if (SCTP6_ARE_ADDR_EQUAL((struct sockaddr_in6 *)addr,
5277 &laddr->ifa->address.sin6)) {
5278 /* found him. */
5279 break;
5280 }
5281 }
5282#endif
5283 }
5284 if (holds_lock == 0) {
5285 SCTP_INP_RUNLOCK(inp);
5286 }
5287 if (laddr != NULL) {
5288 return (laddr->ifa);
5289 } else {
5290 return (NULL);
5291 }
5292}
5293
5295sctp_get_ifa_hash_val(struct sockaddr *addr)
5296{
5297 switch (addr->sa_family) {
5298#ifdef INET
5299 case AF_INET:
5300 {
5301 struct sockaddr_in *sin;
5302
5303 sin = (struct sockaddr_in *)addr;
5304 return (sin->sin_addr.s_addr ^ (sin->sin_addr.s_addr >> 16));
5305 }
5306#endif
5307#ifdef INET6
5308 case AF_INET6:
5309 {
5310 struct sockaddr_in6 *sin6;
5311 uint32_t hash_of_addr;
5312
5313 sin6 = (struct sockaddr_in6 *)addr;
5314 hash_of_addr = (sin6->sin6_addr.s6_addr32[0] +
5315 sin6->sin6_addr.s6_addr32[1] +
5316 sin6->sin6_addr.s6_addr32[2] +
5317 sin6->sin6_addr.s6_addr32[3]);
5318 hash_of_addr = (hash_of_addr ^ (hash_of_addr >> 16));
5319 return (hash_of_addr);
5320 }
5321#endif
5322 default:
5323 break;
5324 }
5325 return (0);
5326}
5327
5328struct sctp_ifa *
5329sctp_find_ifa_by_addr(struct sockaddr *addr, uint32_t vrf_id, int holds_lock)
5330{
5331 struct sctp_ifa *sctp_ifap;
5332 struct sctp_vrf *vrf;
5333 struct sctp_ifalist *hash_head;
5334 uint32_t hash_of_addr;
5335
5336 if (holds_lock == 0) {
5338 } else {
5340 }
5341
5342 vrf = sctp_find_vrf(vrf_id);
5343 if (vrf == NULL) {
5344 if (holds_lock == 0)
5346 return (NULL);
5347 }
5348
5349 hash_of_addr = sctp_get_ifa_hash_val(addr);
5350
5351 hash_head = &vrf->vrf_addr_hash[(hash_of_addr & vrf->vrf_addr_hashmark)];
5352 if (hash_head == NULL) {
5353 SCTP_PRINTF("hash_of_addr:%x mask:%x table:%x - ",
5354 hash_of_addr, (uint32_t)vrf->vrf_addr_hashmark,
5355 (uint32_t)(hash_of_addr & vrf->vrf_addr_hashmark));
5356 sctp_print_address(addr);
5357 SCTP_PRINTF("No such bucket for address\n");
5358 if (holds_lock == 0)
5360
5361 return (NULL);
5362 }
5363 LIST_FOREACH(sctp_ifap, hash_head, next_bucket) {
5364 if (addr->sa_family != sctp_ifap->address.sa.sa_family)
5365 continue;
5366#ifdef INET
5367 if (addr->sa_family == AF_INET) {
5368 if (((struct sockaddr_in *)addr)->sin_addr.s_addr ==
5369 sctp_ifap->address.sin.sin_addr.s_addr) {
5370 /* found him. */
5371 break;
5372 }
5373 }
5374#endif
5375#ifdef INET6
5376 if (addr->sa_family == AF_INET6) {
5377 if (SCTP6_ARE_ADDR_EQUAL((struct sockaddr_in6 *)addr,
5378 &sctp_ifap->address.sin6)) {
5379 /* found him. */
5380 break;
5381 }
5382 }
5383#endif
5384 }
5385 if (holds_lock == 0)
5387 return (sctp_ifap);
5388}
5389
5390static void
5391sctp_user_rcvd(struct sctp_tcb *stcb, uint32_t *freed_so_far, int hold_rlock,
5392 uint32_t rwnd_req)
5393{
5394 /* User pulled some data, do we need a rwnd update? */
5395 struct epoch_tracker et;
5396 int r_unlocked = 0;
5397 uint32_t dif, rwnd;
5398 struct socket *so = NULL;
5399
5400 if (stcb == NULL)
5401 return;
5402
5403 atomic_add_int(&stcb->asoc.refcnt, 1);
5404
5407 /* Pre-check If we are freeing no update */
5408 goto no_lock;
5409 }
5413 goto out;
5414 }
5415 so = stcb->sctp_socket;
5416 if (so == NULL) {
5417 goto out;
5418 }
5419 atomic_add_int(&stcb->freed_by_sorcv_sincelast, *freed_so_far);
5420 /* Have you have freed enough to look */
5421 *freed_so_far = 0;
5422 /* Yep, its worth a look and the lock overhead */
5423
5424 /* Figure out what the rwnd would be */
5425 rwnd = sctp_calc_rwnd(stcb, &stcb->asoc);
5426 if (rwnd >= stcb->asoc.my_last_reported_rwnd) {
5427 dif = rwnd - stcb->asoc.my_last_reported_rwnd;
5428 } else {
5429 dif = 0;
5430 }
5431 if (dif >= rwnd_req) {
5432 if (hold_rlock) {
5434 r_unlocked = 1;
5435 }
5437 /*
5438 * One last check before we allow the guy possibly
5439 * to get in. There is a race, where the guy has not
5440 * reached the gate. In that case
5441 */
5442 goto out;
5443 }
5444 SCTP_TCB_LOCK(stcb);
5446 /* No reports here */
5447 SCTP_TCB_UNLOCK(stcb);
5448 goto out;
5449 }
5450 SCTP_STAT_INCR(sctps_wu_sacks_sent);
5451 NET_EPOCH_ENTER(et);
5453
5454 sctp_chunk_output(stcb->sctp_ep, stcb,
5456 /* make sure no timer is running */
5457 NET_EPOCH_EXIT(et);
5458 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, NULL,
5460 SCTP_TCB_UNLOCK(stcb);
5461 } else {
5462 /* Update how much we have pending */
5463 stcb->freed_by_sorcv_sincelast = dif;
5464 }
5465out:
5466 if (so && r_unlocked && hold_rlock) {
5468 }
5469
5471no_lock:
5472 atomic_subtract_int(&stcb->asoc.refcnt, 1);
5473 return;
5474}
5475
5476int
5477sctp_sorecvmsg(struct socket *so,
5478 struct uio *uio,
5479 struct mbuf **mp,
5480 struct sockaddr *from,
5481 int fromlen,
5482 int *msg_flags,
5483 struct sctp_sndrcvinfo *sinfo,
5484 int filling_sinfo)
5485{
5486 /*
5487 * MSG flags we will look at MSG_DONTWAIT - non-blocking IO.
5488 * MSG_PEEK - Look don't touch :-D (only valid with OUT mbuf copy
5489 * mp=NULL thus uio is the copy method to userland) MSG_WAITALL - ??
5490 * On the way out we may send out any combination of:
5491 * MSG_NOTIFICATION MSG_EOR
5492 *
5493 */
5494 struct sctp_inpcb *inp = NULL;
5495 ssize_t my_len = 0;
5496 ssize_t cp_len = 0;
5497 int error = 0;
5498 struct sctp_queued_to_read *control = NULL, *ctl = NULL, *nxt = NULL;
5499 struct mbuf *m = NULL;
5500 struct sctp_tcb *stcb = NULL;
5501 int wakeup_read_socket = 0;
5502 int freecnt_applied = 0;
5503 int out_flags = 0, in_flags = 0;
5504 int block_allowed = 1;
5505 uint32_t freed_so_far = 0;
5506 ssize_t copied_so_far = 0;
5507 int in_eeor_mode = 0;
5508 int no_rcv_needed = 0;
5509 uint32_t rwnd_req = 0;
5510 int hold_sblock = 0;
5511 int hold_rlock = 0;
5512 ssize_t slen = 0;
5513 uint32_t held_length = 0;
5514 int sockbuf_lock = 0;
5515
5516 if (uio == NULL) {
5517 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
5518 return (EINVAL);
5519 }
5520
5521 if (msg_flags) {
5522 in_flags = *msg_flags;
5523 if (in_flags & MSG_PEEK)
5524 SCTP_STAT_INCR(sctps_read_peeks);
5525 } else {
5526 in_flags = 0;
5527 }
5528 slen = uio->uio_resid;
5529
5530 /* Pull in and set up our int flags */
5531 if (in_flags & MSG_OOB) {
5532 /* Out of band's NOT supported */
5533 return (EOPNOTSUPP);
5534 }
5535 if ((in_flags & MSG_PEEK) && (mp != NULL)) {
5536 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
5537 return (EINVAL);
5538 }
5539 if ((in_flags & (MSG_DONTWAIT
5540 | MSG_NBIO
5541 )) ||
5542 SCTP_SO_IS_NBIO(so)) {
5543 block_allowed = 0;
5544 }
5545 /* setup the endpoint */
5546 inp = (struct sctp_inpcb *)so->so_pcb;
5547 if (inp == NULL) {
5548 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTPUTIL, EFAULT);
5549 return (EFAULT);
5550 }
5551 rwnd_req = (SCTP_SB_LIMIT_RCV(so) >> SCTP_RWND_HIWAT_SHIFT);
5552 /* Must be at least a MTU's worth */
5553 if (rwnd_req < SCTP_MIN_RWND)
5554 rwnd_req = SCTP_MIN_RWND;
5556 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_RECV_RWND_LOGGING_ENABLE) {
5558 rwnd_req, in_eeor_mode, so->so_rcv.sb_cc, (uint32_t)uio->uio_resid);
5559 }
5560 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_RECV_RWND_LOGGING_ENABLE) {
5562 rwnd_req, block_allowed, so->so_rcv.sb_cc, (uint32_t)uio->uio_resid);
5563 }
5564
5565 error = SOCK_IO_RECV_LOCK(so, SBLOCKWAIT(in_flags));
5566 if (error) {
5567 goto release_unlocked;
5568 }
5569 sockbuf_lock = 1;
5570restart:
5571
5572restart_nosblocks:
5573 if (hold_sblock == 0) {
5574 SOCKBUF_LOCK(&so->so_rcv);
5575 hold_sblock = 1;
5576 }
5577 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
5578 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
5579 goto out;
5580 }
5581 if ((so->so_rcv.sb_state & SBS_CANTRCVMORE) && (so->so_rcv.sb_cc == 0)) {
5582 if (so->so_error) {
5583 error = so->so_error;
5584 if ((in_flags & MSG_PEEK) == 0)
5585 so->so_error = 0;
5586 goto out;
5587 } else {
5588 if (so->so_rcv.sb_cc == 0) {
5589 /* indicate EOF */
5590 error = 0;
5591 goto out;
5592 }
5593 }
5594 }
5595 if (so->so_rcv.sb_cc <= held_length) {
5596 if (so->so_error) {
5597 error = so->so_error;
5598 if ((in_flags & MSG_PEEK) == 0) {
5599 so->so_error = 0;
5600 }
5601 goto out;
5602 }
5603 if ((so->so_rcv.sb_cc == 0) &&
5604 ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
5605 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
5606 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) == 0) {
5607 /*
5608 * For active open side clear flags for
5609 * re-use passive open is blocked by
5610 * connect.
5611 */
5612 if (inp->sctp_flags & SCTP_PCB_FLAGS_WAS_ABORTED) {
5613 /*
5614 * You were aborted, passive side
5615 * always hits here
5616 */
5617 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, ECONNRESET);
5618 error = ECONNRESET;
5619 }
5620 so->so_state &= ~(SS_ISCONNECTING |
5621 SS_ISDISCONNECTING |
5622 SS_ISCONFIRMING |
5623 SS_ISCONNECTED);
5624 if (error == 0) {
5625 if ((inp->sctp_flags & SCTP_PCB_FLAGS_WAS_CONNECTED) == 0) {
5626 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, ENOTCONN);
5627 error = ENOTCONN;
5628 }
5629 }
5630 goto out;
5631 }
5632 }
5633 if (block_allowed) {
5634 error = sbwait(&so->so_rcv);
5635 if (error) {
5636 goto out;
5637 }
5638 held_length = 0;
5639 goto restart_nosblocks;
5640 } else {
5641 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EWOULDBLOCK);
5642 error = EWOULDBLOCK;
5643 goto out;
5644 }
5645 }
5646 if (hold_sblock == 1) {
5647 SOCKBUF_UNLOCK(&so->so_rcv);
5648 hold_sblock = 0;
5649 }
5650 /* we possibly have data we can read */
5651 /* sa_ignore FREED_MEMORY */
5652 control = TAILQ_FIRST(&inp->read_queue);
5653 if (control == NULL) {
5654 /*
5655 * This could be happening since the appender did the
5656 * increment but as not yet did the tailq insert onto the
5657 * read_queue
5658 */
5659 if (hold_rlock == 0) {
5661 }
5662 control = TAILQ_FIRST(&inp->read_queue);
5663 if ((control == NULL) && (so->so_rcv.sb_cc != 0)) {
5664#ifdef INVARIANTS
5665 panic("Huh, its non zero and nothing on control?");
5666#endif
5667 so->so_rcv.sb_cc = 0;
5668 }
5670 hold_rlock = 0;
5671 goto restart;
5672 }
5673
5674 if ((control->length == 0) &&
5675 (control->do_not_ref_stcb)) {
5676 /*
5677 * Clean up code for freeing assoc that left behind a
5678 * pdapi.. maybe a peer in EEOR that just closed after
5679 * sending and never indicated a EOR.
5680 */
5681 if (hold_rlock == 0) {
5682 hold_rlock = 1;
5684 }
5685 control->held_length = 0;
5686 if (control->data) {
5687 /* Hmm there is data here .. fix */
5688 struct mbuf *m_tmp;
5689 int cnt = 0;
5690
5691 m_tmp = control->data;
5692 while (m_tmp) {
5693 cnt += SCTP_BUF_LEN(m_tmp);
5694 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5695 control->tail_mbuf = m_tmp;
5696 control->end_added = 1;
5697 }
5698 m_tmp = SCTP_BUF_NEXT(m_tmp);
5699 }
5700 control->length = cnt;
5701 } else {
5702 /* remove it */
5703 TAILQ_REMOVE(&inp->read_queue, control, next);
5704 /* Add back any hiddend data */
5706 sctp_free_a_readq(stcb, control);
5707 }
5708 if (hold_rlock) {
5709 hold_rlock = 0;
5711 }
5712 goto restart;
5713 }
5714 if ((control->length == 0) &&
5715 (control->end_added == 1)) {
5716 /*
5717 * Do we also need to check for (control->pdapi_aborted ==
5718 * 1)?
5719 */
5720 if (hold_rlock == 0) {
5721 hold_rlock = 1;
5722 SCTP_INP_READ_LOCK(inp);
5723 }
5724 TAILQ_REMOVE(&inp->read_queue, control, next);
5725 if (control->data) {
5726#ifdef INVARIANTS
5727 panic("control->data not null but control->length == 0");
5728#else
5729 SCTP_PRINTF("Strange, data left in the control buffer. Cleaning up.\n");
5730 sctp_m_freem(control->data);
5731 control->data = NULL;
5732#endif
5733 }
5734 if (control->aux_data) {
5735 sctp_m_free(control->aux_data);
5736 control->aux_data = NULL;
5737 }
5738#ifdef INVARIANTS
5739 if (control->on_strm_q) {
5740 panic("About to free ctl:%p so:%p and its in %d",
5741 control, so, control->on_strm_q);
5742 }
5743#endif
5745 sctp_free_a_readq(stcb, control);
5746 if (hold_rlock) {
5747 hold_rlock = 0;
5749 }
5750 goto restart;
5751 }
5752 if (control->length == 0) {
5754 (filling_sinfo)) {
5755 /* find a more suitable one then this */
5756 ctl = TAILQ_NEXT(control, next);
5757 while (ctl) {
5758 if ((ctl->stcb != control->stcb) && (ctl->length) &&
5759 (ctl->some_taken ||
5760 (ctl->spec_flags & M_NOTIFICATION) ||
5761 ((ctl->do_not_ref_stcb == 0) &&
5762 (ctl->stcb->asoc.strmin[ctl->sinfo_stream].delivery_started == 0)))
5763 ) {
5764 /*-
5765 * If we have a different TCB next, and there is data
5766 * present. If we have already taken some (pdapi), OR we can
5767 * ref the tcb and no delivery as started on this stream, we
5768 * take it. Note we allow a notification on a different
5769 * assoc to be delivered..
5770 */
5771 control = ctl;
5772 goto found_one;
5774 (ctl->length) &&
5775 ((ctl->some_taken) ||
5776 ((ctl->do_not_ref_stcb == 0) &&
5777 ((ctl->spec_flags & M_NOTIFICATION) == 0) &&
5778 (ctl->stcb->asoc.strmin[ctl->sinfo_stream].delivery_started == 0)))) {
5779 /*-
5780 * If we have the same tcb, and there is data present, and we
5781 * have the strm interleave feature present. Then if we have
5782 * taken some (pdapi) or we can refer to tht tcb AND we have
5783 * not started a delivery for this stream, we can take it.
5784 * Note we do NOT allow a notificaiton on the same assoc to
5785 * be delivered.
5786 */
5787 control = ctl;
5788 goto found_one;
5789 }
5790 ctl = TAILQ_NEXT(ctl, next);
5791 }
5792 }
5793 /*
5794 * if we reach here, not suitable replacement is available
5795 * <or> fragment interleave is NOT on. So stuff the sb_cc
5796 * into the our held count, and its time to sleep again.
5797 */
5798 held_length = so->so_rcv.sb_cc;
5799 control->held_length = so->so_rcv.sb_cc;
5800 goto restart;
5801 }
5802 /* Clear the held length since there is something to read */
5803 control->held_length = 0;
5804found_one:
5805 /*
5806 * If we reach here, control has a some data for us to read off.
5807 * Note that stcb COULD be NULL.
5808 */
5809 if (hold_rlock == 0) {
5810 hold_rlock = 1;
5811 SCTP_INP_READ_LOCK(inp);
5812 }
5813 control->some_taken++;
5814 stcb = control->stcb;
5815 if (stcb) {
5816 if ((control->do_not_ref_stcb == 0) &&
5818 if (freecnt_applied == 0)
5819 stcb = NULL;
5820 } else if (control->do_not_ref_stcb == 0) {
5821 /* you can't free it on me please */
5822 /*
5823 * The lock on the socket buffer protects us so the
5824 * free code will stop. But since we used the
5825 * socketbuf lock and the sender uses the tcb_lock
5826 * to increment, we need to use the atomic add to
5827 * the refcnt
5828 */
5829 if (freecnt_applied) {
5830#ifdef INVARIANTS
5831 panic("refcnt already incremented");
5832#else
5833 SCTP_PRINTF("refcnt already incremented?\n");
5834#endif
5835 } else {
5836 atomic_add_int(&stcb->asoc.refcnt, 1);
5837 freecnt_applied = 1;
5838 }
5839 /*
5840 * Setup to remember how much we have not yet told
5841 * the peer our rwnd has opened up. Note we grab the
5842 * value from the tcb from last time. Note too that
5843 * sack sending clears this when a sack is sent,
5844 * which is fine. Once we hit the rwnd_req, we then
5845 * will go to the sctp_user_rcvd() that will not
5846 * lock until it KNOWs it MUST send a WUP-SACK.
5847 */
5848 freed_so_far = (uint32_t)stcb->freed_by_sorcv_sincelast;
5849 stcb->freed_by_sorcv_sincelast = 0;
5850 }
5851 }
5852 if (stcb &&
5853 ((control->spec_flags & M_NOTIFICATION) == 0) &&
5854 control->do_not_ref_stcb == 0) {
5855 stcb->asoc.strmin[control->sinfo_stream].delivery_started = 1;
5856 }
5857
5858 /* First lets get off the sinfo and sockaddr info */
5859 if ((sinfo != NULL) && (filling_sinfo != 0)) {
5860 sinfo->sinfo_stream = control->sinfo_stream;
5861 sinfo->sinfo_ssn = (uint16_t)control->mid;
5862 sinfo->sinfo_flags = control->sinfo_flags;
5863 sinfo->sinfo_ppid = control->sinfo_ppid;
5864 sinfo->sinfo_context = control->sinfo_context;
5865 sinfo->sinfo_timetolive = control->sinfo_timetolive;
5866 sinfo->sinfo_tsn = control->sinfo_tsn;
5867 sinfo->sinfo_cumtsn = control->sinfo_cumtsn;
5868 sinfo->sinfo_assoc_id = control->sinfo_assoc_id;
5869 nxt = TAILQ_NEXT(control, next);
5872 struct sctp_extrcvinfo *s_extra;
5873
5874 s_extra = (struct sctp_extrcvinfo *)sinfo;
5875 if ((nxt) &&
5876 (nxt->length)) {
5878 if (nxt->sinfo_flags & SCTP_UNORDERED) {
5880 }
5881 if (nxt->spec_flags & M_NOTIFICATION) {
5883 }
5884 s_extra->serinfo_next_aid = nxt->sinfo_assoc_id;
5885 s_extra->serinfo_next_length = nxt->length;
5886 s_extra->serinfo_next_ppid = nxt->sinfo_ppid;
5887 s_extra->serinfo_next_stream = nxt->sinfo_stream;
5888 if (nxt->tail_mbuf != NULL) {
5889 if (nxt->end_added) {
5891 }
5892 }
5893 } else {
5894 /*
5895 * we explicitly 0 this, since the memcpy
5896 * got some other things beyond the older
5897 * sinfo_ that is on the control's structure
5898 * :-D
5899 */
5900 nxt = NULL;
5902 s_extra->serinfo_next_aid = 0;
5903 s_extra->serinfo_next_length = 0;
5904 s_extra->serinfo_next_ppid = 0;
5905 s_extra->serinfo_next_stream = 0;
5906 }
5907 }
5908 /*
5909 * update off the real current cum-ack, if we have an stcb.
5910 */
5911 if ((control->do_not_ref_stcb == 0) && stcb)
5912 sinfo->sinfo_cumtsn = stcb->asoc.cumulative_tsn;
5913 /*
5914 * mask off the high bits, we keep the actual chunk bits in
5915 * there.
5916 */
5917 sinfo->sinfo_flags &= 0x00ff;
5918 if ((control->sinfo_flags >> 8) & SCTP_DATA_UNORDERED) {
5919 sinfo->sinfo_flags |= SCTP_UNORDERED;
5920 }
5921 }
5922#ifdef SCTP_ASOCLOG_OF_TSNS
5923 {
5924 int index, newindex;
5925 struct sctp_pcbtsn_rlog *entry;
5926
5927 do {
5928 index = inp->readlog_index;
5929 newindex = index + 1;
5930 if (newindex >= SCTP_READ_LOG_SIZE) {
5931 newindex = 0;
5932 }
5933 } while (atomic_cmpset_int(&inp->readlog_index, index, newindex) == 0);
5934 entry = &inp->readlog[index];
5935 entry->vtag = control->sinfo_assoc_id;
5936 entry->strm = control->sinfo_stream;
5937 entry->seq = (uint16_t)control->mid;
5938 entry->sz = control->length;
5939 entry->flgs = control->sinfo_flags;
5940 }
5941#endif
5942 if ((fromlen > 0) && (from != NULL)) {
5943 union sctp_sockstore store;
5944 size_t len;
5945
5946 switch (control->whoFrom->ro._l_addr.sa.sa_family) {
5947#ifdef INET6
5948 case AF_INET6:
5949 len = sizeof(struct sockaddr_in6);
5950 store.sin6 = control->whoFrom->ro._l_addr.sin6;
5951 store.sin6.sin6_port = control->port_from;
5952 break;
5953#endif
5954#ifdef INET
5955 case AF_INET:
5956#ifdef INET6
5958 len = sizeof(struct sockaddr_in6);
5959 in6_sin_2_v4mapsin6(&control->whoFrom->ro._l_addr.sin,
5960 &store.sin6);
5961 store.sin6.sin6_port = control->port_from;
5962 } else {
5963 len = sizeof(struct sockaddr_in);
5964 store.sin = control->whoFrom->ro._l_addr.sin;
5965 store.sin.sin_port = control->port_from;
5966 }
5967#else
5968 len = sizeof(struct sockaddr_in);
5969 store.sin = control->whoFrom->ro._l_addr.sin;
5970 store.sin.sin_port = control->port_from;
5971#endif
5972 break;
5973#endif
5974 default:
5975 len = 0;
5976 break;
5977 }
5978 memcpy(from, &store, min((size_t)fromlen, len));
5979#ifdef INET6
5980 {
5981 struct sockaddr_in6 lsa6, *from6;
5982
5983 from6 = (struct sockaddr_in6 *)from;
5984 sctp_recover_scope_mac(from6, (&lsa6));
5985 }
5986#endif
5987 }
5988 if (hold_rlock) {
5990 hold_rlock = 0;
5991 }
5992 if (hold_sblock) {
5993 SOCKBUF_UNLOCK(&so->so_rcv);
5994 hold_sblock = 0;
5995 }
5996 /* now copy out what data we can */
5997 if (mp == NULL) {
5998 /* copy out each mbuf in the chain up to length */
5999get_more_data:
6000 m = control->data;
6001 while (m) {
6002 /* Move out all we can */
6003 cp_len = uio->uio_resid;
6004 my_len = SCTP_BUF_LEN(m);
6005 if (cp_len > my_len) {
6006 /* not enough in this buf */
6007 cp_len = my_len;
6008 }
6009 if (hold_rlock) {
6011 hold_rlock = 0;
6012 }
6013 if (cp_len > 0)
6014 error = uiomove(mtod(m, char *), (int)cp_len, uio);
6015 /* re-read */
6017 goto release;
6018 }
6019
6020 if ((control->do_not_ref_stcb == 0) && stcb &&
6022 no_rcv_needed = 1;
6023 }
6024 if (error) {
6025 /* error we are out of here */
6026 goto release;
6027 }
6028 SCTP_INP_READ_LOCK(inp);
6029 hold_rlock = 1;
6030 if (cp_len == SCTP_BUF_LEN(m)) {
6031 if ((SCTP_BUF_NEXT(m) == NULL) &&
6032 (control->end_added)) {
6033 out_flags |= MSG_EOR;
6034 if ((control->do_not_ref_stcb == 0) &&
6035 (control->stcb != NULL) &&
6036 ((control->spec_flags & M_NOTIFICATION) == 0))
6037 control->stcb->asoc.strmin[control->sinfo_stream].delivery_started = 0;
6038 }
6039 if (control->spec_flags & M_NOTIFICATION) {
6040 out_flags |= MSG_NOTIFICATION;
6041 }
6042 /* we ate up the mbuf */
6043 if (in_flags & MSG_PEEK) {
6044 /* just looking */
6045 m = SCTP_BUF_NEXT(m);
6046 copied_so_far += cp_len;
6047 } else {
6048 /* dispose of the mbuf */
6049 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6050 sctp_sblog(&so->so_rcv,
6051 control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBFREE, SCTP_BUF_LEN(m));
6052 }
6053 sctp_sbfree(control, stcb, &so->so_rcv, m);
6054 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6055 sctp_sblog(&so->so_rcv,
6056 control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
6057 }
6058 copied_so_far += cp_len;
6059 freed_so_far += (uint32_t)cp_len;
6060 freed_so_far += MSIZE;
6061 atomic_subtract_int(&control->length, (int)cp_len);
6062 control->data = sctp_m_free(m);
6063 m = control->data;
6064 /*
6065 * been through it all, must hold sb
6066 * lock ok to null tail
6067 */
6068 if (control->data == NULL) {
6069#ifdef INVARIANTS
6070 if ((control->end_added == 0) ||
6071 (TAILQ_NEXT(control, next) == NULL)) {
6072 /*
6073 * If the end is not
6074 * added, OR the
6075 * next is NOT null
6076 * we MUST have the
6077 * lock.
6078 */
6079 if (mtx_owned(&inp->inp_rdata_mtx) == 0) {
6080 panic("Hmm we don't own the lock?");
6081 }
6082 }
6083#endif
6084 control->tail_mbuf = NULL;
6085#ifdef INVARIANTS
6086 if ((control->end_added) && ((out_flags & MSG_EOR) == 0)) {
6087 panic("end_added, nothing left and no MSG_EOR");
6088 }
6089#endif
6090 }
6091 }
6092 } else {
6093 /* Do we need to trim the mbuf? */
6094 if (control->spec_flags & M_NOTIFICATION) {
6095 out_flags |= MSG_NOTIFICATION;
6096 }
6097 if ((in_flags & MSG_PEEK) == 0) {
6098 SCTP_BUF_RESV_UF(m, cp_len);
6099 SCTP_BUF_LEN(m) -= (int)cp_len;
6100 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6101 sctp_sblog(&so->so_rcv, control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBFREE, (int)cp_len);
6102 }
6103 atomic_subtract_int(&so->so_rcv.sb_cc, (int)cp_len);
6104 if ((control->do_not_ref_stcb == 0) &&
6105 stcb) {
6106 atomic_subtract_int(&stcb->asoc.sb_cc, (int)cp_len);
6107 }
6108 copied_so_far += cp_len;
6109 freed_so_far += (uint32_t)cp_len;
6110 freed_so_far += MSIZE;
6111 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6112 sctp_sblog(&so->so_rcv, control->do_not_ref_stcb ? NULL : stcb,
6114 }
6115 atomic_subtract_int(&control->length, (int)cp_len);
6116 } else {
6117 copied_so_far += cp_len;
6118 }
6119 }
6120 if ((out_flags & MSG_EOR) || (uio->uio_resid == 0)) {
6121 break;
6122 }
6123 if (((stcb) && (in_flags & MSG_PEEK) == 0) &&
6124 (control->do_not_ref_stcb == 0) &&
6125 (freed_so_far >= rwnd_req)) {
6126 sctp_user_rcvd(stcb, &freed_so_far, hold_rlock, rwnd_req);
6127 }
6128 } /* end while(m) */
6129 /*
6130 * At this point we have looked at it all and we either have
6131 * a MSG_EOR/or read all the user wants... <OR>
6132 * control->length == 0.
6133 */
6134 if ((out_flags & MSG_EOR) && ((in_flags & MSG_PEEK) == 0)) {
6135 /* we are done with this control */
6136 if (control->length == 0) {
6137 if (control->data) {
6138#ifdef INVARIANTS
6139 panic("control->data not null at read eor?");
6140#else
6141 SCTP_PRINTF("Strange, data left in the control buffer .. invarients would panic?\n");
6142 sctp_m_freem(control->data);
6143 control->data = NULL;
6144#endif
6145 }
6146 done_with_control:
6147 if (hold_rlock == 0) {
6148 SCTP_INP_READ_LOCK(inp);
6149 hold_rlock = 1;
6150 }
6151 TAILQ_REMOVE(&inp->read_queue, control, next);
6152 /* Add back any hiddend data */
6153 if (control->held_length) {
6154 held_length = 0;
6155 control->held_length = 0;
6156 wakeup_read_socket = 1;
6157 }
6158 if (control->aux_data) {
6159 sctp_m_free(control->aux_data);
6160 control->aux_data = NULL;
6161 }
6162 no_rcv_needed = control->do_not_ref_stcb;
6164 control->data = NULL;
6165#ifdef INVARIANTS
6166 if (control->on_strm_q) {
6167 panic("About to free ctl:%p so:%p and its in %d",
6168 control, so, control->on_strm_q);
6169 }
6170#endif
6171 sctp_free_a_readq(stcb, control);
6172 control = NULL;
6173 if ((freed_so_far >= rwnd_req) &&
6174 (no_rcv_needed == 0))
6175 sctp_user_rcvd(stcb, &freed_so_far, hold_rlock, rwnd_req);
6176
6177 } else {
6178 /*
6179 * The user did not read all of this
6180 * message, turn off the returned MSG_EOR
6181 * since we are leaving more behind on the
6182 * control to read.
6183 */
6184#ifdef INVARIANTS
6185 if (control->end_added &&
6186 (control->data == NULL) &&
6187 (control->tail_mbuf == NULL)) {
6188 panic("Gak, control->length is corrupt?");
6189 }
6190#endif
6191 no_rcv_needed = control->do_not_ref_stcb;
6192 out_flags &= ~MSG_EOR;
6193 }
6194 }
6195 if (out_flags & MSG_EOR) {
6196 goto release;
6197 }
6198 if ((uio->uio_resid == 0) ||
6199 ((in_eeor_mode) &&
6200 (copied_so_far >= max(so->so_rcv.sb_lowat, 1)))) {
6201 goto release;
6202 }
6203 /*
6204 * If I hit here the receiver wants more and this message is
6205 * NOT done (pd-api). So two questions. Can we block? if not
6206 * we are done. Did the user NOT set MSG_WAITALL?
6207 */
6208 if (block_allowed == 0) {
6209 goto release;
6210 }
6211 /*
6212 * We need to wait for more data a few things: - We don't
6213 * release the I/O lock so we don't get someone else
6214 * reading. - We must be sure to account for the case where
6215 * what is added is NOT to our control when we wakeup.
6216 */
6217
6218 /*
6219 * Do we need to tell the transport a rwnd update might be
6220 * needed before we go to sleep?
6221 */
6222 if (((stcb) && (in_flags & MSG_PEEK) == 0) &&
6223 ((freed_so_far >= rwnd_req) &&
6224 (control->do_not_ref_stcb == 0) &&
6225 (no_rcv_needed == 0))) {
6226 sctp_user_rcvd(stcb, &freed_so_far, hold_rlock, rwnd_req);
6227 }
6228wait_some_more:
6229 if (so->so_rcv.sb_state & SBS_CANTRCVMORE) {
6230 goto release;
6231 }
6232
6234 goto release;
6235
6236 if (hold_rlock == 1) {
6238 hold_rlock = 0;
6239 }
6240 if (hold_sblock == 0) {
6241 SOCKBUF_LOCK(&so->so_rcv);
6242 hold_sblock = 1;
6243 }
6244 if ((copied_so_far) && (control->length == 0) &&
6246 goto release;
6247 }
6248 if (so->so_rcv.sb_cc <= control->held_length) {
6249 error = sbwait(&so->so_rcv);
6250 if (error) {
6251 goto release;
6252 }
6253 control->held_length = 0;
6254 }
6255 if (hold_sblock) {
6256 SOCKBUF_UNLOCK(&so->so_rcv);
6257 hold_sblock = 0;
6258 }
6259 if (control->length == 0) {
6260 /* still nothing here */
6261 if (control->end_added == 1) {
6262 /* he aborted, or is done i.e.did a shutdown */
6263 out_flags |= MSG_EOR;
6264 if (control->pdapi_aborted) {
6265 if ((control->do_not_ref_stcb == 0) && ((control->spec_flags & M_NOTIFICATION) == 0))
6266 control->stcb->asoc.strmin[control->sinfo_stream].delivery_started = 0;
6267
6268 out_flags |= MSG_TRUNC;
6269 } else {
6270 if ((control->do_not_ref_stcb == 0) && ((control->spec_flags & M_NOTIFICATION) == 0))
6271 control->stcb->asoc.strmin[control->sinfo_stream].delivery_started = 0;
6272 }
6273 goto done_with_control;
6274 }
6275 if (so->so_rcv.sb_cc > held_length) {
6276 control->held_length = so->so_rcv.sb_cc;
6277 held_length = 0;
6278 }
6279 goto wait_some_more;
6280 } else if (control->data == NULL) {
6281 /*
6282 * we must re-sync since data is probably being
6283 * added
6284 */
6285 SCTP_INP_READ_LOCK(inp);
6286 if ((control->length > 0) && (control->data == NULL)) {
6287 /*
6288 * big trouble.. we have the lock and its
6289 * corrupt?
6290 */
6291#ifdef INVARIANTS
6292 panic("Impossible data==NULL length !=0");
6293#endif
6294 out_flags |= MSG_EOR;
6295 out_flags |= MSG_TRUNC;
6296 control->length = 0;
6298 goto done_with_control;
6299 }
6301 /* We will fall around to get more data */
6302 }
6303 goto get_more_data;
6304 } else {
6305 /*-
6306 * Give caller back the mbuf chain,
6307 * store in uio_resid the length
6308 */
6309 wakeup_read_socket = 0;
6310 if ((control->end_added == 0) ||
6311 (TAILQ_NEXT(control, next) == NULL)) {
6312 /* Need to get rlock */
6313 if (hold_rlock == 0) {
6314 SCTP_INP_READ_LOCK(inp);
6315 hold_rlock = 1;
6316 }
6317 }
6318 if (control->end_added) {
6319 out_flags |= MSG_EOR;
6320 if ((control->do_not_ref_stcb == 0) &&
6321 (control->stcb != NULL) &&
6322 ((control->spec_flags & M_NOTIFICATION) == 0))
6323 control->stcb->asoc.strmin[control->sinfo_stream].delivery_started = 0;
6324 }
6325 if (control->spec_flags & M_NOTIFICATION) {
6326 out_flags |= MSG_NOTIFICATION;
6327 }
6328 uio->uio_resid = control->length;
6329 *mp = control->data;
6330 m = control->data;
6331 while (m) {
6332 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6333 sctp_sblog(&so->so_rcv,
6334 control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBFREE, SCTP_BUF_LEN(m));
6335 }
6336 sctp_sbfree(control, stcb, &so->so_rcv, m);
6337 freed_so_far += (uint32_t)SCTP_BUF_LEN(m);
6338 freed_so_far += MSIZE;
6339 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SB_LOGGING_ENABLE) {
6340 sctp_sblog(&so->so_rcv,
6341 control->do_not_ref_stcb ? NULL : stcb, SCTP_LOG_SBRESULT, 0);
6342 }
6343 m = SCTP_BUF_NEXT(m);
6344 }
6345 control->data = control->tail_mbuf = NULL;
6346 control->length = 0;
6347 if (out_flags & MSG_EOR) {
6348 /* Done with this control */
6349 goto done_with_control;
6350 }
6351 }
6352release:
6353 if (hold_rlock == 1) {
6355 hold_rlock = 0;
6356 }
6357 if (hold_sblock == 1) {
6358 SOCKBUF_UNLOCK(&so->so_rcv);
6359 hold_sblock = 0;
6360 }
6361
6362 SOCK_IO_RECV_UNLOCK(so);
6363 sockbuf_lock = 0;
6364
6365release_unlocked:
6366 if (hold_sblock) {
6367 SOCKBUF_UNLOCK(&so->so_rcv);
6368 hold_sblock = 0;
6369 }
6370 if ((stcb) && (in_flags & MSG_PEEK) == 0) {
6371 if ((freed_so_far >= rwnd_req) &&
6372 (control && (control->do_not_ref_stcb == 0)) &&
6373 (no_rcv_needed == 0))
6374 sctp_user_rcvd(stcb, &freed_so_far, hold_rlock, rwnd_req);
6375 }
6376out:
6377 if (msg_flags) {
6378 *msg_flags = out_flags;
6379 }
6380 if (((out_flags & MSG_EOR) == 0) &&
6381 ((in_flags & MSG_PEEK) == 0) &&
6382 (sinfo) &&
6385 struct sctp_extrcvinfo *s_extra;
6386
6387 s_extra = (struct sctp_extrcvinfo *)sinfo;
6389 }
6390 if (hold_rlock == 1) {
6392 }
6393 if (hold_sblock) {
6394 SOCKBUF_UNLOCK(&so->so_rcv);
6395 }
6396 if (sockbuf_lock) {
6397 SOCK_IO_RECV_UNLOCK(so);
6398 }
6399
6400 if (freecnt_applied) {
6401 /*
6402 * The lock on the socket buffer protects us so the free
6403 * code will stop. But since we used the socketbuf lock and
6404 * the sender uses the tcb_lock to increment, we need to use
6405 * the atomic add to the refcnt.
6406 */
6407 if (stcb == NULL) {
6408#ifdef INVARIANTS
6409 panic("stcb for refcnt has gone NULL?");
6410 goto stage_left;
6411#else
6412 goto stage_left;
6413#endif
6414 }
6415 /* Save the value back for next time */
6416 stcb->freed_by_sorcv_sincelast = freed_so_far;
6417 atomic_subtract_int(&stcb->asoc.refcnt, 1);
6418 }
6419 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_RECV_RWND_LOGGING_ENABLE) {
6420 if (stcb) {
6422 freed_so_far,
6423 (uint32_t)((uio) ? (slen - uio->uio_resid) : slen),
6424 stcb->asoc.my_rwnd,
6425 so->so_rcv.sb_cc);
6426 } else {
6428 freed_so_far,
6429 (uint32_t)((uio) ? (slen - uio->uio_resid) : slen),
6430 0,
6431 so->so_rcv.sb_cc);
6432 }
6433 }
6434stage_left:
6435 if (wakeup_read_socket) {
6436 sctp_sorwakeup(inp, so);
6437 }
6438 return (error);
6439}
6440
6441#ifdef SCTP_MBUF_LOGGING
6442struct mbuf *
6443sctp_m_free(struct mbuf *m)
6444{
6445 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6446 sctp_log_mb(m, SCTP_MBUF_IFREE);
6447 }
6448 return (m_free(m));
6449}
6450
6451void
6452sctp_m_freem(struct mbuf *mb)
6453{
6454 while (mb != NULL)
6455 mb = sctp_m_free(mb);
6456}
6457
6458#endif
6459
6460int
6461sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id)
6462{
6463 /*
6464 * Given a local address. For all associations that holds the
6465 * address, request a peer-set-primary.
6466 */
6467 struct sctp_ifa *ifa;
6468 struct sctp_laddr *wi;
6469
6471 if (ifa == NULL) {
6472 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTPUTIL, EADDRNOTAVAIL);
6473 return (EADDRNOTAVAIL);
6474 }
6475 /*
6476 * Now that we have the ifa we must awaken the iterator with this
6477 * message.
6478 */
6479 wi = SCTP_ZONE_GET(SCTP_BASE_INFO(ipi_zone_laddr), struct sctp_laddr);
6480 if (wi == NULL) {
6481 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTPUTIL, ENOMEM);
6482 return (ENOMEM);
6483 }
6484 /* Now incr the count and int wi structure */
6486 memset(wi, 0, sizeof(*wi));
6487 (void)SCTP_GETTIME_TIMEVAL(&wi->start_time);
6488 wi->ifa = ifa;
6490 atomic_add_int(&ifa->refcount, 1);
6491
6492 /* Now add it to the work queue */
6494 /*
6495 * Should this really be a tailq? As it is we will process the
6496 * newest first :-0
6497 */
6498 LIST_INSERT_HEAD(&SCTP_BASE_INFO(addr_wq), wi, sctp_nxt_addr);
6500 (struct sctp_inpcb *)NULL,
6501 (struct sctp_tcb *)NULL,
6502 (struct sctp_nets *)NULL);
6504 return (0);
6505}
6506
6507int
6508sctp_soreceive(struct socket *so,
6509 struct sockaddr **psa,
6510 struct uio *uio,
6511 struct mbuf **mp0,
6512 struct mbuf **controlp,
6513 int *flagsp)
6514{
6515 int error, fromlen;
6516 uint8_t sockbuf[256];
6517 struct sockaddr *from;
6518 struct sctp_extrcvinfo sinfo;
6519 int filling_sinfo = 1;
6520 int flags;
6521 struct sctp_inpcb *inp;
6522
6523 inp = (struct sctp_inpcb *)so->so_pcb;
6524 /* pickup the assoc we are reading from */
6525 if (inp == NULL) {
6526 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6527 return (EINVAL);
6528 }
6532 (controlp == NULL)) {
6533 /* user does not want the sndrcv ctl */
6534 filling_sinfo = 0;
6535 }
6536 if (psa) {
6537 from = (struct sockaddr *)sockbuf;
6538 fromlen = sizeof(sockbuf);
6539 from->sa_len = 0;
6540 } else {
6541 from = NULL;
6542 fromlen = 0;
6543 }
6544
6545 if (filling_sinfo) {
6546 memset(&sinfo, 0, sizeof(struct sctp_extrcvinfo));
6547 }
6548 if (flagsp != NULL) {
6549 flags = *flagsp;
6550 } else {
6551 flags = 0;
6552 }
6553 error = sctp_sorecvmsg(so, uio, mp0, from, fromlen, &flags,
6554 (struct sctp_sndrcvinfo *)&sinfo, filling_sinfo);
6555 if (flagsp != NULL) {
6556 *flagsp = flags;
6557 }
6558 if (controlp != NULL) {
6559 /* copy back the sinfo in a CMSG format */
6560 if (filling_sinfo && ((flags & MSG_NOTIFICATION) == 0)) {
6561 *controlp = sctp_build_ctl_nchunk(inp,
6562 (struct sctp_sndrcvinfo *)&sinfo);
6563 } else {
6564 *controlp = NULL;
6565 }
6566 }
6567 if (psa) {
6568 /* copy back the address info */
6569 if (from && from->sa_len) {
6570 *psa = sodupsockaddr(from, M_NOWAIT);
6571 } else {
6572 *psa = NULL;
6573 }
6574 }
6575 return (error);
6576}
6577
6578int
6579sctp_connectx_helper_add(struct sctp_tcb *stcb, struct sockaddr *addr,
6580 int totaddr, int *error)
6581{
6582 int added = 0;
6583 int i;
6584 struct sctp_inpcb *inp;
6585 struct sockaddr *sa;
6586 size_t incr = 0;
6587#ifdef INET
6588 struct sockaddr_in *sin;
6589#endif
6590#ifdef INET6
6591 struct sockaddr_in6 *sin6;
6592#endif
6593
6594 sa = addr;
6595 inp = stcb->sctp_ep;
6596 *error = 0;
6597 for (i = 0; i < totaddr; i++) {
6598 switch (sa->sa_family) {
6599#ifdef INET
6600 case AF_INET:
6601 incr = sizeof(struct sockaddr_in);
6602 sin = (struct sockaddr_in *)sa;
6603 if ((sin->sin_addr.s_addr == INADDR_ANY) ||
6604 (sin->sin_addr.s_addr == INADDR_BROADCAST) ||
6605 IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) {
6606 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6607 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
6609 *error = EINVAL;
6610 goto out_now;
6611 }
6612 if (sctp_add_remote_addr(stcb, sa, NULL, stcb->asoc.port,
6615 /* assoc gone no un-lock */
6616 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ENOBUFS);
6617 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
6619 *error = ENOBUFS;
6620 goto out_now;
6621 }
6622 added++;
6623 break;
6624#endif
6625#ifdef INET6
6626 case AF_INET6:
6627 incr = sizeof(struct sockaddr_in6);
6628 sin6 = (struct sockaddr_in6 *)sa;
6629 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr) ||
6630 IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) {
6631 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6632 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
6634 *error = EINVAL;
6635 goto out_now;
6636 }
6637 if (sctp_add_remote_addr(stcb, sa, NULL, stcb->asoc.port,
6640 /* assoc gone no un-lock */
6641 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTPUTIL, ENOBUFS);
6642 (void)sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
6644 *error = ENOBUFS;
6645 goto out_now;
6646 }
6647 added++;
6648 break;
6649#endif
6650 default:
6651 break;
6652 }
6653 sa = (struct sockaddr *)((caddr_t)sa + incr);
6654 }
6655out_now:
6656 return (added);
6657}
6658
6659int
6660sctp_connectx_helper_find(struct sctp_inpcb *inp, struct sockaddr *addr,
6661 unsigned int totaddr,
6662 unsigned int *num_v4, unsigned int *num_v6,
6663 unsigned int limit)
6664{
6665 struct sockaddr *sa;
6666 struct sctp_tcb *stcb;
6667 unsigned int incr, at, i;
6668
6669 at = 0;
6670 sa = addr;
6671 *num_v6 = *num_v4 = 0;
6672 /* account and validate addresses */
6673 if (totaddr == 0) {
6674 return (EINVAL);
6675 }
6676 for (i = 0; i < totaddr; i++) {
6677 if (at + sizeof(struct sockaddr) > limit) {
6678 return (EINVAL);
6679 }
6680 switch (sa->sa_family) {
6681#ifdef INET
6682 case AF_INET:
6683 incr = (unsigned int)sizeof(struct sockaddr_in);
6684 if (sa->sa_len != incr) {
6685 return (EINVAL);
6686 }
6687 (*num_v4) += 1;
6688 break;
6689#endif
6690#ifdef INET6
6691 case AF_INET6:
6692 {
6693 struct sockaddr_in6 *sin6;
6694
6695 incr = (unsigned int)sizeof(struct sockaddr_in6);
6696 if (sa->sa_len != incr) {
6697 return (EINVAL);
6698 }
6699 sin6 = (struct sockaddr_in6 *)sa;
6700 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
6701 /* Must be non-mapped for connectx */
6702 return (EINVAL);
6703 }
6704 (*num_v6) += 1;
6705 break;
6706 }
6707#endif
6708 default:
6709 return (EINVAL);
6710 }
6711 if ((at + incr) > limit) {
6712 return (EINVAL);
6713 }
6714 SCTP_INP_INCR_REF(inp);
6715 stcb = sctp_findassociation_ep_addr(&inp, sa, NULL, NULL, NULL);
6716 if (stcb != NULL) {
6717 SCTP_TCB_UNLOCK(stcb);
6718 return (EALREADY);
6719 } else {
6720 SCTP_INP_DECR_REF(inp);
6721 }
6722 at += incr;
6723 sa = (struct sockaddr *)((caddr_t)sa + incr);
6724 }
6725 return (0);
6726}
6727
6728/*
6729 * sctp_bindx(ADD) for one address.
6730 * assumes all arguments are valid/checked by caller.
6731 */
6732void
6733sctp_bindx_add_address(struct socket *so, struct sctp_inpcb *inp,
6734 struct sockaddr *sa, uint32_t vrf_id, int *error,
6735 void *p)
6736{
6737#if defined(INET) && defined(INET6)
6738 struct sockaddr_in sin;
6739#endif
6740#ifdef INET6
6741 struct sockaddr_in6 *sin6;
6742#endif
6743#ifdef INET
6744 struct sockaddr_in *sinp;
6745#endif
6746 struct sockaddr *addr_to_use;
6747 struct sctp_inpcb *lep;
6748 uint16_t port;
6749
6750 /* see if we're bound all already! */
6751 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
6752 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6753 *error = EINVAL;
6754 return;
6755 }
6756 switch (sa->sa_family) {
6757#ifdef INET6
6758 case AF_INET6:
6759 if (sa->sa_len != sizeof(struct sockaddr_in6)) {
6760 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6761 *error = EINVAL;
6762 return;
6763 }
6764 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) {
6765 /* can only bind v6 on PF_INET6 sockets */
6766 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6767 *error = EINVAL;
6768 return;
6769 }
6770 sin6 = (struct sockaddr_in6 *)sa;
6771 port = sin6->sin6_port;
6772#ifdef INET
6773 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
6774 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) &&
6775 SCTP_IPV6_V6ONLY(inp)) {
6776 /* can't bind v4-mapped on PF_INET sockets */
6777 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6778 *error = EINVAL;
6779 return;
6780 }
6781 in6_sin6_2_sin(&sin, sin6);
6782 addr_to_use = (struct sockaddr *)&sin;
6783 } else {
6784 addr_to_use = sa;
6785 }
6786#else
6787 addr_to_use = sa;
6788#endif
6789 break;
6790#endif
6791#ifdef INET
6792 case AF_INET:
6793 if (sa->sa_len != sizeof(struct sockaddr_in)) {
6794 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6795 *error = EINVAL;
6796 return;
6797 }
6798 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) &&
6799 SCTP_IPV6_V6ONLY(inp)) {
6800 /* can't bind v4 on PF_INET sockets */
6801 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6802 *error = EINVAL;
6803 return;
6804 }
6805 sinp = (struct sockaddr_in *)sa;
6806 port = sinp->sin_port;
6807 addr_to_use = sa;
6808 break;
6809#endif
6810 default:
6811 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6812 *error = EINVAL;
6813 return;
6814 }
6816 if (p == NULL) {
6817 /* Can't get proc for Net/Open BSD */
6818 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6819 *error = EINVAL;
6820 return;
6821 }
6822 *error = sctp_inpcb_bind(so, addr_to_use, NULL, p);
6823 return;
6824 }
6825 /* Validate the incoming port. */
6826 if ((port != 0) && (port != inp->sctp_lport)) {
6827 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6828 *error = EINVAL;
6829 return;
6830 }
6831 lep = sctp_pcb_findep(addr_to_use, 1, 0, vrf_id);
6832 if (lep == NULL) {
6833 /* add the address */
6834 *error = sctp_addr_mgmt_ep_sa(inp, addr_to_use,
6835 SCTP_ADD_IP_ADDRESS, vrf_id);
6836 } else {
6837 if (lep != inp) {
6838 *error = EADDRINUSE;
6839 }
6840 SCTP_INP_DECR_REF(lep);
6841 }
6842}
6843
6844/*
6845 * sctp_bindx(DELETE) for one address.
6846 * assumes all arguments are valid/checked by caller.
6847 */
6848void
6850 struct sockaddr *sa, uint32_t vrf_id, int *error)
6851{
6852 struct sockaddr *addr_to_use;
6853#if defined(INET) && defined(INET6)
6854 struct sockaddr_in6 *sin6;
6855 struct sockaddr_in sin;
6856#endif
6857
6858 /* see if we're bound all already! */
6860 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6861 *error = EINVAL;
6862 return;
6863 }
6864 switch (sa->sa_family) {
6865#ifdef INET6
6866 case AF_INET6:
6867 if (sa->sa_len != sizeof(struct sockaddr_in6)) {
6868 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6869 *error = EINVAL;
6870 return;
6871 }
6872 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) {
6873 /* can only bind v6 on PF_INET6 sockets */
6874 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6875 *error = EINVAL;
6876 return;
6877 }
6878#ifdef INET
6879 sin6 = (struct sockaddr_in6 *)sa;
6880 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
6881 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) &&
6882 SCTP_IPV6_V6ONLY(inp)) {
6883 /* can't bind mapped-v4 on PF_INET sockets */
6884 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6885 *error = EINVAL;
6886 return;
6887 }
6888 in6_sin6_2_sin(&sin, sin6);
6889 addr_to_use = (struct sockaddr *)&sin;
6890 } else {
6891 addr_to_use = sa;
6892 }
6893#else
6894 addr_to_use = sa;
6895#endif
6896 break;
6897#endif
6898#ifdef INET
6899 case AF_INET:
6900 if (sa->sa_len != sizeof(struct sockaddr_in)) {
6901 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6902 *error = EINVAL;
6903 return;
6904 }
6905 if ((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) &&
6906 SCTP_IPV6_V6ONLY(inp)) {
6907 /* can't bind v4 on PF_INET sockets */
6908 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6909 *error = EINVAL;
6910 return;
6911 }
6912 addr_to_use = sa;
6913 break;
6914#endif
6915 default:
6916 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTPUTIL, EINVAL);
6917 *error = EINVAL;
6918 return;
6919 }
6920 /* No lock required mgmt_ep_sa does its own locking. */
6921 *error = sctp_addr_mgmt_ep_sa(inp, addr_to_use, SCTP_DEL_IP_ADDRESS,
6922 vrf_id);
6923}
6924
6925/*
6926 * returns the valid local address count for an assoc, taking into account
6927 * all scoping rules
6928 */
6929int
6931{
6932 int loopback_scope;
6933#if defined(INET)
6934 int ipv4_local_scope, ipv4_addr_legal;
6935#endif
6936#if defined(INET6)
6937 int local_scope, site_scope, ipv6_addr_legal;
6938#endif
6939 struct sctp_vrf *vrf;
6940 struct sctp_ifn *sctp_ifn;
6941 struct sctp_ifa *sctp_ifa;
6942 int count = 0;
6943
6944 /* Turn on all the appropriate scopes */
6945 loopback_scope = stcb->asoc.scope.loopback_scope;
6946#if defined(INET)
6947 ipv4_local_scope = stcb->asoc.scope.ipv4_local_scope;
6948 ipv4_addr_legal = stcb->asoc.scope.ipv4_addr_legal;
6949#endif
6950#if defined(INET6)
6951 local_scope = stcb->asoc.scope.local_scope;
6952 site_scope = stcb->asoc.scope.site_scope;
6953 ipv6_addr_legal = stcb->asoc.scope.ipv6_addr_legal;
6954#endif
6956 vrf = sctp_find_vrf(stcb->asoc.vrf_id);
6957 if (vrf == NULL) {
6958 /* no vrf, no addresses */
6960 return (0);
6961 }
6962
6964 /*
6965 * bound all case: go through all ifns on the vrf
6966 */
6967 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
6968 if ((loopback_scope == 0) &&
6970 continue;
6971 }
6972 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
6974 continue;
6975 switch (sctp_ifa->address.sa.sa_family) {
6976#ifdef INET
6977 case AF_INET:
6978 if (ipv4_addr_legal) {
6979 struct sockaddr_in *sin;
6980
6981 sin = &sctp_ifa->address.sin;
6982 if (sin->sin_addr.s_addr == 0) {
6983 /*
6984 * skip unspecified
6985 * addrs
6986 */
6987 continue;
6988 }
6990 &sin->sin_addr) != 0) {
6991 continue;
6992 }
6993 if ((ipv4_local_scope == 0) &&
6995 continue;
6996 }
6997 /* count this one */
6998 count++;
6999 } else {
7000 continue;
7001 }
7002 break;
7003#endif
7004#ifdef INET6
7005 case AF_INET6:
7006 if (ipv6_addr_legal) {
7007 struct sockaddr_in6 *sin6;
7008
7009 sin6 = &sctp_ifa->address.sin6;
7010 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
7011 continue;
7012 }
7013 if (prison_check_ip6(stcb->sctp_ep->ip_inp.inp.inp_cred,
7014 &sin6->sin6_addr) != 0) {
7015 continue;
7016 }
7017 if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
7018 if (local_scope == 0)
7019 continue;
7020 if (sin6->sin6_scope_id == 0) {
7021 if (sa6_recoverscope(sin6) != 0)
7022 /*
7023 *
7024 * bad
7025 * link
7026 *
7027 * local
7028 *
7029 * address
7030 */
7031 continue;
7032 }
7033 }
7034 if ((site_scope == 0) &&
7035 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
7036 continue;
7037 }
7038 /* count this one */
7039 count++;
7040 }
7041 break;
7042#endif
7043 default:
7044 /* TSNH */
7045 break;
7046 }
7047 }
7048 }
7049 } else {
7050 /*
7051 * subset bound case
7052 */
7053 struct sctp_laddr *laddr;
7054
7055 LIST_FOREACH(laddr, &stcb->sctp_ep->sctp_addr_list,
7056 sctp_nxt_addr) {
7057 if (sctp_is_addr_restricted(stcb, laddr->ifa)) {
7058 continue;
7059 }
7060 /* count this one */
7061 count++;
7062 }
7063 }
7065 return (count);
7066}
7067
7068#if defined(SCTP_LOCAL_TRACE_BUF)
7069
7070void
7071sctp_log_trace(uint32_t subsys, const char *str SCTP_UNUSED, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t e, uint32_t f)
7072{
7073 uint32_t saveindex, newindex;
7074
7075 do {
7076 saveindex = SCTP_BASE_SYSCTL(sctp_log).index;
7077 if (saveindex >= SCTP_MAX_LOGGING_SIZE) {
7078 newindex = 1;
7079 } else {
7080 newindex = saveindex + 1;
7081 }
7082 } while (atomic_cmpset_int(&SCTP_BASE_SYSCTL(sctp_log).index, saveindex, newindex) == 0);
7083 if (saveindex >= SCTP_MAX_LOGGING_SIZE) {
7084 saveindex = 0;
7085 }
7086 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].timestamp = SCTP_GET_CYCLECOUNT;
7087 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].subsys = subsys;
7088 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[0] = a;
7089 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[1] = b;
7090 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[2] = c;
7091 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[3] = d;
7092 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[4] = e;
7093 SCTP_BASE_SYSCTL(sctp_log).entry[saveindex].params[5] = f;
7094}
7095
7096#endif
7097static void
7098sctp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *inp,
7099 const struct sockaddr *sa SCTP_UNUSED, void *ctx SCTP_UNUSED)
7100{
7101 struct ip *iph;
7102#ifdef INET6
7103 struct ip6_hdr *ip6;
7104#endif
7105 struct mbuf *sp, *last;
7106 struct udphdr *uhdr;
7107 uint16_t port;
7108
7109 if ((m->m_flags & M_PKTHDR) == 0) {
7110 /* Can't handle one that is not a pkt hdr */
7111 goto out;
7112 }
7113 /* Pull the src port */
7114 iph = mtod(m, struct ip *);
7115 uhdr = (struct udphdr *)((caddr_t)iph + off);
7116 port = uhdr->uh_sport;
7117 /*
7118 * Split out the mbuf chain. Leave the IP header in m, place the
7119 * rest in the sp.
7120 */
7121 sp = m_split(m, off, M_NOWAIT);
7122 if (sp == NULL) {
7123 /* Gak, drop packet, we can't do a split */
7124 goto out;
7125 }
7126 if (sp->m_pkthdr.len < sizeof(struct udphdr) + sizeof(struct sctphdr)) {
7127 /* Gak, packet can't have an SCTP header in it - too small */
7128 m_freem(sp);
7129 goto out;
7130 }
7131 /* Now pull up the UDP header and SCTP header together */
7132 sp = m_pullup(sp, sizeof(struct udphdr) + sizeof(struct sctphdr));
7133 if (sp == NULL) {
7134 /* Gak pullup failed */
7135 goto out;
7136 }
7137 /* Trim out the UDP header */
7138 m_adj(sp, sizeof(struct udphdr));
7139
7140 /* Now reconstruct the mbuf chain */
7141 for (last = m; last->m_next; last = last->m_next);
7142 last->m_next = sp;
7143 m->m_pkthdr.len += sp->m_pkthdr.len;
7144 /*
7145 * The CSUM_DATA_VALID flags indicates that the HW checked the UDP
7146 * checksum and it was valid. Since CSUM_DATA_VALID ==
7147 * CSUM_SCTP_VALID this would imply that the HW also verified the
7148 * SCTP checksum. Therefore, clear the bit.
7149 */
7151 "sctp_recv_udp_tunneled_packet(): Packet of length %d received on %s with csum_flags 0x%b.\n",
7152 m->m_pkthdr.len,
7153 if_name(m->m_pkthdr.rcvif),
7154 (int)m->m_pkthdr.csum_flags, CSUM_BITS);
7155 m->m_pkthdr.csum_flags &= ~CSUM_DATA_VALID;
7156 iph = mtod(m, struct ip *);
7157 switch (iph->ip_v) {
7158#ifdef INET
7159 case IPVERSION:
7160 iph->ip_len = htons(ntohs(iph->ip_len) - sizeof(struct udphdr));
7161 sctp_input_with_port(m, off, port);
7162 break;
7163#endif
7164#ifdef INET6
7165 case IPV6_VERSION >> 4:
7166 ip6 = mtod(m, struct ip6_hdr *);
7167 ip6->ip6_plen = htons(ntohs(ip6->ip6_plen) - sizeof(struct udphdr));
7168 sctp6_input_with_port(&m, &off, port);
7169 break;
7170#endif
7171 default:
7172 goto out;
7173 break;
7174 }
7175 return;
7176out:
7177 m_freem(m);
7178}
7179
7180#ifdef INET
7181static void
7182sctp_recv_icmp_tunneled_packet(int cmd, struct sockaddr *sa, void *vip, void *ctx SCTP_UNUSED)
7183{
7184 struct ip *outer_ip, *inner_ip;
7185 struct sctphdr *sh;
7186 struct icmp *icmp;
7187 struct udphdr *udp;
7188 struct sctp_inpcb *inp;
7189 struct sctp_tcb *stcb;
7190 struct sctp_nets *net;
7191 struct sctp_init_chunk *ch;
7192 struct sockaddr_in src, dst;
7193 uint8_t type, code;
7194
7195 inner_ip = (struct ip *)vip;
7196 icmp = (struct icmp *)((caddr_t)inner_ip -
7197 (sizeof(struct icmp) - sizeof(struct ip)));
7198 outer_ip = (struct ip *)((caddr_t)icmp - sizeof(struct ip));
7199 if (ntohs(outer_ip->ip_len) <
7200 sizeof(struct ip) + 8 + (inner_ip->ip_hl << 2) + sizeof(struct udphdr) + 8) {
7201 return;
7202 }
7203 udp = (struct udphdr *)((caddr_t)inner_ip + (inner_ip->ip_hl << 2));
7204 sh = (struct sctphdr *)(udp + 1);
7205 memset(&src, 0, sizeof(struct sockaddr_in));
7206 src.sin_family = AF_INET;
7207 src.sin_len = sizeof(struct sockaddr_in);
7208 src.sin_port = sh->src_port;
7209 src.sin_addr = inner_ip->ip_src;
7210 memset(&dst, 0, sizeof(struct sockaddr_in));
7211 dst.sin_family = AF_INET;
7212 dst.sin_len = sizeof(struct sockaddr_in);
7213 dst.sin_port = sh->dest_port;
7214 dst.sin_addr = inner_ip->ip_dst;
7215 /*
7216 * 'dst' holds the dest of the packet that failed to be sent. 'src'
7217 * holds our local endpoint address. Thus we reverse the dst and the
7218 * src in the lookup.
7219 */
7220 inp = NULL;
7221 net = NULL;
7222 stcb = sctp_findassociation_addr_sa((struct sockaddr *)&dst,
7223 (struct sockaddr *)&src,
7224 &inp, &net, 1,
7226 if ((stcb != NULL) &&
7227 (net != NULL) &&
7228 (inp != NULL)) {
7229 /* Check the UDP port numbers */
7230 if ((udp->uh_dport != net->port) ||
7231 (udp->uh_sport != htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)))) {
7232 SCTP_TCB_UNLOCK(stcb);
7233 return;
7234 }
7235 /* Check the verification tag */
7236 if (ntohl(sh->v_tag) != 0) {
7237 /*
7238 * This must be the verification tag used for
7239 * sending out packets. We don't consider packets
7240 * reflecting the verification tag.
7241 */
7242 if (ntohl(sh->v_tag) != stcb->asoc.peer_vtag) {
7243 SCTP_TCB_UNLOCK(stcb);
7244 return;
7245 }
7246 } else {
7247 if (ntohs(outer_ip->ip_len) >=
7248 sizeof(struct ip) +
7249 8 + (inner_ip->ip_hl << 2) + 8 + 20) {
7250 /*
7251 * In this case we can check if we got an
7252 * INIT chunk and if the initiate tag
7253 * matches.
7254 */
7255 ch = (struct sctp_init_chunk *)(sh + 1);
7256 if ((ch->ch.chunk_type != SCTP_INITIATION) ||
7257 (ntohl(ch->init.initiate_tag) != stcb->asoc.my_vtag)) {
7258 SCTP_TCB_UNLOCK(stcb);
7259 return;
7260 }
7261 } else {
7262 SCTP_TCB_UNLOCK(stcb);
7263 return;
7264 }
7265 }
7266 type = icmp->icmp_type;
7267 code = icmp->icmp_code;
7268 if ((type == ICMP_UNREACH) &&
7269 (code == ICMP_UNREACH_PORT)) {
7270 code = ICMP_UNREACH_PROTOCOL;
7271 }
7272 sctp_notify(inp, stcb, net, type, code,
7273 ntohs(inner_ip->ip_len),
7274 (uint32_t)ntohs(icmp->icmp_nextmtu));
7275 } else {
7276 if ((stcb == NULL) && (inp != NULL)) {
7277 /* reduce ref-count */
7278 SCTP_INP_WLOCK(inp);
7279 SCTP_INP_DECR_REF(inp);
7280 SCTP_INP_WUNLOCK(inp);
7281 }
7282 if (stcb) {
7283 SCTP_TCB_UNLOCK(stcb);
7284 }
7285 }
7286 return;
7287}
7288#endif
7289
7290#ifdef INET6
7291static void
7292sctp_recv_icmp6_tunneled_packet(int cmd, struct sockaddr *sa, void *d, void *ctx SCTP_UNUSED)
7293{
7294 struct ip6ctlparam *ip6cp;
7295 struct sctp_inpcb *inp;
7296 struct sctp_tcb *stcb;
7297 struct sctp_nets *net;
7298 struct sctphdr sh;
7299 struct udphdr udp;
7300 struct sockaddr_in6 src, dst;
7301 uint8_t type, code;
7302
7303 ip6cp = (struct ip6ctlparam *)d;
7304 /*
7305 * XXX: We assume that when IPV6 is non NULL, M and OFF are valid.
7306 */
7307 if (ip6cp->ip6c_m == NULL) {
7308 return;
7309 }
7310 /*
7311 * Check if we can safely examine the ports and the verification tag
7312 * of the SCTP common header.
7313 */
7314 if (ip6cp->ip6c_m->m_pkthdr.len <
7315 ip6cp->ip6c_off + sizeof(struct udphdr) + offsetof(struct sctphdr, checksum)) {
7316 return;
7317 }
7318 /* Copy out the UDP header. */
7319 memset(&udp, 0, sizeof(struct udphdr));
7320 m_copydata(ip6cp->ip6c_m,
7321 ip6cp->ip6c_off,
7322 sizeof(struct udphdr),
7323 (caddr_t)&udp);
7324 /* Copy out the port numbers and the verification tag. */
7325 memset(&sh, 0, sizeof(struct sctphdr));
7326 m_copydata(ip6cp->ip6c_m,
7327 ip6cp->ip6c_off + sizeof(struct udphdr),
7328 sizeof(uint16_t) + sizeof(uint16_t) + sizeof(uint32_t),
7329 (caddr_t)&sh);
7330 memset(&src, 0, sizeof(struct sockaddr_in6));
7331 src.sin6_family = AF_INET6;
7332 src.sin6_len = sizeof(struct sockaddr_in6);
7333 src.sin6_port = sh.src_port;
7334 src.sin6_addr = ip6cp->ip6c_ip6->ip6_src;
7335 if (in6_setscope(&src.sin6_addr, ip6cp->ip6c_m->m_pkthdr.rcvif, NULL) != 0) {
7336 return;
7337 }
7338 memset(&dst, 0, sizeof(struct sockaddr_in6));
7339 dst.sin6_family = AF_INET6;
7340 dst.sin6_len = sizeof(struct sockaddr_in6);
7341 dst.sin6_port = sh.dest_port;
7342 dst.sin6_addr = ip6cp->ip6c_ip6->ip6_dst;
7343 if (in6_setscope(&dst.sin6_addr, ip6cp->ip6c_m->m_pkthdr.rcvif, NULL) != 0) {
7344 return;
7345 }
7346 inp = NULL;
7347 net = NULL;
7348 stcb = sctp_findassociation_addr_sa((struct sockaddr *)&dst,
7349 (struct sockaddr *)&src,
7350 &inp, &net, 1, SCTP_DEFAULT_VRFID);
7351 if ((stcb != NULL) &&
7352 (net != NULL) &&
7353 (inp != NULL)) {
7354 /* Check the UDP port numbers */
7355 if ((udp.uh_dport != net->port) ||
7356 (udp.uh_sport != htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)))) {
7357 SCTP_TCB_UNLOCK(stcb);
7358 return;
7359 }
7360 /* Check the verification tag */
7361 if (ntohl(sh.v_tag) != 0) {
7362 /*
7363 * This must be the verification tag used for
7364 * sending out packets. We don't consider packets
7365 * reflecting the verification tag.
7366 */
7367 if (ntohl(sh.v_tag) != stcb->asoc.peer_vtag) {
7368 SCTP_TCB_UNLOCK(stcb);
7369 return;
7370 }
7371 } else {
7372 if (ip6cp->ip6c_m->m_pkthdr.len >=
7373 ip6cp->ip6c_off + sizeof(struct udphdr) +
7374 sizeof(struct sctphdr) +
7375 sizeof(struct sctp_chunkhdr) +
7376 offsetof(struct sctp_init, a_rwnd)) {
7377 /*
7378 * In this case we can check if we got an
7379 * INIT chunk and if the initiate tag
7380 * matches.
7381 */
7382 uint32_t initiate_tag;
7383 uint8_t chunk_type;
7384
7385 m_copydata(ip6cp->ip6c_m,
7386 ip6cp->ip6c_off +
7387 sizeof(struct udphdr) +
7388 sizeof(struct sctphdr),
7389 sizeof(uint8_t),
7390 (caddr_t)&chunk_type);
7391 m_copydata(ip6cp->ip6c_m,
7392 ip6cp->ip6c_off +
7393 sizeof(struct udphdr) +
7394 sizeof(struct sctphdr) +
7395 sizeof(struct sctp_chunkhdr),
7396 sizeof(uint32_t),
7397 (caddr_t)&initiate_tag);
7398 if ((chunk_type != SCTP_INITIATION) ||
7399 (ntohl(initiate_tag) != stcb->asoc.my_vtag)) {
7400 SCTP_TCB_UNLOCK(stcb);
7401 return;
7402 }
7403 } else {
7404 SCTP_TCB_UNLOCK(stcb);
7405 return;
7406 }
7407 }
7408 type = ip6cp->ip6c_icmp6->icmp6_type;
7409 code = ip6cp->ip6c_icmp6->icmp6_code;
7410 if ((type == ICMP6_DST_UNREACH) &&
7411 (code == ICMP6_DST_UNREACH_NOPORT)) {
7412 type = ICMP6_PARAM_PROB;
7414 }
7415 sctp6_notify(inp, stcb, net, type, code,
7416 ntohl(ip6cp->ip6c_icmp6->icmp6_mtu));
7417 } else {
7418 if ((stcb == NULL) && (inp != NULL)) {
7419 /* reduce inp's ref-count */
7420 SCTP_INP_WLOCK(inp);
7421 SCTP_INP_DECR_REF(inp);
7422 SCTP_INP_WUNLOCK(inp);
7423 }
7424 if (stcb) {
7425 SCTP_TCB_UNLOCK(stcb);
7426 }
7427 }
7428}
7429#endif
7430
7431void
7433{
7434 /*
7435 * This function assumes sysctl caller holds sctp_sysctl_info_lock()
7436 * for writing!
7437 */
7438#ifdef INET
7439 if (SCTP_BASE_INFO(udp4_tun_socket) != NULL) {
7440 soclose(SCTP_BASE_INFO(udp4_tun_socket));
7441 SCTP_BASE_INFO(udp4_tun_socket) = NULL;
7442 }
7443#endif
7444#ifdef INET6
7445 if (SCTP_BASE_INFO(udp6_tun_socket) != NULL) {
7446 soclose(SCTP_BASE_INFO(udp6_tun_socket));
7447 SCTP_BASE_INFO(udp6_tun_socket) = NULL;
7448 }
7449#endif
7450}
7451
7452int
7454{
7455 uint16_t port;
7456 int ret;
7457#ifdef INET
7458 struct sockaddr_in sin;
7459#endif
7460#ifdef INET6
7461 struct sockaddr_in6 sin6;
7462#endif
7463 /*
7464 * This function assumes sysctl caller holds sctp_sysctl_info_lock()
7465 * for writing!
7466 */
7467 port = SCTP_BASE_SYSCTL(sctp_udp_tunneling_port);
7468 if (ntohs(port) == 0) {
7469 /* Must have a port set */
7470 return (EINVAL);
7471 }
7472#ifdef INET
7473 if (SCTP_BASE_INFO(udp4_tun_socket) != NULL) {
7474 /* Already running -- must stop first */
7475 return (EALREADY);
7476 }
7477#endif
7478#ifdef INET6
7479 if (SCTP_BASE_INFO(udp6_tun_socket) != NULL) {
7480 /* Already running -- must stop first */
7481 return (EALREADY);
7482 }
7483#endif
7484#ifdef INET
7485 if ((ret = socreate(PF_INET, &SCTP_BASE_INFO(udp4_tun_socket),
7486 SOCK_DGRAM, IPPROTO_UDP,
7487 curthread->td_ucred, curthread))) {
7489 return (ret);
7490 }
7491 /* Call the special UDP hook. */
7492 if ((ret = udp_set_kernel_tunneling(SCTP_BASE_INFO(udp4_tun_socket),
7494 sctp_recv_icmp_tunneled_packet,
7495 NULL))) {
7497 return (ret);
7498 }
7499 /* Ok, we have a socket, bind it to the port. */
7500 memset(&sin, 0, sizeof(struct sockaddr_in));
7501 sin.sin_len = sizeof(struct sockaddr_in);
7502 sin.sin_family = AF_INET;
7503 sin.sin_port = htons(port);
7504 if ((ret = sobind(SCTP_BASE_INFO(udp4_tun_socket),
7505 (struct sockaddr *)&sin, curthread))) {
7507 return (ret);
7508 }
7509#endif
7510#ifdef INET6
7511 if ((ret = socreate(PF_INET6, &SCTP_BASE_INFO(udp6_tun_socket),
7512 SOCK_DGRAM, IPPROTO_UDP,
7513 curthread->td_ucred, curthread))) {
7515 return (ret);
7516 }
7517 /* Call the special UDP hook. */
7518 if ((ret = udp_set_kernel_tunneling(SCTP_BASE_INFO(udp6_tun_socket),
7520 sctp_recv_icmp6_tunneled_packet,
7521 NULL))) {
7523 return (ret);
7524 }
7525 /* Ok, we have a socket, bind it to the port. */
7526 memset(&sin6, 0, sizeof(struct sockaddr_in6));
7527 sin6.sin6_len = sizeof(struct sockaddr_in6);
7528 sin6.sin6_family = AF_INET6;
7529 sin6.sin6_port = htons(port);
7530 if ((ret = sobind(SCTP_BASE_INFO(udp6_tun_socket),
7531 (struct sockaddr *)&sin6, curthread))) {
7533 return (ret);
7534 }
7535#endif
7536 return (0);
7537}
7538
7539/*
7540 * sctp_min_mtu ()returns the minimum of all non-zero arguments.
7541 * If all arguments are zero, zero is returned.
7542 */
7545{
7546 if (mtu1 > 0) {
7547 if (mtu2 > 0) {
7548 if (mtu3 > 0) {
7549 return (min(mtu1, min(mtu2, mtu3)));
7550 } else {
7551 return (min(mtu1, mtu2));
7552 }
7553 } else {
7554 if (mtu3 > 0) {
7555 return (min(mtu1, mtu3));
7556 } else {
7557 return (mtu1);
7558 }
7559 }
7560 } else {
7561 if (mtu2 > 0) {
7562 if (mtu3 > 0) {
7563 return (min(mtu2, mtu3));
7564 } else {
7565 return (mtu2);
7566 }
7567 } else {
7568 return (mtu3);
7569 }
7570 }
7571}
7572
7573void
7575{
7576 struct in_conninfo inc;
7577
7578 memset(&inc, 0, sizeof(struct in_conninfo));
7579 inc.inc_fibnum = fibnum;
7580 switch (addr->sa.sa_family) {
7581#ifdef INET
7582 case AF_INET:
7583 inc.inc_faddr = addr->sin.sin_addr;
7584 break;
7585#endif
7586#ifdef INET6
7587 case AF_INET6:
7588 inc.inc_flags |= INC_ISIPV6;
7589 inc.inc6_faddr = addr->sin6.sin6_addr;
7590 break;
7591#endif
7592 default:
7593 return;
7594 }
7595 tcp_hc_updatemtu(&inc, (u_long)mtu);
7596}
7597
7600{
7601 struct in_conninfo inc;
7602
7603 memset(&inc, 0, sizeof(struct in_conninfo));
7604 inc.inc_fibnum = fibnum;
7605 switch (addr->sa.sa_family) {
7606#ifdef INET
7607 case AF_INET:
7608 inc.inc_faddr = addr->sin.sin_addr;
7609 break;
7610#endif
7611#ifdef INET6
7612 case AF_INET6:
7613 inc.inc_flags |= INC_ISIPV6;
7614 inc.inc6_faddr = addr->sin6.sin6_addr;
7615 break;
7616#endif
7617 default:
7618 return (0);
7619 }
7620 return ((uint32_t)tcp_hc_getmtu(&inc));
7621}
7622
7623void
7624sctp_set_state(struct sctp_tcb *stcb, int new_state)
7625{
7626#if defined(KDTRACE_HOOKS)
7627 int old_state = stcb->asoc.state;
7628#endif
7629
7630 KASSERT((new_state & ~SCTP_STATE_MASK) == 0,
7631 ("sctp_set_state: Can't set substate (new_state = %x)",
7632 new_state));
7633 stcb->asoc.state = (stcb->asoc.state & ~SCTP_STATE_MASK) | new_state;
7634 if ((new_state == SCTP_STATE_SHUTDOWN_RECEIVED) ||
7635 (new_state == SCTP_STATE_SHUTDOWN_SENT) ||
7636 (new_state == SCTP_STATE_SHUTDOWN_ACK_SENT)) {
7638 }
7639#if defined(KDTRACE_HOOKS)
7640 if (((old_state & SCTP_STATE_MASK) != new_state) &&
7641 !(((old_state & SCTP_STATE_MASK) == SCTP_STATE_EMPTY) &&
7642 (new_state == SCTP_STATE_INUSE))) {
7643 SCTP_PROBE6(state__change, NULL, stcb, NULL, stcb, NULL, old_state);
7644 }
7645#endif
7646}
7647
7648void
7649sctp_add_substate(struct sctp_tcb *stcb, int substate)
7650{
7651#if defined(KDTRACE_HOOKS)
7652 int old_state = stcb->asoc.state;
7653#endif
7654
7655 KASSERT((substate & SCTP_STATE_MASK) == 0,
7656 ("sctp_add_substate: Can't set state (substate = %x)",
7657 substate));
7658 stcb->asoc.state |= substate;
7659#if defined(KDTRACE_HOOKS)
7660 if (((substate & SCTP_STATE_ABOUT_TO_BE_FREED) &&
7661 ((old_state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0)) ||
7662 ((substate & SCTP_STATE_SHUTDOWN_PENDING) &&
7663 ((old_state & SCTP_STATE_SHUTDOWN_PENDING) == 0))) {
7664 SCTP_PROBE6(state__change, NULL, stcb, NULL, stcb, NULL, old_state);
7665 }
7666#endif
7667}
#define SCTP_UNUSED
Definition: alias_sctp.h:86
#define ICMP6_DST_UNREACH
Definition: icmp6.h:91
#define ICMP6_PARAM_PROB
Definition: icmp6.h:94
#define ICMP6_DST_UNREACH_NOPORT
Definition: icmp6.h:147
#define ICMP6_PARAMPROB_NEXTHEADER
Definition: icmp6.h:156
__uint32_t uint32_t
Definition: in.h:62
__uint16_t uint16_t
Definition: in.h:57
__uint8_t uint8_t
Definition: in.h:52
#define INADDR_BROADCAST
Definition: in.h:49
#define INADDR_ANY
Definition: in.h:48
#define IPPROTO_UDP
Definition: in.h:46
int prison_check_ip4(const struct ucred *cred, const struct in_addr *ia)
Definition: in_jail.c:322
#define INC_ISIPV6
Definition: in_pcb.h:124
#define IN6P_AUTOFLOWLABEL
Definition: in_pcb.h:643
#define IPV6_VERSION
Definition: ip6.h:95
u_char ip_hl
Definition: ip.h:1
#define IPVERSION
Definition: ip.h:46
ipfw_dyn_rule * next
Definition: ip_fw.h:0
u_int16_t count
Definition: ip_fw.h:18
u_int32_t state
Definition: ip_fw.h:10
#define ICMP_UNREACH_PROTOCOL
Definition: ip_icmp.h:157
#define ICMP_UNREACH
Definition: ip_icmp.h:154
#define ICMP_UNREACH_PORT
Definition: ip_icmp.h:158
#define SCTP_DATA_FIRST_FRAG
Definition: sctp.h:488
#define SCTP_PCB_FLAGS_INTERLEAVE_STRMS
Definition: sctp.h:537
#define SCTP_PCB_FLAGS_DONT_WAKE
Definition: sctp.h:516
#define SCTP_SB_LOGGING_ENABLE
Definition: sctp.h:619
#define SCTP_INITIATION_ACK
Definition: sctp.h:433
#define SCTP_SHUTDOWN_SENT
Definition: sctp.h:334
#define SCTP_PCB_FLAGS_BOUND_V6
Definition: sctp.h:519
#define SCTP_PCB_FLAGS_TCPTYPE
Definition: sctp.h:504
#define SCTP_PCB_FLAGS_SOCKET_ALLGONE
Definition: sctp.h:522
#define SCTP_PCB_FLAGS_PDAPIEVNT
Definition: sctp.h:550
#define SCTP_DATA_UNORDERED
Definition: sctp.h:490
#define SCTP_PCB_FLAGS_STREAM_RESETEVNT
Definition: sctp.h:552
#define SCTP_PCB_FLAGS_EXT_RCVINFO
Definition: sctp.h:534
#define SCTP_PCB_FLAGS_WAKEINPUT
Definition: sctp.h:518
#define SCTP_PCB_FLAGS_UNBOUND
Definition: sctp.h:507
#define SCTP_MBCNT_LOGGING_ENABLE
Definition: sctp.h:612
#define SCTP_PCB_FLAGS_WAS_CONNECTED
Definition: sctp.h:510
#define SCTP_PACKET_DROPPED
Definition: sctp.h:456
#define SCTP_PCB_FLAGS_RECVNXTINFO
Definition: sctp.h:560
#define SCTP_PCB_FLAGS_SOCKET_CANT_READ
Definition: sctp.h:523
#define SCTP_PCB_FLAGS_RECVPADDREVNT
Definition: sctp.h:545
#define SCTP_PCB_FLAGS_RECVSENDFAILEVNT
Definition: sctp.h:547
#define SCTP_PCB_FLAGS_IN_TCPPOOL
Definition: sctp.h:515
#define SCTP_PCB_FLAGS_SOCKET_GONE
Definition: sctp.h:521
#define SCTP_DATA_NOT_FRAG
Definition: sctp.h:489
#define SCTP_PCB_FLAGS_RECVDATAIOEVNT
Definition: sctp.h:543
#define SCTP_RECV_RWND_LOGGING_ENABLE
Definition: sctp.h:615
#define SCTP_PCB_FLAGS_EXPLICIT_EOR
Definition: sctp.h:554
#define SCTP_PCB_FLAGS_WAS_ABORTED
Definition: sctp.h:511
#define SCTP_STREAM_RESET_INCOMING
Definition: sctp.h:179
#define SCTP_DATA_LAST_FRAG
Definition: sctp.h:487
#define SCTP_PCB_FLAGS_DRYEVNT
Definition: sctp.h:558
#define SCTP_ESTABLISHED
Definition: sctp.h:333
#define SCTP_PCB_FLAGS_CONNECTED
Definition: sctp.h:514
#define SCTP_COOKIE_WAIT
Definition: sctp.h:331
#define SCTP_SHUTDOWN_ACK
Definition: sctp.h:439
#define SCTP_SHUTDOWN_ACK_SENT
Definition: sctp.h:336
#define SCTP_RTTVAR_LOGGING_ENABLE
Definition: sctp.h:616
#define SCTP_PCB_FLAGS_ASSOC_RESETEVNT
Definition: sctp.h:561
#define SCTP_PCB_FLAGS_RECVASSOCEVNT
Definition: sctp.h:544
#define SCTP_SHUTDOWN_COMPLETE
Definition: sctp.h:445
#define SCTP_PCB_FLAGS_RECVPEERERR
Definition: sctp.h:546
#define SCTP_PCB_FLAGS_WAKEOUTPUT
Definition: sctp.h:517
#define SCTP_SAT_NETWORK_MIN
Definition: sctp.h:481
#define SCTP_MBUF_LOGGING_ENABLE
Definition: sctp.h:613
#define SCTP_PCB_FLAGS_STREAM_CHANGEEVNT
Definition: sctp.h:562
#define SCTP_ABORT_ASSOCIATION
Definition: sctp.h:437
#define SCTP_SHUTDOWN_PENDING
Definition: sctp.h:337
#define SCTP_SHUTDOWN_RECEIVED
Definition: sctp.h:335
#define SCTP_CAUSE_NO_USER_DATA
Definition: sctp.h:351
#define SCTP_PCB_FLAGS_RECVRCVINFO
Definition: sctp.h:559
#define SCTP_PCB_FLAGS_NEEDS_MAPPED_V4
Definition: sctp.h:555
#define SCTP_PCB_FLAGS_RECVSHUTDOWNEVNT
Definition: sctp.h:548
#define SCTP_PCB_FLAGS_ADAPTATIONEVNT
Definition: sctp.h:549
#define SCTP_PCB_FLAGS_RECVNSENDFAILEVNT
Definition: sctp.h:563
#define SCTP_COOKIE_ECHOED
Definition: sctp.h:332
#define SCTP_PCB_FLAGS_BOUNDALL
Definition: sctp.h:505
#define SCTP_CLOSED
Definition: sctp.h:328
#define SCTP_INITIATION
Definition: sctp.h:432
#define SCTP_PCB_FLAGS_FRAG_INTERLEAVE
Definition: sctp.h:536
uint32_t sctp_addr_mgmt_ep_sa(struct sctp_inpcb *inp, struct sockaddr *sa, uint32_t type, uint32_t vrf_id)
Definition: sctp_asconf.c:3160
int sctp_asconf_iterator_ep(struct sctp_inpcb *inp, void *ptr, uint32_t val SCTP_UNUSED)
Definition: sctp_asconf.c:2024
void sctp_asconf_iterator_end(void *ptr, uint32_t val SCTP_UNUSED)
Definition: sctp_asconf.c:2263
void sctp_asconf_iterator_stcb(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, uint32_t val SCTP_UNUSED)
Definition: sctp_asconf.c:2100
void sctp_notify_authentication(struct sctp_tcb *stcb, uint32_t indication, uint16_t keyid, uint16_t alt_keyid, int so_locked)
Definition: sctp_auth.c:1710
uint32_t sctp_hmac(uint16_t hmac_algo, uint8_t *key, uint32_t keylen, uint8_t *text, uint32_t textlen, uint8_t *digest)
Definition: sctp_auth.c:915
struct mbuf * sctp_get_mbuf_for_msg(unsigned int space_needed, int want_header, int how, int allonebuf, int type)
struct iterator_control sctp_it_ctl
Definition: sctp_bsd_addr.c:76
#define SCTP_OUTPUT_FROM_SACK_TMR
#define SCTP_LOG_LOCK_EVENT
#define SCTP_NOTIFY_ASCONF_DELETE_IP
#define IN4_ISPRIVATE_ADDRESS(a)
#define SCTP_MAPPING_ARRAY_INCR
#define SCTP_NOTIFY_ASSOC_LOC_ABORTED
#define SCTP_STATE_INUSE
#define SCTP_LAN_LOCAL
#define SCTP_NOTIFY_AUTH_FREE_KEY
#define SCTP_TIMER_TYPE_SHUTDOWNACK
#define SCTP_LOG_EVENT_BLOCK
#define SCTP_STATE_COOKIE_ECHOED
#define SCTP_LOC_10
#define SCTP_LOC_1
#define SCTP_ADD_IP_ADDRESS
#define SCTP_INP_KILL_TIMEOUT
#define SCTP_DATAGRAM_NR_ACKED
#define SCTP_LOC_17
#define SCTP_SIZE32(x)
#define SCTP_AUDIT_SIZE
#define SCTP_FROM_SCTPUTIL
#define SCTP_LOC_28
#define SCTP_MIN_RWND
#define SCTP_NOTIFY_SENDER_DRY
#define SCTP_STATE_WAS_ABORTED
#define SCTP_OUTPUT_FROM_STRRST_TMR
#define SCTP_TIMER_MAXSHUTDOWN
#define SCTP_NORMAL_PROC
#define SCTP_CLOCK_GRANULARITY
#define SCTP_ADD_SUBSTATE(_stcb, _substate)
#define SCTP_LOC_19
#define SCTP_TIMER_SIGNATURE
#define SCTP_LOC_12
#define SCTP_STATE_MASK
#define SCTP_OUTPUT_FROM_T3
#define SCTP_LOC_8
#define SCTP_LOG_RTTVAR
#define SCTP_NOTIFY_STR_RESET_DENIED_IN
#define SCTP_ITERATOR_MAX_AT_ONCE
#define SCTP_LOC_16
#define SCTP_TIMER_TYPE_ASOCKILL
#define SCTP_DATAGRAM_RESEND
#define SCTP_NOTIFY_STR_RESET_FAILED_OUT
#define SCTP_LOG_EVENT_SB
#define SCTP_RTO_UPPER_BOUND
#define SCTP_NOTIFY_PEER_SHUTDOWN
#define SCTP_LAN_UNKNOWN
#define SCTP_SO_NOT_LOCKED
#define SCTP_CWNDLOG_PRESEND
#define SCTP_NUMBER_OF_SECRETS
#define SCTP_TIMER_RECV
#define SCTP_TIMER_TYPE_HEARTBEAT
#define SCTP_SORECV_ENTERPL
#define SCTP_DEL_IP_ADDRESS
#define SCTP_LOC_14
#define SCTP_LOG_EVENT_WAKE
#define SCTP_NOTIFY_AUTH_NEW_KEY
#define SCTP_NOTIFY_REMOTE_ERROR
#define SCTP_LOG_EVENT_NAGLE
#define SCTP_NOTIFY_INTERFACE_UP
#define SCTP_SIGNATURE_SIZE
#define SCTP_LOC_31
#define SCTP_LOC_25
#define SCTP_ADDR_PF
#define SCTP_LOG_SBRESULT
#define SCTP_TIMER_TYPE_INIT
#define SCTP_HOW_MANY_SECRETS
#define SCTP_OUTPUT_FROM_ASCONF_TMR
#define SCTP_LOG_EVENT_FR
#define SCTP_NOTIFY_STR_RESET_DENIED_OUT
#define sctp_sorwakeup(inp, so)
#define SCTP_GETPTIME_TIMEVAL(x)
#define SCTP_LOG_EVENT_CLOSE
#define SCTP_NOTIFY_UNSENT_DG_FAIL
#define SCTP_ADDR_NO_PMTUD
#define SCTP_LOC_26
#define SCTP_DEBUG_CRCOFFLOAD
#define SCTP_STATE_SHUTDOWN_PENDING
#define SCTP_CALLED_DIRECTLY_NOCMPSET
#define SCTP_LOC_18
#define SCTP_DEBUG_TIMER2
#define SCTP_LOG_SBFREE
#define SCTP_TIMER_TYPE_PRIM_DELETED
#define SCTP_LOC_13
#define SCTP_ADDR_UNCONFIRMED
#define SCTP_TIMER_TYPE_STRRESET
#define SCTP_LOG_EVENT_MBUF
#define SCTP_LAN_INTERNET
#define SCTP_CHUNK_BUFFER_SIZE
#define SCTP_LOC_15
#define SCTP_TIMER_TYPE_RECV
#define SCTP_CLEAR_SUBSTATE(_stcb, _substate)
#define SCTP_DONOT_SETSCOPE
#define SCTP_LOG_EVENT_RWND
#define SCTP_OUTPUT_FROM_SHUT_TMR
#define SCTP_NOTIFY_SENT_DG_FAIL
#define SCTP_LOC_6
#define SCTP_NOTIFY_ASCONF_ADD_IP
#define SCTP_INITIAL_MAPPING_ARRAY
#define SCTP_LOC_5
#define SCTP_NOTIFY_STR_RESET_RECV
#define SCTP_LOC_20
#define SCTP_LOC_4
#define SCTP_STATE_SHUTDOWN_ACK_SENT
#define SCTP_NOTIFY_INTERFACE_CONFIRMED
#define SCTP_OUTPUT_FROM_USR_RCVD
#define SCTP_LOCAL_LAN_RTT
#define SCTP_TIMER_TYPE_SHUTDOWNGUARD
#define SCTP_LOC_23
#define SCTP_GET_STATE(_stcb)
#define SCTP_NOTIFY_ASSOC_REM_ABORTED
#define SCTP_ADDR_IS_CONFIRMED
#define SCTP_LOC_27
#define SCTP_NOTIFY_ASSOC_UP
#define SCTP_GETTIME_TIMEVAL(x)
#define SCTP_LOC_2
#define SCTP_LOC_3
#define SCTP_LOG_EVENT_STRM
#define SCTP_STATE_CLOSED_SOCKET
#define SCTP_RTT_FROM_DATA
#define SCTP_LOCK_UNKNOWN
#define SCTP_NOTIFY_NO_PEER_AUTH
#define SCTP_NOTIFY_PARTIAL_DELVIERY_INDICATION
#define SCTP_OUTPUT_FROM_HB_TMR
#define SCTP_TIMER_TYPE_PATHMTURAISE
#define SCTP_OUTPUT_FROM_AUTOCLOSE_TMR
#define SCTP_NOTIFY_ASSOC_DOWN
#define SCTP_NOTIFY_SPECIAL_SP_FAIL
#define SCTP_LOC_21
#define SCTP_STATE_COOKIE_WAIT
#define SCTP_NOTIFY_STR_RESET_FAILED_IN
#define SCTP_ADDR_NOHB
#define SCTP_LOC_7
#define SCTP_DEBUG_UTIL1
#define SCTP_ADDRESS_TICK_DELAY
#define SCTP_TIMER_TYPE_SHUTDOWN
#define SCTP_ASOC_KILL_TIMEOUT
#define SCTP_STATE_EMPTY
#define SCTP_LOC_30
#define SCTP_STATE_SHUTDOWN_SENT
#define SCTP_LOG_EVENT_MAXBURST
#define SCTP_RWND_HIWAT_SHIFT
#define SCTP_NOTIFY_STR_RESET_SEND
#define SCTP_LOG_EVENT_SACK
#define SCTP_STATE_SHUTDOWN_RECEIVED
#define SCTP_LOC_22
#define SCTP_LOG_EVENT_CWND
#define SCTP_IS_TIMER_TYPE_VALID(t)
#define SCTP_CALLED_FROM_INPKILL_TIMER
#define SCTP_SORECV_DONE
#define SCTP_SET_PRIM_ADDR
#define SCTP_LOC_9
#define SCTP_STATE_ABOUT_TO_BE_FREED
#define SCTP_LOC_24
#define SCTP_SORECV_ENTER
#define SCTP_LOG_MBCNT_DECREASE
#define SCTP_NOTIFY_INTERFACE_DOWN
#define sctp_sowwakeup(inp, so)
#define SCTP_LOG_INITIAL_RTT
#define SCTP_STATE_OPEN
#define SCTP_OUTPUT_FROM_SHUT_ACK_TMR
#define SCTP_SET_STATE(_stcb, _state)
#define SCTP_TIMER_TYPE_AUTOCLOSE
#define SCTP_LOG_EVENT_MAP
#define SCTP_LOG_SBALLOC
#define SCTP_TIMER_TYPE_INPKILL
#define SCTP_SO_LOCKED
#define SCTP_TIMER_TYPE_ASCONF
#define SCTP_ADDR_BEING_DELETED
#define SCTP_NOTIFY_ASCONF_SET_PRIMARY
#define SCTP_LOG_EVENT_RTT
#define SCTP_FORWARD_TSN_SKIP
#define SCTP_NOTIFY_ASSOC_TIMEDOUT
#define SCTP_LOG_MISC_EVENT
#define SCTP_LOC_29
#define SCTP_MID_EQ(i, a, b)
#define SCTP_TIMER_HEARTBEAT
#define SCTP_LOG_EVENT_MBCNT
#define SCTP_TIMER_TYPE_SEND
#define SCTP_MAX_CAUSE_LENGTH
#define SCTP_FREE_SHOULD_USE_ABORT
#define SCTP_MBUF_IFREE
#define SCTP_ADDR_NOT_LOCKED
#define SCTP_TIMER_TYPE_NEWCOOKIE
#define SCTP_MINIMAL_RWND
#define SCTP_TIMER_TYPE_NONE
#define SCTP_TIMER_PMTU
#define SCTP_TIMER_TYPE_COOKIE
#define SCTP_HMAC
#define SCTP_TIMER_TYPE_ADDR_WQ
#define SCTP_NOTIFY_ASSOC_RESTART
uint32_t sctp_calc_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc)
Definition: sctp_indata.c:79
struct mbuf * sctp_build_ctl_nchunk(struct sctp_inpcb *inp, struct sctp_sndrcvinfo *sinfo)
Definition: sctp_indata.c:172
struct sctp_queued_to_read * sctp_build_readq_entry(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t tsn, uint32_t ppid, uint32_t context, uint16_t sid, uint32_t mid, uint8_t flags, struct mbuf *dm)
Definition: sctp_indata.c:135
#define SCTP_PROBE6(probe, arg0, arg1, arg2, arg3, arg4, arg5)
Definition: sctp_kdtrace.h:53
#define SCTP_TCB_LOCK(_tcb)
#define SCTP_ITERATOR_UNLOCK()
#define SCTP_IPI_ADDR_RLOCK()
#define SCTP_IPI_ITERATOR_WQ_LOCK()
#define SCTP_INP_RLOCK(_inp)
#define SCTP_INP_INFO_RLOCK()
Definition: sctp_lock_bsd.h:94
#define SCTP_INP_WLOCK_ASSERT(_inp)
#define SCTP_INP_READ_UNLOCK(_inp)
#define SCTP_IPI_ITERATOR_WQ_UNLOCK()
#define SCTP_IPI_ADDR_RUNLOCK()
#define SCTP_INCR_LADDR_COUNT()
#define SCTP_INP_WUNLOCK(_inp)
#define SCTP_WQ_ADDR_LOCK()
#define SCTP_TCB_SEND_UNLOCK(_tcb)
#define SCTP_IPI_ADDR_LOCK_ASSERT()
#define SCTP_INP_DECR_REF(_inp)
#define SCTP_INP_RLOCK_ASSERT(_inp)
#define SCTP_ITERATOR_LOCK()
#define SCTP_INP_INFO_RUNLOCK()
#define SCTP_WQ_ADDR_LOCK_ASSERT()
#define SCTP_INP_WLOCK(_inp)
#define SCTP_TCB_LOCK_ASSERT(_tcb)
#define SCTP_INP_INCR_REF(_inp)
#define SCTP_WQ_ADDR_UNLOCK()
#define SCTP_TCB_UNLOCK(_tcb)
#define SCTP_TCB_SEND_LOCK(_tcb)
#define SCTP_INP_READ_LOCK(_inp)
#define SCTP_INP_RUNLOCK(_inp)
#define SCTP_CTR6
Definition: sctp_os_bsd.h:133
#define SCTP_LTRACE_ERR_RET(inp, stcb, net, file, err)
Definition: sctp_os_bsd.h:191
#define SCTP_ZONE_GET(zone, type)
Definition: sctp_os_bsd.h:251
#define SCTP_IFN_IS_IFT_LOOP(ifn)
Definition: sctp_os_bsd.h:205
#define SCTP_BUF_AT(m, size)
Definition: sctp_os_bsd.h:294
#define SCTP_OS_TIMER_PENDING
Definition: sctp_os_bsd.h:278
#define SCTP_BUF_RESV_UF(m, size)
Definition: sctp_os_bsd.h:293
#define SCTP_OS_TIMER_STOP
Definition: sctp_os_bsd.h:276
#define SCTP_MALLOC(var, type, size, name)
Definition: sctp_os_bsd.h:219
#define SCTP_BASE_INFO(__m)
Definition: sctp_os_bsd.h:145
#define SCTP_IPV6_V6ONLY(sctp_inpcb)
Definition: sctp_os_bsd.h:368
#define SCTP_PRINTF(params...)
Definition: sctp_os_bsd.h:151
#define SCTP_BASE_VAR(__m)
Definition: sctp_os_bsd.h:149
#define SCTP_OS_TIMER_DEACTIVATE
Definition: sctp_os_bsd.h:280
#define SCTP_BUF_EXTEND_REFCNT(m)
Definition: sctp_os_bsd.h:325
#define SCTP_OS_TIMER_ACTIVE
Definition: sctp_os_bsd.h:279
#define SCTP_FREE(var, type)
Definition: sctp_os_bsd.h:224
#define SCTP_BUF_LEN(m)
Definition: sctp_os_bsd.h:290
#define SCTP_DEFAULT_VRFID
Definition: sctp_os_bsd.h:200
#define SCTP_OS_TIMER_START
Definition: sctp_os_bsd.h:275
#define SCTP_BUF_IS_EXTENDED(m)
Definition: sctp_os_bsd.h:295
#define SCTPDBG(level, params...)
Definition: sctp_os_bsd.h:170
#define SCTP_SO_IS_NBIO(so)
Definition: sctp_os_bsd.h:370
#define SCTP_BUF_EXTEND_BASE(m)
Definition: sctp_os_bsd.h:323
#define SCTP_BASE_SYSCTL(__m)
Definition: sctp_os_bsd.h:148
#define M_NOTIFICATION
Definition: sctp_os_bsd.h:408
#define SCTP_BUF_GET_FLAGS(m)
Definition: sctp_os_bsd.h:329
#define SCTP_BUF_NEXT(m)
Definition: sctp_os_bsd.h:291
#define SCTP_SB_LIMIT_RCV(so)
Definition: sctp_os_bsd.h:390
#define sctp_get_tick_count()
Definition: sctp_os_bsd.h:282
int sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
Definition: sctp_output.c:2407
void sctp_fix_ecn_echo(struct sctp_association *asoc)
Definition: sctp_output.c:7757
void sctp_send_sack(struct sctp_tcb *stcb, int so_locked)
void sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked)
void sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, uint32_t vrf_id, uint16_t port)
void sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, uint32_t vrf_id, uint16_t port)
void sctp_chunk_output(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int from_where, int so_locked)
Definition: sctp_output.c:9960
struct sctp_tcb * sctp_findassociation_addr_sa(struct sockaddr *from, struct sockaddr *to, struct sctp_inpcb **inp_p, struct sctp_nets **netp, int find_tcp_pool, uint32_t vrf_id)
Definition: sctp_pcb.c:1969
int sctp_inpcb_bind(struct socket *so, struct sockaddr *addr, struct sctp_ifa *sctp_ifap, struct thread *td)
Definition: sctp_pcb.c:3225
struct sctp_inpcb * sctp_pcb_findep(struct sockaddr *nam, int find_tcp_pool, int have_lock, uint32_t vrf_id)
Definition: sctp_pcb.c:1888
void sctp_inpcb_free(struct sctp_inpcb *inp, int immediate, int from)
Definition: sctp_pcb.c:3311
int sctp_add_remote_addr(struct sctp_tcb *stcb, struct sockaddr *newaddr, struct sctp_nets **netp, uint16_t port, int set_scope, int from)
Definition: sctp_pcb.c:3721
int sctp_initiate_iterator(inp_func inpf, asoc_func af, inp_func inpe, uint32_t pcb_state, uint32_t pcb_features, uint32_t asoc_state, void *argp, uint32_t argi, end_func ef, struct sctp_inpcb *s_inp, uint8_t chunk_output_off)
Definition: sctp_pcb.c:7007
bool sctp_is_vtag_good(uint32_t tag, uint16_t lport, uint16_t rport, struct timeval *now)
Definition: sctp_pcb.c:6720
int sctp_free_assoc(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int from_inpcbfree, int from_location)
Definition: sctp_pcb.c:4689
struct sctp_tcb * sctp_findassociation_ep_addr(struct sctp_inpcb **inp_p, struct sockaddr *remote, struct sctp_nets **netp, struct sockaddr *local, struct sctp_tcb *locked_tcb)
Definition: sctp_pcb.c:1259
struct sctp_vrf * sctp_find_vrf(uint32_t vrf_id)
Definition: sctp_pcb.c:216
#define SCTP_READ_LOG_SIZE
Definition: sctp_pcb.h:348
#define SCTP_ITERATOR_STOP_CUR_INP
Definition: sctp_structs.h:183
#define SCTP_STREAM_OPENING
Definition: sctp_structs.h:604
#define SCTP_ITERATOR_DO_SINGLE_INP
Definition: sctp_structs.h:155
#define SCTP_ASOC_ANY_STATE
Definition: sctp_structs.h:103
#define SCTP_ITERATOR_STOP_CUR_IT
Definition: sctp_structs.h:182
#define SCTP_PCB_ANY_FEATURES
Definition: sctp_structs.h:102
#define SCTP_TSN_LOG_SIZE
Definition: sctp_structs.h:654
void sctp_delete_prim_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb)
Definition: sctp_timer.c:1279
int sctp_shutdown_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1301
int sctp_asconf_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1181
int sctp_strreset_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb)
Definition: sctp_timer.c:1118
int sctp_shutdownack_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1324
void sctp_autoclose_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb)
Definition: sctp_timer.c:1536
int sctp_t1init_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1005
int sctp_heartbeat_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1413
int sctp_cookie_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net SCTP_UNUSED)
Definition: sctp_timer.c:1053
int sctp_t3rxt_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:816
void sctp_pathmtu_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctp_timer.c:1476
#define SCTP_RTT_VAR_SHIFT
Definition: sctp_timer.h:44
#define SCTP_RTT_SHIFT
Definition: sctp_timer.h:43
#define SCTP_ASSOC_SUPPORTS_PR
Definition: sctp_uio.h:321
#define SCTP_STREAM_RESET_DENIED
Definition: sctp_uio.h:479
#define SCTP_SHUTDOWN_COMP
Definition: sctp_uio.h:317
#define SCTP_UNORDERED
Definition: sctp_uio.h:246
#define SCTP_NEXT_MSG_IS_NOTIFICATION
Definition: sctp_uio.h:203
#define SCTP_ASSOC_RESET_EVENT
Definition: sctp_uio.h:552
#define SCTP_ASSOC_CHANGE
Definition: sctp_uio.h:539
#define SCTP_MAX_LOGGING_SIZE
Definition: sctp_uio.h:1236
#define SCTP_NEXT_MSG_AVAIL
Definition: sctp_uio.h:200
#define SCTP_ASSOC_SUPPORTS_MULTIBUF
Definition: sctp_uio.h:324
#define SCTP_PEER_ADDR_CHANGE
Definition: sctp_uio.h:540
#define SCTP_AUTH_FREE_KEY
Definition: sctp_uio.h:456
#define SCTP_REMOTE_ERROR
Definition: sctp_uio.h:541
#define SCTP_ADDR_CONFIRMED
Definition: sctp_uio.h:347
#define SCTP_ADDR_ADDED
Definition: sctp_uio.h:345
#define SCTP_NEXT_MSG_ISCOMPLETE
Definition: sctp_uio.h:201
#define SCTP_ASSOC_SUPPORTS_AUTH
Definition: sctp_uio.h:322
#define SCTP_STAT_INCR_COUNTER32(_x)
Definition: sctp_uio.h:1135
#define PR_SCTP_BUF_ENABLED(x)
Definition: sctp_uio.h:271
#define SCTP_ASSOC_SUPPORTS_RE_CONFIG
Definition: sctp_uio.h:325
#define SCTP_SHUTDOWN_EVENT
Definition: sctp_uio.h:543
#define SCTP_SEND_FAILED_EVENT
Definition: sctp_uio.h:554
#define SCTP_INIT
Definition: sctp_uio.h:79
#define SCTP_COMM_UP
Definition: sctp_uio.h:314
#define SCTP_CANT_STR_ASSOC
Definition: sctp_uio.h:318
#define SCTP_AUTH_NEW_KEY
Definition: sctp_uio.h:453
#define SCTP_ASSOC_SUPPORTS_MAX
Definition: sctp_uio.h:327
#define SCTP_STREAM_RESET_FAILED
Definition: sctp_uio.h:480
#define SCTP_PR_SCTP_MAX
Definition: sctp_uio.h:264
#define SCTP_STREAM_RESET_EVENT
Definition: sctp_uio.h:549
#define SCTP_DATA_SENT
Definition: sctp_uio.h:387
#define SCTP_ASSOC_SUPPORTS_ASCONF
Definition: sctp_uio.h:323
#define SCTP_ADDR_MADE_PRIM
Definition: sctp_uio.h:346
#define SCTP_STREAM_RESET_OUTGOING_SSN
Definition: sctp_uio.h:478
#define SCTP_COMM_LOST
Definition: sctp_uio.h:315
#define SCTP_ADDR_UNREACHABLE
Definition: sctp_uio.h:343
#define SCTP_NO_NEXT_MSG
Definition: sctp_uio.h:199
#define SCTP_ADAPTATION_INDICATION
Definition: sctp_uio.h:544
#define SCTP_ADDR_REMOVED
Definition: sctp_uio.h:344
#define SCTP_SEND_FAILED
Definition: sctp_uio.h:542
#define PR_SCTP_POLICY(x)
Definition: sctp_uio.h:267
#define SCTP_STAT_INCR(_x)
Definition: sctp_uio.h:1125
#define SCTP_ADDR_AVAILABLE
Definition: sctp_uio.h:342
#define SCTP_DATA_UNSENT
Definition: sctp_uio.h:386
#define SCTP_SENDER_DRY_EVENT
Definition: sctp_uio.h:550
#define SCTP_RESTART
Definition: sctp_uio.h:316
#define SCTP_ASSOC_SUPPORTS_INTERLEAVING
Definition: sctp_uio.h:326
#define SCTP_STREAM_CHANGE_EVENT
Definition: sctp_uio.h:553
#define SCTP_STAT_DECR_GAUGE32(_x)
Definition: sctp_uio.h:1140
#define SCTP_PARTIAL_DELIVERY_EVENT
Definition: sctp_uio.h:547
#define SCTP_AUTH_NO_AUTH
Definition: sctp_uio.h:455
#define SCTP_NEXT_MSG_IS_UNORDERED
Definition: sctp_uio.h:202
#define sctp_free_a_chunk(_stcb, _chk, _so_locked)
Definition: sctp_var.h:140
#define sctp_flight_size_decrease(tp1)
Definition: sctp_var.h:247
#define sctp_total_flight_decrease(stcb, tp1)
Definition: sctp_var.h:296
#define sctp_free_a_strmoq(_stcb, _strmoq, _so_locked)
Definition: sctp_var.h:122
#define sctp_is_feature_on(inp, feature)
Definition: sctp_var.h:49
#define sctp_is_feature_off(inp, feature)
Definition: sctp_var.h:50
#define sctp_mbuf_crush(data)
Definition: sctp_var.h:236
void sctp_notify(struct sctp_inpcb *, struct sctp_tcb *, struct sctp_nets *, uint8_t, uint8_t, uint16_t, uint32_t)
#define sctp_free_a_readq(_stcb, _readq)
Definition: sctp_var.h:109
#define sctp_free_remote_addr(__net)
Definition: sctp_var.h:184
#define sctp_sbspace(asoc, sb)
Definition: sctp_var.h:86
#define sctp_stcb_is_feature_on(inp, stcb, feature)
Definition: sctp_var.h:66
#define sctp_sbspace_failedmsgs(sb)
Definition: sctp_var.h:88
#define sctp_sbfree(ctl, stcb, sb, m)
Definition: sctp_var.h:200
#define sctp_stcb_is_feature_off(inp, stcb, feature)
Definition: sctp_var.h:71
#define sctp_alloc_a_chunk(_stcb, _chk)
Definition: sctp_var.h:166
#define sctp_sballoc(stcb, sb, m)
Definition: sctp_var.h:212
int32_t sctp_map_assoc_state(int kernel_state)
Definition: sctputil.c:1071
void rto_logging(struct sctp_nets *net, int from)
Definition: sctputil.c:122
struct sctp_ifa * sctp_find_ifa_in_ep(struct sctp_inpcb *inp, struct sockaddr *addr, int holds_lock)
Definition: sctputil.c:5251
void sctp_misc_ints(uint8_t from, uint32_t a, uint32_t b, uint32_t c, uint32_t d)
Definition: sctputil.c:489
struct mbuf * sctp_add_pad_tombuf(struct mbuf *m, int padlen)
Definition: sctputil.c:3084
static void sctp_user_rcvd(struct sctp_tcb *stcb, uint32_t *freed_so_far, int hold_rlock, uint32_t rwnd_req)
Definition: sctputil.c:5391
uint32_t sctp_calculate_len(struct mbuf *m)
Definition: sctputil.c:2896
void sctp_add_substate(struct sctp_tcb *stcb, int substate)
Definition: sctputil.c:7649
struct mbuf * sctp_generate_no_user_data_cause(uint32_t tsn)
Definition: sctputil.c:4978
static void sctp_notify_sender_dry_event(struct sctp_tcb *stcb, int so_locked)
Definition: sctputil.c:3760
void sctp_timer_stop(int t_type, struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t from)
Definition: sctputil.c:2615
uint32_t sctp_hc_get_mtu(union sctp_sockstore *addr, uint16_t fibnum)
Definition: sctputil.c:7599
void sctp_timer_start(int t_type, struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_nets *net)
Definition: sctputil.c:2157
void sctp_report_all_outbound(struct sctp_tcb *stcb, uint16_t error, int so_locked)
Definition: sctputil.c:4226
void sctp_stop_association_timers(struct sctp_tcb *stcb, bool stop_assoc_kill_timer)
Definition: sctputil.c:877
int sctp_expand_mapping_array(struct sctp_association *asoc, uint32_t needed)
Definition: sctputil.c:1417
void sctp_log_maxburst(struct sctp_tcb *stcb, struct sctp_nets *net, int error, int burst, uint8_t from)
Definition: sctputil.c:398
int sctp_local_addr_count(struct sctp_tcb *stcb)
Definition: sctputil.c:6930
struct sctp_paramhdr * sctp_get_next_param(struct mbuf *m, int offset, struct sctp_paramhdr *pull, int pull_limit)
Definition: sctputil.c:3073
void sctp_log_rwnd(uint8_t from, uint32_t peers_rwnd, uint32_t snd_size, uint32_t overhead)
Definition: sctputil.c:427
struct mbuf * sctp_generate_cause(uint16_t code, char *info)
Definition: sctputil.c:4951
int sctp_calculate_rto(struct sctp_tcb *stcb, struct sctp_association *asoc, struct sctp_nets *net, struct timeval *old, int rtt_from_sack)
Definition: sctputil.c:2916
int sctp_over_udp_start(void)
Definition: sctputil.c:7453
void sctp_set_state(struct sctp_tcb *stcb, int new_state)
Definition: sctputil.c:7624
void sctp_wakeup_log(struct sctp_tcb *stcb, uint32_t wake_cnt, int from)
Definition: sctputil.c:500
void sctp_over_udp_stop(void)
Definition: sctputil.c:7432
int sctp_fill_stat_log(void *optval SCTP_UNUSED, size_t *optsize SCTP_UNUSED)
Definition: sctputil.c:571
void sctp_log_sack(uint32_t old_cumack, uint32_t cumack, uint32_t tsn, uint16_t gaps, uint16_t dups, int from)
Definition: sctputil.c:184
void sctp_ulp_notify(uint32_t notification, struct sctp_tcb *stcb, uint32_t error, void *data, int so_locked)
Definition: sctputil.c:4042
static uint32_t sctp_mtu_sizes[]
Definition: sctputil.c:922
void sctp_iterator_worker(void)
Definition: sctputil.c:1616
static void sctp_notify_assoc_change(uint16_t state, struct sctp_tcb *stcb, uint16_t error, struct sctp_abort_chunk *abort, bool from_peer, bool timedout, int so_locked)
Definition: sctputil.c:3133
uint32_t sctp_select_a_tag(struct sctp_inpcb *inp, uint16_t lport, uint16_t rport, int check)
Definition: sctputil.c:1049
void sctp_bindx_add_address(struct socket *so, struct sctp_inpcb *inp, struct sockaddr *sa, uint32_t vrf_id, int *error, void *p)
Definition: sctputil.c:6733
static void sctp_notify_peer_addr_change(struct sctp_tcb *stcb, uint32_t state, struct sockaddr *sa, uint32_t error, int so_locked)
Definition: sctputil.c:3276
static void sctp_notify_send_failed2(struct sctp_tcb *stcb, uint32_t error, struct sctp_stream_queue_pending *sp, int so_locked)
Definition: sctputil.c:3495
void sctp_sblog(struct sockbuf *sb, struct sctp_tcb *stcb, int from, int incr)
Definition: sctputil.c:73
int sctp_init_asoc(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint32_t override_tag, uint32_t initial_tsn, uint32_t vrf_id, uint16_t o_strms)
Definition: sctputil.c:1114
void sctp_fill_random_store(struct sctp_pcb *m)
Definition: sctputil.c:992
void sctp_handle_ootb(struct mbuf *m, int iphlen, int offset, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, struct sctp_inpcb *inp, struct mbuf *cause, uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, uint32_t vrf_id, uint16_t port)
Definition: sctputil.c:4508
uint32_t sctp_min_mtu(uint32_t mtu1, uint32_t mtu2, uint32_t mtu3)
Definition: sctputil.c:7544
void sctp_notify_stream_reset_tsn(struct sctp_tcb *stcb, uint32_t sending_tsn, uint32_t recv_tsn, int flag)
Definition: sctputil.c:3863
struct sctp_ifa * sctp_find_ifa_by_addr(struct sockaddr *addr, uint32_t vrf_id, int holds_lock)
Definition: sctputil.c:5329
void sctp_abort_an_association(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct mbuf *op_err, bool timedout, int so_locked)
Definition: sctputil.c:4465
void sctp_log_map(uint32_t map, uint32_t cum, uint32_t high, int from)
Definition: sctputil.c:205
void sctp_print_address(struct sockaddr *sa)
Definition: sctputil.c:4718
void sctp_log_strm_del(struct sctp_queued_to_read *control, struct sctp_queued_to_read *poschk, int from)
Definition: sctputil.c:284
int sctp_connectx_helper_find(struct sctp_inpcb *inp, struct sockaddr *addr, unsigned int totaddr, unsigned int *num_v4, unsigned int *num_v6, unsigned int limit)
Definition: sctputil.c:6660
static void sctp_iterator_work(struct sctp_iterator *it)
Definition: sctputil.c:1450
void sctp_print_mapping_array(struct sctp_association *asoc)
Definition: sctputil.c:1382
static void sctp_handle_addr_wq(void)
Definition: sctputil.c:1637
void sctp_log_rwnd_set(uint8_t from, uint32_t peers_rwnd, uint32_t flight_size, uint32_t overhead, uint32_t a_rwndval)
Definition: sctputil.c:447
uint32_t sctp_get_prev_mtu(uint32_t val)
Definition: sctputil.c:950
int sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id)
Definition: sctputil.c:6461
__FBSDID("$FreeBSD$")
void sctp_log_block(uint8_t from, struct sctp_association *asoc, ssize_t sendlen)
Definition: sctputil.c:548
static void sctp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *inp, const struct sockaddr *sa SCTP_UNUSED, void *ctx SCTP_UNUSED)
Definition: sctputil.c:7098
uint32_t sctp_ticks_to_secs(uint32_t ticks)
Definition: sctputil.c:833
void sctp_bindx_delete_address(struct sctp_inpcb *inp, struct sockaddr *sa, uint32_t vrf_id, int *error)
Definition: sctputil.c:6849
void sctp_log_lock(struct sctp_inpcb *inp, struct sctp_tcb *stcb, uint8_t from)
Definition: sctputil.c:352
void sctp_add_to_readq(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct sctp_queued_to_read *control, struct sockbuf *sb, int end, int inp_read_lock_held, int so_locked)
Definition: sctputil.c:4845
void sctp_notify_stream_reset_add(struct sctp_tcb *stcb, uint16_t numberin, uint16_t numberout, int flag)
Definition: sctputil.c:3807
void sctp_timeout_handler(void *t)
Definition: sctputil.c:1719
static void sctp_notify_send_failed(struct sctp_tcb *stcb, uint8_t sent, uint32_t error, struct sctp_tmit_chunk *chk, int so_locked)
Definition: sctputil.c:3364
void sctp_pull_off_control_to_new_inp(struct sctp_inpcb *old_inp, struct sctp_inpcb *new_inp, struct sctp_tcb *stcb, int waitflags)
Definition: sctputil.c:4758
static void sctp_notify_partial_delivery_indication(struct sctp_tcb *stcb, uint32_t error, uint32_t val, int so_locked)
Definition: sctputil.c:3639
uint32_t sctp_select_initial_TSN(struct sctp_pcb *inp)
Definition: sctputil.c:1011
void sctp_hc_set_mtu(union sctp_sockstore *addr, uint16_t fibnum, uint32_t mtu)
Definition: sctputil.c:7574
uint32_t sctp_get_next_mtu(uint32_t val)
Definition: sctputil.c:975
void sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *net, int augment, uint8_t from)
Definition: sctputil.c:315
uint32_t sctp_get_ifa_hash_val(struct sockaddr *addr)
Definition: sctputil.c:5295
static void sctp_notify_remote_error(struct sctp_tcb *stcb, uint16_t error, struct sctp_error_chunk *chunk)
Definition: sctputil.c:3977
int sctp_soreceive(struct socket *so, struct sockaddr **psa, struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp)
Definition: sctputil.c:6508
void sctp_log_fr(uint32_t biggest_tsn, uint32_t biggest_new_tsn, uint32_t tsn, int from)
Definition: sctputil.c:225
void sctp_log_strm_del_alt(struct sctp_tcb *stcb, uint32_t tsn, uint16_t sseq, uint16_t stream, int from)
Definition: sctputil.c:141
static void sctp_notify_adaptation_layer(struct sctp_tcb *stcb)
Definition: sctputil.c:3591
int sctp_cmpaddr(struct sockaddr *sa1, struct sockaddr *sa2)
Definition: sctputil.c:4676
static void sctp_notify_shutdown_event(struct sctp_tcb *stcb)
Definition: sctputil.c:3707
void sctp_log_closing(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int16_t loc)
Definition: sctputil.c:96
#define KTR_SCTP
Definition: sctputil.c:66
void sctp_wakeup_the_read_socket(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked SCTP_UNUSED)
Definition: sctputil.c:4833
caddr_t sctp_m_getptr(struct mbuf *m, int off, int len, uint8_t *in_ptr)
Definition: sctputil.c:3033
static void sctp_notify_stream_reset(struct sctp_tcb *stcb, int number_entries, uint16_t *list, int flag)
Definition: sctputil.c:3913
void sctp_abort_association(struct sctp_inpcb *inp, struct sctp_tcb *stcb, struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, struct sctphdr *sh, struct mbuf *op_err, uint8_t mflowtype, uint32_t mflowid, uint32_t vrf_id, uint16_t port)
Definition: sctputil.c:4361
uint32_t sctp_secs_to_ticks(uint32_t secs)
Definition: sctputil.c:818
uint32_t sctp_msecs_to_ticks(uint32_t msecs)
Definition: sctputil.c:780
uint32_t sctp_ticks_to_msecs(uint32_t ticks)
Definition: sctputil.c:799
int sctp_connectx_helper_add(struct sctp_tcb *stcb, struct sockaddr *addr, int totaddr, int *error)
Definition: sctputil.c:6579
void sctp_log_nagle_event(struct sctp_tcb *stcb, int action)
Definition: sctputil.c:163
struct mbuf * sctp_pad_lastmbuf(struct mbuf *m, int padval, struct mbuf *last_mbuf)
Definition: sctputil.c:3115
int sctp_sorecvmsg(struct socket *so, struct uio *uio, struct mbuf **mp, struct sockaddr *from, int fromlen, int *msg_flags, struct sctp_sndrcvinfo *sinfo, int filling_sinfo)
Definition: sctputil.c:5477
void sctp_abort_notification(struct sctp_tcb *stcb, bool from_peer, bool timeout, uint16_t error, struct sctp_abort_chunk *abort, int so_locked)
Definition: sctputil.c:4327
int sctp_release_pr_sctp_chunk(struct sctp_tcb *stcb, struct sctp_tmit_chunk *tp1, uint8_t sent, int so_locked)
Definition: sctputil.c:5031
void sctp_stop_timers_for_shutdown(struct sctp_tcb *stcb)
Definition: sctputil.c:853
int sctp_is_there_an_abort_here(struct mbuf *m, int iphlen, uint32_t *vtag)
Definition: sctputil.c:4578
#define sctp_get_associd(stcb)
Definition: sctputil.h:63
#define sctp_free_bufspace(stcb, asoc, tp1, chk_cnt)
Definition: sctputil.h:248
#define sctp_m_freem
Definition: sctputil.h:55
#define sctp_m_free
Definition: sctputil.h:54
#define sctp_free_spbufspace(stcb, asoc, sp)
Definition: sctputil.h:270
#define SCTP_READ_LOCK_NOT_HELD
Definition: sctputil.h:44
Definition: ip_icmp.h:65
u_char icmp_code
Definition: ip_icmp.h:67
u_char icmp_type
Definition: ip_icmp.h:66
in_addr_t s_addr
Definition: in.h:84
u_int8_t inc_flags
Definition: in_pcb.h:114
u_int16_t inc_fibnum
Definition: in_pcb.h:116
Definition: in_pcb.h:217
struct ucred * inp_cred
Definition: in_pcb.h:258
int inp_flags
Definition: in_pcb.h:246
Definition: ip6.h:74
Definition: ip.h:51
struct in_addr ip_src ip_dst
Definition: ip.h:71
u_char ip_hl
Definition: ip.h:53
u_short ip_len
Definition: ip.h:61
u_char ip_v
Definition: ip.h:54
struct sctpiterators iteratorhead
Definition: sctp_structs.h:177
uint32_t iterator_running
Definition: sctp_structs.h:179
uint32_t iterator_flags
Definition: sctp_structs.h:180
struct sctp_iterator * cur_it
Definition: sctp_structs.h:178
struct sctp_chunkhdr ch
Definition: sctp_header.h:290
sctp_assoc_t sai_assoc_id
Definition: sctp_uio.h:403
uint32_t sai_adaptation_ind
Definition: sctp_uio.h:402
struct sctpladdr list_of_work
Definition: sctp_structs.h:169
uint16_t sac_type
Definition: sctp_uio.h:302
uint16_t sac_flags
Definition: sctp_uio.h:303
uint16_t sac_inbound_streams
Definition: sctp_uio.h:308
uint8_t sac_info[]
Definition: sctp_uio.h:310
uint16_t sac_outbound_streams
Definition: sctp_uio.h:307
uint16_t sac_error
Definition: sctp_uio.h:306
uint32_t sac_length
Definition: sctp_uio.h:304
uint16_t sac_state
Definition: sctp_uio.h:305
sctp_assoc_t sac_assoc_id
Definition: sctp_uio.h:309
uint32_t assocreset_remote_tsn
Definition: sctp_uio.h:491
uint16_t assocreset_flags
Definition: sctp_uio.h:487
uint32_t assocreset_length
Definition: sctp_uio.h:488
uint16_t assocreset_type
Definition: sctp_uio.h:486
sctp_assoc_t assocreset_assoc_id
Definition: sctp_uio.h:489
uint32_t assocreset_local_tsn
Definition: sctp_uio.h:490
uint32_t asconf_seq_in
Definition: sctp_structs.h:896
uint32_t sending_seq
Definition: sctp_structs.h:930
int16_t num_send_timers_up
uint16_t strm_realoutsize
uint16_t mapping_array_size
uint32_t total_output_queue_size
unsigned int sent_queue_retran_cnt
uint16_t max_send_times
uint32_t timoshutdown
unsigned int sent_queue_cnt_removeable
uint16_t stream_locked_on
uint8_t peer_supports_nat
uint32_t sctp_frag_point
uint32_t highest_tsn_inside_map
Definition: sctp_structs.h:953
struct sctp_timer asconf_timer
Definition: sctp_structs.h:800
uint32_t str_reset_seq_out
Definition: sctp_structs.h:899
uint32_t my_last_reported_rwnd
uint16_t max_init_times
uint32_t default_mtu
uint8_t adaptation_needed
struct sctpchunk_listhead send_queue
Definition: sctp_structs.h:833
struct sctp_timer strreset_timer
Definition: sctp_structs.h:801
uint16_t streamincnt
uint16_t def_net_failure
struct sctp_stream_out * strmout
Definition: sctp_structs.h:857
uint32_t sb_send_resv
uint32_t peer_vtag_nonce
Definition: sctp_structs.h:910
struct sctpladdr sctp_restricted_addrs
Definition: sctp_structs.h:807
unsigned int total_flight_count
struct sctp_keyhead shared_keys
struct timeval start_time
uint32_t sctp_autoclose_ticks
uint32_t asconf_seq_out
Definition: sctp_structs.h:893
struct sctpnetlisthead nets
Definition: sctp_structs.h:814
uint8_t reconfig_supported
uint8_t auth_supported
struct sctp_readhead pending_reply_queue
Definition: sctp_structs.h:876
sctp_authinfo_t authinfo
uint32_t pr_sctp_cnt
uint8_t idata_supported
uint32_t initial_rto
uint8_t sat_network_lockout
uint32_t asconf_seq_out_acked
Definition: sctp_structs.h:894
struct sctp_timer dack_timer
Definition: sctp_structs.h:799
struct sctp_asconf_ackhead asconf_ack_sent
Definition: sctp_structs.h:842
uint32_t cumulative_tsn
Definition: sctp_structs.h:943
struct sctpchunk_listhead free_chunks
Definition: sctp_structs.h:817
uint32_t mapping_array_base_tsn
Definition: sctp_structs.h:948
uint32_t peers_adaptation
uint32_t timoheartbeat
uint32_t str_reset_seq_in
Definition: sctp_structs.h:901
unsigned int total_flight
uint32_t timoshutdownack
unsigned int stream_queue_cnt
uint8_t sctp_cmt_on_off
uint8_t adaptation_sent
uint32_t cookie_life
struct sctp_asconf_addrhead asconf_queue
Definition: sctp_structs.h:790
struct sctpchunk_listhead asconf_send_queue
Definition: sctp_structs.h:823
struct sctp_queued_to_read * control_pdapi
Definition: sctp_structs.h:969
struct sctp_nets * last_net_cmt_send_started
Definition: sctp_structs.h:863
unsigned int delayed_ack
struct sctp_resethead resetHead
Definition: sctp_structs.h:873
struct sctp_ss_functions ss_functions
Definition: sctp_structs.h:886
struct sctp_timer autoclose_timer
Definition: sctp_structs.h:803
struct sctp_timer shut_guard_timer
Definition: sctp_structs.h:802
uint8_t * nr_mapping_array
Definition: sctp_structs.h:956
uint16_t streamoutcnt
struct sctpchunk_listhead control_send_queue
Definition: sctp_structs.h:820
uint8_t asconf_supported
uint32_t highest_tsn_inside_nr_map
Definition: sctp_structs.h:957
uint32_t smallest_mtu
Definition: sctp_structs.h:915
unsigned int max_inbound_streams
uint32_t last_acked_seq
Definition: sctp_structs.h:927
uint16_t def_net_pf_threshold
uint64_t abandoned_unsent[SCTP_PR_SCTP_MAX+1]
struct sctp_timer delete_prim_timer
Definition: sctp_structs.h:804
uint32_t congestion_control_module
Definition: sctp_structs.h:884
uint8_t nrsack_supported
uint8_t use_precise_time
struct sctp_scoping scope
uint8_t pktdrop_supported
uint8_t * mapping_array
Definition: sctp_structs.h:858
uint16_t free_chunk_cnt
uint32_t chunks_on_out_queue
uint8_t prsctp_supported
unsigned int send_queue_cnt
uint64_t abandoned_sent[SCTP_PR_SCTP_MAX+1]
struct sctp_nonpad_sndrcvinfo def_send
Definition: sctp_structs.h:796
uint16_t ecn_echo_cnt_onq
uint32_t heart_beat_delay
struct sctp_nets * primary_destination
Definition: sctp_structs.h:860
uint32_t stream_scheduling_module
Definition: sctp_structs.h:888
struct sctp_cc_functions cc_functions
Definition: sctp_structs.h:879
uint32_t init_seq_number
Definition: sctp_structs.h:933
struct sctpchunk_listhead sent_queue
Definition: sctp_structs.h:832
unsigned int pre_open_streams
uint32_t initial_init_rto_max
uint32_t fr_max_burst
uint32_t marked_retrans
uint32_t my_vtag_nonce
Definition: sctp_structs.h:909
unsigned int sack_freq
uint32_t advanced_peer_ack_point
Definition: sctp_structs.h:937
struct sctp_stream_in * strmin
Definition: sctp_structs.h:856
uint64_t sctp_features
uint8_t local_strreset_support
struct timeval discontinuity_time
uint32_t peer_vtag
Definition: sctp_structs.h:907
unsigned int sent_queue_cnt
uint16_t assoc_keyid
Definition: sctp_auth.h:94
sctp_key_t * random
Definition: sctp_auth.h:88
sctp_key_t * assoc_key
Definition: sctp_auth.h:91
sctp_key_t * recv_key
Definition: sctp_auth.h:92
uint16_t active_keyid
Definition: sctp_auth.h:93
uint16_t recv_keyid
Definition: sctp_auth.h:95
uint16_t stream_qcnt
Definition: sctp_uio.h:759
uint32_t sndlen
Definition: sctp_uio.h:756
uint16_t chunks_on_oque
Definition: sctp_uio.h:760
uint16_t flight_size
Definition: sctp_uio.h:761
uint32_t onsb
Definition: sctp_uio.h:755
uint32_t peer_rwnd
Definition: sctp_uio.h:757
uint16_t send_sent_qcnt
Definition: sctp_uio.h:758
void(* sctp_rtt_calculated)(struct sctp_tcb *, struct sctp_nets *, struct timeval *)
Definition: sctp_structs.h:729
uint8_t chunk_type
Definition: sctp.h:60
uint16_t chunk_length
Definition: sctp.h:62
struct sctp_nets * net
Definition: sctp_uio.h:743
uint8_t cnt_in_send
Definition: sctp_uio.h:750
uint16_t inflight
Definition: sctp_uio.h:746
uint8_t need_new_pseudo_cumack
Definition: sctp_uio.h:749
uint8_t meets_pseudo_cumack
Definition: sctp_uio.h:748
uint16_t cwnd_augment
Definition: sctp_uio.h:747
uint32_t pseudo_cumack
Definition: sctp_uio.h:745
uint32_t cwnd_new_value
Definition: sctp_uio.h:744
uint8_t cnt_in_str
Definition: sctp_uio.h:751
struct sctp_log_closing close
Definition: sctp_uio.h:910
struct sctp_nagle_log nagle
Definition: sctp_uio.h:922
uint8_t from
Definition: sctp_uio.h:906
struct sctp_misc_info misc
Definition: sctp_uio.h:925
struct sctp_fr_log fr
Definition: sctp_uio.h:914
struct sctp_mbuf_log mb
Definition: sctp_uio.h:924
struct sctp_fr_map map
Definition: sctp_uio.h:915
struct sctp_rto_log rto
Definition: sctp_uio.h:920
struct sctp_cwnd_args cwnd
Definition: sctp_uio.h:912
struct sctp_sb_log sb
Definition: sctp_uio.h:921
struct sctp_mbcnt_log mbcnt
Definition: sctp_uio.h:917
struct sctp_rwnd_log rwnd
Definition: sctp_uio.h:916
struct sctp_sack_log sack
Definition: sctp_uio.h:918
union sctp_cwnd_log::@37 x
struct sctp_lock_log lock
Definition: sctp_uio.h:919
struct sctp_str_log strlog
Definition: sctp_uio.h:913
struct sctp_blk_args blk
Definition: sctp_uio.h:911
struct sctp_sbwake_log wake
Definition: sctp_uio.h:923
uint16_t length
Definition: sctp.h:382
uint16_t code
Definition: sctp.h:381
struct sctp_chunkhdr ch
Definition: sctp_header.h:312
struct sctp_error_cause cause
Definition: sctp.h:417
uint16_t serinfo_next_stream
Definition: sctp_uio.h:142
uint16_t serinfo_next_flags
Definition: sctp_uio.h:141
uint32_t serinfo_next_length
Definition: sctp_uio.h:144
uint32_t serinfo_next_aid
Definition: sctp_uio.h:143
uint32_t serinfo_next_ppid
Definition: sctp_uio.h:145
uint32_t largest_new_tsn
Definition: sctp_uio.h:810
uint32_t largest_tsn
Definition: sctp_uio.h:809
uint32_t tsn
Definition: sctp_uio.h:811
uint32_t base
Definition: sctp_uio.h:815
uint32_t high
Definition: sctp_uio.h:817
uint32_t cum
Definition: sctp_uio.h:816
uint16_t length
Definition: sctp.h:376
uint16_t code
Definition: sctp.h:375
uint8_t info[]
Definition: sctp.h:377
union sctp_sockstore address
Definition: sctp_pcb.h:105
uint32_t refcount
Definition: sctp_pcb.h:106
uint32_t vrf_id
Definition: sctp_pcb.h:109
void * ifa
Definition: sctp_pcb.h:102
struct sctp_ifalist ifalist
Definition: sctp_pcb.h:75
struct sctp_chunkhdr ch
Definition: sctp_header.h:224
struct sctp_init init
Definition: sctp_header.h:225
uint32_t initiate_tag
Definition: sctp_header.h:174
uint16_t fibnum
Definition: sctp_pcb.h:422
uint8_t auth_supported
Definition: sctp_pcb.h:400
struct inpcb inp
Definition: sctp_pcb.h:356
uint8_t prsctp_supported
Definition: sctp_pcb.h:399
uint32_t max_cwnd
Definition: sctp_pcb.h:395
uint32_t sctp_flags
Definition: sctp_pcb.h:381
uint8_t ecn_supported
Definition: sctp_pcb.h:398
struct mtx inp_create_mtx
Definition: sctp_pcb.h:418
uint8_t asconf_supported
Definition: sctp_pcb.h:402
uint8_t idata_supported
Definition: sctp_pcb.h:401
struct socket * sctp_socket
Definition: sctp_pcb.h:379
uint32_t sctp_frag_point
Definition: sctp_pcb.h:392
union sctp_inpcb::@33 ip_inp
uint8_t nrsack_supported
Definition: sctp_pcb.h:404
struct sctpasochead sctp_asoc_list
Definition: sctp_pcb.h:388
struct mtx inp_mtx
Definition: sctp_pcb.h:417
uint8_t reconfig_supported
Definition: sctp_pcb.h:403
uint64_t sctp_features
Definition: sctp_pcb.h:380
uint32_t total_recvs
Definition: sctp_pcb.h:424
uint32_t sctp_context
Definition: sctp_pcb.h:394
struct mbuf * control
Definition: sctp_pcb.h:416
struct sctp_readhead read_queue
Definition: sctp_pcb.h:362
struct sctp_nonpad_sndrcvinfo def_send
Definition: sctp_pcb.h:406
uint32_t last_abort_code
Definition: sctp_pcb.h:425
struct sctpladdr sctp_addr_list
Definition: sctp_pcb.h:371
uint8_t pktdrop_supported
Definition: sctp_pcb.h:405
struct mtx inp_rdata_mtx
Definition: sctp_pcb.h:419
struct sctp_pcb sctp_ep
Definition: sctp_pcb.h:383
uint8_t local_strreset_support
Definition: sctp_pcb.h:396
uint32_t sctp_cmt_on_off
Definition: sctp_pcb.h:397
uint32_t pcb_features
Definition: sctp_structs.h:146
uint8_t done_current_ep
Definition: sctp_structs.h:150
inp_func function_inp
Definition: sctp_structs.h:140
struct sctp_inpcb * inp
Definition: sctp_structs.h:136
uint32_t iterator_flags
Definition: sctp_structs.h:148
end_func function_atend
Definition: sctp_structs.h:142
uint32_t asoc_state
Definition: sctp_structs.h:147
asoc_func function_assoc
Definition: sctp_structs.h:139
struct sctp_tcb * stcb
Definition: sctp_structs.h:137
uint32_t pcb_flags
Definition: sctp_structs.h:145
uint32_t val
Definition: sctp_structs.h:144
uint8_t no_chunk_output
Definition: sctp_structs.h:149
inp_func function_inp_end
Definition: sctp_structs.h:141
struct vnet * vn
Definition: sctp_structs.h:134
uint32_t action
Definition: sctp_pcb.h:119
struct timeval start_time
Definition: sctp_pcb.h:122
struct sctp_ifa * ifa
Definition: sctp_pcb.h:118
uint8_t sockrcvbuf_lock
Definition: sctp_uio.h:849
uint8_t tcb_lock
Definition: sctp_uio.h:845
void * sock
Definition: sctp_uio.h:843
void * inp
Definition: sctp_uio.h:844
uint8_t inp_lock
Definition: sctp_uio.h:846
uint8_t sock_lock
Definition: sctp_uio.h:848
uint8_t create_lock
Definition: sctp_uio.h:851
uint8_t socksndbuf_lock
Definition: sctp_uio.h:850
uint8_t info_lock
Definition: sctp_uio.h:847
uint32_t sctp_flags
Definition: sctp_uio.h:890
uint16_t state
Definition: sctp_uio.h:891
uint32_t total_queue_size
Definition: sctp_uio.h:828
struct mbuf * mp
Definition: sctp_uio.h:896
uint32_t log4
Definition: sctp_uio.h:884
uint32_t log2
Definition: sctp_uio.h:882
uint32_t log1
Definition: sctp_uio.h:881
uint32_t log3
Definition: sctp_uio.h:883
uint16_t count_in_flight
Definition: sctp_uio.h:865
void * stcb
Definition: sctp_uio.h:861
uint32_t total_in_queue
Definition: sctp_uio.h:863
uint16_t count_in_queue
Definition: sctp_uio.h:864
uint32_t total_flight
Definition: sctp_uio.h:862
union sctp_sockstore _l_addr
Definition: sctp_structs.h:193
uint32_t pseudo_cumack
Definition: sctp_structs.h:312
uint8_t new_pseudo_cumack
Definition: sctp_structs.h:373
uint32_t flight_size
Definition: sctp_structs.h:289
uint8_t find_pseudo_cumack
Definition: sctp_structs.h:358
uint32_t RTO
Definition: sctp_structs.h:271
uint16_t port
Definition: sctp_structs.h:342
uint8_t RTO_measured
Definition: sctp_structs.h:377
uint16_t dest_state
Definition: sctp_structs.h:334
struct sctp_net_route ro
Definition: sctp_structs.h:258
uint64_t rtt
Definition: sctp_structs.h:270
uint8_t lan_type
Definition: sctp_structs.h:379
uint32_t cwnd
Definition: sctp_structs.h:290
uint32_t spc_state
Definition: sctp_uio.h:336
struct sockaddr_storage spc_aaddr
Definition: sctp_uio.h:335
uint32_t spc_length
Definition: sctp_uio.h:334
uint16_t spc_type
Definition: sctp_uio.h:332
uint32_t spc_error
Definition: sctp_uio.h:337
uint16_t spc_flags
Definition: sctp_uio.h:333
sctp_assoc_t spc_assoc_id
Definition: sctp_uio.h:338
uint32_t initial_init_rto_max
Definition: sctp_pcb.h:272
uint32_t sctp_maxrto
Definition: sctp_pcb.h:270
uint32_t secret_key[SCTP_HOW_MANY_SECRETS][SCTP_NUMBER_OF_SECRETS]
Definition: sctp_pcb.h:265
uint16_t port
Definition: sctp_pcb.h:328
uint8_t default_dscp
Definition: sctp_pcb.h:325
char current_secret_number
Definition: sctp_pcb.h:326
uint8_t random_numbers[SCTP_SIGNATURE_ALOC_SIZE]
Definition: sctp_pcb.h:304
uint16_t max_init_times
Definition: sctp_pcb.h:289
uint32_t sctp_default_ss_module
Definition: sctp_pcb.h:279
char last_secret_number
Definition: sctp_pcb.h:327
struct sctp_timer signature_change
Definition: sctp_pcb.h:311
uint16_t max_send_times
Definition: sctp_pcb.h:292
uint16_t def_net_failure
Definition: sctp_pcb.h:294
uint32_t initial_sequence_debug
Definition: sctp_pcb.h:316
uint32_t auto_close_time
Definition: sctp_pcb.h:315
uint32_t def_cookie_life
Definition: sctp_pcb.h:313
uint32_t default_mtu
Definition: sctp_pcb.h:285
uint32_t initial_rto
Definition: sctp_pcb.h:271
uint32_t sctp_minrto
Definition: sctp_pcb.h:269
unsigned int sctp_sack_freq
Definition: sctp_pcb.h:274
uint32_t random_counter
Definition: sctp_pcb.h:303
uint32_t fr_max_burst
Definition: sctp_pcb.h:321
uint16_t def_net_pf_threshold
Definition: sctp_pcb.h:296
unsigned int time_of_secret_change
Definition: sctp_pcb.h:263
uint16_t max_open_streams_intome
Definition: sctp_pcb.h:300
uint32_t store_at
Definition: sctp_pcb.h:319
uint8_t random_store[SCTP_SIGNATURE_ALOC_SIZE]
Definition: sctp_pcb.h:305
uint32_t sctp_default_cc_module
Definition: sctp_pcb.h:278
uint32_t sctp_timeoutticks[SCTP_NUM_TMRS]
Definition: sctp_pcb.h:268
uint32_t max_burst
Definition: sctp_pcb.h:320
uint32_t vtag
Definition: sctp_pcb.h:342
uint16_t seq
Definition: sctp_pcb.h:344
uint16_t sz
Definition: sctp_pcb.h:345
uint16_t strm
Definition: sctp_pcb.h:343
uint16_t flgs
Definition: sctp_pcb.h:346
uint16_t pdapi_type
Definition: sctp_uio.h:427
uint16_t pdapi_stream
Definition: sctp_uio.h:431
sctp_assoc_t pdapi_assoc_id
Definition: sctp_uio.h:433
uint16_t pdapi_flags
Definition: sctp_uio.h:428
uint32_t pdapi_length
Definition: sctp_uio.h:429
uint32_t pdapi_indication
Definition: sctp_uio.h:430
uint16_t pdapi_seq
Definition: sctp_uio.h:432
struct mbuf * aux_data
Definition: sctp_structs.h:469
struct sctp_tcb * stcb
Definition: sctp_structs.h:471
struct mbuf * data
Definition: sctp_structs.h:466
uint32_t sinfo_timetolive
Definition: sctp_structs.h:455
struct mbuf * tail_mbuf
Definition: sctp_structs.h:468
sctp_assoc_t sinfo_assoc_id
Definition: sctp_structs.h:458
struct sctp_nets * whoFrom
Definition: sctp_structs.h:465
uint8_t sre_data[]
Definition: sctp_uio.h:360
sctp_assoc_t sre_assoc_id
Definition: sctp_uio.h:359
uint16_t sre_type
Definition: sctp_uio.h:355
uint16_t sre_flags
Definition: sctp_uio.h:356
uint32_t sre_length
Definition: sctp_uio.h:357
uint16_t sre_error
Definition: sctp_uio.h:358
void * net
Definition: sctp_uio.h:856
uint32_t rtt
Definition: sctp_uio.h:857
uint32_t overhead
Definition: sctp_uio.h:823
uint32_t send_size
Definition: sctp_uio.h:822
uint32_t rwnd
Definition: sctp_uio.h:821
uint32_t new_rwnd
Definition: sctp_uio.h:824
uint32_t cumack
Definition: sctp_uio.h:835
uint16_t numGaps
Definition: sctp_uio.h:838
uint16_t numDups
Definition: sctp_uio.h:839
uint32_t oldcumack
Definition: sctp_uio.h:836
uint32_t tsn
Definition: sctp_uio.h:837
uint32_t incr
Definition: sctp_uio.h:805
uint32_t stcb_sbcc
Definition: sctp_uio.h:804
void * stcb
Definition: sctp_uio.h:802
uint32_t so_sbcc
Definition: sctp_uio.h:803
uint16_t wake_cnt
Definition: sctp_uio.h:873
uint16_t send_q
Definition: sctp_uio.h:870
uint16_t flight
Definition: sctp_uio.h:872
uint16_t sent_q
Definition: sctp_uio.h:871
uint8_t sbflags
Definition: sctp_uio.h:876
uint8_t stream_qcnt
Definition: sctp_uio.h:874
uint8_t sctpflags
Definition: sctp_uio.h:877
uint8_t chunks_on_oque
Definition: sctp_uio.h:875
uint8_t site_scope
Definition: sctp_structs.h:651
uint8_t ipv6_addr_legal
Definition: sctp_structs.h:647
uint8_t ipv4_addr_legal
Definition: sctp_structs.h:646
uint8_t ipv4_local_scope
Definition: sctp_structs.h:649
uint8_t loopback_scope
Definition: sctp_structs.h:648
uint8_t local_scope
Definition: sctp_structs.h:650
sctp_assoc_t ssfe_assoc_id
Definition: sctp_uio.h:381
struct sctp_sndinfo ssfe_info
Definition: sctp_uio.h:380
uint16_t ssf_type
Definition: sctp_uio.h:365
uint32_t ssf_length
Definition: sctp_uio.h:367
struct sctp_sndrcvinfo ssf_info
Definition: sctp_uio.h:369
sctp_assoc_t ssf_assoc_id
Definition: sctp_uio.h:370
uint16_t ssf_flags
Definition: sctp_uio.h:366
uint32_t ssf_error
Definition: sctp_uio.h:368
uint16_t sse_type
Definition: sctp_uio.h:391
uint32_t sse_length
Definition: sctp_uio.h:393
sctp_assoc_t sse_assoc_id
Definition: sctp_uio.h:394
uint16_t sse_flags
Definition: sctp_uio.h:392
uint16_t snd_sid
Definition: sctp_uio.h:158
sctp_assoc_t snd_assoc_id
Definition: sctp_uio.h:162
uint16_t snd_flags
Definition: sctp_uio.h:159
uint32_t snd_context
Definition: sctp_uio.h:161
uint32_t snd_ppid
Definition: sctp_uio.h:160
uint32_t sinfo_tsn
Definition: sctp_uio.h:123
sctp_assoc_t sinfo_assoc_id
Definition: sctp_uio.h:125
uint16_t sinfo_flags
Definition: sctp_uio.h:119
uint16_t sinfo_stream
Definition: sctp_uio.h:117
uint16_t sinfo_ssn
Definition: sctp_uio.h:118
uint32_t sinfo_cumtsn
Definition: sctp_uio.h:124
uint32_t sinfo_timetolive
Definition: sctp_uio.h:122
uint32_t sinfo_context
Definition: sctp_uio.h:121
uint32_t sinfo_ppid
Definition: sctp_uio.h:120
void(* sctp_ss_remove_from_stream)(struct sctp_tcb *stcb, struct sctp_association *asoc, struct sctp_stream_out *strq, struct sctp_stream_queue_pending *sp)
Definition: sctp_structs.h:744
void(* sctp_ss_init)(struct sctp_tcb *stcb, struct sctp_association *asoc)
Definition: sctp_structs.h:737
void(* sctp_ss_init_stream)(struct sctp_tcb *stcb, struct sctp_stream_out *strq, struct sctp_stream_out *with_strq)
Definition: sctp_structs.h:740
uint16_t n_sseq
Definition: sctp_uio.h:796
void * stcb
Definition: sctp_uio.h:793
uint32_t e_tsn
Definition: sctp_uio.h:795
uint16_t e_sseq
Definition: sctp_uio.h:797
uint16_t strm
Definition: sctp_uio.h:798
uint32_t n_tsn
Definition: sctp_uio.h:794
sctp_assoc_t strchange_assoc_id
Definition: sctp_uio.h:504
uint16_t strchange_instrms
Definition: sctp_uio.h:505
uint16_t strchange_outstrms
Definition: sctp_uio.h:506
uint8_t delivery_started
Definition: sctp_structs.h:546
uint8_t last_msg_incomplete
Definition: sctp_structs.h:629
uint32_t chunks_on_queues
Definition: sctp_structs.h:613
uint32_t next_mid_ordered
Definition: sctp_structs.h:626
uint32_t abandoned_unsent[1]
Definition: sctp_structs.h:619
uint32_t next_mid_unordered
Definition: sctp_structs.h:627
struct sctp_streamhead outqueue
Definition: sctp_structs.h:611
uint32_t abandoned_sent[1]
Definition: sctp_structs.h:620
struct sctp_nets * net
Definition: sctp_structs.h:514
sctp_assoc_t strreset_assoc_id
Definition: sctp_uio.h:472
uint32_t strreset_length
Definition: sctp_uio.h:471
uint16_t strreset_stream_list[]
Definition: sctp_uio.h:473
struct socket * sctp_socket
Definition: sctp_pcb.h:438
struct mtx tcb_mtx
Definition: sctp_pcb.h:461
uint32_t freed_by_sorcv_sincelast
Definition: sctp_pcb.h:455
uint32_t total_recvs
Definition: sctp_pcb.h:457
struct sctp_association asoc
Definition: sctp_pcb.h:449
uint16_t rport
Definition: sctp_pcb.h:459
struct sctp_inpcb * sctp_ep
Definition: sctp_pcb.h:439
void * net
Definition: sctp_structs.h:55
uint32_t stopped_from
Definition: sctp_structs.h:61
void * self
Definition: sctp_structs.h:59
void * tcb
Definition: sctp_structs.h:54
uint32_t ticks
Definition: sctp_structs.h:60
void * ep
Definition: sctp_structs.h:53
sctp_os_timer_t timer
Definition: sctp_structs.h:46
void * vnet
Definition: sctp_structs.h:56
union sctp_tmit_chunk::@34 rec
struct sctp_data_chunkrec data
Definition: sctp_structs.h:424
uint16_t book_size
Definition: sctp_structs.h:437
struct sctp_nets * whoTo
Definition: sctp_structs.h:431
uint16_t send_size
Definition: sctp_structs.h:436
struct sctp_association * asoc
Definition: sctp_structs.h:427
struct sctp_ifnlist ifnlist
Definition: sctp_pcb.h:65
u_long vrf_addr_hashmark
Definition: sctp_pcb.h:70
struct sctp_ifalist * vrf_addr_hash
Definition: sctp_pcb.h:64
Definition: sctp.h:48
uint16_t src_port
Definition: sctp.h:49
uint32_t v_tag
Definition: sctp.h:51
uint16_t dest_port
Definition: sctp.h:50
Definition: in.h:97
struct in_addr sin_addr
Definition: in.h:101
uint8_t sin_len
Definition: in.h:98
sa_family_t sin_family
Definition: in.h:99
in_port_t sin_port
Definition: in.h:100
Definition: udp.h:45
u_short uh_sport
Definition: udp.h:46
u_short uh_dport
Definition: udp.h:47
uint32_t tcp_hc_getmtu(struct in_conninfo *inc)
void tcp_hc_updatemtu(struct in_conninfo *inc, uint32_t mtu)
int udp_set_kernel_tunneling(struct socket *so, udp_tun_func_t f, udp_tun_icmp_t i, void *ctx)
Definition: udp_usrreq.c:1547
struct sockaddr_in6 sin6
Definition: sctp_uio.h:629
struct sockaddr sa
Definition: sctp_uio.h:630
struct sockaddr_in sin
Definition: sctp_uio.h:628