xref: /freebsd/sys/netinet/sctp_output.c (revision 783d3ff6)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
5  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
6  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * a) Redistributions of source code must retain the above copyright notice,
12  *    this list of conditions and the following disclaimer.
13  *
14  * b) Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the distribution.
17  *
18  * c) Neither the name of Cisco Systems, Inc. nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32  * THE POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include <netinet/sctp_os.h>
36 #include <sys/proc.h>
37 #include <netinet/sctp_var.h>
38 #include <netinet/sctp_sysctl.h>
39 #include <netinet/sctp_header.h>
40 #include <netinet/sctp_pcb.h>
41 #include <netinet/sctputil.h>
42 #include <netinet/sctp_output.h>
43 #include <netinet/sctp_uio.h>
44 #include <netinet/sctputil.h>
45 #include <netinet/sctp_auth.h>
46 #include <netinet/sctp_timer.h>
47 #include <netinet/sctp_asconf.h>
48 #include <netinet/sctp_indata.h>
49 #include <netinet/sctp_bsd_addr.h>
50 #include <netinet/sctp_input.h>
51 #include <netinet/sctp_crc32.h>
52 #include <netinet/sctp_kdtrace.h>
53 #if defined(INET) || defined(INET6)
54 #include <netinet/udp.h>
55 #endif
56 #include <netinet/udp_var.h>
57 #include <machine/in_cksum.h>
58 
59 #define SCTP_MAX_GAPS_INARRAY 4
60 struct sack_track {
61 	uint8_t right_edge;	/* mergable on the right edge */
62 	uint8_t left_edge;	/* mergable on the left edge */
63 	uint8_t num_entries;
64 	uint8_t spare;
65 	struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
66 };
67 
68 const struct sack_track sack_array[256] = {
69 	{0, 0, 0, 0,		/* 0x00 */
70 		{{0, 0},
71 		{0, 0},
72 		{0, 0},
73 		{0, 0}
74 		}
75 	},
76 	{1, 0, 1, 0,		/* 0x01 */
77 		{{0, 0},
78 		{0, 0},
79 		{0, 0},
80 		{0, 0}
81 		}
82 	},
83 	{0, 0, 1, 0,		/* 0x02 */
84 		{{1, 1},
85 		{0, 0},
86 		{0, 0},
87 		{0, 0}
88 		}
89 	},
90 	{1, 0, 1, 0,		/* 0x03 */
91 		{{0, 1},
92 		{0, 0},
93 		{0, 0},
94 		{0, 0}
95 		}
96 	},
97 	{0, 0, 1, 0,		/* 0x04 */
98 		{{2, 2},
99 		{0, 0},
100 		{0, 0},
101 		{0, 0}
102 		}
103 	},
104 	{1, 0, 2, 0,		/* 0x05 */
105 		{{0, 0},
106 		{2, 2},
107 		{0, 0},
108 		{0, 0}
109 		}
110 	},
111 	{0, 0, 1, 0,		/* 0x06 */
112 		{{1, 2},
113 		{0, 0},
114 		{0, 0},
115 		{0, 0}
116 		}
117 	},
118 	{1, 0, 1, 0,		/* 0x07 */
119 		{{0, 2},
120 		{0, 0},
121 		{0, 0},
122 		{0, 0}
123 		}
124 	},
125 	{0, 0, 1, 0,		/* 0x08 */
126 		{{3, 3},
127 		{0, 0},
128 		{0, 0},
129 		{0, 0}
130 		}
131 	},
132 	{1, 0, 2, 0,		/* 0x09 */
133 		{{0, 0},
134 		{3, 3},
135 		{0, 0},
136 		{0, 0}
137 		}
138 	},
139 	{0, 0, 2, 0,		/* 0x0a */
140 		{{1, 1},
141 		{3, 3},
142 		{0, 0},
143 		{0, 0}
144 		}
145 	},
146 	{1, 0, 2, 0,		/* 0x0b */
147 		{{0, 1},
148 		{3, 3},
149 		{0, 0},
150 		{0, 0}
151 		}
152 	},
153 	{0, 0, 1, 0,		/* 0x0c */
154 		{{2, 3},
155 		{0, 0},
156 		{0, 0},
157 		{0, 0}
158 		}
159 	},
160 	{1, 0, 2, 0,		/* 0x0d */
161 		{{0, 0},
162 		{2, 3},
163 		{0, 0},
164 		{0, 0}
165 		}
166 	},
167 	{0, 0, 1, 0,		/* 0x0e */
168 		{{1, 3},
169 		{0, 0},
170 		{0, 0},
171 		{0, 0}
172 		}
173 	},
174 	{1, 0, 1, 0,		/* 0x0f */
175 		{{0, 3},
176 		{0, 0},
177 		{0, 0},
178 		{0, 0}
179 		}
180 	},
181 	{0, 0, 1, 0,		/* 0x10 */
182 		{{4, 4},
183 		{0, 0},
184 		{0, 0},
185 		{0, 0}
186 		}
187 	},
188 	{1, 0, 2, 0,		/* 0x11 */
189 		{{0, 0},
190 		{4, 4},
191 		{0, 0},
192 		{0, 0}
193 		}
194 	},
195 	{0, 0, 2, 0,		/* 0x12 */
196 		{{1, 1},
197 		{4, 4},
198 		{0, 0},
199 		{0, 0}
200 		}
201 	},
202 	{1, 0, 2, 0,		/* 0x13 */
203 		{{0, 1},
204 		{4, 4},
205 		{0, 0},
206 		{0, 0}
207 		}
208 	},
209 	{0, 0, 2, 0,		/* 0x14 */
210 		{{2, 2},
211 		{4, 4},
212 		{0, 0},
213 		{0, 0}
214 		}
215 	},
216 	{1, 0, 3, 0,		/* 0x15 */
217 		{{0, 0},
218 		{2, 2},
219 		{4, 4},
220 		{0, 0}
221 		}
222 	},
223 	{0, 0, 2, 0,		/* 0x16 */
224 		{{1, 2},
225 		{4, 4},
226 		{0, 0},
227 		{0, 0}
228 		}
229 	},
230 	{1, 0, 2, 0,		/* 0x17 */
231 		{{0, 2},
232 		{4, 4},
233 		{0, 0},
234 		{0, 0}
235 		}
236 	},
237 	{0, 0, 1, 0,		/* 0x18 */
238 		{{3, 4},
239 		{0, 0},
240 		{0, 0},
241 		{0, 0}
242 		}
243 	},
244 	{1, 0, 2, 0,		/* 0x19 */
245 		{{0, 0},
246 		{3, 4},
247 		{0, 0},
248 		{0, 0}
249 		}
250 	},
251 	{0, 0, 2, 0,		/* 0x1a */
252 		{{1, 1},
253 		{3, 4},
254 		{0, 0},
255 		{0, 0}
256 		}
257 	},
258 	{1, 0, 2, 0,		/* 0x1b */
259 		{{0, 1},
260 		{3, 4},
261 		{0, 0},
262 		{0, 0}
263 		}
264 	},
265 	{0, 0, 1, 0,		/* 0x1c */
266 		{{2, 4},
267 		{0, 0},
268 		{0, 0},
269 		{0, 0}
270 		}
271 	},
272 	{1, 0, 2, 0,		/* 0x1d */
273 		{{0, 0},
274 		{2, 4},
275 		{0, 0},
276 		{0, 0}
277 		}
278 	},
279 	{0, 0, 1, 0,		/* 0x1e */
280 		{{1, 4},
281 		{0, 0},
282 		{0, 0},
283 		{0, 0}
284 		}
285 	},
286 	{1, 0, 1, 0,		/* 0x1f */
287 		{{0, 4},
288 		{0, 0},
289 		{0, 0},
290 		{0, 0}
291 		}
292 	},
293 	{0, 0, 1, 0,		/* 0x20 */
294 		{{5, 5},
295 		{0, 0},
296 		{0, 0},
297 		{0, 0}
298 		}
299 	},
300 	{1, 0, 2, 0,		/* 0x21 */
301 		{{0, 0},
302 		{5, 5},
303 		{0, 0},
304 		{0, 0}
305 		}
306 	},
307 	{0, 0, 2, 0,		/* 0x22 */
308 		{{1, 1},
309 		{5, 5},
310 		{0, 0},
311 		{0, 0}
312 		}
313 	},
314 	{1, 0, 2, 0,		/* 0x23 */
315 		{{0, 1},
316 		{5, 5},
317 		{0, 0},
318 		{0, 0}
319 		}
320 	},
321 	{0, 0, 2, 0,		/* 0x24 */
322 		{{2, 2},
323 		{5, 5},
324 		{0, 0},
325 		{0, 0}
326 		}
327 	},
328 	{1, 0, 3, 0,		/* 0x25 */
329 		{{0, 0},
330 		{2, 2},
331 		{5, 5},
332 		{0, 0}
333 		}
334 	},
335 	{0, 0, 2, 0,		/* 0x26 */
336 		{{1, 2},
337 		{5, 5},
338 		{0, 0},
339 		{0, 0}
340 		}
341 	},
342 	{1, 0, 2, 0,		/* 0x27 */
343 		{{0, 2},
344 		{5, 5},
345 		{0, 0},
346 		{0, 0}
347 		}
348 	},
349 	{0, 0, 2, 0,		/* 0x28 */
350 		{{3, 3},
351 		{5, 5},
352 		{0, 0},
353 		{0, 0}
354 		}
355 	},
356 	{1, 0, 3, 0,		/* 0x29 */
357 		{{0, 0},
358 		{3, 3},
359 		{5, 5},
360 		{0, 0}
361 		}
362 	},
363 	{0, 0, 3, 0,		/* 0x2a */
364 		{{1, 1},
365 		{3, 3},
366 		{5, 5},
367 		{0, 0}
368 		}
369 	},
370 	{1, 0, 3, 0,		/* 0x2b */
371 		{{0, 1},
372 		{3, 3},
373 		{5, 5},
374 		{0, 0}
375 		}
376 	},
377 	{0, 0, 2, 0,		/* 0x2c */
378 		{{2, 3},
379 		{5, 5},
380 		{0, 0},
381 		{0, 0}
382 		}
383 	},
384 	{1, 0, 3, 0,		/* 0x2d */
385 		{{0, 0},
386 		{2, 3},
387 		{5, 5},
388 		{0, 0}
389 		}
390 	},
391 	{0, 0, 2, 0,		/* 0x2e */
392 		{{1, 3},
393 		{5, 5},
394 		{0, 0},
395 		{0, 0}
396 		}
397 	},
398 	{1, 0, 2, 0,		/* 0x2f */
399 		{{0, 3},
400 		{5, 5},
401 		{0, 0},
402 		{0, 0}
403 		}
404 	},
405 	{0, 0, 1, 0,		/* 0x30 */
406 		{{4, 5},
407 		{0, 0},
408 		{0, 0},
409 		{0, 0}
410 		}
411 	},
412 	{1, 0, 2, 0,		/* 0x31 */
413 		{{0, 0},
414 		{4, 5},
415 		{0, 0},
416 		{0, 0}
417 		}
418 	},
419 	{0, 0, 2, 0,		/* 0x32 */
420 		{{1, 1},
421 		{4, 5},
422 		{0, 0},
423 		{0, 0}
424 		}
425 	},
426 	{1, 0, 2, 0,		/* 0x33 */
427 		{{0, 1},
428 		{4, 5},
429 		{0, 0},
430 		{0, 0}
431 		}
432 	},
433 	{0, 0, 2, 0,		/* 0x34 */
434 		{{2, 2},
435 		{4, 5},
436 		{0, 0},
437 		{0, 0}
438 		}
439 	},
440 	{1, 0, 3, 0,		/* 0x35 */
441 		{{0, 0},
442 		{2, 2},
443 		{4, 5},
444 		{0, 0}
445 		}
446 	},
447 	{0, 0, 2, 0,		/* 0x36 */
448 		{{1, 2},
449 		{4, 5},
450 		{0, 0},
451 		{0, 0}
452 		}
453 	},
454 	{1, 0, 2, 0,		/* 0x37 */
455 		{{0, 2},
456 		{4, 5},
457 		{0, 0},
458 		{0, 0}
459 		}
460 	},
461 	{0, 0, 1, 0,		/* 0x38 */
462 		{{3, 5},
463 		{0, 0},
464 		{0, 0},
465 		{0, 0}
466 		}
467 	},
468 	{1, 0, 2, 0,		/* 0x39 */
469 		{{0, 0},
470 		{3, 5},
471 		{0, 0},
472 		{0, 0}
473 		}
474 	},
475 	{0, 0, 2, 0,		/* 0x3a */
476 		{{1, 1},
477 		{3, 5},
478 		{0, 0},
479 		{0, 0}
480 		}
481 	},
482 	{1, 0, 2, 0,		/* 0x3b */
483 		{{0, 1},
484 		{3, 5},
485 		{0, 0},
486 		{0, 0}
487 		}
488 	},
489 	{0, 0, 1, 0,		/* 0x3c */
490 		{{2, 5},
491 		{0, 0},
492 		{0, 0},
493 		{0, 0}
494 		}
495 	},
496 	{1, 0, 2, 0,		/* 0x3d */
497 		{{0, 0},
498 		{2, 5},
499 		{0, 0},
500 		{0, 0}
501 		}
502 	},
503 	{0, 0, 1, 0,		/* 0x3e */
504 		{{1, 5},
505 		{0, 0},
506 		{0, 0},
507 		{0, 0}
508 		}
509 	},
510 	{1, 0, 1, 0,		/* 0x3f */
511 		{{0, 5},
512 		{0, 0},
513 		{0, 0},
514 		{0, 0}
515 		}
516 	},
517 	{0, 0, 1, 0,		/* 0x40 */
518 		{{6, 6},
519 		{0, 0},
520 		{0, 0},
521 		{0, 0}
522 		}
523 	},
524 	{1, 0, 2, 0,		/* 0x41 */
525 		{{0, 0},
526 		{6, 6},
527 		{0, 0},
528 		{0, 0}
529 		}
530 	},
531 	{0, 0, 2, 0,		/* 0x42 */
532 		{{1, 1},
533 		{6, 6},
534 		{0, 0},
535 		{0, 0}
536 		}
537 	},
538 	{1, 0, 2, 0,		/* 0x43 */
539 		{{0, 1},
540 		{6, 6},
541 		{0, 0},
542 		{0, 0}
543 		}
544 	},
545 	{0, 0, 2, 0,		/* 0x44 */
546 		{{2, 2},
547 		{6, 6},
548 		{0, 0},
549 		{0, 0}
550 		}
551 	},
552 	{1, 0, 3, 0,		/* 0x45 */
553 		{{0, 0},
554 		{2, 2},
555 		{6, 6},
556 		{0, 0}
557 		}
558 	},
559 	{0, 0, 2, 0,		/* 0x46 */
560 		{{1, 2},
561 		{6, 6},
562 		{0, 0},
563 		{0, 0}
564 		}
565 	},
566 	{1, 0, 2, 0,		/* 0x47 */
567 		{{0, 2},
568 		{6, 6},
569 		{0, 0},
570 		{0, 0}
571 		}
572 	},
573 	{0, 0, 2, 0,		/* 0x48 */
574 		{{3, 3},
575 		{6, 6},
576 		{0, 0},
577 		{0, 0}
578 		}
579 	},
580 	{1, 0, 3, 0,		/* 0x49 */
581 		{{0, 0},
582 		{3, 3},
583 		{6, 6},
584 		{0, 0}
585 		}
586 	},
587 	{0, 0, 3, 0,		/* 0x4a */
588 		{{1, 1},
589 		{3, 3},
590 		{6, 6},
591 		{0, 0}
592 		}
593 	},
594 	{1, 0, 3, 0,		/* 0x4b */
595 		{{0, 1},
596 		{3, 3},
597 		{6, 6},
598 		{0, 0}
599 		}
600 	},
601 	{0, 0, 2, 0,		/* 0x4c */
602 		{{2, 3},
603 		{6, 6},
604 		{0, 0},
605 		{0, 0}
606 		}
607 	},
608 	{1, 0, 3, 0,		/* 0x4d */
609 		{{0, 0},
610 		{2, 3},
611 		{6, 6},
612 		{0, 0}
613 		}
614 	},
615 	{0, 0, 2, 0,		/* 0x4e */
616 		{{1, 3},
617 		{6, 6},
618 		{0, 0},
619 		{0, 0}
620 		}
621 	},
622 	{1, 0, 2, 0,		/* 0x4f */
623 		{{0, 3},
624 		{6, 6},
625 		{0, 0},
626 		{0, 0}
627 		}
628 	},
629 	{0, 0, 2, 0,		/* 0x50 */
630 		{{4, 4},
631 		{6, 6},
632 		{0, 0},
633 		{0, 0}
634 		}
635 	},
636 	{1, 0, 3, 0,		/* 0x51 */
637 		{{0, 0},
638 		{4, 4},
639 		{6, 6},
640 		{0, 0}
641 		}
642 	},
643 	{0, 0, 3, 0,		/* 0x52 */
644 		{{1, 1},
645 		{4, 4},
646 		{6, 6},
647 		{0, 0}
648 		}
649 	},
650 	{1, 0, 3, 0,		/* 0x53 */
651 		{{0, 1},
652 		{4, 4},
653 		{6, 6},
654 		{0, 0}
655 		}
656 	},
657 	{0, 0, 3, 0,		/* 0x54 */
658 		{{2, 2},
659 		{4, 4},
660 		{6, 6},
661 		{0, 0}
662 		}
663 	},
664 	{1, 0, 4, 0,		/* 0x55 */
665 		{{0, 0},
666 		{2, 2},
667 		{4, 4},
668 		{6, 6}
669 		}
670 	},
671 	{0, 0, 3, 0,		/* 0x56 */
672 		{{1, 2},
673 		{4, 4},
674 		{6, 6},
675 		{0, 0}
676 		}
677 	},
678 	{1, 0, 3, 0,		/* 0x57 */
679 		{{0, 2},
680 		{4, 4},
681 		{6, 6},
682 		{0, 0}
683 		}
684 	},
685 	{0, 0, 2, 0,		/* 0x58 */
686 		{{3, 4},
687 		{6, 6},
688 		{0, 0},
689 		{0, 0}
690 		}
691 	},
692 	{1, 0, 3, 0,		/* 0x59 */
693 		{{0, 0},
694 		{3, 4},
695 		{6, 6},
696 		{0, 0}
697 		}
698 	},
699 	{0, 0, 3, 0,		/* 0x5a */
700 		{{1, 1},
701 		{3, 4},
702 		{6, 6},
703 		{0, 0}
704 		}
705 	},
706 	{1, 0, 3, 0,		/* 0x5b */
707 		{{0, 1},
708 		{3, 4},
709 		{6, 6},
710 		{0, 0}
711 		}
712 	},
713 	{0, 0, 2, 0,		/* 0x5c */
714 		{{2, 4},
715 		{6, 6},
716 		{0, 0},
717 		{0, 0}
718 		}
719 	},
720 	{1, 0, 3, 0,		/* 0x5d */
721 		{{0, 0},
722 		{2, 4},
723 		{6, 6},
724 		{0, 0}
725 		}
726 	},
727 	{0, 0, 2, 0,		/* 0x5e */
728 		{{1, 4},
729 		{6, 6},
730 		{0, 0},
731 		{0, 0}
732 		}
733 	},
734 	{1, 0, 2, 0,		/* 0x5f */
735 		{{0, 4},
736 		{6, 6},
737 		{0, 0},
738 		{0, 0}
739 		}
740 	},
741 	{0, 0, 1, 0,		/* 0x60 */
742 		{{5, 6},
743 		{0, 0},
744 		{0, 0},
745 		{0, 0}
746 		}
747 	},
748 	{1, 0, 2, 0,		/* 0x61 */
749 		{{0, 0},
750 		{5, 6},
751 		{0, 0},
752 		{0, 0}
753 		}
754 	},
755 	{0, 0, 2, 0,		/* 0x62 */
756 		{{1, 1},
757 		{5, 6},
758 		{0, 0},
759 		{0, 0}
760 		}
761 	},
762 	{1, 0, 2, 0,		/* 0x63 */
763 		{{0, 1},
764 		{5, 6},
765 		{0, 0},
766 		{0, 0}
767 		}
768 	},
769 	{0, 0, 2, 0,		/* 0x64 */
770 		{{2, 2},
771 		{5, 6},
772 		{0, 0},
773 		{0, 0}
774 		}
775 	},
776 	{1, 0, 3, 0,		/* 0x65 */
777 		{{0, 0},
778 		{2, 2},
779 		{5, 6},
780 		{0, 0}
781 		}
782 	},
783 	{0, 0, 2, 0,		/* 0x66 */
784 		{{1, 2},
785 		{5, 6},
786 		{0, 0},
787 		{0, 0}
788 		}
789 	},
790 	{1, 0, 2, 0,		/* 0x67 */
791 		{{0, 2},
792 		{5, 6},
793 		{0, 0},
794 		{0, 0}
795 		}
796 	},
797 	{0, 0, 2, 0,		/* 0x68 */
798 		{{3, 3},
799 		{5, 6},
800 		{0, 0},
801 		{0, 0}
802 		}
803 	},
804 	{1, 0, 3, 0,		/* 0x69 */
805 		{{0, 0},
806 		{3, 3},
807 		{5, 6},
808 		{0, 0}
809 		}
810 	},
811 	{0, 0, 3, 0,		/* 0x6a */
812 		{{1, 1},
813 		{3, 3},
814 		{5, 6},
815 		{0, 0}
816 		}
817 	},
818 	{1, 0, 3, 0,		/* 0x6b */
819 		{{0, 1},
820 		{3, 3},
821 		{5, 6},
822 		{0, 0}
823 		}
824 	},
825 	{0, 0, 2, 0,		/* 0x6c */
826 		{{2, 3},
827 		{5, 6},
828 		{0, 0},
829 		{0, 0}
830 		}
831 	},
832 	{1, 0, 3, 0,		/* 0x6d */
833 		{{0, 0},
834 		{2, 3},
835 		{5, 6},
836 		{0, 0}
837 		}
838 	},
839 	{0, 0, 2, 0,		/* 0x6e */
840 		{{1, 3},
841 		{5, 6},
842 		{0, 0},
843 		{0, 0}
844 		}
845 	},
846 	{1, 0, 2, 0,		/* 0x6f */
847 		{{0, 3},
848 		{5, 6},
849 		{0, 0},
850 		{0, 0}
851 		}
852 	},
853 	{0, 0, 1, 0,		/* 0x70 */
854 		{{4, 6},
855 		{0, 0},
856 		{0, 0},
857 		{0, 0}
858 		}
859 	},
860 	{1, 0, 2, 0,		/* 0x71 */
861 		{{0, 0},
862 		{4, 6},
863 		{0, 0},
864 		{0, 0}
865 		}
866 	},
867 	{0, 0, 2, 0,		/* 0x72 */
868 		{{1, 1},
869 		{4, 6},
870 		{0, 0},
871 		{0, 0}
872 		}
873 	},
874 	{1, 0, 2, 0,		/* 0x73 */
875 		{{0, 1},
876 		{4, 6},
877 		{0, 0},
878 		{0, 0}
879 		}
880 	},
881 	{0, 0, 2, 0,		/* 0x74 */
882 		{{2, 2},
883 		{4, 6},
884 		{0, 0},
885 		{0, 0}
886 		}
887 	},
888 	{1, 0, 3, 0,		/* 0x75 */
889 		{{0, 0},
890 		{2, 2},
891 		{4, 6},
892 		{0, 0}
893 		}
894 	},
895 	{0, 0, 2, 0,		/* 0x76 */
896 		{{1, 2},
897 		{4, 6},
898 		{0, 0},
899 		{0, 0}
900 		}
901 	},
902 	{1, 0, 2, 0,		/* 0x77 */
903 		{{0, 2},
904 		{4, 6},
905 		{0, 0},
906 		{0, 0}
907 		}
908 	},
909 	{0, 0, 1, 0,		/* 0x78 */
910 		{{3, 6},
911 		{0, 0},
912 		{0, 0},
913 		{0, 0}
914 		}
915 	},
916 	{1, 0, 2, 0,		/* 0x79 */
917 		{{0, 0},
918 		{3, 6},
919 		{0, 0},
920 		{0, 0}
921 		}
922 	},
923 	{0, 0, 2, 0,		/* 0x7a */
924 		{{1, 1},
925 		{3, 6},
926 		{0, 0},
927 		{0, 0}
928 		}
929 	},
930 	{1, 0, 2, 0,		/* 0x7b */
931 		{{0, 1},
932 		{3, 6},
933 		{0, 0},
934 		{0, 0}
935 		}
936 	},
937 	{0, 0, 1, 0,		/* 0x7c */
938 		{{2, 6},
939 		{0, 0},
940 		{0, 0},
941 		{0, 0}
942 		}
943 	},
944 	{1, 0, 2, 0,		/* 0x7d */
945 		{{0, 0},
946 		{2, 6},
947 		{0, 0},
948 		{0, 0}
949 		}
950 	},
951 	{0, 0, 1, 0,		/* 0x7e */
952 		{{1, 6},
953 		{0, 0},
954 		{0, 0},
955 		{0, 0}
956 		}
957 	},
958 	{1, 0, 1, 0,		/* 0x7f */
959 		{{0, 6},
960 		{0, 0},
961 		{0, 0},
962 		{0, 0}
963 		}
964 	},
965 	{0, 1, 1, 0,		/* 0x80 */
966 		{{7, 7},
967 		{0, 0},
968 		{0, 0},
969 		{0, 0}
970 		}
971 	},
972 	{1, 1, 2, 0,		/* 0x81 */
973 		{{0, 0},
974 		{7, 7},
975 		{0, 0},
976 		{0, 0}
977 		}
978 	},
979 	{0, 1, 2, 0,		/* 0x82 */
980 		{{1, 1},
981 		{7, 7},
982 		{0, 0},
983 		{0, 0}
984 		}
985 	},
986 	{1, 1, 2, 0,		/* 0x83 */
987 		{{0, 1},
988 		{7, 7},
989 		{0, 0},
990 		{0, 0}
991 		}
992 	},
993 	{0, 1, 2, 0,		/* 0x84 */
994 		{{2, 2},
995 		{7, 7},
996 		{0, 0},
997 		{0, 0}
998 		}
999 	},
1000 	{1, 1, 3, 0,		/* 0x85 */
1001 		{{0, 0},
1002 		{2, 2},
1003 		{7, 7},
1004 		{0, 0}
1005 		}
1006 	},
1007 	{0, 1, 2, 0,		/* 0x86 */
1008 		{{1, 2},
1009 		{7, 7},
1010 		{0, 0},
1011 		{0, 0}
1012 		}
1013 	},
1014 	{1, 1, 2, 0,		/* 0x87 */
1015 		{{0, 2},
1016 		{7, 7},
1017 		{0, 0},
1018 		{0, 0}
1019 		}
1020 	},
1021 	{0, 1, 2, 0,		/* 0x88 */
1022 		{{3, 3},
1023 		{7, 7},
1024 		{0, 0},
1025 		{0, 0}
1026 		}
1027 	},
1028 	{1, 1, 3, 0,		/* 0x89 */
1029 		{{0, 0},
1030 		{3, 3},
1031 		{7, 7},
1032 		{0, 0}
1033 		}
1034 	},
1035 	{0, 1, 3, 0,		/* 0x8a */
1036 		{{1, 1},
1037 		{3, 3},
1038 		{7, 7},
1039 		{0, 0}
1040 		}
1041 	},
1042 	{1, 1, 3, 0,		/* 0x8b */
1043 		{{0, 1},
1044 		{3, 3},
1045 		{7, 7},
1046 		{0, 0}
1047 		}
1048 	},
1049 	{0, 1, 2, 0,		/* 0x8c */
1050 		{{2, 3},
1051 		{7, 7},
1052 		{0, 0},
1053 		{0, 0}
1054 		}
1055 	},
1056 	{1, 1, 3, 0,		/* 0x8d */
1057 		{{0, 0},
1058 		{2, 3},
1059 		{7, 7},
1060 		{0, 0}
1061 		}
1062 	},
1063 	{0, 1, 2, 0,		/* 0x8e */
1064 		{{1, 3},
1065 		{7, 7},
1066 		{0, 0},
1067 		{0, 0}
1068 		}
1069 	},
1070 	{1, 1, 2, 0,		/* 0x8f */
1071 		{{0, 3},
1072 		{7, 7},
1073 		{0, 0},
1074 		{0, 0}
1075 		}
1076 	},
1077 	{0, 1, 2, 0,		/* 0x90 */
1078 		{{4, 4},
1079 		{7, 7},
1080 		{0, 0},
1081 		{0, 0}
1082 		}
1083 	},
1084 	{1, 1, 3, 0,		/* 0x91 */
1085 		{{0, 0},
1086 		{4, 4},
1087 		{7, 7},
1088 		{0, 0}
1089 		}
1090 	},
1091 	{0, 1, 3, 0,		/* 0x92 */
1092 		{{1, 1},
1093 		{4, 4},
1094 		{7, 7},
1095 		{0, 0}
1096 		}
1097 	},
1098 	{1, 1, 3, 0,		/* 0x93 */
1099 		{{0, 1},
1100 		{4, 4},
1101 		{7, 7},
1102 		{0, 0}
1103 		}
1104 	},
1105 	{0, 1, 3, 0,		/* 0x94 */
1106 		{{2, 2},
1107 		{4, 4},
1108 		{7, 7},
1109 		{0, 0}
1110 		}
1111 	},
1112 	{1, 1, 4, 0,		/* 0x95 */
1113 		{{0, 0},
1114 		{2, 2},
1115 		{4, 4},
1116 		{7, 7}
1117 		}
1118 	},
1119 	{0, 1, 3, 0,		/* 0x96 */
1120 		{{1, 2},
1121 		{4, 4},
1122 		{7, 7},
1123 		{0, 0}
1124 		}
1125 	},
1126 	{1, 1, 3, 0,		/* 0x97 */
1127 		{{0, 2},
1128 		{4, 4},
1129 		{7, 7},
1130 		{0, 0}
1131 		}
1132 	},
1133 	{0, 1, 2, 0,		/* 0x98 */
1134 		{{3, 4},
1135 		{7, 7},
1136 		{0, 0},
1137 		{0, 0}
1138 		}
1139 	},
1140 	{1, 1, 3, 0,		/* 0x99 */
1141 		{{0, 0},
1142 		{3, 4},
1143 		{7, 7},
1144 		{0, 0}
1145 		}
1146 	},
1147 	{0, 1, 3, 0,		/* 0x9a */
1148 		{{1, 1},
1149 		{3, 4},
1150 		{7, 7},
1151 		{0, 0}
1152 		}
1153 	},
1154 	{1, 1, 3, 0,		/* 0x9b */
1155 		{{0, 1},
1156 		{3, 4},
1157 		{7, 7},
1158 		{0, 0}
1159 		}
1160 	},
1161 	{0, 1, 2, 0,		/* 0x9c */
1162 		{{2, 4},
1163 		{7, 7},
1164 		{0, 0},
1165 		{0, 0}
1166 		}
1167 	},
1168 	{1, 1, 3, 0,		/* 0x9d */
1169 		{{0, 0},
1170 		{2, 4},
1171 		{7, 7},
1172 		{0, 0}
1173 		}
1174 	},
1175 	{0, 1, 2, 0,		/* 0x9e */
1176 		{{1, 4},
1177 		{7, 7},
1178 		{0, 0},
1179 		{0, 0}
1180 		}
1181 	},
1182 	{1, 1, 2, 0,		/* 0x9f */
1183 		{{0, 4},
1184 		{7, 7},
1185 		{0, 0},
1186 		{0, 0}
1187 		}
1188 	},
1189 	{0, 1, 2, 0,		/* 0xa0 */
1190 		{{5, 5},
1191 		{7, 7},
1192 		{0, 0},
1193 		{0, 0}
1194 		}
1195 	},
1196 	{1, 1, 3, 0,		/* 0xa1 */
1197 		{{0, 0},
1198 		{5, 5},
1199 		{7, 7},
1200 		{0, 0}
1201 		}
1202 	},
1203 	{0, 1, 3, 0,		/* 0xa2 */
1204 		{{1, 1},
1205 		{5, 5},
1206 		{7, 7},
1207 		{0, 0}
1208 		}
1209 	},
1210 	{1, 1, 3, 0,		/* 0xa3 */
1211 		{{0, 1},
1212 		{5, 5},
1213 		{7, 7},
1214 		{0, 0}
1215 		}
1216 	},
1217 	{0, 1, 3, 0,		/* 0xa4 */
1218 		{{2, 2},
1219 		{5, 5},
1220 		{7, 7},
1221 		{0, 0}
1222 		}
1223 	},
1224 	{1, 1, 4, 0,		/* 0xa5 */
1225 		{{0, 0},
1226 		{2, 2},
1227 		{5, 5},
1228 		{7, 7}
1229 		}
1230 	},
1231 	{0, 1, 3, 0,		/* 0xa6 */
1232 		{{1, 2},
1233 		{5, 5},
1234 		{7, 7},
1235 		{0, 0}
1236 		}
1237 	},
1238 	{1, 1, 3, 0,		/* 0xa7 */
1239 		{{0, 2},
1240 		{5, 5},
1241 		{7, 7},
1242 		{0, 0}
1243 		}
1244 	},
1245 	{0, 1, 3, 0,		/* 0xa8 */
1246 		{{3, 3},
1247 		{5, 5},
1248 		{7, 7},
1249 		{0, 0}
1250 		}
1251 	},
1252 	{1, 1, 4, 0,		/* 0xa9 */
1253 		{{0, 0},
1254 		{3, 3},
1255 		{5, 5},
1256 		{7, 7}
1257 		}
1258 	},
1259 	{0, 1, 4, 0,		/* 0xaa */
1260 		{{1, 1},
1261 		{3, 3},
1262 		{5, 5},
1263 		{7, 7}
1264 		}
1265 	},
1266 	{1, 1, 4, 0,		/* 0xab */
1267 		{{0, 1},
1268 		{3, 3},
1269 		{5, 5},
1270 		{7, 7}
1271 		}
1272 	},
1273 	{0, 1, 3, 0,		/* 0xac */
1274 		{{2, 3},
1275 		{5, 5},
1276 		{7, 7},
1277 		{0, 0}
1278 		}
1279 	},
1280 	{1, 1, 4, 0,		/* 0xad */
1281 		{{0, 0},
1282 		{2, 3},
1283 		{5, 5},
1284 		{7, 7}
1285 		}
1286 	},
1287 	{0, 1, 3, 0,		/* 0xae */
1288 		{{1, 3},
1289 		{5, 5},
1290 		{7, 7},
1291 		{0, 0}
1292 		}
1293 	},
1294 	{1, 1, 3, 0,		/* 0xaf */
1295 		{{0, 3},
1296 		{5, 5},
1297 		{7, 7},
1298 		{0, 0}
1299 		}
1300 	},
1301 	{0, 1, 2, 0,		/* 0xb0 */
1302 		{{4, 5},
1303 		{7, 7},
1304 		{0, 0},
1305 		{0, 0}
1306 		}
1307 	},
1308 	{1, 1, 3, 0,		/* 0xb1 */
1309 		{{0, 0},
1310 		{4, 5},
1311 		{7, 7},
1312 		{0, 0}
1313 		}
1314 	},
1315 	{0, 1, 3, 0,		/* 0xb2 */
1316 		{{1, 1},
1317 		{4, 5},
1318 		{7, 7},
1319 		{0, 0}
1320 		}
1321 	},
1322 	{1, 1, 3, 0,		/* 0xb3 */
1323 		{{0, 1},
1324 		{4, 5},
1325 		{7, 7},
1326 		{0, 0}
1327 		}
1328 	},
1329 	{0, 1, 3, 0,		/* 0xb4 */
1330 		{{2, 2},
1331 		{4, 5},
1332 		{7, 7},
1333 		{0, 0}
1334 		}
1335 	},
1336 	{1, 1, 4, 0,		/* 0xb5 */
1337 		{{0, 0},
1338 		{2, 2},
1339 		{4, 5},
1340 		{7, 7}
1341 		}
1342 	},
1343 	{0, 1, 3, 0,		/* 0xb6 */
1344 		{{1, 2},
1345 		{4, 5},
1346 		{7, 7},
1347 		{0, 0}
1348 		}
1349 	},
1350 	{1, 1, 3, 0,		/* 0xb7 */
1351 		{{0, 2},
1352 		{4, 5},
1353 		{7, 7},
1354 		{0, 0}
1355 		}
1356 	},
1357 	{0, 1, 2, 0,		/* 0xb8 */
1358 		{{3, 5},
1359 		{7, 7},
1360 		{0, 0},
1361 		{0, 0}
1362 		}
1363 	},
1364 	{1, 1, 3, 0,		/* 0xb9 */
1365 		{{0, 0},
1366 		{3, 5},
1367 		{7, 7},
1368 		{0, 0}
1369 		}
1370 	},
1371 	{0, 1, 3, 0,		/* 0xba */
1372 		{{1, 1},
1373 		{3, 5},
1374 		{7, 7},
1375 		{0, 0}
1376 		}
1377 	},
1378 	{1, 1, 3, 0,		/* 0xbb */
1379 		{{0, 1},
1380 		{3, 5},
1381 		{7, 7},
1382 		{0, 0}
1383 		}
1384 	},
1385 	{0, 1, 2, 0,		/* 0xbc */
1386 		{{2, 5},
1387 		{7, 7},
1388 		{0, 0},
1389 		{0, 0}
1390 		}
1391 	},
1392 	{1, 1, 3, 0,		/* 0xbd */
1393 		{{0, 0},
1394 		{2, 5},
1395 		{7, 7},
1396 		{0, 0}
1397 		}
1398 	},
1399 	{0, 1, 2, 0,		/* 0xbe */
1400 		{{1, 5},
1401 		{7, 7},
1402 		{0, 0},
1403 		{0, 0}
1404 		}
1405 	},
1406 	{1, 1, 2, 0,		/* 0xbf */
1407 		{{0, 5},
1408 		{7, 7},
1409 		{0, 0},
1410 		{0, 0}
1411 		}
1412 	},
1413 	{0, 1, 1, 0,		/* 0xc0 */
1414 		{{6, 7},
1415 		{0, 0},
1416 		{0, 0},
1417 		{0, 0}
1418 		}
1419 	},
1420 	{1, 1, 2, 0,		/* 0xc1 */
1421 		{{0, 0},
1422 		{6, 7},
1423 		{0, 0},
1424 		{0, 0}
1425 		}
1426 	},
1427 	{0, 1, 2, 0,		/* 0xc2 */
1428 		{{1, 1},
1429 		{6, 7},
1430 		{0, 0},
1431 		{0, 0}
1432 		}
1433 	},
1434 	{1, 1, 2, 0,		/* 0xc3 */
1435 		{{0, 1},
1436 		{6, 7},
1437 		{0, 0},
1438 		{0, 0}
1439 		}
1440 	},
1441 	{0, 1, 2, 0,		/* 0xc4 */
1442 		{{2, 2},
1443 		{6, 7},
1444 		{0, 0},
1445 		{0, 0}
1446 		}
1447 	},
1448 	{1, 1, 3, 0,		/* 0xc5 */
1449 		{{0, 0},
1450 		{2, 2},
1451 		{6, 7},
1452 		{0, 0}
1453 		}
1454 	},
1455 	{0, 1, 2, 0,		/* 0xc6 */
1456 		{{1, 2},
1457 		{6, 7},
1458 		{0, 0},
1459 		{0, 0}
1460 		}
1461 	},
1462 	{1, 1, 2, 0,		/* 0xc7 */
1463 		{{0, 2},
1464 		{6, 7},
1465 		{0, 0},
1466 		{0, 0}
1467 		}
1468 	},
1469 	{0, 1, 2, 0,		/* 0xc8 */
1470 		{{3, 3},
1471 		{6, 7},
1472 		{0, 0},
1473 		{0, 0}
1474 		}
1475 	},
1476 	{1, 1, 3, 0,		/* 0xc9 */
1477 		{{0, 0},
1478 		{3, 3},
1479 		{6, 7},
1480 		{0, 0}
1481 		}
1482 	},
1483 	{0, 1, 3, 0,		/* 0xca */
1484 		{{1, 1},
1485 		{3, 3},
1486 		{6, 7},
1487 		{0, 0}
1488 		}
1489 	},
1490 	{1, 1, 3, 0,		/* 0xcb */
1491 		{{0, 1},
1492 		{3, 3},
1493 		{6, 7},
1494 		{0, 0}
1495 		}
1496 	},
1497 	{0, 1, 2, 0,		/* 0xcc */
1498 		{{2, 3},
1499 		{6, 7},
1500 		{0, 0},
1501 		{0, 0}
1502 		}
1503 	},
1504 	{1, 1, 3, 0,		/* 0xcd */
1505 		{{0, 0},
1506 		{2, 3},
1507 		{6, 7},
1508 		{0, 0}
1509 		}
1510 	},
1511 	{0, 1, 2, 0,		/* 0xce */
1512 		{{1, 3},
1513 		{6, 7},
1514 		{0, 0},
1515 		{0, 0}
1516 		}
1517 	},
1518 	{1, 1, 2, 0,		/* 0xcf */
1519 		{{0, 3},
1520 		{6, 7},
1521 		{0, 0},
1522 		{0, 0}
1523 		}
1524 	},
1525 	{0, 1, 2, 0,		/* 0xd0 */
1526 		{{4, 4},
1527 		{6, 7},
1528 		{0, 0},
1529 		{0, 0}
1530 		}
1531 	},
1532 	{1, 1, 3, 0,		/* 0xd1 */
1533 		{{0, 0},
1534 		{4, 4},
1535 		{6, 7},
1536 		{0, 0}
1537 		}
1538 	},
1539 	{0, 1, 3, 0,		/* 0xd2 */
1540 		{{1, 1},
1541 		{4, 4},
1542 		{6, 7},
1543 		{0, 0}
1544 		}
1545 	},
1546 	{1, 1, 3, 0,		/* 0xd3 */
1547 		{{0, 1},
1548 		{4, 4},
1549 		{6, 7},
1550 		{0, 0}
1551 		}
1552 	},
1553 	{0, 1, 3, 0,		/* 0xd4 */
1554 		{{2, 2},
1555 		{4, 4},
1556 		{6, 7},
1557 		{0, 0}
1558 		}
1559 	},
1560 	{1, 1, 4, 0,		/* 0xd5 */
1561 		{{0, 0},
1562 		{2, 2},
1563 		{4, 4},
1564 		{6, 7}
1565 		}
1566 	},
1567 	{0, 1, 3, 0,		/* 0xd6 */
1568 		{{1, 2},
1569 		{4, 4},
1570 		{6, 7},
1571 		{0, 0}
1572 		}
1573 	},
1574 	{1, 1, 3, 0,		/* 0xd7 */
1575 		{{0, 2},
1576 		{4, 4},
1577 		{6, 7},
1578 		{0, 0}
1579 		}
1580 	},
1581 	{0, 1, 2, 0,		/* 0xd8 */
1582 		{{3, 4},
1583 		{6, 7},
1584 		{0, 0},
1585 		{0, 0}
1586 		}
1587 	},
1588 	{1, 1, 3, 0,		/* 0xd9 */
1589 		{{0, 0},
1590 		{3, 4},
1591 		{6, 7},
1592 		{0, 0}
1593 		}
1594 	},
1595 	{0, 1, 3, 0,		/* 0xda */
1596 		{{1, 1},
1597 		{3, 4},
1598 		{6, 7},
1599 		{0, 0}
1600 		}
1601 	},
1602 	{1, 1, 3, 0,		/* 0xdb */
1603 		{{0, 1},
1604 		{3, 4},
1605 		{6, 7},
1606 		{0, 0}
1607 		}
1608 	},
1609 	{0, 1, 2, 0,		/* 0xdc */
1610 		{{2, 4},
1611 		{6, 7},
1612 		{0, 0},
1613 		{0, 0}
1614 		}
1615 	},
1616 	{1, 1, 3, 0,		/* 0xdd */
1617 		{{0, 0},
1618 		{2, 4},
1619 		{6, 7},
1620 		{0, 0}
1621 		}
1622 	},
1623 	{0, 1, 2, 0,		/* 0xde */
1624 		{{1, 4},
1625 		{6, 7},
1626 		{0, 0},
1627 		{0, 0}
1628 		}
1629 	},
1630 	{1, 1, 2, 0,		/* 0xdf */
1631 		{{0, 4},
1632 		{6, 7},
1633 		{0, 0},
1634 		{0, 0}
1635 		}
1636 	},
1637 	{0, 1, 1, 0,		/* 0xe0 */
1638 		{{5, 7},
1639 		{0, 0},
1640 		{0, 0},
1641 		{0, 0}
1642 		}
1643 	},
1644 	{1, 1, 2, 0,		/* 0xe1 */
1645 		{{0, 0},
1646 		{5, 7},
1647 		{0, 0},
1648 		{0, 0}
1649 		}
1650 	},
1651 	{0, 1, 2, 0,		/* 0xe2 */
1652 		{{1, 1},
1653 		{5, 7},
1654 		{0, 0},
1655 		{0, 0}
1656 		}
1657 	},
1658 	{1, 1, 2, 0,		/* 0xe3 */
1659 		{{0, 1},
1660 		{5, 7},
1661 		{0, 0},
1662 		{0, 0}
1663 		}
1664 	},
1665 	{0, 1, 2, 0,		/* 0xe4 */
1666 		{{2, 2},
1667 		{5, 7},
1668 		{0, 0},
1669 		{0, 0}
1670 		}
1671 	},
1672 	{1, 1, 3, 0,		/* 0xe5 */
1673 		{{0, 0},
1674 		{2, 2},
1675 		{5, 7},
1676 		{0, 0}
1677 		}
1678 	},
1679 	{0, 1, 2, 0,		/* 0xe6 */
1680 		{{1, 2},
1681 		{5, 7},
1682 		{0, 0},
1683 		{0, 0}
1684 		}
1685 	},
1686 	{1, 1, 2, 0,		/* 0xe7 */
1687 		{{0, 2},
1688 		{5, 7},
1689 		{0, 0},
1690 		{0, 0}
1691 		}
1692 	},
1693 	{0, 1, 2, 0,		/* 0xe8 */
1694 		{{3, 3},
1695 		{5, 7},
1696 		{0, 0},
1697 		{0, 0}
1698 		}
1699 	},
1700 	{1, 1, 3, 0,		/* 0xe9 */
1701 		{{0, 0},
1702 		{3, 3},
1703 		{5, 7},
1704 		{0, 0}
1705 		}
1706 	},
1707 	{0, 1, 3, 0,		/* 0xea */
1708 		{{1, 1},
1709 		{3, 3},
1710 		{5, 7},
1711 		{0, 0}
1712 		}
1713 	},
1714 	{1, 1, 3, 0,		/* 0xeb */
1715 		{{0, 1},
1716 		{3, 3},
1717 		{5, 7},
1718 		{0, 0}
1719 		}
1720 	},
1721 	{0, 1, 2, 0,		/* 0xec */
1722 		{{2, 3},
1723 		{5, 7},
1724 		{0, 0},
1725 		{0, 0}
1726 		}
1727 	},
1728 	{1, 1, 3, 0,		/* 0xed */
1729 		{{0, 0},
1730 		{2, 3},
1731 		{5, 7},
1732 		{0, 0}
1733 		}
1734 	},
1735 	{0, 1, 2, 0,		/* 0xee */
1736 		{{1, 3},
1737 		{5, 7},
1738 		{0, 0},
1739 		{0, 0}
1740 		}
1741 	},
1742 	{1, 1, 2, 0,		/* 0xef */
1743 		{{0, 3},
1744 		{5, 7},
1745 		{0, 0},
1746 		{0, 0}
1747 		}
1748 	},
1749 	{0, 1, 1, 0,		/* 0xf0 */
1750 		{{4, 7},
1751 		{0, 0},
1752 		{0, 0},
1753 		{0, 0}
1754 		}
1755 	},
1756 	{1, 1, 2, 0,		/* 0xf1 */
1757 		{{0, 0},
1758 		{4, 7},
1759 		{0, 0},
1760 		{0, 0}
1761 		}
1762 	},
1763 	{0, 1, 2, 0,		/* 0xf2 */
1764 		{{1, 1},
1765 		{4, 7},
1766 		{0, 0},
1767 		{0, 0}
1768 		}
1769 	},
1770 	{1, 1, 2, 0,		/* 0xf3 */
1771 		{{0, 1},
1772 		{4, 7},
1773 		{0, 0},
1774 		{0, 0}
1775 		}
1776 	},
1777 	{0, 1, 2, 0,		/* 0xf4 */
1778 		{{2, 2},
1779 		{4, 7},
1780 		{0, 0},
1781 		{0, 0}
1782 		}
1783 	},
1784 	{1, 1, 3, 0,		/* 0xf5 */
1785 		{{0, 0},
1786 		{2, 2},
1787 		{4, 7},
1788 		{0, 0}
1789 		}
1790 	},
1791 	{0, 1, 2, 0,		/* 0xf6 */
1792 		{{1, 2},
1793 		{4, 7},
1794 		{0, 0},
1795 		{0, 0}
1796 		}
1797 	},
1798 	{1, 1, 2, 0,		/* 0xf7 */
1799 		{{0, 2},
1800 		{4, 7},
1801 		{0, 0},
1802 		{0, 0}
1803 		}
1804 	},
1805 	{0, 1, 1, 0,		/* 0xf8 */
1806 		{{3, 7},
1807 		{0, 0},
1808 		{0, 0},
1809 		{0, 0}
1810 		}
1811 	},
1812 	{1, 1, 2, 0,		/* 0xf9 */
1813 		{{0, 0},
1814 		{3, 7},
1815 		{0, 0},
1816 		{0, 0}
1817 		}
1818 	},
1819 	{0, 1, 2, 0,		/* 0xfa */
1820 		{{1, 1},
1821 		{3, 7},
1822 		{0, 0},
1823 		{0, 0}
1824 		}
1825 	},
1826 	{1, 1, 2, 0,		/* 0xfb */
1827 		{{0, 1},
1828 		{3, 7},
1829 		{0, 0},
1830 		{0, 0}
1831 		}
1832 	},
1833 	{0, 1, 1, 0,		/* 0xfc */
1834 		{{2, 7},
1835 		{0, 0},
1836 		{0, 0},
1837 		{0, 0}
1838 		}
1839 	},
1840 	{1, 1, 2, 0,		/* 0xfd */
1841 		{{0, 0},
1842 		{2, 7},
1843 		{0, 0},
1844 		{0, 0}
1845 		}
1846 	},
1847 	{0, 1, 1, 0,		/* 0xfe */
1848 		{{1, 7},
1849 		{0, 0},
1850 		{0, 0},
1851 		{0, 0}
1852 		}
1853 	},
1854 	{1, 1, 1, 0,		/* 0xff */
1855 		{{0, 7},
1856 		{0, 0},
1857 		{0, 0},
1858 		{0, 0}
1859 		}
1860 	}
1861 };
1862 
1863 int
1864 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1865     struct sctp_scoping *scope,
1866     int do_update)
1867 {
1868 	if ((scope->loopback_scope == 0) &&
1869 	    (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1870 		/*
1871 		 * skip loopback if not in scope *
1872 		 */
1873 		return (0);
1874 	}
1875 	switch (ifa->address.sa.sa_family) {
1876 #ifdef INET
1877 	case AF_INET:
1878 		if (scope->ipv4_addr_legal) {
1879 			struct sockaddr_in *sin;
1880 
1881 			sin = &ifa->address.sin;
1882 			if (sin->sin_addr.s_addr == 0) {
1883 				/* not in scope , unspecified */
1884 				return (0);
1885 			}
1886 			if ((scope->ipv4_local_scope == 0) &&
1887 			    (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1888 				/* private address not in scope */
1889 				return (0);
1890 			}
1891 		} else {
1892 			return (0);
1893 		}
1894 		break;
1895 #endif
1896 #ifdef INET6
1897 	case AF_INET6:
1898 		if (scope->ipv6_addr_legal) {
1899 			struct sockaddr_in6 *sin6;
1900 
1901 			/*
1902 			 * Must update the flags,  bummer, which means any
1903 			 * IFA locks must now be applied HERE <->
1904 			 */
1905 			if (do_update) {
1906 				sctp_gather_internal_ifa_flags(ifa);
1907 			}
1908 			if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1909 				return (0);
1910 			}
1911 			/* ok to use deprecated addresses? */
1912 			sin6 = &ifa->address.sin6;
1913 			if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1914 				/* skip unspecified addresses */
1915 				return (0);
1916 			}
1917 			if (	/* (local_scope == 0) && */
1918 			    (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1919 				return (0);
1920 			}
1921 			if ((scope->site_scope == 0) &&
1922 			    (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1923 				return (0);
1924 			}
1925 		} else {
1926 			return (0);
1927 		}
1928 		break;
1929 #endif
1930 	default:
1931 		return (0);
1932 	}
1933 	return (1);
1934 }
1935 
1936 static struct mbuf *
1937 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t *len)
1938 {
1939 #if defined(INET) || defined(INET6)
1940 	struct sctp_paramhdr *paramh;
1941 	struct mbuf *mret;
1942 	uint16_t plen;
1943 #endif
1944 
1945 	switch (ifa->address.sa.sa_family) {
1946 #ifdef INET
1947 	case AF_INET:
1948 		plen = (uint16_t)sizeof(struct sctp_ipv4addr_param);
1949 		break;
1950 #endif
1951 #ifdef INET6
1952 	case AF_INET6:
1953 		plen = (uint16_t)sizeof(struct sctp_ipv6addr_param);
1954 		break;
1955 #endif
1956 	default:
1957 		return (m);
1958 	}
1959 #if defined(INET) || defined(INET6)
1960 	if (M_TRAILINGSPACE(m) >= plen) {
1961 		/* easy side we just drop it on the end */
1962 		paramh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1963 		mret = m;
1964 	} else {
1965 		/* Need more space */
1966 		mret = m;
1967 		while (SCTP_BUF_NEXT(mret) != NULL) {
1968 			mret = SCTP_BUF_NEXT(mret);
1969 		}
1970 		SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA);
1971 		if (SCTP_BUF_NEXT(mret) == NULL) {
1972 			/* We are hosed, can't add more addresses */
1973 			return (m);
1974 		}
1975 		mret = SCTP_BUF_NEXT(mret);
1976 		paramh = mtod(mret, struct sctp_paramhdr *);
1977 	}
1978 	/* now add the parameter */
1979 	switch (ifa->address.sa.sa_family) {
1980 #ifdef INET
1981 	case AF_INET:
1982 		{
1983 			struct sctp_ipv4addr_param *ipv4p;
1984 			struct sockaddr_in *sin;
1985 
1986 			sin = &ifa->address.sin;
1987 			ipv4p = (struct sctp_ipv4addr_param *)paramh;
1988 			paramh->param_type = htons(SCTP_IPV4_ADDRESS);
1989 			paramh->param_length = htons(plen);
1990 			ipv4p->addr = sin->sin_addr.s_addr;
1991 			SCTP_BUF_LEN(mret) += plen;
1992 			break;
1993 		}
1994 #endif
1995 #ifdef INET6
1996 	case AF_INET6:
1997 		{
1998 			struct sctp_ipv6addr_param *ipv6p;
1999 			struct sockaddr_in6 *sin6;
2000 
2001 			sin6 = &ifa->address.sin6;
2002 			ipv6p = (struct sctp_ipv6addr_param *)paramh;
2003 			paramh->param_type = htons(SCTP_IPV6_ADDRESS);
2004 			paramh->param_length = htons(plen);
2005 			memcpy(ipv6p->addr, &sin6->sin6_addr,
2006 			    sizeof(ipv6p->addr));
2007 			/* clear embedded scope in the address */
2008 			in6_clearscope((struct in6_addr *)ipv6p->addr);
2009 			SCTP_BUF_LEN(mret) += plen;
2010 			break;
2011 		}
2012 #endif
2013 	default:
2014 		return (m);
2015 	}
2016 	if (len != NULL) {
2017 		*len += plen;
2018 	}
2019 	return (mret);
2020 #endif
2021 }
2022 
2023 struct mbuf *
2024 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2025     struct sctp_scoping *scope,
2026     struct mbuf *m_at, int cnt_inits_to,
2027     uint16_t *padding_len, uint16_t *chunk_len)
2028 {
2029 	struct sctp_vrf *vrf = NULL;
2030 	int cnt, limit_out = 0, total_count;
2031 	uint32_t vrf_id;
2032 
2033 	vrf_id = inp->def_vrf_id;
2034 	SCTP_IPI_ADDR_RLOCK();
2035 	vrf = sctp_find_vrf(vrf_id);
2036 	if (vrf == NULL) {
2037 		SCTP_IPI_ADDR_RUNLOCK();
2038 		return (m_at);
2039 	}
2040 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2041 		struct sctp_ifa *sctp_ifap;
2042 		struct sctp_ifn *sctp_ifnp;
2043 
2044 		cnt = cnt_inits_to;
2045 		if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2046 			limit_out = 1;
2047 			cnt = SCTP_ADDRESS_LIMIT;
2048 			goto skip_count;
2049 		}
2050 		LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2051 			if ((scope->loopback_scope == 0) &&
2052 			    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2053 				/*
2054 				 * Skip loopback devices if loopback_scope
2055 				 * not set
2056 				 */
2057 				continue;
2058 			}
2059 			LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2060 #ifdef INET
2061 				if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2062 				    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2063 				    &sctp_ifap->address.sin.sin_addr) != 0)) {
2064 					continue;
2065 				}
2066 #endif
2067 #ifdef INET6
2068 				if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2069 				    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2070 				    &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2071 					continue;
2072 				}
2073 #endif
2074 				if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2075 					continue;
2076 				}
2077 				if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) {
2078 					continue;
2079 				}
2080 				cnt++;
2081 				if (cnt > SCTP_ADDRESS_LIMIT) {
2082 					break;
2083 				}
2084 			}
2085 			if (cnt > SCTP_ADDRESS_LIMIT) {
2086 				break;
2087 			}
2088 		}
2089 skip_count:
2090 		if (cnt > 1) {
2091 			total_count = 0;
2092 			LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2093 				cnt = 0;
2094 				if ((scope->loopback_scope == 0) &&
2095 				    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2096 					/*
2097 					 * Skip loopback devices if
2098 					 * loopback_scope not set
2099 					 */
2100 					continue;
2101 				}
2102 				LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2103 #ifdef INET
2104 					if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2105 					    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2106 					    &sctp_ifap->address.sin.sin_addr) != 0)) {
2107 						continue;
2108 					}
2109 #endif
2110 #ifdef INET6
2111 					if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2112 					    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2113 					    &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2114 						continue;
2115 					}
2116 #endif
2117 					if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2118 						continue;
2119 					}
2120 					if (sctp_is_address_in_scope(sctp_ifap,
2121 					    scope, 0) == 0) {
2122 						continue;
2123 					}
2124 					if ((chunk_len != NULL) &&
2125 					    (padding_len != NULL) &&
2126 					    (*padding_len > 0)) {
2127 						memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2128 						SCTP_BUF_LEN(m_at) += *padding_len;
2129 						*chunk_len += *padding_len;
2130 						*padding_len = 0;
2131 					}
2132 					m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len);
2133 					if (limit_out) {
2134 						cnt++;
2135 						total_count++;
2136 						if (cnt >= 2) {
2137 							/*
2138 							 * two from each
2139 							 * address
2140 							 */
2141 							break;
2142 						}
2143 						if (total_count > SCTP_ADDRESS_LIMIT) {
2144 							/* No more addresses */
2145 							break;
2146 						}
2147 					}
2148 				}
2149 			}
2150 		}
2151 	} else {
2152 		struct sctp_laddr *laddr;
2153 
2154 		cnt = cnt_inits_to;
2155 		/* First, how many ? */
2156 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2157 			if (laddr->ifa == NULL) {
2158 				continue;
2159 			}
2160 			if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2161 				/*
2162 				 * Address being deleted by the system, dont
2163 				 * list.
2164 				 */
2165 				continue;
2166 			if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2167 				/*
2168 				 * Address being deleted on this ep don't
2169 				 * list.
2170 				 */
2171 				continue;
2172 			}
2173 			if (sctp_is_address_in_scope(laddr->ifa,
2174 			    scope, 1) == 0) {
2175 				continue;
2176 			}
2177 			cnt++;
2178 		}
2179 		/*
2180 		 * To get through a NAT we only list addresses if we have
2181 		 * more than one. That way if you just bind a single address
2182 		 * we let the source of the init dictate our address.
2183 		 */
2184 		if (cnt > 1) {
2185 			cnt = cnt_inits_to;
2186 			LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2187 				if (laddr->ifa == NULL) {
2188 					continue;
2189 				}
2190 				if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) {
2191 					continue;
2192 				}
2193 				if (sctp_is_address_in_scope(laddr->ifa,
2194 				    scope, 0) == 0) {
2195 					continue;
2196 				}
2197 				if ((chunk_len != NULL) &&
2198 				    (padding_len != NULL) &&
2199 				    (*padding_len > 0)) {
2200 					memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2201 					SCTP_BUF_LEN(m_at) += *padding_len;
2202 					*chunk_len += *padding_len;
2203 					*padding_len = 0;
2204 				}
2205 				m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len);
2206 				cnt++;
2207 				if (cnt >= SCTP_ADDRESS_LIMIT) {
2208 					break;
2209 				}
2210 			}
2211 		}
2212 	}
2213 	SCTP_IPI_ADDR_RUNLOCK();
2214 	return (m_at);
2215 }
2216 
2217 static struct sctp_ifa *
2218 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2219     uint8_t dest_is_loop,
2220     uint8_t dest_is_priv,
2221     sa_family_t fam)
2222 {
2223 	uint8_t dest_is_global = 0;
2224 
2225 	/* dest_is_priv is true if destination is a private address */
2226 	/* dest_is_loop is true if destination is a loopback addresses */
2227 
2228 	/**
2229 	 * Here we determine if its a preferred address. A preferred address
2230 	 * means it is the same scope or higher scope then the destination.
2231 	 * L = loopback, P = private, G = global
2232 	 * -----------------------------------------
2233 	 *    src    |  dest | result
2234 	 *  ----------------------------------------
2235 	 *     L     |    L  |    yes
2236 	 *  -----------------------------------------
2237 	 *     P     |    L  |    yes-v4 no-v6
2238 	 *  -----------------------------------------
2239 	 *     G     |    L  |    yes-v4 no-v6
2240 	 *  -----------------------------------------
2241 	 *     L     |    P  |    no
2242 	 *  -----------------------------------------
2243 	 *     P     |    P  |    yes
2244 	 *  -----------------------------------------
2245 	 *     G     |    P  |    no
2246 	 *   -----------------------------------------
2247 	 *     L     |    G  |    no
2248 	 *   -----------------------------------------
2249 	 *     P     |    G  |    no
2250 	 *    -----------------------------------------
2251 	 *     G     |    G  |    yes
2252 	 *    -----------------------------------------
2253 	 */
2254 
2255 	if (ifa->address.sa.sa_family != fam) {
2256 		/* forget mis-matched family */
2257 		return (NULL);
2258 	}
2259 	if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2260 		dest_is_global = 1;
2261 	}
2262 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2263 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2264 	/* Ok the address may be ok */
2265 #ifdef INET6
2266 	if (fam == AF_INET6) {
2267 		/* ok to use deprecated addresses? no lets not! */
2268 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2269 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2270 			return (NULL);
2271 		}
2272 		if (ifa->src_is_priv && !ifa->src_is_loop) {
2273 			if (dest_is_loop) {
2274 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2275 				return (NULL);
2276 			}
2277 		}
2278 		if (ifa->src_is_glob) {
2279 			if (dest_is_loop) {
2280 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2281 				return (NULL);
2282 			}
2283 		}
2284 	}
2285 #endif
2286 	/*
2287 	 * Now that we know what is what, implement or table this could in
2288 	 * theory be done slicker (it used to be), but this is
2289 	 * straightforward and easier to validate :-)
2290 	 */
2291 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2292 	    ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2293 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2294 	    dest_is_loop, dest_is_priv, dest_is_global);
2295 
2296 	if ((ifa->src_is_loop) && (dest_is_priv)) {
2297 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2298 		return (NULL);
2299 	}
2300 	if ((ifa->src_is_glob) && (dest_is_priv)) {
2301 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2302 		return (NULL);
2303 	}
2304 	if ((ifa->src_is_loop) && (dest_is_global)) {
2305 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2306 		return (NULL);
2307 	}
2308 	if ((ifa->src_is_priv) && (dest_is_global)) {
2309 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2310 		return (NULL);
2311 	}
2312 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2313 	/* its a preferred address */
2314 	return (ifa);
2315 }
2316 
2317 static struct sctp_ifa *
2318 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2319     uint8_t dest_is_loop,
2320     uint8_t dest_is_priv,
2321     sa_family_t fam)
2322 {
2323 	uint8_t dest_is_global = 0;
2324 
2325 	/**
2326 	 * Here we determine if its a acceptable address. A acceptable
2327 	 * address means it is the same scope or higher scope but we can
2328 	 * allow for NAT which means its ok to have a global dest and a
2329 	 * private src.
2330 	 *
2331 	 * L = loopback, P = private, G = global
2332 	 * -----------------------------------------
2333 	 *  src    |  dest | result
2334 	 * -----------------------------------------
2335 	 *   L     |   L   |    yes
2336 	 *  -----------------------------------------
2337 	 *   P     |   L   |    yes-v4 no-v6
2338 	 *  -----------------------------------------
2339 	 *   G     |   L   |    yes
2340 	 * -----------------------------------------
2341 	 *   L     |   P   |    no
2342 	 * -----------------------------------------
2343 	 *   P     |   P   |    yes
2344 	 * -----------------------------------------
2345 	 *   G     |   P   |    yes - May not work
2346 	 * -----------------------------------------
2347 	 *   L     |   G   |    no
2348 	 * -----------------------------------------
2349 	 *   P     |   G   |    yes - May not work
2350 	 * -----------------------------------------
2351 	 *   G     |   G   |    yes
2352 	 * -----------------------------------------
2353 	 */
2354 
2355 	if (ifa->address.sa.sa_family != fam) {
2356 		/* forget non matching family */
2357 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2358 		    ifa->address.sa.sa_family, fam);
2359 		return (NULL);
2360 	}
2361 	/* Ok the address may be ok */
2362 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2363 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2364 	    dest_is_loop, dest_is_priv);
2365 	if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2366 		dest_is_global = 1;
2367 	}
2368 #ifdef INET6
2369 	if (fam == AF_INET6) {
2370 		/* ok to use deprecated addresses? */
2371 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2372 			return (NULL);
2373 		}
2374 		if (ifa->src_is_priv) {
2375 			/* Special case, linklocal to loop */
2376 			if (dest_is_loop)
2377 				return (NULL);
2378 		}
2379 	}
2380 #endif
2381 	/*
2382 	 * Now that we know what is what, implement our table. This could in
2383 	 * theory be done slicker (it used to be), but this is
2384 	 * straightforward and easier to validate :-)
2385 	 */
2386 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2387 	    ifa->src_is_loop,
2388 	    dest_is_priv);
2389 	if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2390 		return (NULL);
2391 	}
2392 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2393 	    ifa->src_is_loop,
2394 	    dest_is_global);
2395 	if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2396 		return (NULL);
2397 	}
2398 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2399 	/* its an acceptable address */
2400 	return (ifa);
2401 }
2402 
2403 int
2404 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2405 {
2406 	struct sctp_laddr *laddr;
2407 
2408 	if (stcb == NULL) {
2409 		/* There are no restrictions, no TCB :-) */
2410 		return (0);
2411 	}
2412 	LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2413 		if (laddr->ifa == NULL) {
2414 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2415 			    __func__);
2416 			continue;
2417 		}
2418 		if (laddr->ifa == ifa) {
2419 			/* Yes it is on the list */
2420 			return (1);
2421 		}
2422 	}
2423 	return (0);
2424 }
2425 
2426 int
2427 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2428 {
2429 	struct sctp_laddr *laddr;
2430 
2431 	if (ifa == NULL)
2432 		return (0);
2433 	LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2434 		if (laddr->ifa == NULL) {
2435 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2436 			    __func__);
2437 			continue;
2438 		}
2439 		if ((laddr->ifa == ifa) && laddr->action == 0)
2440 			/* same pointer */
2441 			return (1);
2442 	}
2443 	return (0);
2444 }
2445 
2446 static struct sctp_ifa *
2447 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2448     sctp_route_t *ro,
2449     uint32_t vrf_id,
2450     int non_asoc_addr_ok,
2451     uint8_t dest_is_priv,
2452     uint8_t dest_is_loop,
2453     sa_family_t fam)
2454 {
2455 	struct sctp_laddr *laddr, *starting_point;
2456 	void *ifn;
2457 	int resettotop = 0;
2458 	struct sctp_ifn *sctp_ifn;
2459 	struct sctp_ifa *sctp_ifa, *sifa;
2460 	struct sctp_vrf *vrf;
2461 	uint32_t ifn_index;
2462 
2463 	vrf = sctp_find_vrf(vrf_id);
2464 	if (vrf == NULL)
2465 		return (NULL);
2466 
2467 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2468 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2469 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2470 	/*
2471 	 * first question, is the ifn we will emit on in our list, if so, we
2472 	 * want such an address. Note that we first looked for a preferred
2473 	 * address.
2474 	 */
2475 	if (sctp_ifn) {
2476 		/* is a preferred one on the interface we route out? */
2477 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2478 #ifdef INET
2479 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2480 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2481 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2482 				continue;
2483 			}
2484 #endif
2485 #ifdef INET6
2486 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2487 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2488 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2489 				continue;
2490 			}
2491 #endif
2492 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2493 			    (non_asoc_addr_ok == 0))
2494 				continue;
2495 			sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2496 			    dest_is_loop,
2497 			    dest_is_priv, fam);
2498 			if (sifa == NULL)
2499 				continue;
2500 			if (sctp_is_addr_in_ep(inp, sifa)) {
2501 				atomic_add_int(&sifa->refcount, 1);
2502 				return (sifa);
2503 			}
2504 		}
2505 	}
2506 	/*
2507 	 * ok, now we now need to find one on the list of the addresses. We
2508 	 * can't get one on the emitting interface so let's find first a
2509 	 * preferred one. If not that an acceptable one otherwise... we
2510 	 * return NULL.
2511 	 */
2512 	starting_point = inp->next_addr_touse;
2513 once_again:
2514 	if (inp->next_addr_touse == NULL) {
2515 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2516 		resettotop = 1;
2517 	}
2518 	for (laddr = inp->next_addr_touse; laddr;
2519 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2520 		if (laddr->ifa == NULL) {
2521 			/* address has been removed */
2522 			continue;
2523 		}
2524 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2525 			/* address is being deleted */
2526 			continue;
2527 		}
2528 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2529 		    dest_is_priv, fam);
2530 		if (sifa == NULL)
2531 			continue;
2532 		atomic_add_int(&sifa->refcount, 1);
2533 		return (sifa);
2534 	}
2535 	if (resettotop == 0) {
2536 		inp->next_addr_touse = NULL;
2537 		goto once_again;
2538 	}
2539 
2540 	inp->next_addr_touse = starting_point;
2541 	resettotop = 0;
2542 once_again_too:
2543 	if (inp->next_addr_touse == NULL) {
2544 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2545 		resettotop = 1;
2546 	}
2547 
2548 	/* ok, what about an acceptable address in the inp */
2549 	for (laddr = inp->next_addr_touse; laddr;
2550 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2551 		if (laddr->ifa == NULL) {
2552 			/* address has been removed */
2553 			continue;
2554 		}
2555 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2556 			/* address is being deleted */
2557 			continue;
2558 		}
2559 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2560 		    dest_is_priv, fam);
2561 		if (sifa == NULL)
2562 			continue;
2563 		atomic_add_int(&sifa->refcount, 1);
2564 		return (sifa);
2565 	}
2566 	if (resettotop == 0) {
2567 		inp->next_addr_touse = NULL;
2568 		goto once_again_too;
2569 	}
2570 
2571 	/*
2572 	 * no address bound can be a source for the destination we are in
2573 	 * trouble
2574 	 */
2575 	return (NULL);
2576 }
2577 
2578 static struct sctp_ifa *
2579 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2580     struct sctp_tcb *stcb,
2581     sctp_route_t *ro,
2582     uint32_t vrf_id,
2583     uint8_t dest_is_priv,
2584     uint8_t dest_is_loop,
2585     int non_asoc_addr_ok,
2586     sa_family_t fam)
2587 {
2588 	struct sctp_laddr *laddr, *starting_point;
2589 	void *ifn;
2590 	struct sctp_ifn *sctp_ifn;
2591 	struct sctp_ifa *sctp_ifa, *sifa;
2592 	uint8_t start_at_beginning = 0;
2593 	struct sctp_vrf *vrf;
2594 	uint32_t ifn_index;
2595 
2596 	/*
2597 	 * first question, is the ifn we will emit on in our list, if so, we
2598 	 * want that one.
2599 	 */
2600 	vrf = sctp_find_vrf(vrf_id);
2601 	if (vrf == NULL)
2602 		return (NULL);
2603 
2604 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2605 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2606 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2607 
2608 	/*
2609 	 * first question, is the ifn we will emit on in our list?  If so,
2610 	 * we want that one. First we look for a preferred. Second, we go
2611 	 * for an acceptable.
2612 	 */
2613 	if (sctp_ifn) {
2614 		/* first try for a preferred address on the ep */
2615 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2616 #ifdef INET
2617 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2618 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2619 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2620 				continue;
2621 			}
2622 #endif
2623 #ifdef INET6
2624 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2625 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2626 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2627 				continue;
2628 			}
2629 #endif
2630 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2631 				continue;
2632 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2633 				sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2634 				if (sifa == NULL)
2635 					continue;
2636 				if (((non_asoc_addr_ok == 0) &&
2637 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2638 				    (non_asoc_addr_ok &&
2639 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2640 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2641 					/* on the no-no list */
2642 					continue;
2643 				}
2644 				atomic_add_int(&sifa->refcount, 1);
2645 				return (sifa);
2646 			}
2647 		}
2648 		/* next try for an acceptable address on the ep */
2649 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2650 #ifdef INET
2651 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2652 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2653 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2654 				continue;
2655 			}
2656 #endif
2657 #ifdef INET6
2658 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2659 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2660 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2661 				continue;
2662 			}
2663 #endif
2664 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2665 				continue;
2666 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2667 				sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2668 				if (sifa == NULL)
2669 					continue;
2670 				if (((non_asoc_addr_ok == 0) &&
2671 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2672 				    (non_asoc_addr_ok &&
2673 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2674 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2675 					/* on the no-no list */
2676 					continue;
2677 				}
2678 				atomic_add_int(&sifa->refcount, 1);
2679 				return (sifa);
2680 			}
2681 		}
2682 	}
2683 	/*
2684 	 * if we can't find one like that then we must look at all addresses
2685 	 * bound to pick one at first preferable then secondly acceptable.
2686 	 */
2687 	starting_point = stcb->asoc.last_used_address;
2688 sctp_from_the_top:
2689 	if (stcb->asoc.last_used_address == NULL) {
2690 		start_at_beginning = 1;
2691 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2692 	}
2693 	/* search beginning with the last used address */
2694 	for (laddr = stcb->asoc.last_used_address; laddr;
2695 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2696 		if (laddr->ifa == NULL) {
2697 			/* address has been removed */
2698 			continue;
2699 		}
2700 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2701 			/* address is being deleted */
2702 			continue;
2703 		}
2704 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2705 		if (sifa == NULL)
2706 			continue;
2707 		if (((non_asoc_addr_ok == 0) &&
2708 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2709 		    (non_asoc_addr_ok &&
2710 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2711 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2712 			/* on the no-no list */
2713 			continue;
2714 		}
2715 		stcb->asoc.last_used_address = laddr;
2716 		atomic_add_int(&sifa->refcount, 1);
2717 		return (sifa);
2718 	}
2719 	if (start_at_beginning == 0) {
2720 		stcb->asoc.last_used_address = NULL;
2721 		goto sctp_from_the_top;
2722 	}
2723 	/* now try for any higher scope than the destination */
2724 	stcb->asoc.last_used_address = starting_point;
2725 	start_at_beginning = 0;
2726 sctp_from_the_top2:
2727 	if (stcb->asoc.last_used_address == NULL) {
2728 		start_at_beginning = 1;
2729 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2730 	}
2731 	/* search beginning with the last used address */
2732 	for (laddr = stcb->asoc.last_used_address; laddr;
2733 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2734 		if (laddr->ifa == NULL) {
2735 			/* address has been removed */
2736 			continue;
2737 		}
2738 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2739 			/* address is being deleted */
2740 			continue;
2741 		}
2742 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2743 		    dest_is_priv, fam);
2744 		if (sifa == NULL)
2745 			continue;
2746 		if (((non_asoc_addr_ok == 0) &&
2747 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2748 		    (non_asoc_addr_ok &&
2749 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2750 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2751 			/* on the no-no list */
2752 			continue;
2753 		}
2754 		stcb->asoc.last_used_address = laddr;
2755 		atomic_add_int(&sifa->refcount, 1);
2756 		return (sifa);
2757 	}
2758 	if (start_at_beginning == 0) {
2759 		stcb->asoc.last_used_address = NULL;
2760 		goto sctp_from_the_top2;
2761 	}
2762 	return (NULL);
2763 }
2764 
2765 static struct sctp_ifa *
2766 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2767     struct sctp_inpcb *inp,
2768     struct sctp_tcb *stcb,
2769     int non_asoc_addr_ok,
2770     uint8_t dest_is_loop,
2771     uint8_t dest_is_priv,
2772     int addr_wanted,
2773     sa_family_t fam,
2774     sctp_route_t *ro)
2775 {
2776 	struct sctp_ifa *ifa, *sifa;
2777 	int num_eligible_addr = 0;
2778 #ifdef INET6
2779 	struct sockaddr_in6 sin6, lsa6;
2780 
2781 	if (fam == AF_INET6) {
2782 		memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2783 		(void)sa6_recoverscope(&sin6);
2784 	}
2785 #endif				/* INET6 */
2786 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2787 #ifdef INET
2788 		if ((ifa->address.sa.sa_family == AF_INET) &&
2789 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2790 		    &ifa->address.sin.sin_addr) != 0)) {
2791 			continue;
2792 		}
2793 #endif
2794 #ifdef INET6
2795 		if ((ifa->address.sa.sa_family == AF_INET6) &&
2796 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2797 		    &ifa->address.sin6.sin6_addr) != 0)) {
2798 			continue;
2799 		}
2800 #endif
2801 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2802 		    (non_asoc_addr_ok == 0))
2803 			continue;
2804 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2805 		    dest_is_priv, fam);
2806 		if (sifa == NULL)
2807 			continue;
2808 #ifdef INET6
2809 		if (fam == AF_INET6 &&
2810 		    dest_is_loop &&
2811 		    sifa->src_is_loop && sifa->src_is_priv) {
2812 			/*
2813 			 * don't allow fe80::1 to be a src on loop ::1, we
2814 			 * don't list it to the peer so we will get an
2815 			 * abort.
2816 			 */
2817 			continue;
2818 		}
2819 		if (fam == AF_INET6 &&
2820 		    IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2821 		    IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2822 			/*
2823 			 * link-local <-> link-local must belong to the same
2824 			 * scope.
2825 			 */
2826 			memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2827 			(void)sa6_recoverscope(&lsa6);
2828 			if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2829 				continue;
2830 			}
2831 		}
2832 #endif				/* INET6 */
2833 
2834 		/*
2835 		 * Check if the IPv6 address matches to next-hop. In the
2836 		 * mobile case, old IPv6 address may be not deleted from the
2837 		 * interface. Then, the interface has previous and new
2838 		 * addresses.  We should use one corresponding to the
2839 		 * next-hop.  (by micchie)
2840 		 */
2841 #ifdef INET6
2842 		if (stcb && fam == AF_INET6 &&
2843 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2844 			if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) == 0) {
2845 				continue;
2846 			}
2847 		}
2848 #endif
2849 #ifdef INET
2850 		/* Avoid topologically incorrect IPv4 address */
2851 		if (stcb && fam == AF_INET &&
2852 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2853 			if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2854 				continue;
2855 			}
2856 		}
2857 #endif
2858 		if (stcb) {
2859 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2860 				continue;
2861 			}
2862 			if (((non_asoc_addr_ok == 0) &&
2863 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2864 			    (non_asoc_addr_ok &&
2865 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2866 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2867 				/*
2868 				 * It is restricted for some reason..
2869 				 * probably not yet added.
2870 				 */
2871 				continue;
2872 			}
2873 		}
2874 		if (num_eligible_addr >= addr_wanted) {
2875 			return (sifa);
2876 		}
2877 		num_eligible_addr++;
2878 	}
2879 	return (NULL);
2880 }
2881 
2882 static int
2883 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2884     struct sctp_inpcb *inp,
2885     struct sctp_tcb *stcb,
2886     int non_asoc_addr_ok,
2887     uint8_t dest_is_loop,
2888     uint8_t dest_is_priv,
2889     sa_family_t fam)
2890 {
2891 	struct sctp_ifa *ifa, *sifa;
2892 	int num_eligible_addr = 0;
2893 
2894 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2895 #ifdef INET
2896 		if ((ifa->address.sa.sa_family == AF_INET) &&
2897 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2898 		    &ifa->address.sin.sin_addr) != 0)) {
2899 			continue;
2900 		}
2901 #endif
2902 #ifdef INET6
2903 		if ((ifa->address.sa.sa_family == AF_INET6) &&
2904 		    (stcb != NULL) &&
2905 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2906 		    &ifa->address.sin6.sin6_addr) != 0)) {
2907 			continue;
2908 		}
2909 #endif
2910 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2911 		    (non_asoc_addr_ok == 0)) {
2912 			continue;
2913 		}
2914 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2915 		    dest_is_priv, fam);
2916 		if (sifa == NULL) {
2917 			continue;
2918 		}
2919 		if (stcb) {
2920 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2921 				continue;
2922 			}
2923 			if (((non_asoc_addr_ok == 0) &&
2924 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2925 			    (non_asoc_addr_ok &&
2926 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2927 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2928 				/*
2929 				 * It is restricted for some reason..
2930 				 * probably not yet added.
2931 				 */
2932 				continue;
2933 			}
2934 		}
2935 		num_eligible_addr++;
2936 	}
2937 	return (num_eligible_addr);
2938 }
2939 
2940 static struct sctp_ifa *
2941 sctp_choose_boundall(struct sctp_inpcb *inp,
2942     struct sctp_tcb *stcb,
2943     struct sctp_nets *net,
2944     sctp_route_t *ro,
2945     uint32_t vrf_id,
2946     uint8_t dest_is_priv,
2947     uint8_t dest_is_loop,
2948     int non_asoc_addr_ok,
2949     sa_family_t fam)
2950 {
2951 	int cur_addr_num = 0, num_preferred = 0;
2952 	void *ifn;
2953 	struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2954 	struct sctp_ifa *sctp_ifa, *sifa;
2955 	uint32_t ifn_index;
2956 	struct sctp_vrf *vrf;
2957 #ifdef INET
2958 	int retried = 0;
2959 #endif
2960 
2961 	/*-
2962 	 * For boundall we can use any address in the association.
2963 	 * If non_asoc_addr_ok is set we can use any address (at least in
2964 	 * theory). So we look for preferred addresses first. If we find one,
2965 	 * we use it. Otherwise we next try to get an address on the
2966 	 * interface, which we should be able to do (unless non_asoc_addr_ok
2967 	 * is false and we are routed out that way). In these cases where we
2968 	 * can't use the address of the interface we go through all the
2969 	 * ifn's looking for an address we can use and fill that in. Punting
2970 	 * means we send back address 0, which will probably cause problems
2971 	 * actually since then IP will fill in the address of the route ifn,
2972 	 * which means we probably already rejected it.. i.e. here comes an
2973 	 * abort :-<.
2974 	 */
2975 	vrf = sctp_find_vrf(vrf_id);
2976 	if (vrf == NULL)
2977 		return (NULL);
2978 
2979 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2980 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2981 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2982 	emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2983 	if (sctp_ifn == NULL) {
2984 		/* ?? We don't have this guy ?? */
2985 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
2986 		goto bound_all_plan_b;
2987 	}
2988 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
2989 	    ifn_index, sctp_ifn->ifn_name);
2990 
2991 	if (net) {
2992 		cur_addr_num = net->indx_of_eligible_next_to_use;
2993 	}
2994 	num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
2995 	    inp, stcb,
2996 	    non_asoc_addr_ok,
2997 	    dest_is_loop,
2998 	    dest_is_priv, fam);
2999 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
3000 	    num_preferred, sctp_ifn->ifn_name);
3001 	if (num_preferred == 0) {
3002 		/*
3003 		 * no eligible addresses, we must use some other interface
3004 		 * address if we can find one.
3005 		 */
3006 		goto bound_all_plan_b;
3007 	}
3008 	/*
3009 	 * Ok we have num_eligible_addr set with how many we can use, this
3010 	 * may vary from call to call due to addresses being deprecated
3011 	 * etc..
3012 	 */
3013 	if (cur_addr_num >= num_preferred) {
3014 		cur_addr_num = 0;
3015 	}
3016 	/*
3017 	 * select the nth address from the list (where cur_addr_num is the
3018 	 * nth) and 0 is the first one, 1 is the second one etc...
3019 	 */
3020 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
3021 
3022 	sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3023 	    dest_is_priv, cur_addr_num, fam, ro);
3024 
3025 	/* if sctp_ifa is NULL something changed??, fall to plan b. */
3026 	if (sctp_ifa) {
3027 		atomic_add_int(&sctp_ifa->refcount, 1);
3028 		if (net) {
3029 			/* save off where the next one we will want */
3030 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3031 		}
3032 		return (sctp_ifa);
3033 	}
3034 	/*
3035 	 * plan_b: Look at all interfaces and find a preferred address. If
3036 	 * no preferred fall through to plan_c.
3037 	 */
3038 bound_all_plan_b:
3039 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
3040 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3041 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
3042 		    sctp_ifn->ifn_name);
3043 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3044 			/* wrong base scope */
3045 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
3046 			continue;
3047 		}
3048 		if ((sctp_ifn == looked_at) && looked_at) {
3049 			/* already looked at this guy */
3050 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
3051 			continue;
3052 		}
3053 		num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok,
3054 		    dest_is_loop, dest_is_priv, fam);
3055 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
3056 		    "Found ifn:%p %d preferred source addresses\n",
3057 		    ifn, num_preferred);
3058 		if (num_preferred == 0) {
3059 			/* None on this interface. */
3060 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "No preferred -- skipping to next\n");
3061 			continue;
3062 		}
3063 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
3064 		    "num preferred:%d on interface:%p cur_addr_num:%d\n",
3065 		    num_preferred, (void *)sctp_ifn, cur_addr_num);
3066 
3067 		/*
3068 		 * Ok we have num_eligible_addr set with how many we can
3069 		 * use, this may vary from call to call due to addresses
3070 		 * being deprecated etc..
3071 		 */
3072 		if (cur_addr_num >= num_preferred) {
3073 			cur_addr_num = 0;
3074 		}
3075 		sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3076 		    dest_is_priv, cur_addr_num, fam, ro);
3077 		if (sifa == NULL)
3078 			continue;
3079 		if (net) {
3080 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3081 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
3082 			    cur_addr_num);
3083 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
3084 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
3085 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
3086 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
3087 		}
3088 		atomic_add_int(&sifa->refcount, 1);
3089 		return (sifa);
3090 	}
3091 #ifdef INET
3092 again_with_private_addresses_allowed:
3093 #endif
3094 	/* plan_c: do we have an acceptable address on the emit interface */
3095 	sifa = NULL;
3096 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3097 	if (emit_ifn == NULL) {
3098 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3099 		goto plan_d;
3100 	}
3101 	LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3102 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3103 #ifdef INET
3104 		if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3105 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3106 		    &sctp_ifa->address.sin.sin_addr) != 0)) {
3107 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3108 			continue;
3109 		}
3110 #endif
3111 #ifdef INET6
3112 		if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3113 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3114 		    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3115 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3116 			continue;
3117 		}
3118 #endif
3119 		if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3120 		    (non_asoc_addr_ok == 0)) {
3121 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3122 			continue;
3123 		}
3124 		sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3125 		    dest_is_priv, fam);
3126 		if (sifa == NULL) {
3127 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3128 			continue;
3129 		}
3130 		if (stcb) {
3131 			if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3132 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3133 				sifa = NULL;
3134 				continue;
3135 			}
3136 			if (((non_asoc_addr_ok == 0) &&
3137 			    (sctp_is_addr_restricted(stcb, sifa))) ||
3138 			    (non_asoc_addr_ok &&
3139 			    (sctp_is_addr_restricted(stcb, sifa)) &&
3140 			    (!sctp_is_addr_pending(stcb, sifa)))) {
3141 				/*
3142 				 * It is restricted for some reason..
3143 				 * probably not yet added.
3144 				 */
3145 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its restricted\n");
3146 				sifa = NULL;
3147 				continue;
3148 			}
3149 		}
3150 		atomic_add_int(&sifa->refcount, 1);
3151 		goto out;
3152 	}
3153 plan_d:
3154 	/*
3155 	 * plan_d: We are in trouble. No preferred address on the emit
3156 	 * interface. And not even a preferred address on all interfaces. Go
3157 	 * out and see if we can find an acceptable address somewhere
3158 	 * amongst all interfaces.
3159 	 */
3160 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3161 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3162 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3163 			/* wrong base scope */
3164 			continue;
3165 		}
3166 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3167 #ifdef INET
3168 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3169 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3170 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
3171 				continue;
3172 			}
3173 #endif
3174 #ifdef INET6
3175 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3176 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3177 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3178 				continue;
3179 			}
3180 #endif
3181 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3182 			    (non_asoc_addr_ok == 0))
3183 				continue;
3184 			sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3185 			    dest_is_loop,
3186 			    dest_is_priv, fam);
3187 			if (sifa == NULL)
3188 				continue;
3189 			if (stcb) {
3190 				if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3191 					sifa = NULL;
3192 					continue;
3193 				}
3194 				if (((non_asoc_addr_ok == 0) &&
3195 				    (sctp_is_addr_restricted(stcb, sifa))) ||
3196 				    (non_asoc_addr_ok &&
3197 				    (sctp_is_addr_restricted(stcb, sifa)) &&
3198 				    (!sctp_is_addr_pending(stcb, sifa)))) {
3199 					/*
3200 					 * It is restricted for some
3201 					 * reason.. probably not yet added.
3202 					 */
3203 					sifa = NULL;
3204 					continue;
3205 				}
3206 			}
3207 			goto out;
3208 		}
3209 	}
3210 #ifdef INET
3211 	if (stcb) {
3212 		if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) {
3213 			stcb->asoc.scope.ipv4_local_scope = 1;
3214 			retried = 1;
3215 			goto again_with_private_addresses_allowed;
3216 		} else if (retried == 1) {
3217 			stcb->asoc.scope.ipv4_local_scope = 0;
3218 		}
3219 	}
3220 #endif
3221 out:
3222 #ifdef INET
3223 	if (sifa) {
3224 		if (retried == 1) {
3225 			LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3226 				if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3227 					/* wrong base scope */
3228 					continue;
3229 				}
3230 				LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3231 					struct sctp_ifa *tmp_sifa;
3232 
3233 #ifdef INET
3234 					if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3235 					    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3236 					    &sctp_ifa->address.sin.sin_addr) != 0)) {
3237 						continue;
3238 					}
3239 #endif
3240 #ifdef INET6
3241 					if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3242 					    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3243 					    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3244 						continue;
3245 					}
3246 #endif
3247 					if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3248 					    (non_asoc_addr_ok == 0))
3249 						continue;
3250 					tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3251 					    dest_is_loop,
3252 					    dest_is_priv, fam);
3253 					if (tmp_sifa == NULL) {
3254 						continue;
3255 					}
3256 					if (tmp_sifa == sifa) {
3257 						continue;
3258 					}
3259 					if (stcb) {
3260 						if (sctp_is_address_in_scope(tmp_sifa,
3261 						    &stcb->asoc.scope, 0) == 0) {
3262 							continue;
3263 						}
3264 						if (((non_asoc_addr_ok == 0) &&
3265 						    (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3266 						    (non_asoc_addr_ok &&
3267 						    (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3268 						    (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3269 							/*
3270 							 * It is restricted
3271 							 * for some reason..
3272 							 * probably not yet
3273 							 * added.
3274 							 */
3275 							continue;
3276 						}
3277 					}
3278 					if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3279 					    (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3280 						sctp_add_local_addr_restricted(stcb, tmp_sifa);
3281 					}
3282 				}
3283 			}
3284 		}
3285 		atomic_add_int(&sifa->refcount, 1);
3286 	}
3287 #endif
3288 	return (sifa);
3289 }
3290 
3291 /* tcb may be NULL */
3292 struct sctp_ifa *
3293 sctp_source_address_selection(struct sctp_inpcb *inp,
3294     struct sctp_tcb *stcb,
3295     sctp_route_t *ro,
3296     struct sctp_nets *net,
3297     int non_asoc_addr_ok, uint32_t vrf_id)
3298 {
3299 	struct sctp_ifa *answer;
3300 	uint8_t dest_is_priv, dest_is_loop;
3301 	sa_family_t fam;
3302 #ifdef INET
3303 	struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3304 #endif
3305 #ifdef INET6
3306 	struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3307 #endif
3308 
3309 	/**
3310 	 * Rules:
3311 	 * - Find the route if needed, cache if I can.
3312 	 * - Look at interface address in route, Is it in the bound list. If so we
3313 	 *   have the best source.
3314 	 * - If not we must rotate amongst the addresses.
3315 	 *
3316 	 * Caveats and issues
3317 	 *
3318 	 * Do we need to pay attention to scope. We can have a private address
3319 	 * or a global address we are sourcing or sending to. So if we draw
3320 	 * it out
3321 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3322 	 * For V4
3323 	 * ------------------------------------------
3324 	 *      source     *      dest  *  result
3325 	 * -----------------------------------------
3326 	 * <a>  Private    *    Global  *  NAT
3327 	 * -----------------------------------------
3328 	 * <b>  Private    *    Private *  No problem
3329 	 * -----------------------------------------
3330 	 * <c>  Global     *    Private *  Huh, How will this work?
3331 	 * -----------------------------------------
3332 	 * <d>  Global     *    Global  *  No Problem
3333 	 *------------------------------------------
3334 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3335 	 * For V6
3336 	 *------------------------------------------
3337 	 *      source     *      dest  *  result
3338 	 * -----------------------------------------
3339 	 * <a>  Linklocal  *    Global  *
3340 	 * -----------------------------------------
3341 	 * <b>  Linklocal  * Linklocal  *  No problem
3342 	 * -----------------------------------------
3343 	 * <c>  Global     * Linklocal  *  Huh, How will this work?
3344 	 * -----------------------------------------
3345 	 * <d>  Global     *    Global  *  No Problem
3346 	 *------------------------------------------
3347 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3348 	 *
3349 	 * And then we add to that what happens if there are multiple addresses
3350 	 * assigned to an interface. Remember the ifa on a ifn is a linked
3351 	 * list of addresses. So one interface can have more than one IP
3352 	 * address. What happens if we have both a private and a global
3353 	 * address? Do we then use context of destination to sort out which
3354 	 * one is best? And what about NAT's sending P->G may get you a NAT
3355 	 * translation, or should you select the G thats on the interface in
3356 	 * preference.
3357 	 *
3358 	 * Decisions:
3359 	 *
3360 	 * - count the number of addresses on the interface.
3361 	 * - if it is one, no problem except case <c>.
3362 	 *   For <a> we will assume a NAT out there.
3363 	 * - if there are more than one, then we need to worry about scope P
3364 	 *   or G. We should prefer G -> G and P -> P if possible.
3365 	 *   Then as a secondary fall back to mixed types G->P being a last
3366 	 *   ditch one.
3367 	 * - The above all works for bound all, but bound specific we need to
3368 	 *   use the same concept but instead only consider the bound
3369 	 *   addresses. If the bound set is NOT assigned to the interface then
3370 	 *   we must use rotation amongst the bound addresses..
3371 	 */
3372 	if (ro->ro_nh == NULL) {
3373 		/*
3374 		 * Need a route to cache.
3375 		 */
3376 		SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
3377 	}
3378 	if (ro->ro_nh == NULL) {
3379 		return (NULL);
3380 	}
3381 	fam = ro->ro_dst.sa_family;
3382 	dest_is_priv = dest_is_loop = 0;
3383 	/* Setup our scopes for the destination */
3384 	switch (fam) {
3385 #ifdef INET
3386 	case AF_INET:
3387 		/* Scope based on outbound address */
3388 		if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3389 			dest_is_loop = 1;
3390 			if (net != NULL) {
3391 				/* mark it as local */
3392 				net->addr_is_local = 1;
3393 			}
3394 		} else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3395 			dest_is_priv = 1;
3396 		}
3397 		break;
3398 #endif
3399 #ifdef INET6
3400 	case AF_INET6:
3401 		/* Scope based on outbound address */
3402 		if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3403 		    SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3404 			/*
3405 			 * If the address is a loopback address, which
3406 			 * consists of "::1" OR "fe80::1%lo0", we are
3407 			 * loopback scope. But we don't use dest_is_priv
3408 			 * (link local addresses).
3409 			 */
3410 			dest_is_loop = 1;
3411 			if (net != NULL) {
3412 				/* mark it as local */
3413 				net->addr_is_local = 1;
3414 			}
3415 		} else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3416 			dest_is_priv = 1;
3417 		}
3418 		break;
3419 #endif
3420 	}
3421 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3422 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3423 	SCTP_IPI_ADDR_RLOCK();
3424 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3425 		/*
3426 		 * Bound all case
3427 		 */
3428 		answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id,
3429 		    dest_is_priv, dest_is_loop,
3430 		    non_asoc_addr_ok, fam);
3431 		SCTP_IPI_ADDR_RUNLOCK();
3432 		return (answer);
3433 	}
3434 	/*
3435 	 * Subset bound case
3436 	 */
3437 	if (stcb) {
3438 		answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3439 		    vrf_id, dest_is_priv,
3440 		    dest_is_loop,
3441 		    non_asoc_addr_ok, fam);
3442 	} else {
3443 		answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3444 		    non_asoc_addr_ok,
3445 		    dest_is_priv,
3446 		    dest_is_loop, fam);
3447 	}
3448 	SCTP_IPI_ADDR_RUNLOCK();
3449 	return (answer);
3450 }
3451 
3452 static bool
3453 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3454 {
3455 	struct cmsghdr cmh;
3456 	struct sctp_sndinfo sndinfo;
3457 	struct sctp_prinfo prinfo;
3458 	struct sctp_authinfo authinfo;
3459 	int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off;
3460 	bool found;
3461 
3462 	/*
3463 	 * Independent of how many mbufs, find the c_type inside the control
3464 	 * structure and copy out the data.
3465 	 */
3466 	found = false;
3467 	tot_len = SCTP_BUF_LEN(control);
3468 	for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) {
3469 		rem_len = tot_len - off;
3470 		if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) {
3471 			/* There is not enough room for one more. */
3472 			return (found);
3473 		}
3474 		m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh);
3475 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3476 			/* We dont't have a complete CMSG header. */
3477 			return (found);
3478 		}
3479 		if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) {
3480 			/* We don't have the complete CMSG. */
3481 			return (found);
3482 		}
3483 		cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh));
3484 		cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh));
3485 		if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3486 		    ((c_type == cmh.cmsg_type) ||
3487 		    ((c_type == SCTP_SNDRCV) &&
3488 		    ((cmh.cmsg_type == SCTP_SNDINFO) ||
3489 		    (cmh.cmsg_type == SCTP_PRINFO) ||
3490 		    (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3491 			if (c_type == cmh.cmsg_type) {
3492 				if (cpsize > INT_MAX) {
3493 					return (found);
3494 				}
3495 				if (cmsg_data_len < (int)cpsize) {
3496 					return (found);
3497 				}
3498 				/* It is exactly what we want. Copy it out. */
3499 				m_copydata(control, cmsg_data_off, (int)cpsize, (caddr_t)data);
3500 				return (1);
3501 			} else {
3502 				struct sctp_sndrcvinfo *sndrcvinfo;
3503 
3504 				sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3505 				if (!found) {
3506 					if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3507 						return (found);
3508 					}
3509 					memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3510 				}
3511 				switch (cmh.cmsg_type) {
3512 				case SCTP_SNDINFO:
3513 					if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) {
3514 						return (found);
3515 					}
3516 					m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3517 					sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3518 					sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3519 					sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3520 					sndrcvinfo->sinfo_context = sndinfo.snd_context;
3521 					sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3522 					break;
3523 				case SCTP_PRINFO:
3524 					if (cmsg_data_len < (int)sizeof(struct sctp_prinfo)) {
3525 						return (found);
3526 					}
3527 					m_copydata(control, cmsg_data_off, sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3528 					if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) {
3529 						sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3530 					} else {
3531 						sndrcvinfo->sinfo_timetolive = 0;
3532 					}
3533 					sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3534 					break;
3535 				case SCTP_AUTHINFO:
3536 					if (cmsg_data_len < (int)sizeof(struct sctp_authinfo)) {
3537 						return (found);
3538 					}
3539 					m_copydata(control, cmsg_data_off, sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3540 					sndrcvinfo->sinfo_keynumber_valid = 1;
3541 					sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3542 					break;
3543 				default:
3544 					return (found);
3545 				}
3546 				found = true;
3547 			}
3548 		}
3549 	}
3550 	return (found);
3551 }
3552 
3553 static int
3554 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3555 {
3556 	struct cmsghdr cmh;
3557 	struct sctp_initmsg initmsg;
3558 #ifdef INET
3559 	struct sockaddr_in sin;
3560 #endif
3561 #ifdef INET6
3562 	struct sockaddr_in6 sin6;
3563 #endif
3564 	int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off;
3565 
3566 	tot_len = SCTP_BUF_LEN(control);
3567 	for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) {
3568 		rem_len = tot_len - off;
3569 		if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) {
3570 			/* There is not enough room for one more. */
3571 			*error = EINVAL;
3572 			return (1);
3573 		}
3574 		m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh);
3575 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3576 			/* We dont't have a complete CMSG header. */
3577 			*error = EINVAL;
3578 			return (1);
3579 		}
3580 		if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) {
3581 			/* We don't have the complete CMSG. */
3582 			*error = EINVAL;
3583 			return (1);
3584 		}
3585 		cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh));
3586 		cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh));
3587 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3588 			switch (cmh.cmsg_type) {
3589 			case SCTP_INIT:
3590 				if (cmsg_data_len < (int)sizeof(struct sctp_initmsg)) {
3591 					*error = EINVAL;
3592 					return (1);
3593 				}
3594 				m_copydata(control, cmsg_data_off, sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3595 				if (initmsg.sinit_max_attempts)
3596 					stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3597 				if (initmsg.sinit_num_ostreams)
3598 					stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3599 				if (initmsg.sinit_max_instreams)
3600 					stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3601 				if (initmsg.sinit_max_init_timeo)
3602 					stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3603 				if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3604 					struct sctp_stream_out *tmp_str;
3605 					unsigned int i;
3606 #if defined(SCTP_DETAILED_STR_STATS)
3607 					int j;
3608 #endif
3609 
3610 					/* Default is NOT correct */
3611 					SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3612 					    stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3613 					SCTP_TCB_UNLOCK(stcb);
3614 					SCTP_MALLOC(tmp_str,
3615 					    struct sctp_stream_out *,
3616 					    (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3617 					    SCTP_M_STRMO);
3618 					SCTP_TCB_LOCK(stcb);
3619 					if (tmp_str != NULL) {
3620 						SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3621 						stcb->asoc.strmout = tmp_str;
3622 						stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3623 					} else {
3624 						stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3625 					}
3626 					for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3627 						TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3628 						stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL);
3629 						stcb->asoc.strmout[i].chunks_on_queues = 0;
3630 #if defined(SCTP_DETAILED_STR_STATS)
3631 						for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
3632 							stcb->asoc.strmout[i].abandoned_sent[j] = 0;
3633 							stcb->asoc.strmout[i].abandoned_unsent[j] = 0;
3634 						}
3635 #else
3636 						stcb->asoc.strmout[i].abandoned_sent[0] = 0;
3637 						stcb->asoc.strmout[i].abandoned_unsent[0] = 0;
3638 #endif
3639 						stcb->asoc.strmout[i].next_mid_ordered = 0;
3640 						stcb->asoc.strmout[i].next_mid_unordered = 0;
3641 						stcb->asoc.strmout[i].sid = i;
3642 						stcb->asoc.strmout[i].last_msg_incomplete = 0;
3643 						stcb->asoc.strmout[i].state = SCTP_STREAM_OPENING;
3644 					}
3645 				}
3646 				break;
3647 #ifdef INET
3648 			case SCTP_DSTADDRV4:
3649 				if (cmsg_data_len < (int)sizeof(struct in_addr)) {
3650 					*error = EINVAL;
3651 					return (1);
3652 				}
3653 				memset(&sin, 0, sizeof(struct sockaddr_in));
3654 				sin.sin_family = AF_INET;
3655 				sin.sin_len = sizeof(struct sockaddr_in);
3656 				sin.sin_port = stcb->rport;
3657 				m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3658 				if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3659 				    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3660 				    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3661 					*error = EINVAL;
3662 					return (1);
3663 				}
3664 				if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port,
3665 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3666 					*error = ENOBUFS;
3667 					return (1);
3668 				}
3669 				break;
3670 #endif
3671 #ifdef INET6
3672 			case SCTP_DSTADDRV6:
3673 				if (cmsg_data_len < (int)sizeof(struct in6_addr)) {
3674 					*error = EINVAL;
3675 					return (1);
3676 				}
3677 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3678 				sin6.sin6_family = AF_INET6;
3679 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3680 				sin6.sin6_port = stcb->rport;
3681 				m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3682 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) ||
3683 				    IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) {
3684 					*error = EINVAL;
3685 					return (1);
3686 				}
3687 #ifdef INET
3688 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3689 					in6_sin6_2_sin(&sin, &sin6);
3690 					if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3691 					    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3692 					    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3693 						*error = EINVAL;
3694 						return (1);
3695 					}
3696 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port,
3697 					    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3698 						*error = ENOBUFS;
3699 						return (1);
3700 					}
3701 				} else
3702 #endif
3703 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, stcb->asoc.port,
3704 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3705 					*error = ENOBUFS;
3706 					return (1);
3707 				}
3708 				break;
3709 #endif
3710 			default:
3711 				break;
3712 			}
3713 		}
3714 	}
3715 	return (0);
3716 }
3717 
3718 #if defined(INET) || defined(INET6)
3719 static struct sctp_tcb *
3720 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p,
3721     uint16_t port,
3722     struct mbuf *control,
3723     struct sctp_nets **net_p,
3724     int *error)
3725 {
3726 	struct cmsghdr cmh;
3727 	struct sctp_tcb *stcb;
3728 	struct sockaddr *addr;
3729 #ifdef INET
3730 	struct sockaddr_in sin;
3731 #endif
3732 #ifdef INET6
3733 	struct sockaddr_in6 sin6;
3734 #endif
3735 	int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off;
3736 
3737 	tot_len = SCTP_BUF_LEN(control);
3738 	for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) {
3739 		rem_len = tot_len - off;
3740 		if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) {
3741 			/* There is not enough room for one more. */
3742 			*error = EINVAL;
3743 			return (NULL);
3744 		}
3745 		m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh);
3746 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3747 			/* We dont't have a complete CMSG header. */
3748 			*error = EINVAL;
3749 			return (NULL);
3750 		}
3751 		if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) {
3752 			/* We don't have the complete CMSG. */
3753 			*error = EINVAL;
3754 			return (NULL);
3755 		}
3756 		cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh));
3757 		cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh));
3758 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3759 			switch (cmh.cmsg_type) {
3760 #ifdef INET
3761 			case SCTP_DSTADDRV4:
3762 				if (cmsg_data_len < (int)sizeof(struct in_addr)) {
3763 					*error = EINVAL;
3764 					return (NULL);
3765 				}
3766 				memset(&sin, 0, sizeof(struct sockaddr_in));
3767 				sin.sin_family = AF_INET;
3768 				sin.sin_len = sizeof(struct sockaddr_in);
3769 				sin.sin_port = port;
3770 				m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3771 				addr = (struct sockaddr *)&sin;
3772 				break;
3773 #endif
3774 #ifdef INET6
3775 			case SCTP_DSTADDRV6:
3776 				if (cmsg_data_len < (int)sizeof(struct in6_addr)) {
3777 					*error = EINVAL;
3778 					return (NULL);
3779 				}
3780 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3781 				sin6.sin6_family = AF_INET6;
3782 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3783 				sin6.sin6_port = port;
3784 				m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3785 #ifdef INET
3786 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3787 					in6_sin6_2_sin(&sin, &sin6);
3788 					addr = (struct sockaddr *)&sin;
3789 				} else
3790 #endif
3791 					addr = (struct sockaddr *)&sin6;
3792 				break;
3793 #endif
3794 			default:
3795 				addr = NULL;
3796 				break;
3797 			}
3798 			if (addr) {
3799 				stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3800 				if (stcb != NULL) {
3801 					return (stcb);
3802 				}
3803 			}
3804 		}
3805 	}
3806 	return (NULL);
3807 }
3808 #endif
3809 
3810 static struct mbuf *
3811 sctp_add_cookie(struct mbuf *init, int init_offset,
3812     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t **signature)
3813 {
3814 	struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3815 	struct sctp_state_cookie *stc;
3816 	struct sctp_paramhdr *ph;
3817 	uint16_t cookie_sz;
3818 
3819 	mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3820 	    sizeof(struct sctp_paramhdr)), 0,
3821 	    M_NOWAIT, 1, MT_DATA);
3822 	if (mret == NULL) {
3823 		return (NULL);
3824 	}
3825 	copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT);
3826 	if (copy_init == NULL) {
3827 		sctp_m_freem(mret);
3828 		return (NULL);
3829 	}
3830 #ifdef SCTP_MBUF_LOGGING
3831 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3832 		sctp_log_mbc(copy_init, SCTP_MBUF_ICOPY);
3833 	}
3834 #endif
3835 	copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3836 	    M_NOWAIT);
3837 	if (copy_initack == NULL) {
3838 		sctp_m_freem(mret);
3839 		sctp_m_freem(copy_init);
3840 		return (NULL);
3841 	}
3842 #ifdef SCTP_MBUF_LOGGING
3843 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3844 		sctp_log_mbc(copy_initack, SCTP_MBUF_ICOPY);
3845 	}
3846 #endif
3847 	/* easy side we just drop it on the end */
3848 	ph = mtod(mret, struct sctp_paramhdr *);
3849 	SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3850 	    sizeof(struct sctp_paramhdr);
3851 	stc = (struct sctp_state_cookie *)((caddr_t)ph +
3852 	    sizeof(struct sctp_paramhdr));
3853 	ph->param_type = htons(SCTP_STATE_COOKIE);
3854 	ph->param_length = 0;	/* fill in at the end */
3855 	/* Fill in the stc cookie data */
3856 	memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3857 
3858 	/* tack the INIT and then the INIT-ACK onto the chain */
3859 	cookie_sz = 0;
3860 	for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3861 		cookie_sz += SCTP_BUF_LEN(m_at);
3862 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3863 			SCTP_BUF_NEXT(m_at) = copy_init;
3864 			break;
3865 		}
3866 	}
3867 	for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3868 		cookie_sz += SCTP_BUF_LEN(m_at);
3869 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3870 			SCTP_BUF_NEXT(m_at) = copy_initack;
3871 			break;
3872 		}
3873 	}
3874 	for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3875 		cookie_sz += SCTP_BUF_LEN(m_at);
3876 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3877 			break;
3878 		}
3879 	}
3880 	sig = sctp_get_mbuf_for_msg(SCTP_SIGNATURE_SIZE, 0, M_NOWAIT, 1, MT_DATA);
3881 	if (sig == NULL) {
3882 		/* no space, so free the entire chain */
3883 		sctp_m_freem(mret);
3884 		return (NULL);
3885 	}
3886 	SCTP_BUF_NEXT(m_at) = sig;
3887 	SCTP_BUF_LEN(sig) = SCTP_SIGNATURE_SIZE;
3888 	cookie_sz += SCTP_SIGNATURE_SIZE;
3889 	ph->param_length = htons(cookie_sz);
3890 	*signature = (uint8_t *)mtod(sig, caddr_t);
3891 	memset(*signature, 0, SCTP_SIGNATURE_SIZE);
3892 	return (mret);
3893 }
3894 
3895 static uint8_t
3896 sctp_get_ect(struct sctp_tcb *stcb)
3897 {
3898 	if ((stcb != NULL) && (stcb->asoc.ecn_supported == 1)) {
3899 		return (SCTP_ECT0_BIT);
3900 	} else {
3901 		return (0);
3902 	}
3903 }
3904 
3905 #if defined(INET) || defined(INET6)
3906 static void
3907 sctp_handle_no_route(struct sctp_tcb *stcb,
3908     struct sctp_nets *net,
3909     int so_locked)
3910 {
3911 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3912 
3913 	if (net) {
3914 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3915 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3916 		if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3917 			if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3918 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3919 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3920 				    stcb, 0,
3921 				    (void *)net,
3922 				    so_locked);
3923 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
3924 				net->dest_state &= ~SCTP_ADDR_PF;
3925 			}
3926 		}
3927 		if (stcb) {
3928 			if (net == stcb->asoc.primary_destination) {
3929 				/* need a new primary */
3930 				struct sctp_nets *alt;
3931 
3932 				alt = sctp_find_alternate_net(stcb, net, 0);
3933 				if (alt != net) {
3934 					if (stcb->asoc.alternate) {
3935 						sctp_free_remote_addr(stcb->asoc.alternate);
3936 					}
3937 					stcb->asoc.alternate = alt;
3938 					atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3939 					if (net->ro._s_addr) {
3940 						sctp_free_ifa(net->ro._s_addr);
3941 						net->ro._s_addr = NULL;
3942 					}
3943 					net->src_addr_selected = 0;
3944 				}
3945 			}
3946 		}
3947 	}
3948 }
3949 #endif
3950 
3951 static int
3952 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3953     struct sctp_tcb *stcb,	/* may be NULL */
3954     struct sctp_nets *net,
3955     struct sockaddr *to,
3956     struct mbuf *m,
3957     uint32_t auth_offset,
3958     struct sctp_auth_chunk *auth,
3959     uint16_t auth_keyid,
3960     int nofragment_flag,
3961     int ecn_ok,
3962     int out_of_asoc_ok,
3963     uint16_t src_port,
3964     uint16_t dest_port,
3965     uint32_t v_tag,
3966     uint16_t port,
3967     union sctp_sockstore *over_addr,
3968     uint8_t mflowtype, uint32_t mflowid,
3969     bool use_zero_crc,
3970     int so_locked)
3971 {
3972 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3973 	/**
3974 	 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
3975 	 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
3976 	 * - fill in the HMAC digest of any AUTH chunk in the packet.
3977 	 * - calculate and fill in the SCTP checksum.
3978 	 * - prepend an IP address header.
3979 	 * - if boundall use INADDR_ANY.
3980 	 * - if boundspecific do source address selection.
3981 	 * - set fragmentation option for ipV4.
3982 	 * - On return from IP output, check/adjust mtu size of output
3983 	 *   interface and smallest_mtu size as well.
3984 	 */
3985 	/* Will need ifdefs around this */
3986 	struct mbuf *newm;
3987 	struct sctphdr *sctphdr;
3988 	int packet_length;
3989 	int ret;
3990 #if defined(INET) || defined(INET6)
3991 	uint32_t vrf_id;
3992 #endif
3993 #if defined(INET) || defined(INET6)
3994 	struct mbuf *o_pak;
3995 	sctp_route_t *ro = NULL;
3996 	struct udphdr *udp = NULL;
3997 #endif
3998 	uint8_t tos_value;
3999 
4000 	if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
4001 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4002 		sctp_m_freem(m);
4003 		return (EFAULT);
4004 	}
4005 #if defined(INET) || defined(INET6)
4006 	if (stcb) {
4007 		vrf_id = stcb->asoc.vrf_id;
4008 	} else {
4009 		vrf_id = inp->def_vrf_id;
4010 	}
4011 #endif
4012 	/* fill in the HMAC digest for any AUTH chunk in the packet */
4013 	if ((auth != NULL) && (stcb != NULL)) {
4014 		sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
4015 	}
4016 
4017 	if (net) {
4018 		tos_value = net->dscp;
4019 	} else if (stcb) {
4020 		tos_value = stcb->asoc.default_dscp;
4021 	} else {
4022 		tos_value = inp->sctp_ep.default_dscp;
4023 	}
4024 
4025 	switch (to->sa_family) {
4026 #ifdef INET
4027 	case AF_INET:
4028 		{
4029 			struct ip *ip = NULL;
4030 			sctp_route_t iproute;
4031 			int len;
4032 
4033 			len = SCTP_MIN_V4_OVERHEAD;
4034 			if (port) {
4035 				len += sizeof(struct udphdr);
4036 			}
4037 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4038 			if (newm == NULL) {
4039 				sctp_m_freem(m);
4040 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4041 				return (ENOMEM);
4042 			}
4043 			SCTP_ALIGN_TO_END(newm, len);
4044 			SCTP_BUF_LEN(newm) = len;
4045 			SCTP_BUF_NEXT(newm) = m;
4046 			m = newm;
4047 			if (net != NULL) {
4048 				m->m_pkthdr.flowid = net->flowid;
4049 				M_HASHTYPE_SET(m, net->flowtype);
4050 			} else {
4051 				m->m_pkthdr.flowid = mflowid;
4052 				M_HASHTYPE_SET(m, mflowtype);
4053 			}
4054 			packet_length = sctp_calculate_len(m);
4055 			ip = mtod(m, struct ip *);
4056 			ip->ip_v = IPVERSION;
4057 			ip->ip_hl = (sizeof(struct ip) >> 2);
4058 			if (tos_value == 0) {
4059 				/*
4060 				 * This means especially, that it is not set
4061 				 * at the SCTP layer. So use the value from
4062 				 * the IP layer.
4063 				 */
4064 				tos_value = inp->ip_inp.inp.inp_ip_tos;
4065 			}
4066 			tos_value &= 0xfc;
4067 			if (ecn_ok) {
4068 				tos_value |= sctp_get_ect(stcb);
4069 			}
4070 			if ((nofragment_flag) && (port == 0)) {
4071 				ip->ip_off = htons(IP_DF);
4072 			} else {
4073 				ip->ip_off = htons(0);
4074 			}
4075 			/* FreeBSD has a function for ip_id's */
4076 			ip_fillid(ip);
4077 
4078 			ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
4079 			ip->ip_len = htons(packet_length);
4080 			ip->ip_tos = tos_value;
4081 			if (port) {
4082 				ip->ip_p = IPPROTO_UDP;
4083 			} else {
4084 				ip->ip_p = IPPROTO_SCTP;
4085 			}
4086 			ip->ip_sum = 0;
4087 			if (net == NULL) {
4088 				ro = &iproute;
4089 				memset(&iproute, 0, sizeof(iproute));
4090 				memcpy(&ro->ro_dst, to, to->sa_len);
4091 			} else {
4092 				ro = (sctp_route_t *)&net->ro;
4093 			}
4094 			/* Now the address selection part */
4095 			ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
4096 
4097 			/* call the routine to select the src address */
4098 			if (net && out_of_asoc_ok == 0) {
4099 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4100 					sctp_free_ifa(net->ro._s_addr);
4101 					net->ro._s_addr = NULL;
4102 					net->src_addr_selected = 0;
4103 					RO_NHFREE(ro);
4104 				}
4105 				if (net->src_addr_selected == 0) {
4106 					/* Cache the source address */
4107 					net->ro._s_addr = sctp_source_address_selection(inp, stcb,
4108 					    ro, net, 0,
4109 					    vrf_id);
4110 					net->src_addr_selected = 1;
4111 				}
4112 				if (net->ro._s_addr == NULL) {
4113 					/* No route to host */
4114 					net->src_addr_selected = 0;
4115 					sctp_handle_no_route(stcb, net, so_locked);
4116 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4117 					sctp_m_freem(m);
4118 					return (EHOSTUNREACH);
4119 				}
4120 				ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4121 			} else {
4122 				if (over_addr == NULL) {
4123 					struct sctp_ifa *_lsrc;
4124 
4125 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4126 					    net,
4127 					    out_of_asoc_ok,
4128 					    vrf_id);
4129 					if (_lsrc == NULL) {
4130 						sctp_handle_no_route(stcb, net, so_locked);
4131 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4132 						sctp_m_freem(m);
4133 						return (EHOSTUNREACH);
4134 					}
4135 					ip->ip_src = _lsrc->address.sin.sin_addr;
4136 					sctp_free_ifa(_lsrc);
4137 				} else {
4138 					ip->ip_src = over_addr->sin.sin_addr;
4139 					SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
4140 				}
4141 			}
4142 			if (port) {
4143 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4144 					sctp_handle_no_route(stcb, net, so_locked);
4145 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4146 					sctp_m_freem(m);
4147 					return (EHOSTUNREACH);
4148 				}
4149 				udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4150 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4151 				udp->uh_dport = port;
4152 				udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip)));
4153 				if (V_udp_cksum) {
4154 					udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4155 				} else {
4156 					udp->uh_sum = 0;
4157 				}
4158 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4159 			} else {
4160 				sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4161 			}
4162 
4163 			sctphdr->src_port = src_port;
4164 			sctphdr->dest_port = dest_port;
4165 			sctphdr->v_tag = v_tag;
4166 			sctphdr->checksum = 0;
4167 
4168 			/*
4169 			 * If source address selection fails and we find no
4170 			 * route then the ip_output should fail as well with
4171 			 * a NO_ROUTE_TO_HOST type error. We probably should
4172 			 * catch that somewhere and abort the association
4173 			 * right away (assuming this is an INIT being sent).
4174 			 */
4175 			if (ro->ro_nh == NULL) {
4176 				/*
4177 				 * src addr selection failed to find a route
4178 				 * (or valid source addr), so we can't get
4179 				 * there from here (yet)!
4180 				 */
4181 				sctp_handle_no_route(stcb, net, so_locked);
4182 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4183 				sctp_m_freem(m);
4184 				return (EHOSTUNREACH);
4185 			}
4186 			if (ro != &iproute) {
4187 				memcpy(&iproute, ro, sizeof(*ro));
4188 			}
4189 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4190 			    (uint32_t)(ntohl(ip->ip_src.s_addr)));
4191 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4192 			    (uint32_t)(ntohl(ip->ip_dst.s_addr)));
4193 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4194 			    (void *)ro->ro_nh);
4195 
4196 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4197 				/* failed to prepend data, give up */
4198 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4199 				sctp_m_freem(m);
4200 				return (ENOMEM);
4201 			}
4202 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4203 			if (port) {
4204 				if (use_zero_crc) {
4205 					SCTP_STAT_INCR(sctps_sendzerocrc);
4206 				} else {
4207 					sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4208 					SCTP_STAT_INCR(sctps_sendswcrc);
4209 				}
4210 				if (V_udp_cksum) {
4211 					SCTP_ENABLE_UDP_CSUM(o_pak);
4212 				}
4213 			} else {
4214 				if (use_zero_crc) {
4215 					SCTP_STAT_INCR(sctps_sendzerocrc);
4216 				} else {
4217 					m->m_pkthdr.csum_flags = CSUM_SCTP;
4218 					m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4219 					SCTP_STAT_INCR(sctps_sendhwcrc);
4220 				}
4221 			}
4222 #ifdef SCTP_PACKET_LOGGING
4223 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4224 				sctp_packet_log(o_pak);
4225 #endif
4226 			/* send it out.  table id is taken from stcb */
4227 			SCTP_PROBE5(send, NULL, stcb, ip, stcb, sctphdr);
4228 			SCTP_IP_OUTPUT(ret, o_pak, ro, inp, vrf_id);
4229 			if (port) {
4230 				UDPSTAT_INC(udps_opackets);
4231 			}
4232 			SCTP_STAT_INCR(sctps_sendpackets);
4233 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4234 			if (ret)
4235 				SCTP_STAT_INCR(sctps_senderrors);
4236 
4237 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4238 			if (net == NULL) {
4239 				/* free tempy routes */
4240 				RO_NHFREE(ro);
4241 			} else {
4242 				if ((ro->ro_nh != NULL) && (net->ro._s_addr) &&
4243 				    ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) {
4244 					uint32_t mtu;
4245 
4246 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh);
4247 					if (mtu > 0) {
4248 						if (net->port) {
4249 							mtu -= sizeof(struct udphdr);
4250 						}
4251 						if (mtu < net->mtu) {
4252 							net->mtu = mtu;
4253 							if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) {
4254 								sctp_pathmtu_adjustment(stcb, mtu, true);
4255 							}
4256 						}
4257 					}
4258 				} else if (ro->ro_nh == NULL) {
4259 					/* route was freed */
4260 					if (net->ro._s_addr &&
4261 					    net->src_addr_selected) {
4262 						sctp_free_ifa(net->ro._s_addr);
4263 						net->ro._s_addr = NULL;
4264 					}
4265 					net->src_addr_selected = 0;
4266 				}
4267 			}
4268 			return (ret);
4269 		}
4270 #endif
4271 #ifdef INET6
4272 	case AF_INET6:
4273 		{
4274 			uint32_t flowlabel, flowinfo;
4275 			struct ip6_hdr *ip6h;
4276 			struct route_in6 ip6route;
4277 			struct ifnet *ifp;
4278 			struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4279 			int prev_scope = 0;
4280 			struct sockaddr_in6 lsa6_storage;
4281 			int error;
4282 			u_short prev_port = 0;
4283 			int len;
4284 
4285 			if (net) {
4286 				flowlabel = net->flowlabel;
4287 			} else if (stcb) {
4288 				flowlabel = stcb->asoc.default_flowlabel;
4289 			} else {
4290 				flowlabel = inp->sctp_ep.default_flowlabel;
4291 			}
4292 			if (flowlabel == 0) {
4293 				/*
4294 				 * This means especially, that it is not set
4295 				 * at the SCTP layer. So use the value from
4296 				 * the IP layer.
4297 				 */
4298 				flowlabel = ntohl(((struct inpcb *)inp)->inp_flow);
4299 			}
4300 			flowlabel &= 0x000fffff;
4301 			len = SCTP_MIN_OVERHEAD;
4302 			if (port) {
4303 				len += sizeof(struct udphdr);
4304 			}
4305 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4306 			if (newm == NULL) {
4307 				sctp_m_freem(m);
4308 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4309 				return (ENOMEM);
4310 			}
4311 			SCTP_ALIGN_TO_END(newm, len);
4312 			SCTP_BUF_LEN(newm) = len;
4313 			SCTP_BUF_NEXT(newm) = m;
4314 			m = newm;
4315 			if (net != NULL) {
4316 				m->m_pkthdr.flowid = net->flowid;
4317 				M_HASHTYPE_SET(m, net->flowtype);
4318 			} else {
4319 				m->m_pkthdr.flowid = mflowid;
4320 				M_HASHTYPE_SET(m, mflowtype);
4321 			}
4322 			packet_length = sctp_calculate_len(m);
4323 
4324 			ip6h = mtod(m, struct ip6_hdr *);
4325 			/* protect *sin6 from overwrite */
4326 			sin6 = (struct sockaddr_in6 *)to;
4327 			tmp = *sin6;
4328 			sin6 = &tmp;
4329 
4330 			/* KAME hack: embed scopeid */
4331 			if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4332 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4333 				sctp_m_freem(m);
4334 				return (EINVAL);
4335 			}
4336 			if (net == NULL) {
4337 				memset(&ip6route, 0, sizeof(ip6route));
4338 				ro = (sctp_route_t *)&ip6route;
4339 				memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4340 			} else {
4341 				ro = (sctp_route_t *)&net->ro;
4342 			}
4343 			/*
4344 			 * We assume here that inp_flow is in host byte
4345 			 * order within the TCB!
4346 			 */
4347 			if (tos_value == 0) {
4348 				/*
4349 				 * This means especially, that it is not set
4350 				 * at the SCTP layer. So use the value from
4351 				 * the IP layer.
4352 				 */
4353 				tos_value = (ntohl(((struct inpcb *)inp)->inp_flow) >> 20) & 0xff;
4354 			}
4355 			tos_value &= 0xfc;
4356 			if (ecn_ok) {
4357 				tos_value |= sctp_get_ect(stcb);
4358 			}
4359 			flowinfo = 0x06;
4360 			flowinfo <<= 8;
4361 			flowinfo |= tos_value;
4362 			flowinfo <<= 20;
4363 			flowinfo |= flowlabel;
4364 			ip6h->ip6_flow = htonl(flowinfo);
4365 			if (port) {
4366 				ip6h->ip6_nxt = IPPROTO_UDP;
4367 			} else {
4368 				ip6h->ip6_nxt = IPPROTO_SCTP;
4369 			}
4370 			ip6h->ip6_plen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr)));
4371 			ip6h->ip6_dst = sin6->sin6_addr;
4372 
4373 			/*
4374 			 * Add SRC address selection here: we can only reuse
4375 			 * to a limited degree the kame src-addr-sel, since
4376 			 * we can try their selection but it may not be
4377 			 * bound.
4378 			 */
4379 			memset(&lsa6_tmp, 0, sizeof(lsa6_tmp));
4380 			lsa6_tmp.sin6_family = AF_INET6;
4381 			lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4382 			lsa6 = &lsa6_tmp;
4383 			if (net && out_of_asoc_ok == 0) {
4384 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4385 					sctp_free_ifa(net->ro._s_addr);
4386 					net->ro._s_addr = NULL;
4387 					net->src_addr_selected = 0;
4388 					RO_NHFREE(ro);
4389 				}
4390 				if (net->src_addr_selected == 0) {
4391 					sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4392 					/* KAME hack: embed scopeid */
4393 					if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4394 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4395 						sctp_m_freem(m);
4396 						return (EINVAL);
4397 					}
4398 					/* Cache the source address */
4399 					net->ro._s_addr = sctp_source_address_selection(inp,
4400 					    stcb,
4401 					    ro,
4402 					    net,
4403 					    0,
4404 					    vrf_id);
4405 					(void)sa6_recoverscope(sin6);
4406 					net->src_addr_selected = 1;
4407 				}
4408 				if (net->ro._s_addr == NULL) {
4409 					SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4410 					net->src_addr_selected = 0;
4411 					sctp_handle_no_route(stcb, net, so_locked);
4412 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4413 					sctp_m_freem(m);
4414 					return (EHOSTUNREACH);
4415 				}
4416 				lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4417 			} else {
4418 				sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4419 				/* KAME hack: embed scopeid */
4420 				if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4421 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4422 					sctp_m_freem(m);
4423 					return (EINVAL);
4424 				}
4425 				if (over_addr == NULL) {
4426 					struct sctp_ifa *_lsrc;
4427 
4428 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4429 					    net,
4430 					    out_of_asoc_ok,
4431 					    vrf_id);
4432 					if (_lsrc == NULL) {
4433 						sctp_handle_no_route(stcb, net, so_locked);
4434 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4435 						sctp_m_freem(m);
4436 						return (EHOSTUNREACH);
4437 					}
4438 					lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4439 					sctp_free_ifa(_lsrc);
4440 				} else {
4441 					lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4442 					SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
4443 				}
4444 				(void)sa6_recoverscope(sin6);
4445 			}
4446 			lsa6->sin6_port = inp->sctp_lport;
4447 
4448 			if (ro->ro_nh == NULL) {
4449 				/*
4450 				 * src addr selection failed to find a route
4451 				 * (or valid source addr), so we can't get
4452 				 * there from here!
4453 				 */
4454 				sctp_handle_no_route(stcb, net, so_locked);
4455 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4456 				sctp_m_freem(m);
4457 				return (EHOSTUNREACH);
4458 			}
4459 			/*
4460 			 * XXX: sa6 may not have a valid sin6_scope_id in
4461 			 * the non-SCOPEDROUTING case.
4462 			 */
4463 			memset(&lsa6_storage, 0, sizeof(lsa6_storage));
4464 			lsa6_storage.sin6_family = AF_INET6;
4465 			lsa6_storage.sin6_len = sizeof(lsa6_storage);
4466 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4467 			if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4468 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4469 				sctp_m_freem(m);
4470 				return (error);
4471 			}
4472 			/* XXX */
4473 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4474 			lsa6_storage.sin6_port = inp->sctp_lport;
4475 			lsa6 = &lsa6_storage;
4476 			ip6h->ip6_src = lsa6->sin6_addr;
4477 
4478 			if (port) {
4479 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4480 					sctp_handle_no_route(stcb, net, so_locked);
4481 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4482 					sctp_m_freem(m);
4483 					return (EHOSTUNREACH);
4484 				}
4485 				udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4486 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4487 				udp->uh_dport = port;
4488 				udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr)));
4489 				udp->uh_sum = 0;
4490 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4491 			} else {
4492 				sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4493 			}
4494 
4495 			sctphdr->src_port = src_port;
4496 			sctphdr->dest_port = dest_port;
4497 			sctphdr->v_tag = v_tag;
4498 			sctphdr->checksum = 0;
4499 
4500 			/*
4501 			 * We set the hop limit now since there is a good
4502 			 * chance that our ro pointer is now filled
4503 			 */
4504 			ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4505 			ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4506 
4507 #ifdef SCTP_DEBUG
4508 			/* Copy to be sure something bad is not happening */
4509 			sin6->sin6_addr = ip6h->ip6_dst;
4510 			lsa6->sin6_addr = ip6h->ip6_src;
4511 #endif
4512 
4513 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4514 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4515 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4516 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4517 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4518 			if (net) {
4519 				sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4520 				/*
4521 				 * preserve the port and scope for link
4522 				 * local send
4523 				 */
4524 				prev_scope = sin6->sin6_scope_id;
4525 				prev_port = sin6->sin6_port;
4526 			}
4527 
4528 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4529 				/* failed to prepend data, give up */
4530 				sctp_m_freem(m);
4531 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4532 				return (ENOMEM);
4533 			}
4534 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4535 			if (port) {
4536 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4537 				SCTP_STAT_INCR(sctps_sendswcrc);
4538 				if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4539 					udp->uh_sum = 0xffff;
4540 				}
4541 			} else {
4542 				m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4543 				m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4544 				SCTP_STAT_INCR(sctps_sendhwcrc);
4545 			}
4546 			/* send it out. table id is taken from stcb */
4547 #ifdef SCTP_PACKET_LOGGING
4548 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4549 				sctp_packet_log(o_pak);
4550 #endif
4551 			SCTP_PROBE5(send, NULL, stcb, ip6h, stcb, sctphdr);
4552 			SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, inp, vrf_id);
4553 			if (net) {
4554 				/* for link local this must be done */
4555 				sin6->sin6_scope_id = prev_scope;
4556 				sin6->sin6_port = prev_port;
4557 			}
4558 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4559 			if (port) {
4560 				UDPSTAT_INC(udps_opackets);
4561 			}
4562 			SCTP_STAT_INCR(sctps_sendpackets);
4563 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4564 			if (ret) {
4565 				SCTP_STAT_INCR(sctps_senderrors);
4566 			}
4567 			if (net == NULL) {
4568 				/* Now if we had a temp route free it */
4569 				RO_NHFREE(ro);
4570 			} else {
4571 				/*
4572 				 * PMTU check versus smallest asoc MTU goes
4573 				 * here
4574 				 */
4575 				if (ro->ro_nh == NULL) {
4576 					/* Route was freed */
4577 					if (net->ro._s_addr &&
4578 					    net->src_addr_selected) {
4579 						sctp_free_ifa(net->ro._s_addr);
4580 						net->ro._s_addr = NULL;
4581 					}
4582 					net->src_addr_selected = 0;
4583 				}
4584 				if ((ro->ro_nh != NULL) && (net->ro._s_addr) &&
4585 				    ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) {
4586 					uint32_t mtu;
4587 
4588 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh);
4589 					if (mtu > 0) {
4590 						if (net->port) {
4591 							mtu -= sizeof(struct udphdr);
4592 						}
4593 						if (mtu < net->mtu) {
4594 							net->mtu = mtu;
4595 							if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) {
4596 								sctp_pathmtu_adjustment(stcb, mtu, false);
4597 							}
4598 						}
4599 					}
4600 				} else if (ifp != NULL) {
4601 					if ((ND_IFINFO(ifp)->linkmtu > 0) &&
4602 					    (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4603 						sctp_pathmtu_adjustment(stcb, ND_IFINFO(ifp)->linkmtu, false);
4604 					}
4605 				}
4606 			}
4607 			return (ret);
4608 		}
4609 #endif
4610 	default:
4611 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4612 		    ((struct sockaddr *)to)->sa_family);
4613 		sctp_m_freem(m);
4614 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4615 		return (EFAULT);
4616 	}
4617 }
4618 
4619 void
4620 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked)
4621 {
4622 	struct mbuf *m, *m_last;
4623 	struct sctp_nets *net;
4624 	struct sctp_init_chunk *init;
4625 	struct sctp_supported_addr_param *sup_addr;
4626 	struct sctp_adaptation_layer_indication *ali;
4627 	struct sctp_zero_checksum_acceptable *zero_chksum;
4628 	struct sctp_supported_chunk_types_param *pr_supported;
4629 	struct sctp_paramhdr *ph;
4630 	int cnt_inits_to = 0;
4631 	int error;
4632 	uint16_t num_ext, chunk_len, padding_len, parameter_len;
4633 
4634 	/* INIT's always go to the primary (and usually ONLY address) */
4635 	net = stcb->asoc.primary_destination;
4636 	if (net == NULL) {
4637 		net = TAILQ_FIRST(&stcb->asoc.nets);
4638 		if (net == NULL) {
4639 			/* TSNH */
4640 			return;
4641 		}
4642 		/* we confirm any address we send an INIT to */
4643 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4644 		(void)sctp_set_primary_addr(stcb, NULL, net);
4645 	} else {
4646 		/* we confirm any address we send an INIT to */
4647 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4648 	}
4649 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4650 #ifdef INET6
4651 	if (net->ro._l_addr.sa.sa_family == AF_INET6) {
4652 		/*
4653 		 * special hook, if we are sending to link local it will not
4654 		 * show up in our private address count.
4655 		 */
4656 		if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr))
4657 			cnt_inits_to = 1;
4658 	}
4659 #endif
4660 	if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4661 		/* This case should not happen */
4662 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4663 		return;
4664 	}
4665 	/* start the INIT timer */
4666 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4667 
4668 	m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA);
4669 	if (m == NULL) {
4670 		/* No memory, INIT timer will re-attempt. */
4671 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4672 		return;
4673 	}
4674 	chunk_len = (uint16_t)sizeof(struct sctp_init_chunk);
4675 	padding_len = 0;
4676 	/* Now lets put the chunk header in place */
4677 	init = mtod(m, struct sctp_init_chunk *);
4678 	/* now the chunk header */
4679 	init->ch.chunk_type = SCTP_INITIATION;
4680 	init->ch.chunk_flags = 0;
4681 	/* fill in later from mbuf we build */
4682 	init->ch.chunk_length = 0;
4683 	/* place in my tag */
4684 	init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4685 	/* set up some of the credits. */
4686 	init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4687 	    SCTP_MINIMAL_RWND));
4688 	init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4689 	init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4690 	init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4691 
4692 	/* Adaptation layer indication parameter */
4693 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
4694 		parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication);
4695 		ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
4696 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4697 		ali->ph.param_length = htons(parameter_len);
4698 		ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator);
4699 		chunk_len += parameter_len;
4700 	}
4701 
4702 	/* ECN parameter */
4703 	if (stcb->asoc.ecn_supported == 1) {
4704 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
4705 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4706 		ph->param_type = htons(SCTP_ECN_CAPABLE);
4707 		ph->param_length = htons(parameter_len);
4708 		chunk_len += parameter_len;
4709 	}
4710 
4711 	/* PR-SCTP supported parameter */
4712 	if (stcb->asoc.prsctp_supported == 1) {
4713 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
4714 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4715 		ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
4716 		ph->param_length = htons(parameter_len);
4717 		chunk_len += parameter_len;
4718 	}
4719 
4720 	/* Zero checksum acceptable parameter */
4721 	if (stcb->asoc.rcv_edmid != SCTP_EDMID_NONE) {
4722 		parameter_len = (uint16_t)sizeof(struct sctp_zero_checksum_acceptable);
4723 		zero_chksum = (struct sctp_zero_checksum_acceptable *)(mtod(m, caddr_t)+chunk_len);
4724 		zero_chksum->ph.param_type = htons(SCTP_ZERO_CHECKSUM_ACCEPTABLE);
4725 		zero_chksum->ph.param_length = htons(parameter_len);
4726 		zero_chksum->edmid = htonl(stcb->asoc.rcv_edmid);
4727 		chunk_len += parameter_len;
4728 	}
4729 
4730 	/* Add NAT friendly parameter. */
4731 	if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4732 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
4733 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4734 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4735 		ph->param_length = htons(parameter_len);
4736 		chunk_len += parameter_len;
4737 	}
4738 
4739 	/* And now tell the peer which extensions we support */
4740 	num_ext = 0;
4741 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
4742 	if (stcb->asoc.prsctp_supported == 1) {
4743 		pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4744 		if (stcb->asoc.idata_supported) {
4745 			pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN;
4746 		}
4747 	}
4748 	if (stcb->asoc.auth_supported == 1) {
4749 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4750 	}
4751 	if (stcb->asoc.asconf_supported == 1) {
4752 		pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4753 		pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4754 	}
4755 	if (stcb->asoc.reconfig_supported == 1) {
4756 		pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4757 	}
4758 	if (stcb->asoc.idata_supported) {
4759 		pr_supported->chunk_types[num_ext++] = SCTP_IDATA;
4760 	}
4761 	if (stcb->asoc.nrsack_supported == 1) {
4762 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4763 	}
4764 	if (stcb->asoc.pktdrop_supported == 1) {
4765 		pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4766 	}
4767 	if (num_ext > 0) {
4768 		parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext;
4769 		pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4770 		pr_supported->ph.param_length = htons(parameter_len);
4771 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4772 		chunk_len += parameter_len;
4773 	}
4774 	/* add authentication parameters */
4775 	if (stcb->asoc.auth_supported) {
4776 		/* attach RANDOM parameter, if available */
4777 		if (stcb->asoc.authinfo.random != NULL) {
4778 			struct sctp_auth_random *randp;
4779 
4780 			if (padding_len > 0) {
4781 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4782 				chunk_len += padding_len;
4783 				padding_len = 0;
4784 			}
4785 			randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
4786 			parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
4787 			/* random key already contains the header */
4788 			memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
4789 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4790 			chunk_len += parameter_len;
4791 		}
4792 		/* add HMAC_ALGO parameter */
4793 		if (stcb->asoc.local_hmacs != NULL) {
4794 			struct sctp_auth_hmac_algo *hmacs;
4795 
4796 			if (padding_len > 0) {
4797 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4798 				chunk_len += padding_len;
4799 				padding_len = 0;
4800 			}
4801 			hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
4802 			parameter_len = (uint16_t)(sizeof(struct sctp_auth_hmac_algo) +
4803 			    stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t));
4804 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4805 			hmacs->ph.param_length = htons(parameter_len);
4806 			sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *)hmacs->hmac_ids);
4807 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4808 			chunk_len += parameter_len;
4809 		}
4810 		/* add CHUNKS parameter */
4811 		if (stcb->asoc.local_auth_chunks != NULL) {
4812 			struct sctp_auth_chunk_list *chunks;
4813 
4814 			if (padding_len > 0) {
4815 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4816 				chunk_len += padding_len;
4817 				padding_len = 0;
4818 			}
4819 			chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
4820 			parameter_len = (uint16_t)(sizeof(struct sctp_auth_chunk_list) +
4821 			    sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks));
4822 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4823 			chunks->ph.param_length = htons(parameter_len);
4824 			sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types);
4825 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4826 			chunk_len += parameter_len;
4827 		}
4828 	}
4829 
4830 	/* now any cookie time extensions */
4831 	if (stcb->asoc.cookie_preserve_req > 0) {
4832 		struct sctp_cookie_perserve_param *cookie_preserve;
4833 
4834 		if (padding_len > 0) {
4835 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4836 			chunk_len += padding_len;
4837 			padding_len = 0;
4838 		}
4839 		parameter_len = (uint16_t)sizeof(struct sctp_cookie_perserve_param);
4840 		cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len);
4841 		cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4842 		cookie_preserve->ph.param_length = htons(parameter_len);
4843 		cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4844 		stcb->asoc.cookie_preserve_req = 0;
4845 		chunk_len += parameter_len;
4846 	}
4847 
4848 	if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) {
4849 		uint8_t i;
4850 
4851 		if (padding_len > 0) {
4852 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4853 			chunk_len += padding_len;
4854 			padding_len = 0;
4855 		}
4856 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
4857 		if (stcb->asoc.scope.ipv4_addr_legal) {
4858 			parameter_len += (uint16_t)sizeof(uint16_t);
4859 		}
4860 		if (stcb->asoc.scope.ipv6_addr_legal) {
4861 			parameter_len += (uint16_t)sizeof(uint16_t);
4862 		}
4863 		sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len);
4864 		sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4865 		sup_addr->ph.param_length = htons(parameter_len);
4866 		i = 0;
4867 		if (stcb->asoc.scope.ipv4_addr_legal) {
4868 			sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS);
4869 		}
4870 		if (stcb->asoc.scope.ipv6_addr_legal) {
4871 			sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS);
4872 		}
4873 		padding_len = 4 - 2 * i;
4874 		chunk_len += parameter_len;
4875 	}
4876 
4877 	SCTP_BUF_LEN(m) = chunk_len;
4878 	/* now the addresses */
4879 	/*
4880 	 * To optimize this we could put the scoping stuff into a structure
4881 	 * and remove the individual uint8's from the assoc structure. Then
4882 	 * we could just sifa in the address within the stcb. But for now
4883 	 * this is a quick hack to get the address stuff teased apart.
4884 	 */
4885 	m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope,
4886 	    m, cnt_inits_to,
4887 	    &padding_len, &chunk_len);
4888 
4889 	init->ch.chunk_length = htons(chunk_len);
4890 	if (padding_len > 0) {
4891 		if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
4892 			sctp_m_freem(m);
4893 			return;
4894 		}
4895 	}
4896 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4897 	if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
4898 	    (struct sockaddr *)&net->ro._l_addr,
4899 	    m, 0, NULL, 0, 0, 0, 0,
4900 	    inp->sctp_lport, stcb->rport, htonl(0),
4901 	    net->port, NULL,
4902 	    0, 0,
4903 	    false, so_locked))) {
4904 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error);
4905 		if (error == ENOBUFS) {
4906 			stcb->asoc.ifp_had_enobuf = 1;
4907 			SCTP_STAT_INCR(sctps_lowlevelerr);
4908 		}
4909 	} else {
4910 		stcb->asoc.ifp_had_enobuf = 0;
4911 	}
4912 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4913 	(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4914 }
4915 
4916 struct mbuf *
4917 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4918     int param_offset, int *abort_processing,
4919     struct sctp_chunkhdr *cp,
4920     int *nat_friendly,
4921     int *cookie_found,
4922     uint32_t *edmid)
4923 {
4924 	/*
4925 	 * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4926 	 * being equal to the beginning of the params i.e. (iphlen +
4927 	 * sizeof(struct sctp_init_msg) parse through the parameters to the
4928 	 * end of the mbuf verifying that all parameters are known.
4929 	 *
4930 	 * For unknown parameters build and return a mbuf with
4931 	 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4932 	 * processing this chunk stop, and set *abort_processing to 1.
4933 	 *
4934 	 * By having param_offset be pre-set to where parameters begin it is
4935 	 * hoped that this routine may be reused in the future by new
4936 	 * features.
4937 	 */
4938 	struct sctp_zero_checksum_acceptable zero_chksum, *zero_chksum_p;
4939 	struct sctp_paramhdr *phdr, params;
4940 	struct mbuf *mat, *m_tmp, *op_err, *op_err_last;
4941 	int at, limit, pad_needed;
4942 	uint16_t ptype, plen, padded_size;
4943 
4944 	*abort_processing = 0;
4945 	if (cookie_found != NULL) {
4946 		*cookie_found = 0;
4947 	}
4948 	if (edmid != NULL) {
4949 		*edmid = SCTP_EDMID_NONE;
4950 	}
4951 	mat = in_initpkt;
4952 	limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4953 	at = param_offset;
4954 	op_err = NULL;
4955 	op_err_last = NULL;
4956 	pad_needed = 0;
4957 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4958 	phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4959 	while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4960 		ptype = ntohs(phdr->param_type);
4961 		plen = ntohs(phdr->param_length);
4962 		if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
4963 			/* wacked parameter */
4964 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
4965 			goto invalid_size;
4966 		}
4967 		limit -= SCTP_SIZE32(plen);
4968 		/*-
4969 		 * All parameters for all chunks that we know/understand are
4970 		 * listed here. We process them other places and make
4971 		 * appropriate stop actions per the upper bits. However this
4972 		 * is the generic routine processor's can call to get back
4973 		 * an operr.. to either incorporate (init-ack) or send.
4974 		 */
4975 		padded_size = SCTP_SIZE32(plen);
4976 		switch (ptype) {
4977 			/* Param's with variable size */
4978 		case SCTP_HEARTBEAT_INFO:
4979 		case SCTP_UNRECOG_PARAM:
4980 		case SCTP_ERROR_CAUSE_IND:
4981 			/* ok skip fwd */
4982 			at += padded_size;
4983 			break;
4984 		case SCTP_STATE_COOKIE:
4985 			if (cookie_found != NULL) {
4986 				*cookie_found = 1;
4987 			}
4988 			at += padded_size;
4989 			break;
4990 			/* Param's with variable size within a range */
4991 		case SCTP_CHUNK_LIST:
4992 		case SCTP_SUPPORTED_CHUNK_EXT:
4993 			if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
4994 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
4995 				goto invalid_size;
4996 			}
4997 			at += padded_size;
4998 			break;
4999 		case SCTP_SUPPORTED_ADDRTYPE:
5000 			if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
5001 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
5002 				goto invalid_size;
5003 			}
5004 			at += padded_size;
5005 			break;
5006 		case SCTP_ZERO_CHECKSUM_ACCEPTABLE:
5007 			if (padded_size != sizeof(struct sctp_zero_checksum_acceptable)) {
5008 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error checksum acceptable %d\n", plen);
5009 				goto invalid_size;
5010 			}
5011 			if (edmid != NULL) {
5012 				phdr = sctp_get_next_param(mat, at,
5013 				    (struct sctp_paramhdr *)&zero_chksum,
5014 				    sizeof(struct sctp_zero_checksum_acceptable));
5015 				if (phdr != NULL) {
5016 					zero_chksum_p = (struct sctp_zero_checksum_acceptable *)phdr;
5017 					*edmid = ntohl(zero_chksum_p->edmid);
5018 				}
5019 			}
5020 			at += padded_size;
5021 			break;
5022 		case SCTP_RANDOM:
5023 			if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
5024 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
5025 				goto invalid_size;
5026 			}
5027 			at += padded_size;
5028 			break;
5029 		case SCTP_SET_PRIM_ADDR:
5030 		case SCTP_DEL_IP_ADDRESS:
5031 		case SCTP_ADD_IP_ADDRESS:
5032 			if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
5033 			    (padded_size != sizeof(struct sctp_asconf_addr_param))) {
5034 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
5035 				goto invalid_size;
5036 			}
5037 			at += padded_size;
5038 			break;
5039 			/* Param's with a fixed size */
5040 		case SCTP_IPV4_ADDRESS:
5041 			if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
5042 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
5043 				goto invalid_size;
5044 			}
5045 			at += padded_size;
5046 			break;
5047 		case SCTP_IPV6_ADDRESS:
5048 			if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
5049 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
5050 				goto invalid_size;
5051 			}
5052 			at += padded_size;
5053 			break;
5054 		case SCTP_COOKIE_PRESERVE:
5055 			if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
5056 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
5057 				goto invalid_size;
5058 			}
5059 			at += padded_size;
5060 			break;
5061 		case SCTP_HAS_NAT_SUPPORT:
5062 			if (padded_size != sizeof(struct sctp_paramhdr)) {
5063 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error nat support %d\n", plen);
5064 				goto invalid_size;
5065 			}
5066 			*nat_friendly = 1;
5067 			at += padded_size;
5068 			break;
5069 		case SCTP_PRSCTP_SUPPORTED:
5070 			if (padded_size != sizeof(struct sctp_paramhdr)) {
5071 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp %d\n", plen);
5072 				goto invalid_size;
5073 			}
5074 			at += padded_size;
5075 			break;
5076 		case SCTP_ECN_CAPABLE:
5077 			if (padded_size != sizeof(struct sctp_paramhdr)) {
5078 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
5079 				goto invalid_size;
5080 			}
5081 			at += padded_size;
5082 			break;
5083 		case SCTP_ULP_ADAPTATION:
5084 			if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
5085 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
5086 				goto invalid_size;
5087 			}
5088 			at += padded_size;
5089 			break;
5090 		case SCTP_SUCCESS_REPORT:
5091 			if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
5092 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
5093 				goto invalid_size;
5094 			}
5095 			at += padded_size;
5096 			break;
5097 		case SCTP_HOSTNAME_ADDRESS:
5098 			{
5099 				/* Hostname parameters are deprecated. */
5100 				struct sctp_gen_error_cause *cause;
5101 				int l_len;
5102 
5103 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
5104 				*abort_processing = 1;
5105 				sctp_m_freem(op_err);
5106 				op_err = NULL;
5107 				op_err_last = NULL;
5108 #ifdef INET6
5109 				l_len = SCTP_MIN_OVERHEAD;
5110 #else
5111 				l_len = SCTP_MIN_V4_OVERHEAD;
5112 #endif
5113 				l_len += sizeof(struct sctp_chunkhdr);
5114 				l_len += sizeof(struct sctp_gen_error_cause);
5115 				op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5116 				if (op_err != NULL) {
5117 					/*
5118 					 * Pre-reserve space for IP, SCTP,
5119 					 * and chunk header.
5120 					 */
5121 #ifdef INET6
5122 					SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5123 #else
5124 					SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5125 #endif
5126 					SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5127 					SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5128 					SCTP_BUF_LEN(op_err) = sizeof(struct sctp_gen_error_cause);
5129 					cause = mtod(op_err, struct sctp_gen_error_cause *);
5130 					cause->code = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5131 					cause->length = htons((uint16_t)(sizeof(struct sctp_gen_error_cause) + plen));
5132 					SCTP_BUF_NEXT(op_err) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT);
5133 					if (SCTP_BUF_NEXT(op_err) == NULL) {
5134 						sctp_m_freem(op_err);
5135 						op_err = NULL;
5136 						op_err_last = NULL;
5137 					}
5138 				}
5139 				return (op_err);
5140 			}
5141 		default:
5142 			/*
5143 			 * we do not recognize the parameter figure out what
5144 			 * we do.
5145 			 */
5146 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5147 			if ((ptype & 0x4000) == 0x4000) {
5148 				/* Report bit is set?? */
5149 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5150 				if (op_err == NULL) {
5151 					int l_len;
5152 
5153 					/* Ok need to try to get an mbuf */
5154 #ifdef INET6
5155 					l_len = SCTP_MIN_OVERHEAD;
5156 #else
5157 					l_len = SCTP_MIN_V4_OVERHEAD;
5158 #endif
5159 					l_len += sizeof(struct sctp_chunkhdr);
5160 					l_len += sizeof(struct sctp_paramhdr);
5161 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5162 					if (op_err) {
5163 						SCTP_BUF_LEN(op_err) = 0;
5164 #ifdef INET6
5165 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5166 #else
5167 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5168 #endif
5169 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5170 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5171 						op_err_last = op_err;
5172 					}
5173 				}
5174 				if (op_err != NULL) {
5175 					/* If we have space */
5176 					struct sctp_paramhdr *param;
5177 
5178 					if (pad_needed > 0) {
5179 						op_err_last = sctp_add_pad_tombuf(op_err_last, pad_needed);
5180 					}
5181 					if (op_err_last == NULL) {
5182 						sctp_m_freem(op_err);
5183 						op_err = NULL;
5184 						op_err_last = NULL;
5185 						goto more_processing;
5186 					}
5187 					if (M_TRAILINGSPACE(op_err_last) < (int)sizeof(struct sctp_paramhdr)) {
5188 						m_tmp = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA);
5189 						if (m_tmp == NULL) {
5190 							sctp_m_freem(op_err);
5191 							op_err = NULL;
5192 							op_err_last = NULL;
5193 							goto more_processing;
5194 						}
5195 						SCTP_BUF_LEN(m_tmp) = 0;
5196 						SCTP_BUF_NEXT(m_tmp) = NULL;
5197 						SCTP_BUF_NEXT(op_err_last) = m_tmp;
5198 						op_err_last = m_tmp;
5199 					}
5200 					param = (struct sctp_paramhdr *)(mtod(op_err_last, caddr_t)+SCTP_BUF_LEN(op_err_last));
5201 					param->param_type = htons(SCTP_UNRECOG_PARAM);
5202 					param->param_length = htons((uint16_t)sizeof(struct sctp_paramhdr) + plen);
5203 					SCTP_BUF_LEN(op_err_last) += sizeof(struct sctp_paramhdr);
5204 					SCTP_BUF_NEXT(op_err_last) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT);
5205 					if (SCTP_BUF_NEXT(op_err_last) == NULL) {
5206 						sctp_m_freem(op_err);
5207 						op_err = NULL;
5208 						op_err_last = NULL;
5209 						goto more_processing;
5210 					} else {
5211 						while (SCTP_BUF_NEXT(op_err_last) != NULL) {
5212 							op_err_last = SCTP_BUF_NEXT(op_err_last);
5213 						}
5214 					}
5215 					if (plen % 4 != 0) {
5216 						pad_needed = 4 - (plen % 4);
5217 					} else {
5218 						pad_needed = 0;
5219 					}
5220 				}
5221 			}
5222 	more_processing:
5223 			if ((ptype & 0x8000) == 0x0000) {
5224 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5225 				return (op_err);
5226 			} else {
5227 				/* skip this chunk and continue processing */
5228 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5229 				at += SCTP_SIZE32(plen);
5230 			}
5231 			break;
5232 		}
5233 		phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5234 	}
5235 	return (op_err);
5236 invalid_size:
5237 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5238 	*abort_processing = 1;
5239 	sctp_m_freem(op_err);
5240 	op_err = NULL;
5241 	op_err_last = NULL;
5242 	if (phdr != NULL) {
5243 		struct sctp_paramhdr *param;
5244 		int l_len;
5245 #ifdef INET6
5246 		l_len = SCTP_MIN_OVERHEAD;
5247 #else
5248 		l_len = SCTP_MIN_V4_OVERHEAD;
5249 #endif
5250 		l_len += sizeof(struct sctp_chunkhdr);
5251 		l_len += (2 * sizeof(struct sctp_paramhdr));
5252 		op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5253 		if (op_err) {
5254 			SCTP_BUF_LEN(op_err) = 0;
5255 #ifdef INET6
5256 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5257 #else
5258 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5259 #endif
5260 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5261 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5262 			SCTP_BUF_LEN(op_err) = 2 * sizeof(struct sctp_paramhdr);
5263 			param = mtod(op_err, struct sctp_paramhdr *);
5264 			param->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5265 			param->param_length = htons(2 * sizeof(struct sctp_paramhdr));
5266 			param++;
5267 			param->param_type = htons(ptype);
5268 			param->param_length = htons(plen);
5269 		}
5270 	}
5271 	return (op_err);
5272 }
5273 
5274 /*
5275  * Given a INIT chunk, look through the parameters to verify that there
5276  * are no new addresses.
5277  * Return true, if there is a new address or there is a problem parsing
5278    the parameters. Provide an optional error cause used when sending an ABORT.
5279  * Return false, if there are no new addresses and there is no problem in
5280    parameter processing.
5281  */
5282 static bool
5283 sctp_are_there_new_addresses(struct sctp_association *asoc,
5284     struct mbuf *in_initpkt, int offset, int limit, struct sockaddr *src,
5285     struct mbuf **op_err)
5286 {
5287 	struct sockaddr *sa_touse;
5288 	struct sockaddr *sa;
5289 	struct sctp_paramhdr *phdr, params;
5290 	struct sctp_nets *net;
5291 #ifdef INET
5292 	struct sockaddr_in sin4, *sa4;
5293 #endif
5294 #ifdef INET6
5295 	struct sockaddr_in6 sin6, *sa6;
5296 #endif
5297 	uint16_t ptype, plen;
5298 	bool fnd, check_src;
5299 
5300 	*op_err = NULL;
5301 #ifdef INET
5302 	memset(&sin4, 0, sizeof(sin4));
5303 	sin4.sin_family = AF_INET;
5304 	sin4.sin_len = sizeof(sin4);
5305 #endif
5306 #ifdef INET6
5307 	memset(&sin6, 0, sizeof(sin6));
5308 	sin6.sin6_family = AF_INET6;
5309 	sin6.sin6_len = sizeof(sin6);
5310 #endif
5311 	/* First what about the src address of the pkt ? */
5312 	check_src = false;
5313 	switch (src->sa_family) {
5314 #ifdef INET
5315 	case AF_INET:
5316 		if (asoc->scope.ipv4_addr_legal) {
5317 			check_src = true;
5318 		}
5319 		break;
5320 #endif
5321 #ifdef INET6
5322 	case AF_INET6:
5323 		if (asoc->scope.ipv6_addr_legal) {
5324 			check_src = true;
5325 		}
5326 		break;
5327 #endif
5328 	default:
5329 		/* TSNH */
5330 		break;
5331 	}
5332 	if (check_src) {
5333 		fnd = false;
5334 		TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5335 			sa = (struct sockaddr *)&net->ro._l_addr;
5336 			if (sa->sa_family == src->sa_family) {
5337 #ifdef INET
5338 				if (sa->sa_family == AF_INET) {
5339 					struct sockaddr_in *src4;
5340 
5341 					sa4 = (struct sockaddr_in *)sa;
5342 					src4 = (struct sockaddr_in *)src;
5343 					if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5344 						fnd = true;
5345 						break;
5346 					}
5347 				}
5348 #endif
5349 #ifdef INET6
5350 				if (sa->sa_family == AF_INET6) {
5351 					struct sockaddr_in6 *src6;
5352 
5353 					sa6 = (struct sockaddr_in6 *)sa;
5354 					src6 = (struct sockaddr_in6 *)src;
5355 					if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5356 						fnd = true;
5357 						break;
5358 					}
5359 				}
5360 #endif
5361 			}
5362 		}
5363 		if (!fnd) {
5364 			/*
5365 			 * If sending an ABORT in case of an additional
5366 			 * address, don't use the new address error cause.
5367 			 * This looks no different than if no listener was
5368 			 * present.
5369 			 */
5370 			*op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), "Address added");
5371 			return (true);
5372 		}
5373 	}
5374 	/* Ok so far lets munge through the rest of the packet */
5375 	offset += sizeof(struct sctp_init_chunk);
5376 	phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5377 	while (phdr) {
5378 		sa_touse = NULL;
5379 		ptype = ntohs(phdr->param_type);
5380 		plen = ntohs(phdr->param_length);
5381 		if (offset + plen > limit) {
5382 			*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Partial parameter");
5383 			return (true);
5384 		}
5385 		if (plen < sizeof(struct sctp_paramhdr)) {
5386 			*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length too small");
5387 			return (true);
5388 		}
5389 		switch (ptype) {
5390 #ifdef INET
5391 		case SCTP_IPV4_ADDRESS:
5392 			{
5393 				struct sctp_ipv4addr_param *p4, p4_buf;
5394 
5395 				if (plen != sizeof(struct sctp_ipv4addr_param)) {
5396 					*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length illegal");
5397 					return (true);
5398 				}
5399 				phdr = sctp_get_next_param(in_initpkt, offset,
5400 				    (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5401 				if (phdr == NULL) {
5402 					*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "");
5403 					return (true);
5404 				}
5405 				if (asoc->scope.ipv4_addr_legal) {
5406 					p4 = (struct sctp_ipv4addr_param *)phdr;
5407 					sin4.sin_addr.s_addr = p4->addr;
5408 					sa_touse = (struct sockaddr *)&sin4;
5409 				}
5410 				break;
5411 			}
5412 #endif
5413 #ifdef INET6
5414 		case SCTP_IPV6_ADDRESS:
5415 			{
5416 				struct sctp_ipv6addr_param *p6, p6_buf;
5417 
5418 				if (plen != sizeof(struct sctp_ipv6addr_param)) {
5419 					*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length illegal");
5420 					return (true);
5421 				}
5422 				phdr = sctp_get_next_param(in_initpkt, offset,
5423 				    (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5424 				if (phdr == NULL) {
5425 					*op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "");
5426 					return (true);
5427 				}
5428 				if (asoc->scope.ipv6_addr_legal) {
5429 					p6 = (struct sctp_ipv6addr_param *)phdr;
5430 					memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5431 					    sizeof(p6->addr));
5432 					sa_touse = (struct sockaddr *)&sin6;
5433 				}
5434 				break;
5435 			}
5436 #endif
5437 		default:
5438 			sa_touse = NULL;
5439 			break;
5440 		}
5441 		if (sa_touse) {
5442 			/* ok, sa_touse points to one to check */
5443 			fnd = false;
5444 			TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5445 				sa = (struct sockaddr *)&net->ro._l_addr;
5446 				if (sa->sa_family != sa_touse->sa_family) {
5447 					continue;
5448 				}
5449 #ifdef INET
5450 				if (sa->sa_family == AF_INET) {
5451 					sa4 = (struct sockaddr_in *)sa;
5452 					if (sa4->sin_addr.s_addr ==
5453 					    sin4.sin_addr.s_addr) {
5454 						fnd = true;
5455 						break;
5456 					}
5457 				}
5458 #endif
5459 #ifdef INET6
5460 				if (sa->sa_family == AF_INET6) {
5461 					sa6 = (struct sockaddr_in6 *)sa;
5462 					if (SCTP6_ARE_ADDR_EQUAL(
5463 					    sa6, &sin6)) {
5464 						fnd = true;
5465 						break;
5466 					}
5467 				}
5468 #endif
5469 			}
5470 			if (!fnd) {
5471 				/*
5472 				 * If sending an ABORT in case of an
5473 				 * additional address, don't use the new
5474 				 * address error cause. This looks no
5475 				 * different than if no listener was
5476 				 * present.
5477 				 */
5478 				*op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), "Address added");
5479 				return (true);
5480 			}
5481 		}
5482 		offset += SCTP_SIZE32(plen);
5483 		if (offset >= limit) {
5484 			break;
5485 		}
5486 		phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5487 	}
5488 	return (false);
5489 }
5490 
5491 /*
5492  * Given a MBUF chain that was sent into us containing an INIT. Build a
5493  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5494  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5495  * message (i.e. the struct sctp_init_msg).
5496  */
5497 void
5498 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5499     struct sctp_nets *src_net, struct mbuf *init_pkt,
5500     int iphlen, int offset,
5501     struct sockaddr *src, struct sockaddr *dst,
5502     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5503     uint8_t mflowtype, uint32_t mflowid,
5504     uint32_t vrf_id, uint16_t port)
5505 {
5506 	struct sctp_association *asoc;
5507 	struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err;
5508 	struct sctp_init_ack_chunk *initack;
5509 	struct sctp_adaptation_layer_indication *ali;
5510 	struct sctp_zero_checksum_acceptable *zero_chksum;
5511 	struct sctp_supported_chunk_types_param *pr_supported;
5512 	struct sctp_paramhdr *ph;
5513 	union sctp_sockstore *over_addr;
5514 	struct sctp_scoping scp;
5515 	struct timeval now;
5516 #ifdef INET
5517 	struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5518 	struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5519 	struct sockaddr_in *sin;
5520 #endif
5521 #ifdef INET6
5522 	struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5523 	struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5524 	struct sockaddr_in6 *sin6;
5525 #endif
5526 	struct sockaddr *to;
5527 	struct sctp_state_cookie stc;
5528 	struct sctp_nets *net = NULL;
5529 	uint8_t *signature = NULL;
5530 	int cnt_inits_to = 0;
5531 	uint16_t his_limit, i_want;
5532 	int abort_flag;
5533 	int nat_friendly = 0;
5534 	int error;
5535 	struct socket *so;
5536 	uint32_t edmid;
5537 	uint16_t num_ext, chunk_len, padding_len, parameter_len;
5538 	bool use_zero_crc;
5539 
5540 	if (stcb) {
5541 		asoc = &stcb->asoc;
5542 	} else {
5543 		asoc = NULL;
5544 	}
5545 	if ((asoc != NULL) &&
5546 	    (SCTP_GET_STATE(stcb) != SCTP_STATE_COOKIE_WAIT)) {
5547 		if (sctp_are_there_new_addresses(asoc, init_pkt, offset, offset + ntohs(init_chk->ch.chunk_length), src, &op_err)) {
5548 			/*
5549 			 * new addresses, out of here in non-cookie-wait
5550 			 * states
5551 			 */
5552 			sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5553 			    mflowtype, mflowid, inp->fibnum,
5554 			    vrf_id, port);
5555 			return;
5556 		}
5557 		if (src_net != NULL && (src_net->port != port)) {
5558 			/*
5559 			 * change of remote encapsulation port, out of here
5560 			 * in non-cookie-wait states
5561 			 *
5562 			 * Send an ABORT, without an specific error cause.
5563 			 * This looks no different than if no listener was
5564 			 * present.
5565 			 */
5566 			op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5567 			    "Remote encapsulation port changed");
5568 			sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5569 			    mflowtype, mflowid, inp->fibnum,
5570 			    vrf_id, port);
5571 			return;
5572 		}
5573 	}
5574 	abort_flag = 0;
5575 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5576 	    (offset + sizeof(struct sctp_init_chunk)),
5577 	    &abort_flag,
5578 	    (struct sctp_chunkhdr *)init_chk,
5579 	    &nat_friendly, NULL, &edmid);
5580 	if (abort_flag) {
5581 do_a_abort:
5582 		if (op_err == NULL) {
5583 			char msg[SCTP_DIAG_INFO_LEN];
5584 
5585 			SCTP_SNPRINTF(msg, sizeof(msg), "%s:%d at %s", __FILE__, __LINE__, __func__);
5586 			op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5587 			    msg);
5588 		}
5589 		sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5590 		    init_chk->init.initiate_tag, op_err,
5591 		    mflowtype, mflowid, inp->fibnum,
5592 		    vrf_id, port);
5593 		return;
5594 	}
5595 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
5596 	if (m == NULL) {
5597 		/* No memory, INIT timer will re-attempt. */
5598 		sctp_m_freem(op_err);
5599 		return;
5600 	}
5601 	chunk_len = (uint16_t)sizeof(struct sctp_init_ack_chunk);
5602 	padding_len = 0;
5603 
5604 	/*
5605 	 * We might not overwrite the identification[] completely and on
5606 	 * some platforms time_entered will contain some padding. Therefore
5607 	 * zero out the cookie to avoid putting uninitialized memory on the
5608 	 * wire.
5609 	 */
5610 	memset(&stc, 0, sizeof(struct sctp_state_cookie));
5611 
5612 	/* the time I built cookie */
5613 	(void)SCTP_GETTIME_TIMEVAL(&now);
5614 	stc.time_entered.tv_sec = now.tv_sec;
5615 	stc.time_entered.tv_usec = now.tv_usec;
5616 
5617 	/* populate any tie tags */
5618 	if (asoc != NULL) {
5619 		/* unlock before tag selections */
5620 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5621 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5622 		stc.cookie_life = asoc->cookie_life;
5623 		net = asoc->primary_destination;
5624 	} else {
5625 		stc.tie_tag_my_vtag = 0;
5626 		stc.tie_tag_peer_vtag = 0;
5627 		/* life I will award this cookie */
5628 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
5629 	}
5630 
5631 	/* copy in the ports for later check */
5632 	stc.myport = sh->dest_port;
5633 	stc.peerport = sh->src_port;
5634 
5635 	/*
5636 	 * If we wanted to honor cookie life extensions, we would add to
5637 	 * stc.cookie_life. For now we should NOT honor any extension
5638 	 */
5639 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5640 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5641 		stc.ipv6_addr_legal = 1;
5642 		if (SCTP_IPV6_V6ONLY(inp)) {
5643 			stc.ipv4_addr_legal = 0;
5644 		} else {
5645 			stc.ipv4_addr_legal = 1;
5646 		}
5647 	} else {
5648 		stc.ipv6_addr_legal = 0;
5649 		stc.ipv4_addr_legal = 1;
5650 	}
5651 	stc.ipv4_scope = 0;
5652 	if (net == NULL) {
5653 		to = src;
5654 		switch (dst->sa_family) {
5655 #ifdef INET
5656 		case AF_INET:
5657 			{
5658 				/* lookup address */
5659 				stc.address[0] = src4->sin_addr.s_addr;
5660 				stc.address[1] = 0;
5661 				stc.address[2] = 0;
5662 				stc.address[3] = 0;
5663 				stc.addr_type = SCTP_IPV4_ADDRESS;
5664 				/* local from address */
5665 				stc.laddress[0] = dst4->sin_addr.s_addr;
5666 				stc.laddress[1] = 0;
5667 				stc.laddress[2] = 0;
5668 				stc.laddress[3] = 0;
5669 				stc.laddr_type = SCTP_IPV4_ADDRESS;
5670 				/* scope_id is only for v6 */
5671 				stc.scope_id = 0;
5672 				if ((IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) ||
5673 				    (IN4_ISPRIVATE_ADDRESS(&dst4->sin_addr))) {
5674 					stc.ipv4_scope = 1;
5675 				}
5676 				/* Must use the address in this case */
5677 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5678 					stc.loopback_scope = 1;
5679 					stc.ipv4_scope = 1;
5680 					stc.site_scope = 1;
5681 					stc.local_scope = 0;
5682 				}
5683 				break;
5684 			}
5685 #endif
5686 #ifdef INET6
5687 		case AF_INET6:
5688 			{
5689 				stc.addr_type = SCTP_IPV6_ADDRESS;
5690 				memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5691 				stc.scope_id = ntohs(in6_getscope(&src6->sin6_addr));
5692 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5693 					stc.loopback_scope = 1;
5694 					stc.local_scope = 0;
5695 					stc.site_scope = 1;
5696 					stc.ipv4_scope = 1;
5697 				} else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr) ||
5698 				    IN6_IS_ADDR_LINKLOCAL(&dst6->sin6_addr)) {
5699 					/*
5700 					 * If the new destination or source
5701 					 * is a LINK_LOCAL we must have
5702 					 * common both site and local scope.
5703 					 * Don't set local scope though
5704 					 * since we must depend on the
5705 					 * source to be added implicitly. We
5706 					 * cannot assure just because we
5707 					 * share one link that all links are
5708 					 * common.
5709 					 */
5710 					stc.local_scope = 0;
5711 					stc.site_scope = 1;
5712 					stc.ipv4_scope = 1;
5713 					/*
5714 					 * we start counting for the private
5715 					 * address stuff at 1. since the
5716 					 * link local we source from won't
5717 					 * show up in our scoped count.
5718 					 */
5719 					cnt_inits_to = 1;
5720 					/*
5721 					 * pull out the scope_id from
5722 					 * incoming pkt
5723 					 */
5724 				} else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr) ||
5725 				    IN6_IS_ADDR_SITELOCAL(&dst6->sin6_addr)) {
5726 					/*
5727 					 * If the new destination or source
5728 					 * is SITE_LOCAL then we must have
5729 					 * site scope in common.
5730 					 */
5731 					stc.site_scope = 1;
5732 				}
5733 				memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5734 				stc.laddr_type = SCTP_IPV6_ADDRESS;
5735 				break;
5736 			}
5737 #endif
5738 		default:
5739 			/* TSNH */
5740 			goto do_a_abort;
5741 			break;
5742 		}
5743 	} else {
5744 		/* set the scope per the existing tcb */
5745 
5746 #ifdef INET6
5747 		struct sctp_nets *lnet;
5748 #endif
5749 
5750 		stc.loopback_scope = asoc->scope.loopback_scope;
5751 		stc.ipv4_scope = asoc->scope.ipv4_local_scope;
5752 		stc.site_scope = asoc->scope.site_scope;
5753 		stc.local_scope = asoc->scope.local_scope;
5754 #ifdef INET6
5755 		/* Why do we not consider IPv4 LL addresses? */
5756 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5757 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5758 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5759 					/*
5760 					 * if we have a LL address, start
5761 					 * counting at 1.
5762 					 */
5763 					cnt_inits_to = 1;
5764 				}
5765 			}
5766 		}
5767 #endif
5768 		/* use the net pointer */
5769 		to = (struct sockaddr *)&net->ro._l_addr;
5770 		switch (to->sa_family) {
5771 #ifdef INET
5772 		case AF_INET:
5773 			sin = (struct sockaddr_in *)to;
5774 			stc.address[0] = sin->sin_addr.s_addr;
5775 			stc.address[1] = 0;
5776 			stc.address[2] = 0;
5777 			stc.address[3] = 0;
5778 			stc.addr_type = SCTP_IPV4_ADDRESS;
5779 			if (net->src_addr_selected == 0) {
5780 				/*
5781 				 * strange case here, the INIT should have
5782 				 * did the selection.
5783 				 */
5784 				net->ro._s_addr = sctp_source_address_selection(inp,
5785 				    stcb, (sctp_route_t *)&net->ro,
5786 				    net, 0, vrf_id);
5787 				if (net->ro._s_addr == NULL) {
5788 					sctp_m_freem(op_err);
5789 					sctp_m_freem(m);
5790 					return;
5791 				}
5792 
5793 				net->src_addr_selected = 1;
5794 			}
5795 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5796 			stc.laddress[1] = 0;
5797 			stc.laddress[2] = 0;
5798 			stc.laddress[3] = 0;
5799 			stc.laddr_type = SCTP_IPV4_ADDRESS;
5800 			/* scope_id is only for v6 */
5801 			stc.scope_id = 0;
5802 			break;
5803 #endif
5804 #ifdef INET6
5805 		case AF_INET6:
5806 			sin6 = (struct sockaddr_in6 *)to;
5807 			memcpy(&stc.address, &sin6->sin6_addr,
5808 			    sizeof(struct in6_addr));
5809 			stc.addr_type = SCTP_IPV6_ADDRESS;
5810 			stc.scope_id = sin6->sin6_scope_id;
5811 			if (net->src_addr_selected == 0) {
5812 				/*
5813 				 * strange case here, the INIT should have
5814 				 * done the selection.
5815 				 */
5816 				net->ro._s_addr = sctp_source_address_selection(inp,
5817 				    stcb, (sctp_route_t *)&net->ro,
5818 				    net, 0, vrf_id);
5819 				if (net->ro._s_addr == NULL) {
5820 					sctp_m_freem(op_err);
5821 					sctp_m_freem(m);
5822 					return;
5823 				}
5824 
5825 				net->src_addr_selected = 1;
5826 			}
5827 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5828 			    sizeof(struct in6_addr));
5829 			stc.laddr_type = SCTP_IPV6_ADDRESS;
5830 			break;
5831 #endif
5832 		}
5833 	}
5834 	if (asoc != NULL) {
5835 		stc.rcv_edmid = asoc->rcv_edmid;
5836 	} else {
5837 		stc.rcv_edmid = inp->rcv_edmid;
5838 	}
5839 	/* Now lets put the SCTP header in place */
5840 	initack = mtod(m, struct sctp_init_ack_chunk *);
5841 	/* Save it off for quick ref */
5842 	stc.peers_vtag = ntohl(init_chk->init.initiate_tag);
5843 	/* who are we */
5844 	memcpy(stc.identification, SCTP_VERSION_STRING,
5845 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5846 	memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5847 	/* now the chunk header */
5848 	initack->ch.chunk_type = SCTP_INITIATION_ACK;
5849 	initack->ch.chunk_flags = 0;
5850 	/* fill in later from mbuf we build */
5851 	initack->ch.chunk_length = 0;
5852 	/* place in my tag */
5853 	if ((asoc != NULL) &&
5854 	    ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
5855 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_INUSE) ||
5856 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED))) {
5857 		/* re-use the v-tags and init-seq here */
5858 		initack->init.initiate_tag = htonl(asoc->my_vtag);
5859 		initack->init.initial_tsn = htonl(asoc->init_seq_number);
5860 	} else {
5861 		uint32_t vtag, itsn;
5862 
5863 		if (asoc) {
5864 			atomic_add_int(&asoc->refcnt, 1);
5865 			SCTP_TCB_UNLOCK(stcb);
5866 	new_tag:
5867 			SCTP_INP_INFO_RLOCK();
5868 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5869 			SCTP_INP_INFO_RUNLOCK();
5870 			if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5871 				/*
5872 				 * Got a duplicate vtag on some guy behind a
5873 				 * nat make sure we don't use it.
5874 				 */
5875 				goto new_tag;
5876 			}
5877 			initack->init.initiate_tag = htonl(vtag);
5878 			/* get a TSN to use too */
5879 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5880 			initack->init.initial_tsn = htonl(itsn);
5881 			SCTP_TCB_LOCK(stcb);
5882 			atomic_subtract_int(&asoc->refcnt, 1);
5883 		} else {
5884 			SCTP_INP_INCR_REF(inp);
5885 			SCTP_INP_RUNLOCK(inp);
5886 			SCTP_INP_INFO_RLOCK();
5887 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5888 			SCTP_INP_INFO_RUNLOCK();
5889 			initack->init.initiate_tag = htonl(vtag);
5890 			/* get a TSN to use too */
5891 			initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5892 			SCTP_INP_RLOCK(inp);
5893 			SCTP_INP_DECR_REF(inp);
5894 		}
5895 	}
5896 	/* save away my tag to */
5897 	stc.my_vtag = initack->init.initiate_tag;
5898 
5899 	/* set up some of the credits. */
5900 	so = inp->sctp_socket;
5901 	if (so == NULL) {
5902 		/* memory problem */
5903 		sctp_m_freem(op_err);
5904 		sctp_m_freem(m);
5905 		return;
5906 	} else {
5907 		initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5908 	}
5909 	/* set what I want */
5910 	his_limit = ntohs(init_chk->init.num_inbound_streams);
5911 	/* choose what I want */
5912 	if (asoc != NULL) {
5913 		if (asoc->streamoutcnt > asoc->pre_open_streams) {
5914 			i_want = asoc->streamoutcnt;
5915 		} else {
5916 			i_want = asoc->pre_open_streams;
5917 		}
5918 	} else {
5919 		i_want = inp->sctp_ep.pre_open_stream_count;
5920 	}
5921 	if (his_limit < i_want) {
5922 		/* I Want more :< */
5923 		initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5924 	} else {
5925 		/* I can have what I want :> */
5926 		initack->init.num_outbound_streams = htons(i_want);
5927 	}
5928 	/* tell him his limit. */
5929 	initack->init.num_inbound_streams =
5930 	    htons(inp->sctp_ep.max_open_streams_intome);
5931 
5932 	/* adaptation layer indication parameter */
5933 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
5934 		parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication);
5935 		ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
5936 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5937 		ali->ph.param_length = htons(parameter_len);
5938 		ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator);
5939 		chunk_len += parameter_len;
5940 	}
5941 
5942 	/* ECN parameter */
5943 	if (((asoc != NULL) && (asoc->ecn_supported == 1)) ||
5944 	    ((asoc == NULL) && (inp->ecn_supported == 1))) {
5945 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
5946 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5947 		ph->param_type = htons(SCTP_ECN_CAPABLE);
5948 		ph->param_length = htons(parameter_len);
5949 		chunk_len += parameter_len;
5950 	}
5951 
5952 	/* PR-SCTP supported parameter */
5953 	if (((asoc != NULL) && (asoc->prsctp_supported == 1)) ||
5954 	    ((asoc == NULL) && (inp->prsctp_supported == 1))) {
5955 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
5956 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5957 		ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
5958 		ph->param_length = htons(parameter_len);
5959 		chunk_len += parameter_len;
5960 	}
5961 
5962 	/* Zero checksum acceptable parameter */
5963 	if (((asoc != NULL) && (asoc->rcv_edmid != SCTP_EDMID_NONE)) ||
5964 	    ((asoc == NULL) && (inp->rcv_edmid != SCTP_EDMID_NONE))) {
5965 		parameter_len = (uint16_t)sizeof(struct sctp_zero_checksum_acceptable);
5966 		zero_chksum = (struct sctp_zero_checksum_acceptable *)(mtod(m, caddr_t)+chunk_len);
5967 		zero_chksum->ph.param_type = htons(SCTP_ZERO_CHECKSUM_ACCEPTABLE);
5968 		zero_chksum->ph.param_length = htons(parameter_len);
5969 		if (asoc != NULL) {
5970 			zero_chksum->edmid = htonl(asoc->rcv_edmid);
5971 		} else {
5972 			zero_chksum->edmid = htonl(inp->rcv_edmid);
5973 		}
5974 		chunk_len += parameter_len;
5975 	}
5976 
5977 	/* Add NAT friendly parameter */
5978 	if (nat_friendly) {
5979 		parameter_len = (uint16_t)sizeof(struct sctp_paramhdr);
5980 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5981 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5982 		ph->param_length = htons(parameter_len);
5983 		chunk_len += parameter_len;
5984 	}
5985 
5986 	/* And now tell the peer which extensions we support */
5987 	num_ext = 0;
5988 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
5989 	if (((asoc != NULL) && (asoc->prsctp_supported == 1)) ||
5990 	    ((asoc == NULL) && (inp->prsctp_supported == 1))) {
5991 		pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5992 		if (((asoc != NULL) && (asoc->idata_supported == 1)) ||
5993 		    ((asoc == NULL) && (inp->idata_supported == 1))) {
5994 			pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN;
5995 		}
5996 	}
5997 	if (((asoc != NULL) && (asoc->auth_supported == 1)) ||
5998 	    ((asoc == NULL) && (inp->auth_supported == 1))) {
5999 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
6000 	}
6001 	if (((asoc != NULL) && (asoc->asconf_supported == 1)) ||
6002 	    ((asoc == NULL) && (inp->asconf_supported == 1))) {
6003 		pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
6004 		pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
6005 	}
6006 	if (((asoc != NULL) && (asoc->reconfig_supported == 1)) ||
6007 	    ((asoc == NULL) && (inp->reconfig_supported == 1))) {
6008 		pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
6009 	}
6010 	if (((asoc != NULL) && (asoc->idata_supported == 1)) ||
6011 	    ((asoc == NULL) && (inp->idata_supported == 1))) {
6012 		pr_supported->chunk_types[num_ext++] = SCTP_IDATA;
6013 	}
6014 	if (((asoc != NULL) && (asoc->nrsack_supported == 1)) ||
6015 	    ((asoc == NULL) && (inp->nrsack_supported == 1))) {
6016 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
6017 	}
6018 	if (((asoc != NULL) && (asoc->pktdrop_supported == 1)) ||
6019 	    ((asoc == NULL) && (inp->pktdrop_supported == 1))) {
6020 		pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
6021 	}
6022 	if (num_ext > 0) {
6023 		parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext;
6024 		pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
6025 		pr_supported->ph.param_length = htons(parameter_len);
6026 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6027 		chunk_len += parameter_len;
6028 	}
6029 
6030 	/* add authentication parameters */
6031 	if (((asoc != NULL) && (asoc->auth_supported == 1)) ||
6032 	    ((asoc == NULL) && (inp->auth_supported == 1))) {
6033 		struct sctp_auth_random *randp;
6034 		struct sctp_auth_hmac_algo *hmacs;
6035 		struct sctp_auth_chunk_list *chunks;
6036 
6037 		if (padding_len > 0) {
6038 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6039 			chunk_len += padding_len;
6040 			padding_len = 0;
6041 		}
6042 		/* generate and add RANDOM parameter */
6043 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
6044 		parameter_len = (uint16_t)sizeof(struct sctp_auth_random) +
6045 		    SCTP_AUTH_RANDOM_SIZE_DEFAULT;
6046 		randp->ph.param_type = htons(SCTP_RANDOM);
6047 		randp->ph.param_length = htons(parameter_len);
6048 		SCTP_READ_RANDOM(randp->random_data, SCTP_AUTH_RANDOM_SIZE_DEFAULT);
6049 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6050 		chunk_len += parameter_len;
6051 
6052 		if (padding_len > 0) {
6053 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6054 			chunk_len += padding_len;
6055 			padding_len = 0;
6056 		}
6057 		/* add HMAC_ALGO parameter */
6058 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
6059 		parameter_len = (uint16_t)sizeof(struct sctp_auth_hmac_algo) +
6060 		    sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
6061 		    (uint8_t *)hmacs->hmac_ids);
6062 		hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
6063 		hmacs->ph.param_length = htons(parameter_len);
6064 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6065 		chunk_len += parameter_len;
6066 
6067 		if (padding_len > 0) {
6068 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6069 			chunk_len += padding_len;
6070 			padding_len = 0;
6071 		}
6072 		/* add CHUNKS parameter */
6073 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
6074 		parameter_len = (uint16_t)sizeof(struct sctp_auth_chunk_list) +
6075 		    sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
6076 		    chunks->chunk_types);
6077 		chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
6078 		chunks->ph.param_length = htons(parameter_len);
6079 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6080 		chunk_len += parameter_len;
6081 	}
6082 	SCTP_BUF_LEN(m) = chunk_len;
6083 	m_last = m;
6084 	/* now the addresses */
6085 	/*
6086 	 * To optimize this we could put the scoping stuff into a structure
6087 	 * and remove the individual uint8's from the stc structure. Then we
6088 	 * could just sifa in the address within the stc.. but for now this
6089 	 * is a quick hack to get the address stuff teased apart.
6090 	 */
6091 	scp.ipv4_addr_legal = stc.ipv4_addr_legal;
6092 	scp.ipv6_addr_legal = stc.ipv6_addr_legal;
6093 	scp.loopback_scope = stc.loopback_scope;
6094 	scp.ipv4_local_scope = stc.ipv4_scope;
6095 	scp.local_scope = stc.local_scope;
6096 	scp.site_scope = stc.site_scope;
6097 	m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last,
6098 	    cnt_inits_to,
6099 	    &padding_len, &chunk_len);
6100 	/* padding_len can only be positive, if no addresses have been added */
6101 	if (padding_len > 0) {
6102 		memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6103 		chunk_len += padding_len;
6104 		SCTP_BUF_LEN(m) += padding_len;
6105 		padding_len = 0;
6106 	}
6107 
6108 	/* tack on the operational error if present */
6109 	if (op_err) {
6110 		parameter_len = 0;
6111 		for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6112 			parameter_len += SCTP_BUF_LEN(m_tmp);
6113 		}
6114 		padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6115 		SCTP_BUF_NEXT(m_last) = op_err;
6116 		while (SCTP_BUF_NEXT(m_last) != NULL) {
6117 			m_last = SCTP_BUF_NEXT(m_last);
6118 		}
6119 		chunk_len += parameter_len;
6120 	}
6121 	if (padding_len > 0) {
6122 		m_last = sctp_add_pad_tombuf(m_last, padding_len);
6123 		if (m_last == NULL) {
6124 			/* Houston we have a problem, no space */
6125 			sctp_m_freem(m);
6126 			return;
6127 		}
6128 		chunk_len += padding_len;
6129 		padding_len = 0;
6130 	}
6131 	/* Now we must build a cookie */
6132 	m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
6133 	if (m_cookie == NULL) {
6134 		/* memory problem */
6135 		sctp_m_freem(m);
6136 		return;
6137 	}
6138 	/* Now append the cookie to the end and update the space/size */
6139 	SCTP_BUF_NEXT(m_last) = m_cookie;
6140 	parameter_len = 0;
6141 	for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6142 		parameter_len += SCTP_BUF_LEN(m_tmp);
6143 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6144 			m_last = m_tmp;
6145 		}
6146 	}
6147 	padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6148 	chunk_len += parameter_len;
6149 
6150 	/*
6151 	 * Place in the size, but we don't include the last pad (if any) in
6152 	 * the INIT-ACK.
6153 	 */
6154 	initack->ch.chunk_length = htons(chunk_len);
6155 
6156 	/*
6157 	 * Time to sign the cookie, we don't sign over the cookie signature
6158 	 * though thus we set trailer.
6159 	 */
6160 	(void)sctp_hmac_m(SCTP_HMAC,
6161 	    (uint8_t *)inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
6162 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
6163 	    (uint8_t *)signature, SCTP_SIGNATURE_SIZE);
6164 	/*
6165 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
6166 	 * here since the timer will drive a retranmission.
6167 	 */
6168 	if (padding_len > 0) {
6169 		if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
6170 			sctp_m_freem(m);
6171 			return;
6172 		}
6173 	}
6174 	if (stc.loopback_scope) {
6175 		over_addr = (union sctp_sockstore *)dst;
6176 	} else {
6177 		over_addr = NULL;
6178 	}
6179 
6180 	if (asoc != NULL) {
6181 		use_zero_crc = (asoc->rcv_edmid != SCTP_EDMID_NONE) && (asoc->rcv_edmid == edmid);
6182 	} else {
6183 		use_zero_crc = (inp->rcv_edmid != SCTP_EDMID_NONE) && (inp->rcv_edmid == edmid);
6184 	}
6185 
6186 	if ((error = sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
6187 	    0, 0,
6188 	    inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
6189 	    port, over_addr,
6190 	    mflowtype, mflowid,
6191 	    use_zero_crc,
6192 	    SCTP_SO_NOT_LOCKED))) {
6193 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error);
6194 		if (error == ENOBUFS) {
6195 			if (asoc != NULL) {
6196 				asoc->ifp_had_enobuf = 1;
6197 			}
6198 			SCTP_STAT_INCR(sctps_lowlevelerr);
6199 		}
6200 	} else {
6201 		if (asoc != NULL) {
6202 			asoc->ifp_had_enobuf = 0;
6203 		}
6204 	}
6205 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
6206 }
6207 
6208 static void
6209 sctp_prune_prsctp(struct sctp_tcb *stcb,
6210     struct sctp_association *asoc,
6211     struct sctp_nonpad_sndrcvinfo *srcv,
6212     int dataout)
6213 {
6214 	int freed_spc = 0;
6215 	struct sctp_tmit_chunk *chk, *nchk;
6216 
6217 	SCTP_TCB_LOCK_ASSERT(stcb);
6218 	if ((asoc->prsctp_supported) &&
6219 	    (asoc->sent_queue_cnt_removeable > 0)) {
6220 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
6221 			/*
6222 			 * Look for chunks marked with the PR_SCTP flag AND
6223 			 * the buffer space flag. If the one being sent is
6224 			 * equal or greater priority then purge the old one
6225 			 * and free some space.
6226 			 */
6227 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6228 				/*
6229 				 * This one is PR-SCTP AND buffer space
6230 				 * limited type
6231 				 */
6232 				if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) {
6233 					/*
6234 					 * Lower numbers equates to higher
6235 					 * priority. So if the one we are
6236 					 * looking at has a larger priority,
6237 					 * we want to drop the data and NOT
6238 					 * retransmit it.
6239 					 */
6240 					if (chk->data) {
6241 						/*
6242 						 * We release the book_size
6243 						 * if the mbuf is here
6244 						 */
6245 						int ret_spc;
6246 						uint8_t sent;
6247 
6248 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
6249 							sent = 1;
6250 						else
6251 							sent = 0;
6252 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6253 						    sent,
6254 						    SCTP_SO_LOCKED);
6255 						freed_spc += ret_spc;
6256 						if (freed_spc >= dataout) {
6257 							return;
6258 						}
6259 					}	/* if chunk was present */
6260 				}	/* if of sufficient priority */
6261 			}	/* if chunk has enabled */
6262 		}		/* tailqforeach */
6263 
6264 		TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6265 			/* Here we must move to the sent queue and mark */
6266 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6267 				if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) {
6268 					if (chk->data) {
6269 						/*
6270 						 * We release the book_size
6271 						 * if the mbuf is here
6272 						 */
6273 						int ret_spc;
6274 
6275 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6276 						    0, SCTP_SO_LOCKED);
6277 
6278 						freed_spc += ret_spc;
6279 						if (freed_spc >= dataout) {
6280 							return;
6281 						}
6282 					}	/* end if chk->data */
6283 				}	/* end if right class */
6284 			}	/* end if chk pr-sctp */
6285 		}		/* tailqforeachsafe (chk) */
6286 	}			/* if enabled in asoc */
6287 }
6288 
6289 uint32_t
6290 sctp_get_frag_point(struct sctp_tcb *stcb)
6291 {
6292 	struct sctp_association *asoc;
6293 	uint32_t frag_point, overhead;
6294 
6295 	asoc = &stcb->asoc;
6296 	/* Consider IP header and SCTP common header. */
6297 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6298 		overhead = SCTP_MIN_OVERHEAD;
6299 	} else {
6300 		overhead = SCTP_MIN_V4_OVERHEAD;
6301 	}
6302 	/* Consider DATA/IDATA chunk header and AUTH header, if needed. */
6303 	if (asoc->idata_supported) {
6304 		overhead += sizeof(struct sctp_idata_chunk);
6305 		if (sctp_auth_is_required_chunk(SCTP_IDATA, asoc->peer_auth_chunks)) {
6306 			overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
6307 		}
6308 	} else {
6309 		overhead += sizeof(struct sctp_data_chunk);
6310 		if (sctp_auth_is_required_chunk(SCTP_DATA, asoc->peer_auth_chunks)) {
6311 			overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id);
6312 		}
6313 	}
6314 	KASSERT(overhead % 4 == 0,
6315 	    ("overhead (%u) not a multiple of 4", overhead));
6316 	/* Consider padding. */
6317 	if (asoc->smallest_mtu % 4 > 0) {
6318 		overhead += (asoc->smallest_mtu % 4);
6319 	}
6320 	KASSERT(asoc->smallest_mtu > overhead,
6321 	    ("Association MTU (%u) too small for overhead (%u)",
6322 	    asoc->smallest_mtu, overhead));
6323 	frag_point = asoc->smallest_mtu - overhead;
6324 	KASSERT(frag_point % 4 == 0,
6325 	    ("frag_point (%u) not a multiple of 4", frag_point));
6326 	/* Honor MAXSEG socket option. */
6327 	if ((asoc->sctp_frag_point > 0) &&
6328 	    (asoc->sctp_frag_point < frag_point)) {
6329 		frag_point = asoc->sctp_frag_point;
6330 	}
6331 	return (frag_point);
6332 }
6333 
6334 static void
6335 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6336 {
6337 	/*
6338 	 * We assume that the user wants PR_SCTP_TTL if the user provides a
6339 	 * positive lifetime but does not specify any PR_SCTP policy.
6340 	 */
6341 	if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6342 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6343 	} else if (sp->timetolive > 0) {
6344 		sp->sinfo_flags |= SCTP_PR_SCTP_TTL;
6345 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6346 	} else {
6347 		return;
6348 	}
6349 	switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6350 	case CHUNK_FLAGS_PR_SCTP_BUF:
6351 		/*
6352 		 * Time to live is a priority stored in tv_sec when doing
6353 		 * the buffer drop thing.
6354 		 */
6355 		sp->ts.tv_sec = sp->timetolive;
6356 		sp->ts.tv_usec = 0;
6357 		break;
6358 	case CHUNK_FLAGS_PR_SCTP_TTL:
6359 		{
6360 			struct timeval tv;
6361 
6362 			(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6363 			tv.tv_sec = sp->timetolive / 1000;
6364 			tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6365 			/*
6366 			 * TODO sctp_constants.h needs alternative time
6367 			 * macros when _KERNEL is undefined.
6368 			 */
6369 			timevaladd(&sp->ts, &tv);
6370 		}
6371 		break;
6372 	case CHUNK_FLAGS_PR_SCTP_RTX:
6373 		/*
6374 		 * Time to live is a the number or retransmissions stored in
6375 		 * tv_sec.
6376 		 */
6377 		sp->ts.tv_sec = sp->timetolive;
6378 		sp->ts.tv_usec = 0;
6379 		break;
6380 	default:
6381 		SCTPDBG(SCTP_DEBUG_USRREQ1,
6382 		    "Unknown PR_SCTP policy %u.\n",
6383 		    PR_SCTP_POLICY(sp->sinfo_flags));
6384 		break;
6385 	}
6386 }
6387 
6388 static int
6389 sctp_msg_append(struct sctp_tcb *stcb,
6390     struct sctp_nets *net,
6391     struct mbuf *m,
6392     struct sctp_nonpad_sndrcvinfo *srcv)
6393 {
6394 	int error = 0;
6395 	struct mbuf *at;
6396 	struct sctp_stream_queue_pending *sp = NULL;
6397 	struct sctp_stream_out *strm;
6398 
6399 	SCTP_TCB_LOCK_ASSERT(stcb);
6400 
6401 	/*
6402 	 * Given an mbuf chain, put it into the association send queue and
6403 	 * place it on the wheel
6404 	 */
6405 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6406 		/* Invalid stream number */
6407 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6408 		error = EINVAL;
6409 		goto out_now;
6410 	}
6411 	if ((stcb->asoc.stream_locked) &&
6412 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6413 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6414 		error = EINVAL;
6415 		goto out_now;
6416 	}
6417 	if ((stcb->asoc.strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPEN) &&
6418 	    (stcb->asoc.strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPENING)) {
6419 		/*
6420 		 * Can't queue any data while stream reset is underway.
6421 		 */
6422 		if (stcb->asoc.strmout[srcv->sinfo_stream].state > SCTP_STREAM_OPEN) {
6423 			error = EAGAIN;
6424 		} else {
6425 			error = EINVAL;
6426 		}
6427 		goto out_now;
6428 	}
6429 	/* Now can we send this? */
6430 	if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) ||
6431 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6432 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6433 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6434 		/* got data while shutting down */
6435 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EPIPE);
6436 		error = EPIPE;
6437 		goto out_now;
6438 	}
6439 	sctp_alloc_a_strmoq(stcb, sp);
6440 	if (sp == NULL) {
6441 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6442 		error = ENOMEM;
6443 		goto out_now;
6444 	}
6445 	sp->sinfo_flags = srcv->sinfo_flags;
6446 	sp->timetolive = srcv->sinfo_timetolive;
6447 	sp->ppid = srcv->sinfo_ppid;
6448 	sp->context = srcv->sinfo_context;
6449 	sp->fsn = 0;
6450 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6451 		sp->net = net;
6452 		atomic_add_int(&sp->net->ref_count, 1);
6453 	} else {
6454 		sp->net = NULL;
6455 	}
6456 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6457 	sp->sid = srcv->sinfo_stream;
6458 	sp->msg_is_complete = 1;
6459 	sp->sender_all_done = 1;
6460 	sp->some_taken = 0;
6461 	sp->data = m;
6462 	sp->tail_mbuf = NULL;
6463 	sctp_set_prsctp_policy(sp);
6464 	/*
6465 	 * We could in theory (for sendall) sifa the length in, but we would
6466 	 * still have to hunt through the chain since we need to setup the
6467 	 * tail_mbuf
6468 	 */
6469 	sp->length = 0;
6470 	for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6471 		if (SCTP_BUF_NEXT(at) == NULL)
6472 			sp->tail_mbuf = at;
6473 		sp->length += SCTP_BUF_LEN(at);
6474 	}
6475 	if (srcv->sinfo_keynumber_valid) {
6476 		sp->auth_keyid = srcv->sinfo_keynumber;
6477 	} else {
6478 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6479 	}
6480 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6481 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
6482 		sp->holds_key_ref = 1;
6483 	}
6484 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6485 	sctp_snd_sb_alloc(stcb, sp->length);
6486 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6487 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6488 	stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp);
6489 	m = NULL;
6490 out_now:
6491 	if (m) {
6492 		sctp_m_freem(m);
6493 	}
6494 	return (error);
6495 }
6496 
6497 static struct mbuf *
6498 sctp_copy_mbufchain(struct mbuf *clonechain,
6499     struct mbuf *outchain,
6500     struct mbuf **endofchain,
6501     int can_take_mbuf,
6502     int sizeofcpy,
6503     uint8_t copy_by_ref)
6504 {
6505 	struct mbuf *m;
6506 	struct mbuf *appendchain;
6507 	caddr_t cp;
6508 	int len;
6509 
6510 	if (endofchain == NULL) {
6511 		/* error */
6512 error_out:
6513 		if (outchain)
6514 			sctp_m_freem(outchain);
6515 		return (NULL);
6516 	}
6517 	if (can_take_mbuf) {
6518 		appendchain = clonechain;
6519 	} else {
6520 		if (!copy_by_ref &&
6521 		    (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))) {
6522 			/* Its not in a cluster */
6523 			if (*endofchain == NULL) {
6524 				/* lets get a mbuf cluster */
6525 				if (outchain == NULL) {
6526 					/* This is the general case */
6527 			new_mbuf:
6528 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6529 					if (outchain == NULL) {
6530 						goto error_out;
6531 					}
6532 					SCTP_BUF_LEN(outchain) = 0;
6533 					*endofchain = outchain;
6534 					/* get the prepend space */
6535 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6536 				} else {
6537 					/*
6538 					 * We really should not get a NULL
6539 					 * in endofchain
6540 					 */
6541 					/* find end */
6542 					m = outchain;
6543 					while (m) {
6544 						if (SCTP_BUF_NEXT(m) == NULL) {
6545 							*endofchain = m;
6546 							break;
6547 						}
6548 						m = SCTP_BUF_NEXT(m);
6549 					}
6550 					/* sanity */
6551 					if (*endofchain == NULL) {
6552 						/*
6553 						 * huh, TSNH XXX maybe we
6554 						 * should panic
6555 						 */
6556 						sctp_m_freem(outchain);
6557 						goto new_mbuf;
6558 					}
6559 				}
6560 				/* get the new end of length */
6561 				len = (int)M_TRAILINGSPACE(*endofchain);
6562 			} else {
6563 				/* how much is left at the end? */
6564 				len = (int)M_TRAILINGSPACE(*endofchain);
6565 			}
6566 			/* Find the end of the data, for appending */
6567 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6568 
6569 			/* Now lets copy it out */
6570 			if (len >= sizeofcpy) {
6571 				/* It all fits, copy it in */
6572 				m_copydata(clonechain, 0, sizeofcpy, cp);
6573 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6574 			} else {
6575 				/* fill up the end of the chain */
6576 				if (len > 0) {
6577 					m_copydata(clonechain, 0, len, cp);
6578 					SCTP_BUF_LEN((*endofchain)) += len;
6579 					/* now we need another one */
6580 					sizeofcpy -= len;
6581 				}
6582 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6583 				if (m == NULL) {
6584 					/* We failed */
6585 					goto error_out;
6586 				}
6587 				SCTP_BUF_NEXT((*endofchain)) = m;
6588 				*endofchain = m;
6589 				cp = mtod((*endofchain), caddr_t);
6590 				m_copydata(clonechain, len, sizeofcpy, cp);
6591 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6592 			}
6593 			return (outchain);
6594 		} else {
6595 			/* copy the old fashion way */
6596 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT);
6597 #ifdef SCTP_MBUF_LOGGING
6598 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6599 				sctp_log_mbc(appendchain, SCTP_MBUF_ICOPY);
6600 			}
6601 #endif
6602 		}
6603 	}
6604 	if (appendchain == NULL) {
6605 		/* error */
6606 		if (outchain)
6607 			sctp_m_freem(outchain);
6608 		return (NULL);
6609 	}
6610 	if (outchain) {
6611 		/* tack on to the end */
6612 		if (*endofchain != NULL) {
6613 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6614 		} else {
6615 			m = outchain;
6616 			while (m) {
6617 				if (SCTP_BUF_NEXT(m) == NULL) {
6618 					SCTP_BUF_NEXT(m) = appendchain;
6619 					break;
6620 				}
6621 				m = SCTP_BUF_NEXT(m);
6622 			}
6623 		}
6624 		/*
6625 		 * save off the end and update the end-chain position
6626 		 */
6627 		m = appendchain;
6628 		while (m) {
6629 			if (SCTP_BUF_NEXT(m) == NULL) {
6630 				*endofchain = m;
6631 				break;
6632 			}
6633 			m = SCTP_BUF_NEXT(m);
6634 		}
6635 		return (outchain);
6636 	} else {
6637 		/* save off the end and update the end-chain position */
6638 		m = appendchain;
6639 		while (m) {
6640 			if (SCTP_BUF_NEXT(m) == NULL) {
6641 				*endofchain = m;
6642 				break;
6643 			}
6644 			m = SCTP_BUF_NEXT(m);
6645 		}
6646 		return (appendchain);
6647 	}
6648 }
6649 
6650 static int
6651 sctp_med_chunk_output(struct sctp_inpcb *inp,
6652     struct sctp_tcb *stcb,
6653     struct sctp_association *asoc,
6654     int *num_out,
6655     int *reason_code,
6656     int control_only, int from_where,
6657     struct timeval *now, int *now_filled,
6658     uint32_t frag_point, int so_locked);
6659 
6660 static void
6661 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6662     uint32_t val SCTP_UNUSED)
6663 {
6664 	struct sctp_copy_all *ca;
6665 	struct mbuf *m;
6666 	int ret = 0;
6667 	int added_control = 0;
6668 	int un_sent, do_chunk_output = 1;
6669 	struct sctp_association *asoc;
6670 	struct sctp_nets *net;
6671 
6672 	ca = (struct sctp_copy_all *)ptr;
6673 	if (ca->m == NULL) {
6674 		return;
6675 	}
6676 	if (ca->inp != inp) {
6677 		/* TSNH */
6678 		return;
6679 	}
6680 	if (ca->sndlen > 0) {
6681 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT);
6682 		if (m == NULL) {
6683 			/* can't copy so we are done */
6684 			ca->cnt_failed++;
6685 			return;
6686 		}
6687 #ifdef SCTP_MBUF_LOGGING
6688 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6689 			sctp_log_mbc(m, SCTP_MBUF_ICOPY);
6690 		}
6691 #endif
6692 	} else {
6693 		m = NULL;
6694 	}
6695 	SCTP_TCB_LOCK_ASSERT(stcb);
6696 	if (stcb->asoc.alternate) {
6697 		net = stcb->asoc.alternate;
6698 	} else {
6699 		net = stcb->asoc.primary_destination;
6700 	}
6701 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6702 		/* Abort this assoc with m as the user defined reason */
6703 		if (m != NULL) {
6704 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT);
6705 		} else {
6706 			m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr),
6707 			    0, M_NOWAIT, 1, MT_DATA);
6708 			SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr);
6709 		}
6710 		if (m != NULL) {
6711 			struct sctp_paramhdr *ph;
6712 
6713 			ph = mtod(m, struct sctp_paramhdr *);
6714 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6715 			ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + ca->sndlen));
6716 		}
6717 		/*
6718 		 * We add one here to keep the assoc from dis-appearing on
6719 		 * us.
6720 		 */
6721 		atomic_add_int(&stcb->asoc.refcnt, 1);
6722 		sctp_abort_an_association(inp, stcb, m, false, SCTP_SO_NOT_LOCKED);
6723 		/*
6724 		 * sctp_abort_an_association calls sctp_free_asoc() free
6725 		 * association will NOT free it since we incremented the
6726 		 * refcnt .. we do this to prevent it being freed and things
6727 		 * getting tricky since we could end up (from free_asoc)
6728 		 * calling inpcb_free which would get a recursive lock call
6729 		 * to the iterator lock.. But as a consequence of that the
6730 		 * stcb will return to us un-locked.. since free_asoc
6731 		 * returns with either no TCB or the TCB unlocked, we must
6732 		 * relock.. to unlock in the iterator timer :-0
6733 		 */
6734 		SCTP_TCB_LOCK(stcb);
6735 		atomic_subtract_int(&stcb->asoc.refcnt, 1);
6736 		goto no_chunk_output;
6737 	} else {
6738 		if (m != NULL) {
6739 			ret = sctp_msg_append(stcb, net, m, &ca->sndrcv);
6740 		}
6741 		asoc = &stcb->asoc;
6742 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6743 			/* shutdown this assoc */
6744 			if (TAILQ_EMPTY(&asoc->send_queue) &&
6745 			    TAILQ_EMPTY(&asoc->sent_queue) &&
6746 			    sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED) == 0) {
6747 				if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
6748 					goto abort_anyway;
6749 				}
6750 				/*
6751 				 * there is nothing queued to send, so I'm
6752 				 * done...
6753 				 */
6754 				if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) &&
6755 				    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6756 				    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6757 					/*
6758 					 * only send SHUTDOWN the first time
6759 					 * through
6760 					 */
6761 					if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) {
6762 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6763 					}
6764 					SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT);
6765 					sctp_stop_timers_for_shutdown(stcb);
6766 					sctp_send_shutdown(stcb, net);
6767 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6768 					    net);
6769 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6770 					    NULL);
6771 					added_control = 1;
6772 					do_chunk_output = 0;
6773 				}
6774 			} else {
6775 				/*
6776 				 * we still got (or just got) data to send,
6777 				 * so set SHUTDOWN_PENDING
6778 				 */
6779 				/*
6780 				 * XXX sockets draft says that SCTP_EOF
6781 				 * should be sent with no data.  currently,
6782 				 * we will allow user data to be sent first
6783 				 * and move to SHUTDOWN-PENDING
6784 				 */
6785 				if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) &&
6786 				    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6787 				    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6788 					if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
6789 						SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT);
6790 					}
6791 					SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING);
6792 					if (TAILQ_EMPTY(&asoc->send_queue) &&
6793 					    TAILQ_EMPTY(&asoc->sent_queue) &&
6794 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6795 						struct mbuf *op_err;
6796 						char msg[SCTP_DIAG_INFO_LEN];
6797 
6798 				abort_anyway:
6799 						SCTP_SNPRINTF(msg, sizeof(msg),
6800 						    "%s:%d at %s", __FILE__, __LINE__, __func__);
6801 						op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
6802 						    msg);
6803 						atomic_add_int(&stcb->asoc.refcnt, 1);
6804 						sctp_abort_an_association(stcb->sctp_ep, stcb,
6805 						    op_err, false, SCTP_SO_NOT_LOCKED);
6806 						atomic_subtract_int(&stcb->asoc.refcnt, 1);
6807 						goto no_chunk_output;
6808 					}
6809 				}
6810 			}
6811 		}
6812 	}
6813 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6814 	    (stcb->asoc.stream_queue_cnt * SCTP_DATA_CHUNK_OVERHEAD(stcb)));
6815 
6816 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6817 	    (stcb->asoc.total_flight > 0) &&
6818 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
6819 		do_chunk_output = 0;
6820 	}
6821 	if (do_chunk_output)
6822 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6823 	else if (added_control) {
6824 		struct timeval now;
6825 		int num_out, reason, now_filled = 0;
6826 
6827 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6828 		    &reason, 1, 1, &now, &now_filled,
6829 		    sctp_get_frag_point(stcb),
6830 		    SCTP_SO_NOT_LOCKED);
6831 	}
6832 no_chunk_output:
6833 	if (ret) {
6834 		ca->cnt_failed++;
6835 	} else {
6836 		ca->cnt_sent++;
6837 	}
6838 }
6839 
6840 static void
6841 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6842 {
6843 	struct sctp_copy_all *ca;
6844 
6845 	ca = (struct sctp_copy_all *)ptr;
6846 	/*
6847 	 * Do a notify here? Kacheong suggests that the notify be done at
6848 	 * the send time.. so you would push up a notification if any send
6849 	 * failed. Don't know if this is feasible since the only failures we
6850 	 * have is "memory" related and if you cannot get an mbuf to send
6851 	 * the data you surely can't get an mbuf to send up to notify the
6852 	 * user you can't send the data :->
6853 	 */
6854 
6855 	/* now free everything */
6856 	if (ca->inp) {
6857 		/* Lets clear the flag to allow others to run. */
6858 		SCTP_INP_WLOCK(ca->inp);
6859 		ca->inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP;
6860 		SCTP_INP_WUNLOCK(ca->inp);
6861 	}
6862 	sctp_m_freem(ca->m);
6863 	SCTP_FREE(ca, SCTP_M_COPYAL);
6864 }
6865 
6866 static struct mbuf *
6867 sctp_copy_out_all(struct uio *uio, ssize_t len)
6868 {
6869 	struct mbuf *ret, *at;
6870 	ssize_t left, willcpy, cancpy, error;
6871 
6872 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA);
6873 	if (ret == NULL) {
6874 		/* TSNH */
6875 		return (NULL);
6876 	}
6877 	left = len;
6878 	SCTP_BUF_LEN(ret) = 0;
6879 	/* save space for the data chunk header */
6880 	cancpy = (int)M_TRAILINGSPACE(ret);
6881 	willcpy = min(cancpy, left);
6882 	at = ret;
6883 	while (left > 0) {
6884 		/* Align data to the end */
6885 		error = uiomove(mtod(at, caddr_t), (int)willcpy, uio);
6886 		if (error) {
6887 	err_out_now:
6888 			sctp_m_freem(at);
6889 			return (NULL);
6890 		}
6891 		SCTP_BUF_LEN(at) = (int)willcpy;
6892 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6893 		left -= willcpy;
6894 		if (left > 0) {
6895 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg((unsigned int)left, 0, M_WAITOK, 1, MT_DATA);
6896 			if (SCTP_BUF_NEXT(at) == NULL) {
6897 				goto err_out_now;
6898 			}
6899 			at = SCTP_BUF_NEXT(at);
6900 			SCTP_BUF_LEN(at) = 0;
6901 			cancpy = (int)M_TRAILINGSPACE(at);
6902 			willcpy = min(cancpy, left);
6903 		}
6904 	}
6905 	return (ret);
6906 }
6907 
6908 static int
6909 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6910     struct sctp_nonpad_sndrcvinfo *srcv)
6911 {
6912 	int ret;
6913 	struct sctp_copy_all *ca;
6914 
6915 	if (uio->uio_resid > (ssize_t)SCTP_BASE_SYSCTL(sctp_sendall_limit)) {
6916 		/* You must not be larger than the limit! */
6917 		return (EMSGSIZE);
6918 	}
6919 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6920 	    SCTP_M_COPYAL);
6921 	if (ca == NULL) {
6922 		sctp_m_freem(m);
6923 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6924 		return (ENOMEM);
6925 	}
6926 	memset(ca, 0, sizeof(struct sctp_copy_all));
6927 
6928 	ca->inp = inp;
6929 	if (srcv != NULL) {
6930 		memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6931 	}
6932 
6933 	/* Serialize. */
6934 	SCTP_INP_WLOCK(inp);
6935 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_SND_ITERATOR_UP) != 0) {
6936 		SCTP_INP_WUNLOCK(inp);
6937 		sctp_m_freem(m);
6938 		SCTP_FREE(ca, SCTP_M_COPYAL);
6939 		return (EBUSY);
6940 	}
6941 	inp->sctp_flags |= SCTP_PCB_FLAGS_SND_ITERATOR_UP;
6942 	SCTP_INP_WUNLOCK(inp);
6943 
6944 	/*
6945 	 * take off the sendall flag, it would be bad if we failed to do
6946 	 * this :-0
6947 	 */
6948 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6949 	/* get length and mbuf chain */
6950 	if (uio) {
6951 		ca->sndlen = uio->uio_resid;
6952 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
6953 		if (ca->m == NULL) {
6954 			SCTP_FREE(ca, SCTP_M_COPYAL);
6955 			sctp_m_freem(m);
6956 			SCTP_INP_WLOCK(inp);
6957 			inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP;
6958 			SCTP_INP_WUNLOCK(inp);
6959 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6960 			return (ENOMEM);
6961 		}
6962 	} else {
6963 		/* Gather the length of the send */
6964 		struct mbuf *mat;
6965 
6966 		ca->sndlen = 0;
6967 		for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6968 			ca->sndlen += SCTP_BUF_LEN(mat);
6969 		}
6970 	}
6971 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6972 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6973 	    SCTP_ASOC_ANY_STATE,
6974 	    (void *)ca, 0,
6975 	    sctp_sendall_completes, inp, 1);
6976 	if (ret) {
6977 		SCTP_INP_WLOCK(inp);
6978 		inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP;
6979 		SCTP_INP_WUNLOCK(inp);
6980 		SCTP_FREE(ca, SCTP_M_COPYAL);
6981 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6982 		return (EFAULT);
6983 	}
6984 	return (0);
6985 }
6986 
6987 void
6988 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6989 {
6990 	struct sctp_tmit_chunk *chk, *nchk;
6991 
6992 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6993 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6994 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6995 			asoc->ctrl_queue_cnt--;
6996 			if (chk->data) {
6997 				sctp_m_freem(chk->data);
6998 				chk->data = NULL;
6999 			}
7000 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
7001 		}
7002 	}
7003 }
7004 
7005 void
7006 sctp_toss_old_asconf(struct sctp_tcb *stcb)
7007 {
7008 	struct sctp_association *asoc;
7009 	struct sctp_tmit_chunk *chk, *nchk;
7010 	struct sctp_asconf_chunk *acp;
7011 
7012 	asoc = &stcb->asoc;
7013 	TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
7014 		/* find SCTP_ASCONF chunk in queue */
7015 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
7016 			if (chk->data) {
7017 				acp = mtod(chk->data, struct sctp_asconf_chunk *);
7018 				if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
7019 					/* Not Acked yet */
7020 					break;
7021 				}
7022 			}
7023 			TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
7024 			asoc->ctrl_queue_cnt--;
7025 			if (chk->data) {
7026 				sctp_m_freem(chk->data);
7027 				chk->data = NULL;
7028 			}
7029 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
7030 		}
7031 	}
7032 }
7033 
7034 static void
7035 sctp_clean_up_datalist(struct sctp_tcb *stcb,
7036     struct sctp_association *asoc,
7037     struct sctp_tmit_chunk **data_list,
7038     int bundle_at,
7039     struct sctp_nets *net)
7040 {
7041 	int i;
7042 	struct sctp_tmit_chunk *tp1;
7043 
7044 	for (i = 0; i < bundle_at; i++) {
7045 		/* off of the send queue */
7046 		TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
7047 		asoc->send_queue_cnt--;
7048 		if (i > 0) {
7049 			/*
7050 			 * Any chunk NOT 0 you zap the time chunk 0 gets
7051 			 * zapped or set based on if a RTO measurement is
7052 			 * needed.
7053 			 */
7054 			data_list[i]->do_rtt = 0;
7055 		}
7056 		/* record time */
7057 		data_list[i]->sent_rcv_time = net->last_sent_time;
7058 		data_list[i]->rec.data.cwnd_at_send = net->cwnd;
7059 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.tsn;
7060 		if (data_list[i]->whoTo == NULL) {
7061 			data_list[i]->whoTo = net;
7062 			atomic_add_int(&net->ref_count, 1);
7063 		}
7064 		/* on to the sent queue */
7065 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
7066 		if ((tp1) && SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) {
7067 			struct sctp_tmit_chunk *tpp;
7068 
7069 			/* need to move back */
7070 	back_up_more:
7071 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
7072 			if (tpp == NULL) {
7073 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
7074 				goto all_done;
7075 			}
7076 			tp1 = tpp;
7077 			if (SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) {
7078 				goto back_up_more;
7079 			}
7080 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
7081 		} else {
7082 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
7083 			    data_list[i],
7084 			    sctp_next);
7085 		}
7086 all_done:
7087 		/* This does not lower until the cum-ack passes it */
7088 		asoc->sent_queue_cnt++;
7089 		if ((asoc->peers_rwnd <= 0) &&
7090 		    (asoc->total_flight == 0) &&
7091 		    (bundle_at == 1)) {
7092 			/* Mark the chunk as being a window probe */
7093 			SCTP_STAT_INCR(sctps_windowprobed);
7094 		}
7095 #ifdef SCTP_AUDITING_ENABLED
7096 		sctp_audit_log(0xC2, 3);
7097 #endif
7098 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
7099 		data_list[i]->snd_count = 1;
7100 		data_list[i]->rec.data.chunk_was_revoked = 0;
7101 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
7102 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
7103 			    data_list[i]->whoTo->flight_size,
7104 			    data_list[i]->book_size,
7105 			    (uint32_t)(uintptr_t)data_list[i]->whoTo,
7106 			    data_list[i]->rec.data.tsn);
7107 		}
7108 		sctp_flight_size_increase(data_list[i]);
7109 		sctp_total_flight_increase(stcb, data_list[i]);
7110 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
7111 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
7112 			    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
7113 		}
7114 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
7115 		    (uint32_t)(data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
7116 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
7117 			/* SWS sender side engages */
7118 			asoc->peers_rwnd = 0;
7119 		}
7120 	}
7121 	if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
7122 		(*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
7123 	}
7124 }
7125 
7126 static void
7127 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked)
7128 {
7129 	struct sctp_tmit_chunk *chk, *nchk;
7130 
7131 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
7132 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7133 		    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
7134 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
7135 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
7136 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
7137 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
7138 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
7139 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
7140 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
7141 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
7142 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
7143 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
7144 			/* Stray chunks must be cleaned up */
7145 	clean_up_anyway:
7146 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
7147 			asoc->ctrl_queue_cnt--;
7148 			if (chk->data) {
7149 				sctp_m_freem(chk->data);
7150 				chk->data = NULL;
7151 			}
7152 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
7153 				asoc->fwd_tsn_cnt--;
7154 			}
7155 			sctp_free_a_chunk(stcb, chk, so_locked);
7156 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
7157 			/* special handling, we must look into the param */
7158 			if (chk != asoc->str_reset) {
7159 				goto clean_up_anyway;
7160 			}
7161 		}
7162 	}
7163 }
7164 
7165 static uint32_t
7166 sctp_can_we_split_this(struct sctp_tcb *stcb, uint32_t length,
7167     uint32_t space_left, uint32_t frag_point, int eeor_on)
7168 {
7169 	/*
7170 	 * Make a decision on if I should split a msg into multiple parts.
7171 	 * This is only asked of incomplete messages.
7172 	 */
7173 	if (eeor_on) {
7174 		/*
7175 		 * If we are doing EEOR we need to always send it if its the
7176 		 * entire thing, since it might be all the guy is putting in
7177 		 * the hopper.
7178 		 */
7179 		if (space_left >= length) {
7180 			/*-
7181 			 * If we have data outstanding,
7182 			 * we get another chance when the sack
7183 			 * arrives to transmit - wait for more data
7184 			 */
7185 			if (stcb->asoc.total_flight == 0) {
7186 				/*
7187 				 * If nothing is in flight, we zero the
7188 				 * packet counter.
7189 				 */
7190 				return (length);
7191 			}
7192 			return (0);
7193 
7194 		} else {
7195 			/* You can fill the rest */
7196 			return (space_left);
7197 		}
7198 	}
7199 	/*-
7200 	 * For those strange folk that make the send buffer
7201 	 * smaller than our fragmentation point, we can't
7202 	 * get a full msg in so we have to allow splitting.
7203 	 */
7204 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
7205 		return (length);
7206 	}
7207 	if ((length <= space_left) ||
7208 	    ((length - space_left) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
7209 		/* Sub-optimal residual don't split in non-eeor mode. */
7210 		return (0);
7211 	}
7212 	/*
7213 	 * If we reach here length is larger than the space_left. Do we wish
7214 	 * to split it for the sake of packet putting together?
7215 	 */
7216 	if (space_left >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
7217 		/* Its ok to split it */
7218 		return (min(space_left, frag_point));
7219 	}
7220 	/* Nope, can't split */
7221 	return (0);
7222 }
7223 
7224 static uint32_t
7225 sctp_move_to_outqueue(struct sctp_tcb *stcb,
7226     struct sctp_nets *net,
7227     struct sctp_stream_out *strq,
7228     uint32_t space_left,
7229     uint32_t frag_point,
7230     int *giveup,
7231     int eeor_mode,
7232     int *bail,
7233     int so_locked)
7234 {
7235 	/* Move from the stream to the send_queue keeping track of the total */
7236 	struct sctp_association *asoc;
7237 	struct sctp_stream_queue_pending *sp;
7238 	struct sctp_tmit_chunk *chk;
7239 	struct sctp_data_chunk *dchkh = NULL;
7240 	struct sctp_idata_chunk *ndchkh = NULL;
7241 	uint32_t to_move, length;
7242 	int leading;
7243 	uint8_t rcv_flags = 0;
7244 	uint8_t some_taken;
7245 
7246 	SCTP_TCB_LOCK_ASSERT(stcb);
7247 	asoc = &stcb->asoc;
7248 one_more_time:
7249 	/* sa_ignore FREED_MEMORY */
7250 	sp = TAILQ_FIRST(&strq->outqueue);
7251 	if (sp == NULL) {
7252 		sp = TAILQ_FIRST(&strq->outqueue);
7253 		if (sp) {
7254 			goto one_more_time;
7255 		}
7256 		if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_EXPLICIT_EOR) == 0) &&
7257 		    (stcb->asoc.idata_supported == 0) &&
7258 		    (strq->last_msg_incomplete)) {
7259 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7260 			    strq->sid,
7261 			    strq->last_msg_incomplete);
7262 			strq->last_msg_incomplete = 0;
7263 		}
7264 		to_move = 0;
7265 		goto out_of;
7266 	}
7267 	if ((sp->msg_is_complete) && (sp->length == 0)) {
7268 		if (sp->sender_all_done) {
7269 			/*
7270 			 * We are doing deferred cleanup. Last time through
7271 			 * when we took all the data the sender_all_done was
7272 			 * not set.
7273 			 */
7274 			if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7275 				SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7276 				SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n",
7277 				    sp->sender_all_done,
7278 				    sp->length,
7279 				    sp->msg_is_complete,
7280 				    sp->put_last_out);
7281 			}
7282 			atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7283 			TAILQ_REMOVE(&strq->outqueue, sp, next);
7284 			stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp);
7285 			if ((strq->state == SCTP_STREAM_RESET_PENDING) &&
7286 			    (strq->chunks_on_queues == 0) &&
7287 			    TAILQ_EMPTY(&strq->outqueue)) {
7288 				stcb->asoc.trigger_reset = 1;
7289 			}
7290 			if (sp->net) {
7291 				sctp_free_remote_addr(sp->net);
7292 				sp->net = NULL;
7293 			}
7294 			if (sp->data) {
7295 				sctp_m_freem(sp->data);
7296 				sp->data = NULL;
7297 			}
7298 			sctp_free_a_strmoq(stcb, sp, so_locked);
7299 			/* back to get the next msg */
7300 			goto one_more_time;
7301 		} else {
7302 			/*
7303 			 * sender just finished this but still holds a
7304 			 * reference
7305 			 */
7306 			*giveup = 1;
7307 			to_move = 0;
7308 			goto out_of;
7309 		}
7310 	} else {
7311 		/* is there some to get */
7312 		if (sp->length == 0) {
7313 			/* no */
7314 			*giveup = 1;
7315 			to_move = 0;
7316 			goto out_of;
7317 		} else if (sp->discard_rest) {
7318 			/* Whack down the size */
7319 			atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7320 			if ((stcb->sctp_socket != NULL) &&
7321 			    ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7322 			    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7323 				SCTP_SB_DECR(&stcb->sctp_socket->so_snd, sp->length);
7324 			}
7325 			if (sp->data) {
7326 				sctp_m_freem(sp->data);
7327 				sp->data = NULL;
7328 				sp->tail_mbuf = NULL;
7329 			}
7330 			sp->length = 0;
7331 			sp->some_taken = 1;
7332 			*giveup = 1;
7333 			to_move = 0;
7334 			goto out_of;
7335 		}
7336 	}
7337 	some_taken = sp->some_taken;
7338 	length = sp->length;
7339 	if (sp->msg_is_complete) {
7340 		/* The message is complete */
7341 		to_move = min(length, frag_point);
7342 		if (to_move == length) {
7343 			/* All of it fits in the MTU */
7344 			if (sp->some_taken) {
7345 				rcv_flags |= SCTP_DATA_LAST_FRAG;
7346 			} else {
7347 				rcv_flags |= SCTP_DATA_NOT_FRAG;
7348 			}
7349 			sp->put_last_out = 1;
7350 			if (sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) {
7351 				rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7352 			}
7353 		} else {
7354 			/* Not all of it fits, we fragment */
7355 			if (sp->some_taken == 0) {
7356 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7357 			}
7358 			sp->some_taken = 1;
7359 		}
7360 	} else {
7361 		to_move = sctp_can_we_split_this(stcb, length, space_left, frag_point, eeor_mode);
7362 		if (to_move > 0) {
7363 			if (to_move >= length) {
7364 				to_move = length;
7365 			}
7366 			if (sp->some_taken == 0) {
7367 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7368 				sp->some_taken = 1;
7369 			}
7370 		} else {
7371 			/* Nothing to take. */
7372 			*giveup = 1;
7373 			to_move = 0;
7374 			goto out_of;
7375 		}
7376 	}
7377 
7378 	/* If we reach here, we can copy out a chunk */
7379 	sctp_alloc_a_chunk(stcb, chk);
7380 	if (chk == NULL) {
7381 		/* No chunk memory */
7382 		*giveup = 1;
7383 		to_move = 0;
7384 		goto out_of;
7385 	}
7386 	/*
7387 	 * Setup for unordered if needed by looking at the user sent info
7388 	 * flags.
7389 	 */
7390 	if (sp->sinfo_flags & SCTP_UNORDERED) {
7391 		rcv_flags |= SCTP_DATA_UNORDERED;
7392 	}
7393 	if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
7394 	    (sp->sinfo_flags & SCTP_EOF) == SCTP_EOF) {
7395 		rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7396 	}
7397 	/* clear out the chunk before setting up */
7398 	memset(chk, 0, sizeof(*chk));
7399 	chk->rec.data.rcv_flags = rcv_flags;
7400 
7401 	if (to_move >= length) {
7402 		/* we think we can steal the whole thing */
7403 		if (to_move < sp->length) {
7404 			/* bail, it changed */
7405 			goto dont_do_it;
7406 		}
7407 		chk->data = sp->data;
7408 		chk->last_mbuf = sp->tail_mbuf;
7409 		/* register the stealing */
7410 		sp->data = sp->tail_mbuf = NULL;
7411 	} else {
7412 		struct mbuf *m;
7413 
7414 dont_do_it:
7415 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT);
7416 		chk->last_mbuf = NULL;
7417 		if (chk->data == NULL) {
7418 			sp->some_taken = some_taken;
7419 			sctp_free_a_chunk(stcb, chk, so_locked);
7420 			*bail = 1;
7421 			to_move = 0;
7422 			goto out_of;
7423 		}
7424 #ifdef SCTP_MBUF_LOGGING
7425 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7426 			sctp_log_mbc(chk->data, SCTP_MBUF_ICOPY);
7427 		}
7428 #endif
7429 		/* Pull off the data */
7430 		m_adj(sp->data, to_move);
7431 		/* Now lets work our way down and compact it */
7432 		m = sp->data;
7433 		while (m && (SCTP_BUF_LEN(m) == 0)) {
7434 			sp->data = SCTP_BUF_NEXT(m);
7435 			SCTP_BUF_NEXT(m) = NULL;
7436 			if (sp->tail_mbuf == m) {
7437 				/*-
7438 				 * Freeing tail? TSNH since
7439 				 * we supposedly were taking less
7440 				 * than the sp->length.
7441 				 */
7442 #ifdef INVARIANTS
7443 				panic("Huh, freeing tail? - TSNH");
7444 #else
7445 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7446 				sp->tail_mbuf = sp->data = NULL;
7447 				sp->length = 0;
7448 #endif
7449 			}
7450 			sctp_m_free(m);
7451 			m = sp->data;
7452 		}
7453 	}
7454 	if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7455 		chk->copy_by_ref = 1;
7456 	} else {
7457 		chk->copy_by_ref = 0;
7458 	}
7459 	/*
7460 	 * get last_mbuf and counts of mb usage This is ugly but hopefully
7461 	 * its only one mbuf.
7462 	 */
7463 	if (chk->last_mbuf == NULL) {
7464 		chk->last_mbuf = chk->data;
7465 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7466 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7467 		}
7468 	}
7469 
7470 	if (to_move > length) {
7471 		/*- This should not happen either
7472 		 * since we always lower to_move to the size
7473 		 * of sp->length if its larger.
7474 		 */
7475 #ifdef INVARIANTS
7476 		panic("Huh, how can to_move be larger?");
7477 #else
7478 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
7479 		sp->length = 0;
7480 #endif
7481 	} else {
7482 		atomic_subtract_int(&sp->length, to_move);
7483 	}
7484 	leading = SCTP_DATA_CHUNK_OVERHEAD(stcb);
7485 	if (M_LEADINGSPACE(chk->data) < leading) {
7486 		/* Not enough room for a chunk header, get some */
7487 		struct mbuf *m;
7488 
7489 		m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 1, MT_DATA);
7490 		if (m == NULL) {
7491 			/*
7492 			 * we're in trouble here. _PREPEND below will free
7493 			 * all the data if there is no leading space, so we
7494 			 * must put the data back and restore.
7495 			 */
7496 			if (sp->data == NULL) {
7497 				/* unsteal the data */
7498 				sp->data = chk->data;
7499 				sp->tail_mbuf = chk->last_mbuf;
7500 			} else {
7501 				struct mbuf *m_tmp;
7502 
7503 				/* reassemble the data */
7504 				m_tmp = sp->data;
7505 				sp->data = chk->data;
7506 				SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7507 			}
7508 			sp->some_taken = some_taken;
7509 			atomic_add_int(&sp->length, to_move);
7510 			chk->data = NULL;
7511 			*bail = 1;
7512 			sctp_free_a_chunk(stcb, chk, so_locked);
7513 			to_move = 0;
7514 			goto out_of;
7515 		} else {
7516 			SCTP_BUF_LEN(m) = 0;
7517 			SCTP_BUF_NEXT(m) = chk->data;
7518 			chk->data = m;
7519 			M_ALIGN(chk->data, 4);
7520 		}
7521 	}
7522 	SCTP_BUF_PREPEND(chk->data, SCTP_DATA_CHUNK_OVERHEAD(stcb), M_NOWAIT);
7523 	if (chk->data == NULL) {
7524 		/* HELP, TSNH since we assured it would not above? */
7525 #ifdef INVARIANTS
7526 		panic("prepend fails HELP?");
7527 #else
7528 		SCTP_PRINTF("prepend fails HELP?\n");
7529 		sctp_free_a_chunk(stcb, chk, so_locked);
7530 #endif
7531 		*bail = 1;
7532 		to_move = 0;
7533 		goto out_of;
7534 	}
7535 	sctp_snd_sb_alloc(stcb, SCTP_DATA_CHUNK_OVERHEAD(stcb));
7536 	chk->book_size = chk->send_size = (uint16_t)(to_move + SCTP_DATA_CHUNK_OVERHEAD(stcb));
7537 	chk->book_size_scale = 0;
7538 	chk->sent = SCTP_DATAGRAM_UNSENT;
7539 
7540 	chk->flags = 0;
7541 	chk->asoc = &stcb->asoc;
7542 	chk->pad_inplace = 0;
7543 	chk->no_fr_allowed = 0;
7544 	if (stcb->asoc.idata_supported == 0) {
7545 		if (rcv_flags & SCTP_DATA_UNORDERED) {
7546 			/* Just use 0. The receiver ignores the values. */
7547 			chk->rec.data.mid = 0;
7548 		} else {
7549 			chk->rec.data.mid = strq->next_mid_ordered;
7550 			if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7551 				strq->next_mid_ordered++;
7552 			}
7553 		}
7554 	} else {
7555 		if (rcv_flags & SCTP_DATA_UNORDERED) {
7556 			chk->rec.data.mid = strq->next_mid_unordered;
7557 			if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7558 				strq->next_mid_unordered++;
7559 			}
7560 		} else {
7561 			chk->rec.data.mid = strq->next_mid_ordered;
7562 			if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7563 				strq->next_mid_ordered++;
7564 			}
7565 		}
7566 	}
7567 	chk->rec.data.sid = sp->sid;
7568 	chk->rec.data.ppid = sp->ppid;
7569 	chk->rec.data.context = sp->context;
7570 	chk->rec.data.doing_fast_retransmit = 0;
7571 
7572 	chk->rec.data.timetodrop = sp->ts;
7573 	chk->flags = sp->act_flags;
7574 
7575 	if (sp->net) {
7576 		chk->whoTo = sp->net;
7577 		atomic_add_int(&chk->whoTo->ref_count, 1);
7578 	} else
7579 		chk->whoTo = NULL;
7580 
7581 	if (sp->holds_key_ref) {
7582 		chk->auth_keyid = sp->auth_keyid;
7583 		sctp_auth_key_acquire(stcb, chk->auth_keyid);
7584 		chk->holds_key_ref = 1;
7585 	}
7586 	stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, to_move);
7587 	chk->rec.data.tsn = atomic_fetchadd_int(&asoc->sending_seq, 1);
7588 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7589 		sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7590 		    (uint32_t)(uintptr_t)stcb, sp->length,
7591 		    (uint32_t)((chk->rec.data.sid << 16) | (0x0000ffff & chk->rec.data.mid)),
7592 		    chk->rec.data.tsn);
7593 	}
7594 	if (stcb->asoc.idata_supported == 0) {
7595 		dchkh = mtod(chk->data, struct sctp_data_chunk *);
7596 	} else {
7597 		ndchkh = mtod(chk->data, struct sctp_idata_chunk *);
7598 	}
7599 	/*
7600 	 * Put the rest of the things in place now. Size was done earlier in
7601 	 * previous loop prior to padding.
7602 	 */
7603 
7604 	SCTP_TCB_LOCK_ASSERT(stcb);
7605 #ifdef SCTP_ASOCLOG_OF_TSNS
7606 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7607 		asoc->tsn_out_at = 0;
7608 		asoc->tsn_out_wrapped = 1;
7609 	}
7610 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.tsn;
7611 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.sid;
7612 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.mid;
7613 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7614 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7615 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7616 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7617 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7618 	asoc->tsn_out_at++;
7619 #endif
7620 	if (stcb->asoc.idata_supported == 0) {
7621 		dchkh->ch.chunk_type = SCTP_DATA;
7622 		dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7623 		dchkh->dp.tsn = htonl(chk->rec.data.tsn);
7624 		dchkh->dp.sid = htons(strq->sid);
7625 		dchkh->dp.ssn = htons((uint16_t)chk->rec.data.mid);
7626 		dchkh->dp.ppid = chk->rec.data.ppid;
7627 		dchkh->ch.chunk_length = htons(chk->send_size);
7628 	} else {
7629 		ndchkh->ch.chunk_type = SCTP_IDATA;
7630 		ndchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7631 		ndchkh->dp.tsn = htonl(chk->rec.data.tsn);
7632 		ndchkh->dp.sid = htons(strq->sid);
7633 		ndchkh->dp.reserved = htons(0);
7634 		ndchkh->dp.mid = htonl(chk->rec.data.mid);
7635 		if (sp->fsn == 0)
7636 			ndchkh->dp.ppid_fsn.ppid = chk->rec.data.ppid;
7637 		else
7638 			ndchkh->dp.ppid_fsn.fsn = htonl(sp->fsn);
7639 		sp->fsn++;
7640 		ndchkh->ch.chunk_length = htons(chk->send_size);
7641 	}
7642 	/* Now advance the chk->send_size by the actual pad needed. */
7643 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7644 		/* need a pad */
7645 		struct mbuf *lm;
7646 		int pads;
7647 
7648 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7649 		lm = sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf);
7650 		if (lm != NULL) {
7651 			chk->last_mbuf = lm;
7652 			chk->pad_inplace = 1;
7653 		}
7654 		chk->send_size += pads;
7655 	}
7656 	if (PR_SCTP_ENABLED(chk->flags)) {
7657 		asoc->pr_sctp_cnt++;
7658 	}
7659 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7660 		/* All done pull and kill the message */
7661 		if (sp->put_last_out == 0) {
7662 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7663 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n",
7664 			    sp->sender_all_done,
7665 			    sp->length,
7666 			    sp->msg_is_complete,
7667 			    sp->put_last_out);
7668 		}
7669 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7670 		TAILQ_REMOVE(&strq->outqueue, sp, next);
7671 		stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp);
7672 		if ((strq->state == SCTP_STREAM_RESET_PENDING) &&
7673 		    (strq->chunks_on_queues == 0) &&
7674 		    TAILQ_EMPTY(&strq->outqueue)) {
7675 			stcb->asoc.trigger_reset = 1;
7676 		}
7677 		if (sp->net) {
7678 			sctp_free_remote_addr(sp->net);
7679 			sp->net = NULL;
7680 		}
7681 		if (sp->data) {
7682 			sctp_m_freem(sp->data);
7683 			sp->data = NULL;
7684 		}
7685 		sctp_free_a_strmoq(stcb, sp, so_locked);
7686 	}
7687 	asoc->chunks_on_out_queue++;
7688 	strq->chunks_on_queues++;
7689 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7690 	asoc->send_queue_cnt++;
7691 out_of:
7692 	return (to_move);
7693 }
7694 
7695 static void
7696 sctp_fill_outqueue(struct sctp_tcb *stcb, struct sctp_nets *net,
7697     uint32_t frag_point, int eeor_mode, int *quit_now,
7698     int so_locked)
7699 {
7700 	struct sctp_association *asoc;
7701 	struct sctp_stream_out *strq;
7702 	uint32_t space_left, moved, total_moved;
7703 	int bail, giveup;
7704 
7705 	SCTP_TCB_LOCK_ASSERT(stcb);
7706 	asoc = &stcb->asoc;
7707 	total_moved = 0;
7708 	switch (net->ro._l_addr.sa.sa_family) {
7709 #ifdef INET
7710 	case AF_INET:
7711 		space_left = net->mtu - SCTP_MIN_V4_OVERHEAD;
7712 		break;
7713 #endif
7714 #ifdef INET6
7715 	case AF_INET6:
7716 		space_left = net->mtu - SCTP_MIN_OVERHEAD;
7717 		break;
7718 #endif
7719 	default:
7720 		/* TSNH */
7721 		space_left = net->mtu;
7722 		break;
7723 	}
7724 	/* Need an allowance for the data chunk header too */
7725 	space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb);
7726 
7727 	/* must make even word boundary */
7728 	space_left &= 0xfffffffc;
7729 	strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7730 	giveup = 0;
7731 	bail = 0;
7732 	while ((space_left > 0) && (strq != NULL)) {
7733 		moved = sctp_move_to_outqueue(stcb, net, strq, space_left,
7734 		    frag_point, &giveup, eeor_mode,
7735 		    &bail, so_locked);
7736 		if ((giveup != 0) || (bail != 0)) {
7737 			break;
7738 		}
7739 		strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7740 		total_moved += moved;
7741 		if (space_left >= moved) {
7742 			space_left -= moved;
7743 		} else {
7744 			space_left = 0;
7745 		}
7746 		if (space_left >= SCTP_DATA_CHUNK_OVERHEAD(stcb)) {
7747 			space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb);
7748 		} else {
7749 			space_left = 0;
7750 		}
7751 		space_left &= 0xfffffffc;
7752 	}
7753 	if (bail != 0)
7754 		*quit_now = 1;
7755 
7756 	stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7757 
7758 	if (total_moved == 0) {
7759 		if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7760 		    (net == stcb->asoc.primary_destination)) {
7761 			/* ran dry for primary network net */
7762 			SCTP_STAT_INCR(sctps_primary_randry);
7763 		} else if (stcb->asoc.sctp_cmt_on_off > 0) {
7764 			/* ran dry with CMT on */
7765 			SCTP_STAT_INCR(sctps_cmt_randry);
7766 		}
7767 	}
7768 }
7769 
7770 void
7771 sctp_fix_ecn_echo(struct sctp_association *asoc)
7772 {
7773 	struct sctp_tmit_chunk *chk;
7774 
7775 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7776 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7777 			chk->sent = SCTP_DATAGRAM_UNSENT;
7778 		}
7779 	}
7780 }
7781 
7782 void
7783 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7784 {
7785 	struct sctp_association *asoc;
7786 	struct sctp_tmit_chunk *chk;
7787 	struct sctp_stream_queue_pending *sp;
7788 	unsigned int i;
7789 
7790 	if (net == NULL) {
7791 		return;
7792 	}
7793 	asoc = &stcb->asoc;
7794 	for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7795 		TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7796 			if (sp->net == net) {
7797 				sctp_free_remote_addr(sp->net);
7798 				sp->net = NULL;
7799 			}
7800 		}
7801 	}
7802 	TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7803 		if (chk->whoTo == net) {
7804 			sctp_free_remote_addr(chk->whoTo);
7805 			chk->whoTo = NULL;
7806 		}
7807 	}
7808 }
7809 
7810 int
7811 sctp_med_chunk_output(struct sctp_inpcb *inp,
7812     struct sctp_tcb *stcb,
7813     struct sctp_association *asoc,
7814     int *num_out,
7815     int *reason_code,
7816     int control_only, int from_where,
7817     struct timeval *now, int *now_filled,
7818     uint32_t frag_point, int so_locked)
7819 {
7820 	/**
7821 	 * Ok this is the generic chunk service queue. we must do the
7822 	 * following:
7823 	 * - Service the stream queue that is next, moving any
7824 	 *   message (note I must get a complete message i.e. FIRST/MIDDLE and
7825 	 *   LAST to the out queue in one pass) and assigning TSN's. This
7826 	 *   only applies though if the peer does not support NDATA. For NDATA
7827 	 *   chunks its ok to not send the entire message ;-)
7828 	 * - Check to see if the cwnd/rwnd allows any output, if so we go ahead and
7829 	 *   formulate and send the low level chunks. Making sure to combine
7830 	 *   any control in the control chunk queue also.
7831 	 */
7832 	struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7833 	struct mbuf *outchain, *endoutchain;
7834 	struct sctp_tmit_chunk *chk, *nchk;
7835 
7836 	/* temp arrays for unlinking */
7837 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7838 	int no_fragmentflg, error;
7839 	unsigned int max_rwnd_per_dest, max_send_per_dest;
7840 	int one_chunk, hbflag, skip_data_for_this_net;
7841 	int asconf, cookie, no_out_cnt;
7842 	int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7843 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7844 	int tsns_sent = 0;
7845 	uint32_t auth_offset;
7846 	struct sctp_auth_chunk *auth;
7847 	uint16_t auth_keyid;
7848 	int override_ok = 1;
7849 	int skip_fill_up = 0;
7850 	int data_auth_reqd = 0;
7851 
7852 	/*
7853 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7854 	 * destination.
7855 	 */
7856 	int quit_now = 0;
7857 	bool use_zero_crc;
7858 
7859 	*num_out = 0;
7860 	*reason_code = 0;
7861 	auth_keyid = stcb->asoc.authinfo.active_keyid;
7862 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7863 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
7864 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7865 		eeor_mode = 1;
7866 	} else {
7867 		eeor_mode = 0;
7868 	}
7869 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
7870 	/*
7871 	 * First lets prime the pump. For each destination, if there is room
7872 	 * in the flight size, attempt to pull an MTU's worth out of the
7873 	 * stream queues into the general send_queue
7874 	 */
7875 #ifdef SCTP_AUDITING_ENABLED
7876 	sctp_audit_log(0xC2, 2);
7877 #endif
7878 	SCTP_TCB_LOCK_ASSERT(stcb);
7879 	hbflag = 0;
7880 	if (control_only)
7881 		no_data_chunks = 1;
7882 	else
7883 		no_data_chunks = 0;
7884 
7885 	/* Nothing to possible to send? */
7886 	if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7887 	    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7888 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7889 	    TAILQ_EMPTY(&asoc->send_queue) &&
7890 	    sctp_is_there_unsent_data(stcb, so_locked) == 0) {
7891 nothing_to_send:
7892 		*reason_code = 9;
7893 		return (0);
7894 	}
7895 	if (asoc->peers_rwnd == 0) {
7896 		/* No room in peers rwnd */
7897 		*reason_code = 1;
7898 		if (asoc->total_flight > 0) {
7899 			/* we are allowed one chunk in flight */
7900 			no_data_chunks = 1;
7901 		}
7902 	}
7903 	if (stcb->asoc.ecn_echo_cnt_onq) {
7904 		/* Record where a sack goes, if any */
7905 		if (no_data_chunks &&
7906 		    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7907 			/* Nothing but ECNe to send - we don't do that */
7908 			goto nothing_to_send;
7909 		}
7910 		TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7911 			if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7912 			    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7913 				sack_goes_to = chk->whoTo;
7914 				break;
7915 			}
7916 		}
7917 	}
7918 	max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7919 	if (stcb->sctp_socket)
7920 		max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7921 	else
7922 		max_send_per_dest = 0;
7923 	if (no_data_chunks == 0) {
7924 		/* How many non-directed chunks are there? */
7925 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7926 			if (chk->whoTo == NULL) {
7927 				/*
7928 				 * We already have non-directed chunks on
7929 				 * the queue, no need to do a fill-up.
7930 				 */
7931 				skip_fill_up = 1;
7932 				break;
7933 			}
7934 		}
7935 	}
7936 	if ((no_data_chunks == 0) &&
7937 	    (skip_fill_up == 0) &&
7938 	    (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7939 		TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7940 			/*
7941 			 * This for loop we are in takes in each net, if
7942 			 * its's got space in cwnd and has data sent to it
7943 			 * (when CMT is off) then it calls
7944 			 * sctp_fill_outqueue for the net. This gets data on
7945 			 * the send queue for that network.
7946 			 *
7947 			 * In sctp_fill_outqueue TSN's are assigned and data
7948 			 * is copied out of the stream buffers. Note mostly
7949 			 * copy by reference (we hope).
7950 			 */
7951 			net->window_probe = 0;
7952 			if ((net != stcb->asoc.alternate) &&
7953 			    ((net->dest_state & SCTP_ADDR_PF) ||
7954 			    ((net->dest_state & SCTP_ADDR_REACHABLE) == 0) ||
7955 			    (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7956 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7957 					sctp_log_cwnd(stcb, net, 1,
7958 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7959 				}
7960 				continue;
7961 			}
7962 			if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7963 			    (net->flight_size == 0)) {
7964 				(*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7965 			}
7966 			if (net->flight_size >= net->cwnd) {
7967 				/* skip this network, no room - can't fill */
7968 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7969 					sctp_log_cwnd(stcb, net, 3,
7970 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7971 				}
7972 				continue;
7973 			}
7974 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7975 				sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7976 			}
7977 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7978 			if (quit_now) {
7979 				/* memory alloc failure */
7980 				no_data_chunks = 1;
7981 				break;
7982 			}
7983 		}
7984 	}
7985 	/* now service each destination and send out what we can for it */
7986 	/* Nothing to send? */
7987 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7988 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7989 	    TAILQ_EMPTY(&asoc->send_queue)) {
7990 		*reason_code = 8;
7991 		return (0);
7992 	}
7993 
7994 	if (asoc->sctp_cmt_on_off > 0) {
7995 		/* get the last start point */
7996 		start_at = asoc->last_net_cmt_send_started;
7997 		if (start_at == NULL) {
7998 			/* null so to beginning */
7999 			start_at = TAILQ_FIRST(&asoc->nets);
8000 		} else {
8001 			start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
8002 			if (start_at == NULL) {
8003 				start_at = TAILQ_FIRST(&asoc->nets);
8004 			}
8005 		}
8006 		asoc->last_net_cmt_send_started = start_at;
8007 	} else {
8008 		start_at = TAILQ_FIRST(&asoc->nets);
8009 	}
8010 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
8011 		if (chk->whoTo == NULL) {
8012 			if (asoc->alternate) {
8013 				chk->whoTo = asoc->alternate;
8014 			} else {
8015 				chk->whoTo = asoc->primary_destination;
8016 			}
8017 			atomic_add_int(&chk->whoTo->ref_count, 1);
8018 		}
8019 	}
8020 	old_start_at = NULL;
8021 again_one_more_time:
8022 	for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
8023 		/* how much can we send? */
8024 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
8025 		if (old_start_at && (old_start_at == net)) {
8026 			/* through list completely. */
8027 			break;
8028 		}
8029 		tsns_sent = 0xa;
8030 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
8031 		    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
8032 		    (net->flight_size >= net->cwnd)) {
8033 			/*
8034 			 * Nothing on control or asconf and flight is full,
8035 			 * we can skip even in the CMT case.
8036 			 */
8037 			continue;
8038 		}
8039 		bundle_at = 0;
8040 		endoutchain = outchain = NULL;
8041 		auth = NULL;
8042 		auth_offset = 0;
8043 		no_fragmentflg = 1;
8044 		one_chunk = 0;
8045 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
8046 			skip_data_for_this_net = 1;
8047 		} else {
8048 			skip_data_for_this_net = 0;
8049 		}
8050 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8051 #ifdef INET
8052 		case AF_INET:
8053 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8054 			break;
8055 #endif
8056 #ifdef INET6
8057 		case AF_INET6:
8058 			mtu = net->mtu - SCTP_MIN_OVERHEAD;
8059 			break;
8060 #endif
8061 		default:
8062 			/* TSNH */
8063 			mtu = net->mtu;
8064 			break;
8065 		}
8066 		mx_mtu = mtu;
8067 		to_out = 0;
8068 		if (mtu > asoc->peers_rwnd) {
8069 			if (asoc->total_flight > 0) {
8070 				/* We have a packet in flight somewhere */
8071 				r_mtu = asoc->peers_rwnd;
8072 			} else {
8073 				/* We are always allowed to send one MTU out */
8074 				one_chunk = 1;
8075 				r_mtu = mtu;
8076 			}
8077 		} else {
8078 			r_mtu = mtu;
8079 		}
8080 		error = 0;
8081 		/************************/
8082 		/* ASCONF transmission */
8083 		/************************/
8084 		/* Now first lets go through the asconf queue */
8085 		TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
8086 			if (chk->rec.chunk_id.id != SCTP_ASCONF) {
8087 				continue;
8088 			}
8089 			if (chk->whoTo == NULL) {
8090 				if (asoc->alternate == NULL) {
8091 					if (asoc->primary_destination != net) {
8092 						break;
8093 					}
8094 				} else {
8095 					if (asoc->alternate != net) {
8096 						break;
8097 					}
8098 				}
8099 			} else {
8100 				if (chk->whoTo != net) {
8101 					break;
8102 				}
8103 			}
8104 			if (chk->data == NULL) {
8105 				break;
8106 			}
8107 			if (chk->sent != SCTP_DATAGRAM_UNSENT &&
8108 			    chk->sent != SCTP_DATAGRAM_RESEND) {
8109 				break;
8110 			}
8111 			/*
8112 			 * if no AUTH is yet included and this chunk
8113 			 * requires it, make sure to account for it.  We
8114 			 * don't apply the size until the AUTH chunk is
8115 			 * actually added below in case there is no room for
8116 			 * this chunk. NOTE: we overload the use of "omtu"
8117 			 * here
8118 			 */
8119 			if ((auth == NULL) &&
8120 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8121 			    stcb->asoc.peer_auth_chunks)) {
8122 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8123 			} else
8124 				omtu = 0;
8125 			/* Here we do NOT factor the r_mtu */
8126 			if ((chk->send_size < (int)(mtu - omtu)) ||
8127 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8128 				/*
8129 				 * We probably should glom the mbuf chain
8130 				 * from the chk->data for control but the
8131 				 * problem is it becomes yet one more level
8132 				 * of tracking to do if for some reason
8133 				 * output fails. Then I have got to
8134 				 * reconstruct the merged control chain.. el
8135 				 * yucko.. for now we take the easy way and
8136 				 * do the copy
8137 				 */
8138 				/*
8139 				 * Add an AUTH chunk, if chunk requires it
8140 				 * save the offset into the chain for AUTH
8141 				 */
8142 				if ((auth == NULL) &&
8143 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8144 				    stcb->asoc.peer_auth_chunks))) {
8145 					outchain = sctp_add_auth_chunk(outchain,
8146 					    &endoutchain,
8147 					    &auth,
8148 					    &auth_offset,
8149 					    stcb,
8150 					    chk->rec.chunk_id.id);
8151 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8152 				}
8153 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8154 				    (int)chk->rec.chunk_id.can_take_data,
8155 				    chk->send_size, chk->copy_by_ref);
8156 				if (outchain == NULL) {
8157 					*reason_code = 8;
8158 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8159 					return (ENOMEM);
8160 				}
8161 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8162 				/* update our MTU size */
8163 				if (mtu > (chk->send_size + omtu))
8164 					mtu -= (chk->send_size + omtu);
8165 				else
8166 					mtu = 0;
8167 				to_out += (chk->send_size + omtu);
8168 				/* Do clear IP_DF ? */
8169 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8170 					no_fragmentflg = 0;
8171 				}
8172 				if (chk->rec.chunk_id.can_take_data)
8173 					chk->data = NULL;
8174 				/*
8175 				 * set hb flag since we can use these for
8176 				 * RTO
8177 				 */
8178 				hbflag = 1;
8179 				asconf = 1;
8180 				/*
8181 				 * should sysctl this: don't bundle data
8182 				 * with ASCONF since it requires AUTH
8183 				 */
8184 				no_data_chunks = 1;
8185 				chk->sent = SCTP_DATAGRAM_SENT;
8186 				if (chk->whoTo == NULL) {
8187 					chk->whoTo = net;
8188 					atomic_add_int(&net->ref_count, 1);
8189 				}
8190 				chk->snd_count++;
8191 				if (mtu == 0) {
8192 					/*
8193 					 * Ok we are out of room but we can
8194 					 * output without effecting the
8195 					 * flight size since this little guy
8196 					 * is a control only packet.
8197 					 */
8198 					sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8199 					/*
8200 					 * do NOT clear the asconf flag as
8201 					 * it is used to do appropriate
8202 					 * source address selection.
8203 					 */
8204 					if (*now_filled == 0) {
8205 						(void)SCTP_GETTIME_TIMEVAL(now);
8206 						*now_filled = 1;
8207 					}
8208 					net->last_sent_time = *now;
8209 					hbflag = 0;
8210 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8211 					    (struct sockaddr *)&net->ro._l_addr,
8212 					    outchain, auth_offset, auth,
8213 					    stcb->asoc.authinfo.active_keyid,
8214 					    no_fragmentflg, 0, asconf,
8215 					    inp->sctp_lport, stcb->rport,
8216 					    htonl(stcb->asoc.peer_vtag),
8217 					    net->port, NULL,
8218 					    0, 0,
8219 					    false, so_locked))) {
8220 						/*
8221 						 * error, we could not
8222 						 * output
8223 						 */
8224 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8225 						if (from_where == 0) {
8226 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8227 						}
8228 						if (error == ENOBUFS) {
8229 							asoc->ifp_had_enobuf = 1;
8230 							SCTP_STAT_INCR(sctps_lowlevelerr);
8231 						}
8232 						/* error, could not output */
8233 						if (error == EHOSTUNREACH) {
8234 							/*
8235 							 * Destination went
8236 							 * unreachable
8237 							 * during this send
8238 							 */
8239 							sctp_move_chunks_from_net(stcb, net);
8240 						}
8241 						asconf = 0;
8242 						*reason_code = 7;
8243 						break;
8244 					} else {
8245 						asoc->ifp_had_enobuf = 0;
8246 					}
8247 					/*
8248 					 * increase the number we sent, if a
8249 					 * cookie is sent we don't tell them
8250 					 * any was sent out.
8251 					 */
8252 					outchain = endoutchain = NULL;
8253 					auth = NULL;
8254 					auth_offset = 0;
8255 					asconf = 0;
8256 					if (!no_out_cnt)
8257 						*num_out += ctl_cnt;
8258 					/* recalc a clean slate and setup */
8259 					switch (net->ro._l_addr.sa.sa_family) {
8260 #ifdef INET
8261 					case AF_INET:
8262 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8263 						break;
8264 #endif
8265 #ifdef INET6
8266 					case AF_INET6:
8267 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8268 						break;
8269 #endif
8270 					default:
8271 						/* TSNH */
8272 						mtu = net->mtu;
8273 						break;
8274 					}
8275 					to_out = 0;
8276 					no_fragmentflg = 1;
8277 				}
8278 			}
8279 		}
8280 		if (error != 0) {
8281 			/* try next net */
8282 			continue;
8283 		}
8284 		/************************/
8285 		/* Control transmission */
8286 		/************************/
8287 		/* Now first lets go through the control queue */
8288 		TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8289 			if ((sack_goes_to) &&
8290 			    (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8291 			    (chk->whoTo != sack_goes_to)) {
8292 				/*
8293 				 * if we have a sack in queue, and we are
8294 				 * looking at an ecn echo that is NOT queued
8295 				 * to where the sack is going..
8296 				 */
8297 				if (chk->whoTo == net) {
8298 					/*
8299 					 * Don't transmit it to where its
8300 					 * going (current net)
8301 					 */
8302 					continue;
8303 				} else if (sack_goes_to == net) {
8304 					/*
8305 					 * But do transmit it to this
8306 					 * address
8307 					 */
8308 					goto skip_net_check;
8309 				}
8310 			}
8311 			if (chk->whoTo == NULL) {
8312 				if (asoc->alternate == NULL) {
8313 					if (asoc->primary_destination != net) {
8314 						continue;
8315 					}
8316 				} else {
8317 					if (asoc->alternate != net) {
8318 						continue;
8319 					}
8320 				}
8321 			} else {
8322 				if (chk->whoTo != net) {
8323 					continue;
8324 				}
8325 			}
8326 	skip_net_check:
8327 			if (chk->data == NULL) {
8328 				continue;
8329 			}
8330 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8331 				/*
8332 				 * It must be unsent. Cookies and ASCONF's
8333 				 * hang around but there timers will force
8334 				 * when marked for resend.
8335 				 */
8336 				continue;
8337 			}
8338 			/*
8339 			 * if no AUTH is yet included and this chunk
8340 			 * requires it, make sure to account for it.  We
8341 			 * don't apply the size until the AUTH chunk is
8342 			 * actually added below in case there is no room for
8343 			 * this chunk. NOTE: we overload the use of "omtu"
8344 			 * here
8345 			 */
8346 			if ((auth == NULL) &&
8347 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8348 			    stcb->asoc.peer_auth_chunks)) {
8349 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8350 			} else
8351 				omtu = 0;
8352 			/* Here we do NOT factor the r_mtu */
8353 			if ((chk->send_size <= (int)(mtu - omtu)) ||
8354 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8355 				/*
8356 				 * We probably should glom the mbuf chain
8357 				 * from the chk->data for control but the
8358 				 * problem is it becomes yet one more level
8359 				 * of tracking to do if for some reason
8360 				 * output fails. Then I have got to
8361 				 * reconstruct the merged control chain.. el
8362 				 * yucko.. for now we take the easy way and
8363 				 * do the copy
8364 				 */
8365 				/*
8366 				 * Add an AUTH chunk, if chunk requires it
8367 				 * save the offset into the chain for AUTH
8368 				 */
8369 				if ((auth == NULL) &&
8370 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8371 				    stcb->asoc.peer_auth_chunks))) {
8372 					outchain = sctp_add_auth_chunk(outchain,
8373 					    &endoutchain,
8374 					    &auth,
8375 					    &auth_offset,
8376 					    stcb,
8377 					    chk->rec.chunk_id.id);
8378 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8379 				}
8380 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8381 				    (int)chk->rec.chunk_id.can_take_data,
8382 				    chk->send_size, chk->copy_by_ref);
8383 				if (outchain == NULL) {
8384 					*reason_code = 8;
8385 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8386 					return (ENOMEM);
8387 				}
8388 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8389 				/* update our MTU size */
8390 				if (mtu > (chk->send_size + omtu))
8391 					mtu -= (chk->send_size + omtu);
8392 				else
8393 					mtu = 0;
8394 				to_out += (chk->send_size + omtu);
8395 				/* Do clear IP_DF ? */
8396 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8397 					no_fragmentflg = 0;
8398 				}
8399 				if (chk->rec.chunk_id.can_take_data)
8400 					chk->data = NULL;
8401 				/* Mark things to be removed, if needed */
8402 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8403 				    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
8404 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8405 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8406 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8407 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8408 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8409 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8410 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8411 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8412 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8413 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8414 						hbflag = 1;
8415 					}
8416 					/* remove these chunks at the end */
8417 					if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8418 					    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8419 						/* turn off the timer */
8420 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8421 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8422 							    inp, stcb, NULL,
8423 							    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8424 						}
8425 					}
8426 					ctl_cnt++;
8427 				} else {
8428 					/*
8429 					 * Other chunks, since they have
8430 					 * timers running (i.e. COOKIE) we
8431 					 * just "trust" that it gets sent or
8432 					 * retransmitted.
8433 					 */
8434 					ctl_cnt++;
8435 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8436 						cookie = 1;
8437 						no_out_cnt = 1;
8438 					} else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8439 						/*
8440 						 * Increment ecne send count
8441 						 * here this means we may be
8442 						 * over-zealous in our
8443 						 * counting if the send
8444 						 * fails, but its the best
8445 						 * place to do it (we used
8446 						 * to do it in the queue of
8447 						 * the chunk, but that did
8448 						 * not tell how many times
8449 						 * it was sent.
8450 						 */
8451 						SCTP_STAT_INCR(sctps_sendecne);
8452 					}
8453 					chk->sent = SCTP_DATAGRAM_SENT;
8454 					if (chk->whoTo == NULL) {
8455 						chk->whoTo = net;
8456 						atomic_add_int(&net->ref_count, 1);
8457 					}
8458 					chk->snd_count++;
8459 				}
8460 				if (mtu == 0) {
8461 					/*
8462 					 * Ok we are out of room but we can
8463 					 * output without effecting the
8464 					 * flight size since this little guy
8465 					 * is a control only packet.
8466 					 */
8467 					switch (asoc->snd_edmid) {
8468 					case SCTP_EDMID_LOWER_LAYER_DTLS:
8469 						use_zero_crc = true;
8470 						break;
8471 					default:
8472 						use_zero_crc = false;
8473 						break;
8474 					}
8475 					if (asconf) {
8476 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8477 						use_zero_crc = false;
8478 						/*
8479 						 * do NOT clear the asconf
8480 						 * flag as it is used to do
8481 						 * appropriate source
8482 						 * address selection.
8483 						 */
8484 					}
8485 					if (cookie) {
8486 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8487 						use_zero_crc = false;
8488 						cookie = 0;
8489 					}
8490 					/* Only HB or ASCONF advances time */
8491 					if (hbflag) {
8492 						if (*now_filled == 0) {
8493 							(void)SCTP_GETTIME_TIMEVAL(now);
8494 							*now_filled = 1;
8495 						}
8496 						net->last_sent_time = *now;
8497 						hbflag = 0;
8498 					}
8499 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8500 					    (struct sockaddr *)&net->ro._l_addr,
8501 					    outchain,
8502 					    auth_offset, auth,
8503 					    stcb->asoc.authinfo.active_keyid,
8504 					    no_fragmentflg, 0, asconf,
8505 					    inp->sctp_lport, stcb->rport,
8506 					    htonl(stcb->asoc.peer_vtag),
8507 					    net->port, NULL,
8508 					    0, 0,
8509 					    use_zero_crc, so_locked))) {
8510 						/*
8511 						 * error, we could not
8512 						 * output
8513 						 */
8514 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8515 						if (from_where == 0) {
8516 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8517 						}
8518 						if (error == ENOBUFS) {
8519 							asoc->ifp_had_enobuf = 1;
8520 							SCTP_STAT_INCR(sctps_lowlevelerr);
8521 						}
8522 						if (error == EHOSTUNREACH) {
8523 							/*
8524 							 * Destination went
8525 							 * unreachable
8526 							 * during this send
8527 							 */
8528 							sctp_move_chunks_from_net(stcb, net);
8529 						}
8530 						asconf = 0;
8531 						*reason_code = 7;
8532 						break;
8533 					} else {
8534 						asoc->ifp_had_enobuf = 0;
8535 					}
8536 					/*
8537 					 * increase the number we sent, if a
8538 					 * cookie is sent we don't tell them
8539 					 * any was sent out.
8540 					 */
8541 					outchain = endoutchain = NULL;
8542 					auth = NULL;
8543 					auth_offset = 0;
8544 					asconf = 0;
8545 					if (!no_out_cnt)
8546 						*num_out += ctl_cnt;
8547 					/* recalc a clean slate and setup */
8548 					switch (net->ro._l_addr.sa.sa_family) {
8549 #ifdef INET
8550 					case AF_INET:
8551 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8552 						break;
8553 #endif
8554 #ifdef INET6
8555 					case AF_INET6:
8556 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8557 						break;
8558 #endif
8559 					default:
8560 						/* TSNH */
8561 						mtu = net->mtu;
8562 						break;
8563 					}
8564 					to_out = 0;
8565 					no_fragmentflg = 1;
8566 				}
8567 			}
8568 		}
8569 		if (error != 0) {
8570 			/* try next net */
8571 			continue;
8572 		}
8573 		/* JRI: if dest is in PF state, do not send data to it */
8574 		if ((asoc->sctp_cmt_on_off > 0) &&
8575 		    (net != stcb->asoc.alternate) &&
8576 		    (net->dest_state & SCTP_ADDR_PF)) {
8577 			goto no_data_fill;
8578 		}
8579 		if (net->flight_size >= net->cwnd) {
8580 			goto no_data_fill;
8581 		}
8582 		if ((asoc->sctp_cmt_on_off > 0) &&
8583 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8584 		    (net->flight_size > max_rwnd_per_dest)) {
8585 			goto no_data_fill;
8586 		}
8587 		/*
8588 		 * We need a specific accounting for the usage of the send
8589 		 * buffer. We also need to check the number of messages per
8590 		 * net. For now, this is better than nothing and it disabled
8591 		 * by default...
8592 		 */
8593 		if ((asoc->sctp_cmt_on_off > 0) &&
8594 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8595 		    (max_send_per_dest > 0) &&
8596 		    (net->flight_size > max_send_per_dest)) {
8597 			goto no_data_fill;
8598 		}
8599 		/*********************/
8600 		/* Data transmission */
8601 		/*********************/
8602 		/*
8603 		 * if AUTH for DATA is required and no AUTH has been added
8604 		 * yet, account for this in the mtu now... if no data can be
8605 		 * bundled, this adjustment won't matter anyways since the
8606 		 * packet will be going out...
8607 		 */
8608 		data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8609 		    stcb->asoc.peer_auth_chunks);
8610 		if (data_auth_reqd && (auth == NULL)) {
8611 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8612 		}
8613 		/* now lets add any data within the MTU constraints */
8614 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8615 #ifdef INET
8616 		case AF_INET:
8617 			if (net->mtu > SCTP_MIN_V4_OVERHEAD)
8618 				omtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8619 			else
8620 				omtu = 0;
8621 			break;
8622 #endif
8623 #ifdef INET6
8624 		case AF_INET6:
8625 			if (net->mtu > SCTP_MIN_OVERHEAD)
8626 				omtu = net->mtu - SCTP_MIN_OVERHEAD;
8627 			else
8628 				omtu = 0;
8629 			break;
8630 #endif
8631 		default:
8632 			/* TSNH */
8633 			omtu = 0;
8634 			break;
8635 		}
8636 		if ((((SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) ||
8637 		    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED)) &&
8638 		    (skip_data_for_this_net == 0)) ||
8639 		    (cookie)) {
8640 			TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8641 				if (no_data_chunks) {
8642 					/* let only control go out */
8643 					*reason_code = 1;
8644 					break;
8645 				}
8646 				if (net->flight_size >= net->cwnd) {
8647 					/* skip this net, no room for data */
8648 					*reason_code = 2;
8649 					break;
8650 				}
8651 				if ((chk->whoTo != NULL) &&
8652 				    (chk->whoTo != net)) {
8653 					/* Don't send the chunk on this net */
8654 					continue;
8655 				}
8656 
8657 				if (asoc->sctp_cmt_on_off == 0) {
8658 					if ((asoc->alternate) &&
8659 					    (asoc->alternate != net) &&
8660 					    (chk->whoTo == NULL)) {
8661 						continue;
8662 					} else if ((net != asoc->primary_destination) &&
8663 						    (asoc->alternate == NULL) &&
8664 					    (chk->whoTo == NULL)) {
8665 						continue;
8666 					}
8667 				}
8668 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8669 					/*-
8670 					 * strange, we have a chunk that is
8671 					 * to big for its destination and
8672 					 * yet no fragment ok flag.
8673 					 * Something went wrong when the
8674 					 * PMTU changed...we did not mark
8675 					 * this chunk for some reason?? I
8676 					 * will fix it here by letting IP
8677 					 * fragment it for now and printing
8678 					 * a warning. This really should not
8679 					 * happen ...
8680 					 */
8681 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8682 					    chk->send_size, mtu);
8683 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8684 				}
8685 				if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8686 				    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
8687 					struct sctp_data_chunk *dchkh;
8688 
8689 					dchkh = mtod(chk->data, struct sctp_data_chunk *);
8690 					dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8691 				}
8692 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8693 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8694 					/* ok we will add this one */
8695 
8696 					/*
8697 					 * Add an AUTH chunk, if chunk
8698 					 * requires it, save the offset into
8699 					 * the chain for AUTH
8700 					 */
8701 					if (data_auth_reqd) {
8702 						if (auth == NULL) {
8703 							outchain = sctp_add_auth_chunk(outchain,
8704 							    &endoutchain,
8705 							    &auth,
8706 							    &auth_offset,
8707 							    stcb,
8708 							    SCTP_DATA);
8709 							auth_keyid = chk->auth_keyid;
8710 							override_ok = 0;
8711 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8712 						} else if (override_ok) {
8713 							/*
8714 							 * use this data's
8715 							 * keyid
8716 							 */
8717 							auth_keyid = chk->auth_keyid;
8718 							override_ok = 0;
8719 						} else if (auth_keyid != chk->auth_keyid) {
8720 							/*
8721 							 * different keyid,
8722 							 * so done bundling
8723 							 */
8724 							break;
8725 						}
8726 					}
8727 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8728 					    chk->send_size, chk->copy_by_ref);
8729 					if (outchain == NULL) {
8730 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8731 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8732 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8733 						}
8734 						*reason_code = 3;
8735 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8736 						return (ENOMEM);
8737 					}
8738 					/* update our MTU size */
8739 					/* Do clear IP_DF ? */
8740 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8741 						no_fragmentflg = 0;
8742 					}
8743 					/* unsigned subtraction of mtu */
8744 					if (mtu > chk->send_size)
8745 						mtu -= chk->send_size;
8746 					else
8747 						mtu = 0;
8748 					/* unsigned subtraction of r_mtu */
8749 					if (r_mtu > chk->send_size)
8750 						r_mtu -= chk->send_size;
8751 					else
8752 						r_mtu = 0;
8753 
8754 					to_out += chk->send_size;
8755 					if ((to_out > mx_mtu) && no_fragmentflg) {
8756 #ifdef INVARIANTS
8757 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8758 #else
8759 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8760 						    mx_mtu, to_out);
8761 #endif
8762 					}
8763 					chk->window_probe = 0;
8764 					data_list[bundle_at++] = chk;
8765 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8766 						break;
8767 					}
8768 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8769 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8770 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8771 						} else {
8772 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8773 						}
8774 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8775 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8776 							/*
8777 							 * Count number of
8778 							 * user msg's that
8779 							 * were fragmented
8780 							 * we do this by
8781 							 * counting when we
8782 							 * see a LAST
8783 							 * fragment only.
8784 							 */
8785 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8786 					}
8787 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8788 						if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8789 							data_list[0]->window_probe = 1;
8790 							net->window_probe = 1;
8791 						}
8792 						break;
8793 					}
8794 				} else {
8795 					/*
8796 					 * Must be sent in order of the
8797 					 * TSN's (on a network)
8798 					 */
8799 					break;
8800 				}
8801 			}	/* for (chunk gather loop for this net) */
8802 		}		/* if asoc.state OPEN */
8803 no_data_fill:
8804 		/* Is there something to send for this destination? */
8805 		if (outchain) {
8806 			switch (asoc->snd_edmid) {
8807 			case SCTP_EDMID_LOWER_LAYER_DTLS:
8808 				use_zero_crc = true;
8809 				break;
8810 			default:
8811 				use_zero_crc = false;
8812 				break;
8813 			}
8814 			/* We may need to start a control timer or two */
8815 			if (asconf) {
8816 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8817 				    stcb, net);
8818 				use_zero_crc = false;
8819 				/*
8820 				 * do NOT clear the asconf flag as it is
8821 				 * used to do appropriate source address
8822 				 * selection.
8823 				 */
8824 			}
8825 			if (cookie) {
8826 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8827 				use_zero_crc = false;
8828 				cookie = 0;
8829 			}
8830 			/* must start a send timer if data is being sent */
8831 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8832 				/*
8833 				 * no timer running on this destination
8834 				 * restart it.
8835 				 */
8836 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8837 			}
8838 			if (bundle_at || hbflag) {
8839 				/* For data/asconf and hb set time */
8840 				if (*now_filled == 0) {
8841 					(void)SCTP_GETTIME_TIMEVAL(now);
8842 					*now_filled = 1;
8843 				}
8844 				net->last_sent_time = *now;
8845 			}
8846 			/* Now send it, if there is anything to send :> */
8847 			if ((error = sctp_lowlevel_chunk_output(inp,
8848 			    stcb,
8849 			    net,
8850 			    (struct sockaddr *)&net->ro._l_addr,
8851 			    outchain,
8852 			    auth_offset,
8853 			    auth,
8854 			    auth_keyid,
8855 			    no_fragmentflg,
8856 			    bundle_at,
8857 			    asconf,
8858 			    inp->sctp_lport, stcb->rport,
8859 			    htonl(stcb->asoc.peer_vtag),
8860 			    net->port, NULL,
8861 			    0, 0,
8862 			    use_zero_crc,
8863 			    so_locked))) {
8864 				/* error, we could not output */
8865 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8866 				if (from_where == 0) {
8867 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
8868 				}
8869 				if (error == ENOBUFS) {
8870 					asoc->ifp_had_enobuf = 1;
8871 					SCTP_STAT_INCR(sctps_lowlevelerr);
8872 				}
8873 				if (error == EHOSTUNREACH) {
8874 					/*
8875 					 * Destination went unreachable
8876 					 * during this send
8877 					 */
8878 					sctp_move_chunks_from_net(stcb, net);
8879 				}
8880 				asconf = 0;
8881 				*reason_code = 6;
8882 				/*-
8883 				 * I add this line to be paranoid. As far as
8884 				 * I can tell the continue, takes us back to
8885 				 * the top of the for, but just to make sure
8886 				 * I will reset these again here.
8887 				 */
8888 				ctl_cnt = 0;
8889 				continue;	/* This takes us back to the
8890 						 * for() for the nets. */
8891 			} else {
8892 				asoc->ifp_had_enobuf = 0;
8893 			}
8894 			endoutchain = NULL;
8895 			auth = NULL;
8896 			auth_offset = 0;
8897 			asconf = 0;
8898 			if (!no_out_cnt) {
8899 				*num_out += (ctl_cnt + bundle_at);
8900 			}
8901 			if (bundle_at) {
8902 				/* setup for a RTO measurement */
8903 				tsns_sent = data_list[0]->rec.data.tsn;
8904 				/* fill time if not already filled */
8905 				if (*now_filled == 0) {
8906 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8907 					*now_filled = 1;
8908 					*now = asoc->time_last_sent;
8909 				} else {
8910 					asoc->time_last_sent = *now;
8911 				}
8912 				if (net->rto_needed) {
8913 					data_list[0]->do_rtt = 1;
8914 					net->rto_needed = 0;
8915 				}
8916 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8917 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8918 			}
8919 			if (one_chunk) {
8920 				break;
8921 			}
8922 		}
8923 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8924 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8925 		}
8926 	}
8927 	if (old_start_at == NULL) {
8928 		old_start_at = start_at;
8929 		start_at = TAILQ_FIRST(&asoc->nets);
8930 		if (old_start_at)
8931 			goto again_one_more_time;
8932 	}
8933 
8934 	/*
8935 	 * At the end there should be no NON timed chunks hanging on this
8936 	 * queue.
8937 	 */
8938 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8939 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8940 	}
8941 	if ((*num_out == 0) && (*reason_code == 0)) {
8942 		*reason_code = 4;
8943 	} else {
8944 		*reason_code = 5;
8945 	}
8946 	sctp_clean_up_ctl(stcb, asoc, so_locked);
8947 	return (0);
8948 }
8949 
8950 void
8951 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8952 {
8953 	/*-
8954 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8955 	 * the control chunk queue.
8956 	 */
8957 	struct sctp_chunkhdr *hdr;
8958 	struct sctp_tmit_chunk *chk;
8959 	struct mbuf *mat, *last_mbuf;
8960 	uint32_t chunk_length;
8961 	uint16_t padding_length;
8962 
8963 	SCTP_TCB_LOCK_ASSERT(stcb);
8964 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT);
8965 	if (op_err == NULL) {
8966 		return;
8967 	}
8968 	last_mbuf = NULL;
8969 	chunk_length = 0;
8970 	for (mat = op_err; mat != NULL; mat = SCTP_BUF_NEXT(mat)) {
8971 		chunk_length += SCTP_BUF_LEN(mat);
8972 		if (SCTP_BUF_NEXT(mat) == NULL) {
8973 			last_mbuf = mat;
8974 		}
8975 	}
8976 	if (chunk_length > SCTP_MAX_CHUNK_LENGTH) {
8977 		sctp_m_freem(op_err);
8978 		return;
8979 	}
8980 	padding_length = chunk_length % 4;
8981 	if (padding_length != 0) {
8982 		padding_length = 4 - padding_length;
8983 	}
8984 	if (padding_length != 0) {
8985 		if (sctp_add_pad_tombuf(last_mbuf, padding_length) == NULL) {
8986 			sctp_m_freem(op_err);
8987 			return;
8988 		}
8989 	}
8990 	sctp_alloc_a_chunk(stcb, chk);
8991 	if (chk == NULL) {
8992 		/* no memory */
8993 		sctp_m_freem(op_err);
8994 		return;
8995 	}
8996 	chk->copy_by_ref = 0;
8997 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8998 	chk->rec.chunk_id.can_take_data = 0;
8999 	chk->flags = 0;
9000 	chk->send_size = (uint16_t)chunk_length;
9001 	chk->sent = SCTP_DATAGRAM_UNSENT;
9002 	chk->snd_count = 0;
9003 	chk->asoc = &stcb->asoc;
9004 	chk->data = op_err;
9005 	chk->whoTo = NULL;
9006 	hdr = mtod(op_err, struct sctp_chunkhdr *);
9007 	hdr->chunk_type = SCTP_OPERATION_ERROR;
9008 	hdr->chunk_flags = 0;
9009 	hdr->chunk_length = htons(chk->send_size);
9010 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9011 	chk->asoc->ctrl_queue_cnt++;
9012 }
9013 
9014 int
9015 sctp_send_cookie_echo(struct mbuf *m,
9016     int offset, int limit,
9017     struct sctp_tcb *stcb,
9018     struct sctp_nets *net)
9019 {
9020 	/*-
9021 	 * pull out the cookie and put it at the front of the control chunk
9022 	 * queue.
9023 	 */
9024 	int at;
9025 	struct mbuf *cookie;
9026 	struct sctp_paramhdr param, *phdr;
9027 	struct sctp_chunkhdr *hdr;
9028 	struct sctp_tmit_chunk *chk;
9029 	uint16_t ptype, plen;
9030 
9031 	SCTP_TCB_LOCK_ASSERT(stcb);
9032 	/* First find the cookie in the param area */
9033 	cookie = NULL;
9034 	at = offset + sizeof(struct sctp_init_chunk);
9035 	for (;;) {
9036 		phdr = sctp_get_next_param(m, at, &param, sizeof(param));
9037 		if (phdr == NULL) {
9038 			return (-3);
9039 		}
9040 		ptype = ntohs(phdr->param_type);
9041 		plen = ntohs(phdr->param_length);
9042 		if (plen < sizeof(struct sctp_paramhdr)) {
9043 			return (-6);
9044 		}
9045 		if (ptype == SCTP_STATE_COOKIE) {
9046 			int pad;
9047 
9048 			/* found the cookie */
9049 			if (at + plen > limit) {
9050 				return (-7);
9051 			}
9052 			cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT);
9053 			if (cookie == NULL) {
9054 				/* No memory */
9055 				return (-2);
9056 			}
9057 			if ((pad = (plen % 4)) > 0) {
9058 				pad = 4 - pad;
9059 			}
9060 			if (pad > 0) {
9061 				if (sctp_pad_lastmbuf(cookie, pad, NULL) == NULL) {
9062 					return (-8);
9063 				}
9064 			}
9065 #ifdef SCTP_MBUF_LOGGING
9066 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9067 				sctp_log_mbc(cookie, SCTP_MBUF_ICOPY);
9068 			}
9069 #endif
9070 			break;
9071 		}
9072 		at += SCTP_SIZE32(plen);
9073 	}
9074 	/* ok, we got the cookie lets change it into a cookie echo chunk */
9075 	/* first the change from param to cookie */
9076 	hdr = mtod(cookie, struct sctp_chunkhdr *);
9077 	hdr->chunk_type = SCTP_COOKIE_ECHO;
9078 	hdr->chunk_flags = 0;
9079 	/* get the chunk stuff now and place it in the FRONT of the queue */
9080 	sctp_alloc_a_chunk(stcb, chk);
9081 	if (chk == NULL) {
9082 		/* no memory */
9083 		sctp_m_freem(cookie);
9084 		return (-5);
9085 	}
9086 	chk->copy_by_ref = 0;
9087 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
9088 	chk->rec.chunk_id.can_take_data = 0;
9089 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9090 	chk->send_size = SCTP_SIZE32(plen);
9091 	chk->sent = SCTP_DATAGRAM_UNSENT;
9092 	chk->snd_count = 0;
9093 	chk->asoc = &stcb->asoc;
9094 	chk->data = cookie;
9095 	chk->whoTo = net;
9096 	atomic_add_int(&chk->whoTo->ref_count, 1);
9097 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
9098 	chk->asoc->ctrl_queue_cnt++;
9099 	return (0);
9100 }
9101 
9102 void
9103 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
9104     struct mbuf *m,
9105     int offset,
9106     int chk_length,
9107     struct sctp_nets *net)
9108 {
9109 	/*
9110 	 * take a HB request and make it into a HB ack and send it.
9111 	 */
9112 	struct mbuf *outchain;
9113 	struct sctp_chunkhdr *chdr;
9114 	struct sctp_tmit_chunk *chk;
9115 
9116 	if (net == NULL)
9117 		/* must have a net pointer */
9118 		return;
9119 
9120 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT);
9121 	if (outchain == NULL) {
9122 		/* gak out of memory */
9123 		return;
9124 	}
9125 #ifdef SCTP_MBUF_LOGGING
9126 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9127 		sctp_log_mbc(outchain, SCTP_MBUF_ICOPY);
9128 	}
9129 #endif
9130 	chdr = mtod(outchain, struct sctp_chunkhdr *);
9131 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
9132 	chdr->chunk_flags = 0;
9133 	if (chk_length % 4 != 0) {
9134 		sctp_pad_lastmbuf(outchain, 4 - (chk_length % 4), NULL);
9135 	}
9136 	sctp_alloc_a_chunk(stcb, chk);
9137 	if (chk == NULL) {
9138 		/* no memory */
9139 		sctp_m_freem(outchain);
9140 		return;
9141 	}
9142 	chk->copy_by_ref = 0;
9143 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
9144 	chk->rec.chunk_id.can_take_data = 1;
9145 	chk->flags = 0;
9146 	chk->send_size = chk_length;
9147 	chk->sent = SCTP_DATAGRAM_UNSENT;
9148 	chk->snd_count = 0;
9149 	chk->asoc = &stcb->asoc;
9150 	chk->data = outchain;
9151 	chk->whoTo = net;
9152 	atomic_add_int(&chk->whoTo->ref_count, 1);
9153 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9154 	chk->asoc->ctrl_queue_cnt++;
9155 }
9156 
9157 void
9158 sctp_send_cookie_ack(struct sctp_tcb *stcb)
9159 {
9160 	/* formulate and queue a cookie-ack back to sender */
9161 	struct mbuf *cookie_ack;
9162 	struct sctp_chunkhdr *hdr;
9163 	struct sctp_tmit_chunk *chk;
9164 
9165 	SCTP_TCB_LOCK_ASSERT(stcb);
9166 
9167 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
9168 	if (cookie_ack == NULL) {
9169 		/* no mbuf's */
9170 		return;
9171 	}
9172 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
9173 	sctp_alloc_a_chunk(stcb, chk);
9174 	if (chk == NULL) {
9175 		/* no memory */
9176 		sctp_m_freem(cookie_ack);
9177 		return;
9178 	}
9179 	chk->copy_by_ref = 0;
9180 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
9181 	chk->rec.chunk_id.can_take_data = 1;
9182 	chk->flags = 0;
9183 	chk->send_size = sizeof(struct sctp_chunkhdr);
9184 	chk->sent = SCTP_DATAGRAM_UNSENT;
9185 	chk->snd_count = 0;
9186 	chk->asoc = &stcb->asoc;
9187 	chk->data = cookie_ack;
9188 	if (chk->asoc->last_control_chunk_from != NULL) {
9189 		chk->whoTo = chk->asoc->last_control_chunk_from;
9190 		atomic_add_int(&chk->whoTo->ref_count, 1);
9191 	} else {
9192 		chk->whoTo = NULL;
9193 	}
9194 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
9195 	hdr->chunk_type = SCTP_COOKIE_ACK;
9196 	hdr->chunk_flags = 0;
9197 	hdr->chunk_length = htons(chk->send_size);
9198 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
9199 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9200 	chk->asoc->ctrl_queue_cnt++;
9201 	return;
9202 }
9203 
9204 void
9205 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
9206 {
9207 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
9208 	struct mbuf *m_shutdown_ack;
9209 	struct sctp_shutdown_ack_chunk *ack_cp;
9210 	struct sctp_tmit_chunk *chk;
9211 
9212 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9213 	if (m_shutdown_ack == NULL) {
9214 		/* no mbuf's */
9215 		return;
9216 	}
9217 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9218 	sctp_alloc_a_chunk(stcb, chk);
9219 	if (chk == NULL) {
9220 		/* no memory */
9221 		sctp_m_freem(m_shutdown_ack);
9222 		return;
9223 	}
9224 	chk->copy_by_ref = 0;
9225 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9226 	chk->rec.chunk_id.can_take_data = 1;
9227 	chk->flags = 0;
9228 	chk->send_size = sizeof(struct sctp_chunkhdr);
9229 	chk->sent = SCTP_DATAGRAM_UNSENT;
9230 	chk->snd_count = 0;
9231 	chk->asoc = &stcb->asoc;
9232 	chk->data = m_shutdown_ack;
9233 	chk->whoTo = net;
9234 	if (chk->whoTo) {
9235 		atomic_add_int(&chk->whoTo->ref_count, 1);
9236 	}
9237 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9238 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9239 	ack_cp->ch.chunk_flags = 0;
9240 	ack_cp->ch.chunk_length = htons(chk->send_size);
9241 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9242 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9243 	chk->asoc->ctrl_queue_cnt++;
9244 	return;
9245 }
9246 
9247 void
9248 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9249 {
9250 	/* formulate and queue a SHUTDOWN to the sender */
9251 	struct mbuf *m_shutdown;
9252 	struct sctp_shutdown_chunk *shutdown_cp;
9253 	struct sctp_tmit_chunk *chk;
9254 
9255 	TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) {
9256 		if (chk->rec.chunk_id.id == SCTP_SHUTDOWN) {
9257 			/* We already have a SHUTDOWN queued. Reuse it. */
9258 			if (chk->whoTo) {
9259 				sctp_free_remote_addr(chk->whoTo);
9260 				chk->whoTo = NULL;
9261 			}
9262 			break;
9263 		}
9264 	}
9265 	if (chk == NULL) {
9266 		m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9267 		if (m_shutdown == NULL) {
9268 			/* no mbuf's */
9269 			return;
9270 		}
9271 		SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9272 		sctp_alloc_a_chunk(stcb, chk);
9273 		if (chk == NULL) {
9274 			/* no memory */
9275 			sctp_m_freem(m_shutdown);
9276 			return;
9277 		}
9278 		chk->copy_by_ref = 0;
9279 		chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9280 		chk->rec.chunk_id.can_take_data = 1;
9281 		chk->flags = 0;
9282 		chk->send_size = sizeof(struct sctp_shutdown_chunk);
9283 		chk->sent = SCTP_DATAGRAM_UNSENT;
9284 		chk->snd_count = 0;
9285 		chk->asoc = &stcb->asoc;
9286 		chk->data = m_shutdown;
9287 		chk->whoTo = net;
9288 		if (chk->whoTo) {
9289 			atomic_add_int(&chk->whoTo->ref_count, 1);
9290 		}
9291 		shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9292 		shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9293 		shutdown_cp->ch.chunk_flags = 0;
9294 		shutdown_cp->ch.chunk_length = htons(chk->send_size);
9295 		shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9296 		SCTP_BUF_LEN(m_shutdown) = chk->send_size;
9297 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9298 		chk->asoc->ctrl_queue_cnt++;
9299 	} else {
9300 		TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, sctp_next);
9301 		chk->whoTo = net;
9302 		if (chk->whoTo) {
9303 			atomic_add_int(&chk->whoTo->ref_count, 1);
9304 		}
9305 		shutdown_cp = mtod(chk->data, struct sctp_shutdown_chunk *);
9306 		shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9307 		TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
9308 	}
9309 	return;
9310 }
9311 
9312 void
9313 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9314 {
9315 	/*
9316 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
9317 	 * should be queued on the assoc queue.
9318 	 */
9319 	struct sctp_tmit_chunk *chk;
9320 	struct mbuf *m_asconf;
9321 	int len;
9322 
9323 	SCTP_TCB_LOCK_ASSERT(stcb);
9324 
9325 	if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9326 	    (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9327 		/* can't send a new one if there is one in flight already */
9328 		return;
9329 	}
9330 
9331 	/* compose an ASCONF chunk, maximum length is PMTU */
9332 	m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9333 	if (m_asconf == NULL) {
9334 		return;
9335 	}
9336 
9337 	sctp_alloc_a_chunk(stcb, chk);
9338 	if (chk == NULL) {
9339 		/* no memory */
9340 		sctp_m_freem(m_asconf);
9341 		return;
9342 	}
9343 
9344 	chk->copy_by_ref = 0;
9345 	chk->rec.chunk_id.id = SCTP_ASCONF;
9346 	chk->rec.chunk_id.can_take_data = 0;
9347 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9348 	chk->data = m_asconf;
9349 	chk->send_size = len;
9350 	chk->sent = SCTP_DATAGRAM_UNSENT;
9351 	chk->snd_count = 0;
9352 	chk->asoc = &stcb->asoc;
9353 	chk->whoTo = net;
9354 	if (chk->whoTo) {
9355 		atomic_add_int(&chk->whoTo->ref_count, 1);
9356 	}
9357 	TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9358 	chk->asoc->ctrl_queue_cnt++;
9359 	return;
9360 }
9361 
9362 void
9363 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9364 {
9365 	/*
9366 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
9367 	 * must be stored in the tcb.
9368 	 */
9369 	struct sctp_tmit_chunk *chk;
9370 	struct sctp_asconf_ack *ack, *latest_ack;
9371 	struct mbuf *m_ack;
9372 	struct sctp_nets *net = NULL;
9373 
9374 	SCTP_TCB_LOCK_ASSERT(stcb);
9375 	/* Get the latest ASCONF-ACK */
9376 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9377 	if (latest_ack == NULL) {
9378 		return;
9379 	}
9380 	if (latest_ack->last_sent_to != NULL &&
9381 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9382 		/* we're doing a retransmission */
9383 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9384 		if (net == NULL) {
9385 			/* no alternate */
9386 			if (stcb->asoc.last_control_chunk_from == NULL) {
9387 				if (stcb->asoc.alternate) {
9388 					net = stcb->asoc.alternate;
9389 				} else {
9390 					net = stcb->asoc.primary_destination;
9391 				}
9392 			} else {
9393 				net = stcb->asoc.last_control_chunk_from;
9394 			}
9395 		}
9396 	} else {
9397 		/* normal case */
9398 		if (stcb->asoc.last_control_chunk_from == NULL) {
9399 			if (stcb->asoc.alternate) {
9400 				net = stcb->asoc.alternate;
9401 			} else {
9402 				net = stcb->asoc.primary_destination;
9403 			}
9404 		} else {
9405 			net = stcb->asoc.last_control_chunk_from;
9406 		}
9407 	}
9408 	latest_ack->last_sent_to = net;
9409 
9410 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9411 		if (ack->data == NULL) {
9412 			continue;
9413 		}
9414 
9415 		/* copy the asconf_ack */
9416 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9417 		if (m_ack == NULL) {
9418 			/* couldn't copy it */
9419 			return;
9420 		}
9421 #ifdef SCTP_MBUF_LOGGING
9422 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9423 			sctp_log_mbc(m_ack, SCTP_MBUF_ICOPY);
9424 		}
9425 #endif
9426 
9427 		sctp_alloc_a_chunk(stcb, chk);
9428 		if (chk == NULL) {
9429 			/* no memory */
9430 			if (m_ack)
9431 				sctp_m_freem(m_ack);
9432 			return;
9433 		}
9434 		chk->copy_by_ref = 0;
9435 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9436 		chk->rec.chunk_id.can_take_data = 1;
9437 		chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9438 		chk->whoTo = net;
9439 		if (chk->whoTo) {
9440 			atomic_add_int(&chk->whoTo->ref_count, 1);
9441 		}
9442 		chk->data = m_ack;
9443 		chk->send_size = ack->len;
9444 		chk->sent = SCTP_DATAGRAM_UNSENT;
9445 		chk->snd_count = 0;
9446 		chk->asoc = &stcb->asoc;
9447 
9448 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9449 		chk->asoc->ctrl_queue_cnt++;
9450 	}
9451 	return;
9452 }
9453 
9454 static int
9455 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9456     struct sctp_tcb *stcb,
9457     struct sctp_association *asoc,
9458     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked)
9459 {
9460 	/*-
9461 	 * send out one MTU of retransmission. If fast_retransmit is
9462 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
9463 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
9464 	 * retransmit them by themselves.
9465 	 *
9466 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
9467 	 * marked for resend and bundle them all together (up to a MTU of
9468 	 * destination). The address to send to should have been
9469 	 * selected/changed where the retransmission was marked (i.e. in FR
9470 	 * or t3-timeout routines).
9471 	 */
9472 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9473 	struct sctp_tmit_chunk *chk, *fwd;
9474 	struct mbuf *m, *endofchain;
9475 	struct sctp_nets *net = NULL;
9476 	uint32_t tsns_sent = 0;
9477 	int no_fragmentflg, bundle_at;
9478 	unsigned int mtu;
9479 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9480 	struct sctp_auth_chunk *auth = NULL;
9481 	uint32_t auth_offset = 0;
9482 	uint16_t auth_keyid;
9483 	int override_ok = 1;
9484 	int data_auth_reqd = 0;
9485 	uint32_t dmtu = 0;
9486 	bool use_zero_crc;
9487 
9488 	SCTP_TCB_LOCK_ASSERT(stcb);
9489 	tmr_started = ctl_cnt = 0;
9490 	no_fragmentflg = 1;
9491 	fwd_tsn = 0;
9492 	*cnt_out = 0;
9493 	fwd = NULL;
9494 	endofchain = m = NULL;
9495 	auth_keyid = stcb->asoc.authinfo.active_keyid;
9496 #ifdef SCTP_AUDITING_ENABLED
9497 	sctp_audit_log(0xC3, 1);
9498 #endif
9499 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9500 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
9501 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9502 		    asoc->sent_queue_retran_cnt);
9503 		asoc->sent_queue_cnt = 0;
9504 		asoc->sent_queue_cnt_removeable = 0;
9505 		/* send back 0/0 so we enter normal transmission */
9506 		*cnt_out = 0;
9507 		return (0);
9508 	}
9509 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9510 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9511 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9512 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9513 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
9514 				continue;
9515 			}
9516 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9517 				if (chk != asoc->str_reset) {
9518 					/*
9519 					 * not eligible for retran if its
9520 					 * not ours
9521 					 */
9522 					continue;
9523 				}
9524 			}
9525 			ctl_cnt++;
9526 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9527 				fwd_tsn = 1;
9528 			}
9529 			/*
9530 			 * Add an AUTH chunk, if chunk requires it save the
9531 			 * offset into the chain for AUTH
9532 			 */
9533 			if ((auth == NULL) &&
9534 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9535 			    stcb->asoc.peer_auth_chunks))) {
9536 				m = sctp_add_auth_chunk(m, &endofchain,
9537 				    &auth, &auth_offset,
9538 				    stcb,
9539 				    chk->rec.chunk_id.id);
9540 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9541 			}
9542 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9543 			break;
9544 		}
9545 	}
9546 	one_chunk = 0;
9547 	/* do we have control chunks to retransmit? */
9548 	if (m != NULL) {
9549 		/* Start a timer no matter if we succeed or fail */
9550 		switch (asoc->snd_edmid) {
9551 		case SCTP_EDMID_LOWER_LAYER_DTLS:
9552 			use_zero_crc = true;
9553 			break;
9554 		default:
9555 			use_zero_crc = false;
9556 			break;
9557 		}
9558 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9559 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9560 			use_zero_crc = false;
9561 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF) {
9562 			/* XXXMT: Can this happen? */
9563 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9564 			use_zero_crc = false;
9565 		}
9566 		chk->snd_count++;	/* update our count */
9567 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9568 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9569 		    auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9570 		    no_fragmentflg, 0, 0,
9571 		    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9572 		    chk->whoTo->port, NULL,
9573 		    0, 0,
9574 		    use_zero_crc,
9575 		    so_locked))) {
9576 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
9577 			if (error == ENOBUFS) {
9578 				asoc->ifp_had_enobuf = 1;
9579 				SCTP_STAT_INCR(sctps_lowlevelerr);
9580 			}
9581 			return (error);
9582 		} else {
9583 			asoc->ifp_had_enobuf = 0;
9584 		}
9585 		endofchain = NULL;
9586 		auth = NULL;
9587 		auth_offset = 0;
9588 		/*
9589 		 * We don't want to mark the net->sent time here since this
9590 		 * we use this for HB and retrans cannot measure RTT
9591 		 */
9592 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9593 		*cnt_out += 1;
9594 		chk->sent = SCTP_DATAGRAM_SENT;
9595 		sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9596 		if (fwd_tsn == 0) {
9597 			return (0);
9598 		} else {
9599 			/* Clean up the fwd-tsn list */
9600 			sctp_clean_up_ctl(stcb, asoc, so_locked);
9601 			return (0);
9602 		}
9603 	}
9604 	/*
9605 	 * Ok, it is just data retransmission we need to do or that and a
9606 	 * fwd-tsn with it all.
9607 	 */
9608 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
9609 		return (SCTP_RETRAN_DONE);
9610 	}
9611 	if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED) ||
9612 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT)) {
9613 		/* not yet open, resend the cookie and that is it */
9614 		return (1);
9615 	}
9616 #ifdef SCTP_AUDITING_ENABLED
9617 	sctp_auditing(20, inp, stcb, NULL);
9618 #endif
9619 	data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9620 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9621 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
9622 			/* No, not sent to this net or not ready for rtx */
9623 			continue;
9624 		}
9625 		if (chk->data == NULL) {
9626 			SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9627 			    chk->rec.data.tsn, chk->snd_count, chk->sent);
9628 			continue;
9629 		}
9630 		if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9631 		    (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9632 			struct mbuf *op_err;
9633 			char msg[SCTP_DIAG_INFO_LEN];
9634 
9635 			SCTP_SNPRINTF(msg, sizeof(msg), "TSN %8.8x retransmitted %d times, giving up",
9636 			    chk->rec.data.tsn, chk->snd_count);
9637 			op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
9638 			    msg);
9639 			atomic_add_int(&stcb->asoc.refcnt, 1);
9640 			sctp_abort_an_association(stcb->sctp_ep, stcb, op_err,
9641 			    false, so_locked);
9642 			SCTP_TCB_LOCK(stcb);
9643 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
9644 			return (SCTP_RETRAN_EXIT);
9645 		}
9646 		/* pick up the net */
9647 		net = chk->whoTo;
9648 		switch (net->ro._l_addr.sa.sa_family) {
9649 #ifdef INET
9650 		case AF_INET:
9651 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9652 			break;
9653 #endif
9654 #ifdef INET6
9655 		case AF_INET6:
9656 			mtu = net->mtu - SCTP_MIN_OVERHEAD;
9657 			break;
9658 #endif
9659 		default:
9660 			/* TSNH */
9661 			mtu = net->mtu;
9662 			break;
9663 		}
9664 
9665 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9666 			/* No room in peers rwnd */
9667 			uint32_t tsn;
9668 
9669 			tsn = asoc->last_acked_seq + 1;
9670 			if (tsn == chk->rec.data.tsn) {
9671 				/*
9672 				 * we make a special exception for this
9673 				 * case. The peer has no rwnd but is missing
9674 				 * the lowest chunk.. which is probably what
9675 				 * is holding up the rwnd.
9676 				 */
9677 				goto one_chunk_around;
9678 			}
9679 			return (1);
9680 		}
9681 one_chunk_around:
9682 		if (asoc->peers_rwnd < mtu) {
9683 			one_chunk = 1;
9684 			if ((asoc->peers_rwnd == 0) &&
9685 			    (asoc->total_flight == 0)) {
9686 				chk->window_probe = 1;
9687 				chk->whoTo->window_probe = 1;
9688 			}
9689 		}
9690 #ifdef SCTP_AUDITING_ENABLED
9691 		sctp_audit_log(0xC3, 2);
9692 #endif
9693 		bundle_at = 0;
9694 		m = NULL;
9695 		net->fast_retran_ip = 0;
9696 		if (chk->rec.data.doing_fast_retransmit == 0) {
9697 			/*
9698 			 * if no FR in progress skip destination that have
9699 			 * flight_size > cwnd.
9700 			 */
9701 			if (net->flight_size >= net->cwnd) {
9702 				continue;
9703 			}
9704 		} else {
9705 			/*
9706 			 * Mark the destination net to have FR recovery
9707 			 * limits put on it.
9708 			 */
9709 			*fr_done = 1;
9710 			net->fast_retran_ip = 1;
9711 		}
9712 
9713 		/*
9714 		 * if no AUTH is yet included and this chunk requires it,
9715 		 * make sure to account for it.  We don't apply the size
9716 		 * until the AUTH chunk is actually added below in case
9717 		 * there is no room for this chunk.
9718 		 */
9719 		if (data_auth_reqd && (auth == NULL)) {
9720 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9721 		} else
9722 			dmtu = 0;
9723 
9724 		if ((chk->send_size <= (mtu - dmtu)) ||
9725 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9726 			/* ok we will add this one */
9727 			if (data_auth_reqd) {
9728 				if (auth == NULL) {
9729 					m = sctp_add_auth_chunk(m,
9730 					    &endofchain,
9731 					    &auth,
9732 					    &auth_offset,
9733 					    stcb,
9734 					    SCTP_DATA);
9735 					auth_keyid = chk->auth_keyid;
9736 					override_ok = 0;
9737 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9738 				} else if (override_ok) {
9739 					auth_keyid = chk->auth_keyid;
9740 					override_ok = 0;
9741 				} else if (chk->auth_keyid != auth_keyid) {
9742 					/* different keyid, so done bundling */
9743 					break;
9744 				}
9745 			}
9746 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9747 			if (m == NULL) {
9748 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9749 				return (ENOMEM);
9750 			}
9751 			/* Do clear IP_DF ? */
9752 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9753 				no_fragmentflg = 0;
9754 			}
9755 			/* update our MTU size */
9756 			if (mtu > (chk->send_size + dmtu))
9757 				mtu -= (chk->send_size + dmtu);
9758 			else
9759 				mtu = 0;
9760 			data_list[bundle_at++] = chk;
9761 			if (one_chunk && (asoc->total_flight <= 0)) {
9762 				SCTP_STAT_INCR(sctps_windowprobed);
9763 			}
9764 		}
9765 		if (one_chunk == 0) {
9766 			/*
9767 			 * now are there anymore forward from chk to pick
9768 			 * up?
9769 			 */
9770 			for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9771 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9772 					/* Nope, not for retran */
9773 					continue;
9774 				}
9775 				if (fwd->whoTo != net) {
9776 					/* Nope, not the net in question */
9777 					continue;
9778 				}
9779 				if (data_auth_reqd && (auth == NULL)) {
9780 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9781 				} else
9782 					dmtu = 0;
9783 				if (fwd->send_size <= (mtu - dmtu)) {
9784 					if (data_auth_reqd) {
9785 						if (auth == NULL) {
9786 							m = sctp_add_auth_chunk(m,
9787 							    &endofchain,
9788 							    &auth,
9789 							    &auth_offset,
9790 							    stcb,
9791 							    SCTP_DATA);
9792 							auth_keyid = fwd->auth_keyid;
9793 							override_ok = 0;
9794 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9795 						} else if (override_ok) {
9796 							auth_keyid = fwd->auth_keyid;
9797 							override_ok = 0;
9798 						} else if (fwd->auth_keyid != auth_keyid) {
9799 							/*
9800 							 * different keyid,
9801 							 * so done bundling
9802 							 */
9803 							break;
9804 						}
9805 					}
9806 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9807 					if (m == NULL) {
9808 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9809 						return (ENOMEM);
9810 					}
9811 					/* Do clear IP_DF ? */
9812 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9813 						no_fragmentflg = 0;
9814 					}
9815 					/* update our MTU size */
9816 					if (mtu > (fwd->send_size + dmtu))
9817 						mtu -= (fwd->send_size + dmtu);
9818 					else
9819 						mtu = 0;
9820 					data_list[bundle_at++] = fwd;
9821 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9822 						break;
9823 					}
9824 				} else {
9825 					/* can't fit so we are done */
9826 					break;
9827 				}
9828 			}
9829 		}
9830 		/* Is there something to send for this destination? */
9831 		if (m) {
9832 			/*
9833 			 * No matter if we fail/or succeed we should start a
9834 			 * timer. A failure is like a lost IP packet :-)
9835 			 */
9836 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9837 				/*
9838 				 * no timer running on this destination
9839 				 * restart it.
9840 				 */
9841 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9842 				tmr_started = 1;
9843 			}
9844 			switch (asoc->snd_edmid) {
9845 			case SCTP_EDMID_LOWER_LAYER_DTLS:
9846 				use_zero_crc = true;
9847 				break;
9848 			default:
9849 				use_zero_crc = false;
9850 				break;
9851 			}
9852 			/* Now lets send it, if there is anything to send :> */
9853 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9854 			    (struct sockaddr *)&net->ro._l_addr, m,
9855 			    auth_offset, auth, auth_keyid,
9856 			    no_fragmentflg, 0, 0,
9857 			    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9858 			    net->port, NULL,
9859 			    0, 0,
9860 			    use_zero_crc,
9861 			    so_locked))) {
9862 				/* error, we could not output */
9863 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
9864 				if (error == ENOBUFS) {
9865 					asoc->ifp_had_enobuf = 1;
9866 					SCTP_STAT_INCR(sctps_lowlevelerr);
9867 				}
9868 				return (error);
9869 			} else {
9870 				asoc->ifp_had_enobuf = 0;
9871 			}
9872 			endofchain = NULL;
9873 			auth = NULL;
9874 			auth_offset = 0;
9875 			/* For HB's */
9876 			/*
9877 			 * We don't want to mark the net->sent time here
9878 			 * since this we use this for HB and retrans cannot
9879 			 * measure RTT
9880 			 */
9881 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9882 
9883 			/* For auto-close */
9884 			if (*now_filled == 0) {
9885 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9886 				*now = asoc->time_last_sent;
9887 				*now_filled = 1;
9888 			} else {
9889 				asoc->time_last_sent = *now;
9890 			}
9891 			*cnt_out += bundle_at;
9892 #ifdef SCTP_AUDITING_ENABLED
9893 			sctp_audit_log(0xC4, bundle_at);
9894 #endif
9895 			if (bundle_at) {
9896 				tsns_sent = data_list[0]->rec.data.tsn;
9897 			}
9898 			for (i = 0; i < bundle_at; i++) {
9899 				SCTP_STAT_INCR(sctps_sendretransdata);
9900 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
9901 				/*
9902 				 * When we have a revoked data, and we
9903 				 * retransmit it, then we clear the revoked
9904 				 * flag since this flag dictates if we
9905 				 * subtracted from the fs
9906 				 */
9907 				if (data_list[i]->rec.data.chunk_was_revoked) {
9908 					/* Deflate the cwnd */
9909 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9910 					data_list[i]->rec.data.chunk_was_revoked = 0;
9911 				}
9912 				data_list[i]->snd_count++;
9913 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9914 				/* record the time */
9915 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
9916 				if (data_list[i]->book_size_scale) {
9917 					/*
9918 					 * need to double the book size on
9919 					 * this one
9920 					 */
9921 					data_list[i]->book_size_scale = 0;
9922 					/*
9923 					 * Since we double the booksize, we
9924 					 * must also double the output queue
9925 					 * size, since this get shrunk when
9926 					 * we free by this amount.
9927 					 */
9928 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9929 					data_list[i]->book_size *= 2;
9930 				} else {
9931 					if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9932 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9933 						    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9934 					}
9935 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9936 					    (uint32_t)(data_list[i]->send_size +
9937 					    SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9938 				}
9939 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9940 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9941 					    data_list[i]->whoTo->flight_size,
9942 					    data_list[i]->book_size,
9943 					    (uint32_t)(uintptr_t)data_list[i]->whoTo,
9944 					    data_list[i]->rec.data.tsn);
9945 				}
9946 				sctp_flight_size_increase(data_list[i]);
9947 				sctp_total_flight_increase(stcb, data_list[i]);
9948 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9949 					/* SWS sender side engages */
9950 					asoc->peers_rwnd = 0;
9951 				}
9952 				if ((i == 0) &&
9953 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
9954 					SCTP_STAT_INCR(sctps_sendfastretrans);
9955 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9956 					    (tmr_started == 0)) {
9957 						/*-
9958 						 * ok we just fast-retrans'd
9959 						 * the lowest TSN, i.e the
9960 						 * first on the list. In
9961 						 * this case we want to give
9962 						 * some more time to get a
9963 						 * SACK back without a
9964 						 * t3-expiring.
9965 						 */
9966 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9967 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2);
9968 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9969 					}
9970 				}
9971 			}
9972 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9973 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9974 			}
9975 #ifdef SCTP_AUDITING_ENABLED
9976 			sctp_auditing(21, inp, stcb, NULL);
9977 #endif
9978 		} else {
9979 			/* None will fit */
9980 			return (1);
9981 		}
9982 		if (asoc->sent_queue_retran_cnt <= 0) {
9983 			/* all done we have no more to retran */
9984 			asoc->sent_queue_retran_cnt = 0;
9985 			break;
9986 		}
9987 		if (one_chunk) {
9988 			/* No more room in rwnd */
9989 			return (1);
9990 		}
9991 		/* stop the for loop here. we sent out a packet */
9992 		break;
9993 	}
9994 	return (0);
9995 }
9996 
9997 static void
9998 sctp_timer_validation(struct sctp_inpcb *inp,
9999     struct sctp_tcb *stcb,
10000     struct sctp_association *asoc)
10001 {
10002 	struct sctp_nets *net;
10003 
10004 	/* Validate that a timer is running somewhere */
10005 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
10006 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
10007 			/* Here is a timer */
10008 			return;
10009 		}
10010 	}
10011 	SCTP_TCB_LOCK_ASSERT(stcb);
10012 	/* Gak, we did not have a timer somewhere */
10013 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
10014 	if (asoc->alternate) {
10015 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
10016 	} else {
10017 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
10018 	}
10019 	return;
10020 }
10021 
10022 void
10023 sctp_chunk_output(struct sctp_inpcb *inp,
10024     struct sctp_tcb *stcb,
10025     int from_where,
10026     int so_locked)
10027 {
10028 	/*-
10029 	 * Ok this is the generic chunk service queue. we must do the
10030 	 * following:
10031 	 * - See if there are retransmits pending, if so we must
10032 	 *   do these first.
10033 	 * - Service the stream queue that is next, moving any
10034 	 *   message (note I must get a complete message i.e.
10035 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
10036 	 *   TSN's
10037 	 * - Check to see if the cwnd/rwnd allows any output, if so we
10038 	 *   go ahead and formulate and send the low level chunks. Making sure
10039 	 *   to combine any control in the control chunk queue also.
10040 	 */
10041 	struct sctp_association *asoc;
10042 	struct sctp_nets *net;
10043 	int error = 0, num_out, tot_out = 0, ret = 0, reason_code;
10044 	unsigned int burst_cnt = 0;
10045 	struct timeval now;
10046 	int now_filled = 0;
10047 	int nagle_on;
10048 	uint32_t frag_point = sctp_get_frag_point(stcb);
10049 	int un_sent = 0;
10050 	int fr_done;
10051 	unsigned int tot_frs = 0;
10052 
10053 	asoc = &stcb->asoc;
10054 do_it_again:
10055 	/* The Nagle algorithm is only applied when handling a send call. */
10056 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
10057 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
10058 			nagle_on = 0;
10059 		} else {
10060 			nagle_on = 1;
10061 		}
10062 	} else {
10063 		nagle_on = 0;
10064 	}
10065 	SCTP_TCB_LOCK_ASSERT(stcb);
10066 
10067 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
10068 
10069 	if ((un_sent <= 0) &&
10070 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
10071 	    (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
10072 	    (asoc->sent_queue_retran_cnt == 0) &&
10073 	    (asoc->trigger_reset == 0)) {
10074 		/* Nothing to do unless there is something to be sent left */
10075 		return;
10076 	}
10077 	/*
10078 	 * Do we have something to send, data or control AND a sack timer
10079 	 * running, if so piggy-back the sack.
10080 	 */
10081 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
10082 		sctp_send_sack(stcb, so_locked);
10083 		sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, NULL,
10084 		    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3);
10085 	}
10086 	while (asoc->sent_queue_retran_cnt) {
10087 		/*-
10088 		 * Ok, it is retransmission time only, we send out only ONE
10089 		 * packet with a single call off to the retran code.
10090 		 */
10091 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
10092 			/*-
10093 			 * Special hook for handling cookies discarded
10094 			 * by peer that carried data. Send cookie-ack only
10095 			 * and then the next call with get the retran's.
10096 			 */
10097 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10098 			    from_where,
10099 			    &now, &now_filled, frag_point, so_locked);
10100 			return;
10101 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
10102 			/* if its not from a HB then do it */
10103 			fr_done = 0;
10104 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
10105 			if (fr_done) {
10106 				tot_frs++;
10107 			}
10108 		} else {
10109 			/*
10110 			 * its from any other place, we don't allow retran
10111 			 * output (only control)
10112 			 */
10113 			ret = 1;
10114 		}
10115 		if (ret > 0) {
10116 			/* Can't send anymore */
10117 			/*-
10118 			 * now lets push out control by calling med-level
10119 			 * output once. this assures that we WILL send HB's
10120 			 * if queued too.
10121 			 */
10122 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10123 			    from_where,
10124 			    &now, &now_filled, frag_point, so_locked);
10125 #ifdef SCTP_AUDITING_ENABLED
10126 			sctp_auditing(8, inp, stcb, NULL);
10127 #endif
10128 			sctp_timer_validation(inp, stcb, asoc);
10129 			return;
10130 		}
10131 		if (ret < 0) {
10132 			/*-
10133 			 * The count was off.. retran is not happening so do
10134 			 * the normal retransmission.
10135 			 */
10136 #ifdef SCTP_AUDITING_ENABLED
10137 			sctp_auditing(9, inp, stcb, NULL);
10138 #endif
10139 			if (ret == SCTP_RETRAN_EXIT) {
10140 				return;
10141 			}
10142 			break;
10143 		}
10144 		if (from_where == SCTP_OUTPUT_FROM_T3) {
10145 			/* Only one transmission allowed out of a timeout */
10146 #ifdef SCTP_AUDITING_ENABLED
10147 			sctp_auditing(10, inp, stcb, NULL);
10148 #endif
10149 			/* Push out any control */
10150 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
10151 			    &now, &now_filled, frag_point, so_locked);
10152 			return;
10153 		}
10154 		if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
10155 			/* Hit FR burst limit */
10156 			return;
10157 		}
10158 		if ((num_out == 0) && (ret == 0)) {
10159 			/* No more retrans to send */
10160 			break;
10161 		}
10162 	}
10163 #ifdef SCTP_AUDITING_ENABLED
10164 	sctp_auditing(12, inp, stcb, NULL);
10165 #endif
10166 	/* Check for bad destinations, if they exist move chunks around. */
10167 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
10168 		if ((net->dest_state & SCTP_ADDR_REACHABLE) == 0) {
10169 			/*-
10170 			 * if possible move things off of this address we
10171 			 * still may send below due to the dormant state but
10172 			 * we try to find an alternate address to send to
10173 			 * and if we have one we move all queued data on the
10174 			 * out wheel to this alternate address.
10175 			 */
10176 			if (net->ref_count > 1)
10177 				sctp_move_chunks_from_net(stcb, net);
10178 		} else {
10179 			/*-
10180 			 * if ((asoc->sat_network) || (net->addr_is_local))
10181 			 * { burst_limit = asoc->max_burst *
10182 			 * SCTP_SAT_NETWORK_BURST_INCR; }
10183 			 */
10184 			if (asoc->max_burst > 0) {
10185 				if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
10186 					if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
10187 						/*
10188 						 * JRS - Use the congestion
10189 						 * control given in the
10190 						 * congestion control module
10191 						 */
10192 						asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
10193 						if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10194 							sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
10195 						}
10196 						SCTP_STAT_INCR(sctps_maxburstqueued);
10197 					}
10198 					net->fast_retran_ip = 0;
10199 				} else {
10200 					if (net->flight_size == 0) {
10201 						/*
10202 						 * Should be decaying the
10203 						 * cwnd here
10204 						 */
10205 						;
10206 					}
10207 				}
10208 			}
10209 		}
10210 	}
10211 	burst_cnt = 0;
10212 	do {
10213 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
10214 		    &reason_code, 0, from_where,
10215 		    &now, &now_filled, frag_point, so_locked);
10216 		if (error) {
10217 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
10218 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10219 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
10220 			}
10221 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10222 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
10223 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
10224 			}
10225 			break;
10226 		}
10227 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
10228 
10229 		tot_out += num_out;
10230 		burst_cnt++;
10231 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10232 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
10233 			if (num_out == 0) {
10234 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
10235 			}
10236 		}
10237 		if (nagle_on) {
10238 			/*
10239 			 * When the Nagle algorithm is used, look at how
10240 			 * much is unsent, then if its smaller than an MTU
10241 			 * and we have data in flight we stop, except if we
10242 			 * are handling a fragmented user message.
10243 			 */
10244 			un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight;
10245 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
10246 			    (stcb->asoc.total_flight > 0)) {
10247 /*	&&		     sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {*/
10248 				break;
10249 			}
10250 		}
10251 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
10252 		    TAILQ_EMPTY(&asoc->send_queue) &&
10253 		    sctp_is_there_unsent_data(stcb, so_locked) == 0) {
10254 			/* Nothing left to send */
10255 			break;
10256 		}
10257 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10258 			/* Nothing left to send */
10259 			break;
10260 		}
10261 	} while (num_out &&
10262 	    ((asoc->max_burst == 0) ||
10263 	    SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10264 	    (burst_cnt < asoc->max_burst)));
10265 
10266 	if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10267 		if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10268 			SCTP_STAT_INCR(sctps_maxburstqueued);
10269 			asoc->burst_limit_applied = 1;
10270 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10271 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10272 			}
10273 		} else {
10274 			asoc->burst_limit_applied = 0;
10275 		}
10276 	}
10277 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10278 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10279 	}
10280 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10281 	    tot_out);
10282 
10283 	/*-
10284 	 * Now we need to clean up the control chunk chain if a ECNE is on
10285 	 * it. It must be marked as UNSENT again so next call will continue
10286 	 * to send it until such time that we get a CWR, to remove it.
10287 	 */
10288 	if (stcb->asoc.ecn_echo_cnt_onq)
10289 		sctp_fix_ecn_echo(asoc);
10290 
10291 	if (stcb->asoc.trigger_reset) {
10292 		if (sctp_send_stream_reset_out_if_possible(stcb, so_locked) == 0) {
10293 			goto do_it_again;
10294 		}
10295 	}
10296 	return;
10297 }
10298 
10299 int
10300 sctp_output(
10301     struct sctp_inpcb *inp,
10302     struct mbuf *m,
10303     struct sockaddr *addr,
10304     struct mbuf *control,
10305     struct thread *p,
10306     int flags)
10307 {
10308 	if (inp == NULL) {
10309 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10310 		return (EINVAL);
10311 	}
10312 
10313 	if (inp->sctp_socket == NULL) {
10314 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10315 		return (EINVAL);
10316 	}
10317 	return (sctp_sosend(inp->sctp_socket,
10318 	    addr,
10319 	    (struct uio *)NULL,
10320 	    m,
10321 	    control,
10322 	    flags, p
10323 	    ));
10324 }
10325 
10326 void
10327 send_forward_tsn(struct sctp_tcb *stcb,
10328     struct sctp_association *asoc)
10329 {
10330 	struct sctp_tmit_chunk *chk, *at, *tp1, *last;
10331 	struct sctp_forward_tsn_chunk *fwdtsn;
10332 	struct sctp_strseq *strseq;
10333 	struct sctp_strseq_mid *strseq_m;
10334 	uint32_t advance_peer_ack_point;
10335 	unsigned int cnt_of_space, i, ovh;
10336 	unsigned int space_needed;
10337 	unsigned int cnt_of_skipped = 0;
10338 
10339 	SCTP_TCB_LOCK_ASSERT(stcb);
10340 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10341 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10342 			/* mark it to unsent */
10343 			chk->sent = SCTP_DATAGRAM_UNSENT;
10344 			chk->snd_count = 0;
10345 			/* Do we correct its output location? */
10346 			if (chk->whoTo) {
10347 				sctp_free_remote_addr(chk->whoTo);
10348 				chk->whoTo = NULL;
10349 			}
10350 			goto sctp_fill_in_rest;
10351 		}
10352 	}
10353 	/* Ok if we reach here we must build one */
10354 	sctp_alloc_a_chunk(stcb, chk);
10355 	if (chk == NULL) {
10356 		return;
10357 	}
10358 	asoc->fwd_tsn_cnt++;
10359 	chk->copy_by_ref = 0;
10360 	/*
10361 	 * We don't do the old thing here since this is used not for on-wire
10362 	 * but to tell if we are sending a fwd-tsn by the stack during
10363 	 * output. And if its a IFORWARD or a FORWARD it is a fwd-tsn.
10364 	 */
10365 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10366 	chk->rec.chunk_id.can_take_data = 0;
10367 	chk->flags = 0;
10368 	chk->asoc = asoc;
10369 	chk->whoTo = NULL;
10370 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
10371 	if (chk->data == NULL) {
10372 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10373 		return;
10374 	}
10375 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10376 	chk->sent = SCTP_DATAGRAM_UNSENT;
10377 	chk->snd_count = 0;
10378 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10379 	asoc->ctrl_queue_cnt++;
10380 sctp_fill_in_rest:
10381 	/*-
10382 	 * Here we go through and fill out the part that deals with
10383 	 * stream/seq of the ones we skip.
10384 	 */
10385 	SCTP_BUF_LEN(chk->data) = 0;
10386 	TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10387 		if ((at->sent != SCTP_FORWARD_TSN_SKIP) &&
10388 		    (at->sent != SCTP_DATAGRAM_NR_ACKED)) {
10389 			/* no more to look at */
10390 			break;
10391 		}
10392 		if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) {
10393 			/* We don't report these */
10394 			continue;
10395 		}
10396 		cnt_of_skipped++;
10397 	}
10398 	if (asoc->idata_supported) {
10399 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10400 		    (cnt_of_skipped * sizeof(struct sctp_strseq_mid)));
10401 	} else {
10402 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10403 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
10404 	}
10405 	cnt_of_space = (unsigned int)M_TRAILINGSPACE(chk->data);
10406 
10407 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10408 		ovh = SCTP_MIN_OVERHEAD;
10409 	} else {
10410 		ovh = SCTP_MIN_V4_OVERHEAD;
10411 	}
10412 	if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10413 		/* trim to a mtu size */
10414 		cnt_of_space = asoc->smallest_mtu - ovh;
10415 	}
10416 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10417 		sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10418 		    0xff, 0, cnt_of_skipped,
10419 		    asoc->advanced_peer_ack_point);
10420 	}
10421 	advance_peer_ack_point = asoc->advanced_peer_ack_point;
10422 	if (cnt_of_space < space_needed) {
10423 		/*-
10424 		 * ok we must trim down the chunk by lowering the
10425 		 * advance peer ack point.
10426 		 */
10427 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10428 			sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10429 			    0xff, 0xff, cnt_of_space,
10430 			    space_needed);
10431 		}
10432 		cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10433 		if (asoc->idata_supported) {
10434 			cnt_of_skipped /= sizeof(struct sctp_strseq_mid);
10435 		} else {
10436 			cnt_of_skipped /= sizeof(struct sctp_strseq);
10437 		}
10438 		/*-
10439 		 * Go through and find the TSN that will be the one
10440 		 * we report.
10441 		 */
10442 		at = TAILQ_FIRST(&asoc->sent_queue);
10443 		if (at != NULL) {
10444 			for (i = 0; i < cnt_of_skipped; i++) {
10445 				tp1 = TAILQ_NEXT(at, sctp_next);
10446 				if (tp1 == NULL) {
10447 					break;
10448 				}
10449 				at = tp1;
10450 			}
10451 		}
10452 		if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10453 			sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10454 			    0xff, cnt_of_skipped, at->rec.data.tsn,
10455 			    asoc->advanced_peer_ack_point);
10456 		}
10457 		last = at;
10458 		/*-
10459 		 * last now points to last one I can report, update
10460 		 * peer ack point
10461 		 */
10462 		if (last) {
10463 			advance_peer_ack_point = last->rec.data.tsn;
10464 		}
10465 		if (asoc->idata_supported) {
10466 			space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10467 			    cnt_of_skipped * sizeof(struct sctp_strseq_mid);
10468 		} else {
10469 			space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10470 			    cnt_of_skipped * sizeof(struct sctp_strseq);
10471 		}
10472 	}
10473 	chk->send_size = space_needed;
10474 	/* Setup the chunk */
10475 	fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10476 	fwdtsn->ch.chunk_length = htons(chk->send_size);
10477 	fwdtsn->ch.chunk_flags = 0;
10478 	if (asoc->idata_supported) {
10479 		fwdtsn->ch.chunk_type = SCTP_IFORWARD_CUM_TSN;
10480 	} else {
10481 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10482 	}
10483 	fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10484 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10485 	fwdtsn++;
10486 	/*-
10487 	 * Move pointer to after the fwdtsn and transfer to the
10488 	 * strseq pointer.
10489 	 */
10490 	if (asoc->idata_supported) {
10491 		strseq_m = (struct sctp_strseq_mid *)fwdtsn;
10492 		strseq = NULL;
10493 	} else {
10494 		strseq = (struct sctp_strseq *)fwdtsn;
10495 		strseq_m = NULL;
10496 	}
10497 	/*-
10498 	 * Now populate the strseq list. This is done blindly
10499 	 * without pulling out duplicate stream info. This is
10500 	 * inefficient but won't harm the process since the peer will
10501 	 * look at these in sequence and will thus release anything.
10502 	 * It could mean we exceed the PMTU and chop off some that
10503 	 * we could have included.. but this is unlikely (aka 1432/4
10504 	 * would mean 300+ stream seq's would have to be reported in
10505 	 * one FWD-TSN. With a bit of work we can later FIX this to
10506 	 * optimize and pull out duplicates.. but it does add more
10507 	 * overhead. So for now... not!
10508 	 */
10509 	i = 0;
10510 	TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10511 		if (i >= cnt_of_skipped) {
10512 			break;
10513 		}
10514 		if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) {
10515 			/* We don't report these */
10516 			continue;
10517 		}
10518 		if (at->rec.data.tsn == advance_peer_ack_point) {
10519 			at->rec.data.fwd_tsn_cnt = 0;
10520 		}
10521 		if (asoc->idata_supported) {
10522 			strseq_m->sid = htons(at->rec.data.sid);
10523 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10524 				strseq_m->flags = htons(PR_SCTP_UNORDERED_FLAG);
10525 			} else {
10526 				strseq_m->flags = 0;
10527 			}
10528 			strseq_m->mid = htonl(at->rec.data.mid);
10529 			strseq_m++;
10530 		} else {
10531 			strseq->sid = htons(at->rec.data.sid);
10532 			strseq->ssn = htons((uint16_t)at->rec.data.mid);
10533 			strseq++;
10534 		}
10535 		i++;
10536 	}
10537 	return;
10538 }
10539 
10540 void
10541 sctp_send_sack(struct sctp_tcb *stcb, int so_locked)
10542 {
10543 	/*-
10544 	 * Queue up a SACK or NR-SACK in the control queue.
10545 	 * We must first check to see if a SACK or NR-SACK is
10546 	 * somehow on the control queue.
10547 	 * If so, we will take and and remove the old one.
10548 	 */
10549 	struct sctp_association *asoc;
10550 	struct sctp_tmit_chunk *chk, *a_chk;
10551 	struct sctp_sack_chunk *sack;
10552 	struct sctp_nr_sack_chunk *nr_sack;
10553 	struct sctp_gap_ack_block *gap_descriptor;
10554 	const struct sack_track *selector;
10555 	int mergeable = 0;
10556 	int offset;
10557 	caddr_t limit;
10558 	uint32_t *dup;
10559 	int limit_reached = 0;
10560 	unsigned int i, siz, j;
10561 	unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10562 	int num_dups = 0;
10563 	int space_req;
10564 	uint32_t highest_tsn;
10565 	uint8_t flags;
10566 	uint8_t type;
10567 	uint8_t tsn_map;
10568 
10569 	if (stcb->asoc.nrsack_supported == 1) {
10570 		type = SCTP_NR_SELECTIVE_ACK;
10571 	} else {
10572 		type = SCTP_SELECTIVE_ACK;
10573 	}
10574 	a_chk = NULL;
10575 	asoc = &stcb->asoc;
10576 	SCTP_TCB_LOCK_ASSERT(stcb);
10577 	if (asoc->last_data_chunk_from == NULL) {
10578 		/* Hmm we never received anything */
10579 		return;
10580 	}
10581 	sctp_slide_mapping_arrays(stcb);
10582 	sctp_set_rwnd(stcb, asoc);
10583 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10584 		if (chk->rec.chunk_id.id == type) {
10585 			/* Hmm, found a sack already on queue, remove it */
10586 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10587 			asoc->ctrl_queue_cnt--;
10588 			a_chk = chk;
10589 			if (a_chk->data) {
10590 				sctp_m_freem(a_chk->data);
10591 				a_chk->data = NULL;
10592 			}
10593 			if (a_chk->whoTo) {
10594 				sctp_free_remote_addr(a_chk->whoTo);
10595 				a_chk->whoTo = NULL;
10596 			}
10597 			break;
10598 		}
10599 	}
10600 	if (a_chk == NULL) {
10601 		sctp_alloc_a_chunk(stcb, a_chk);
10602 		if (a_chk == NULL) {
10603 			/* No memory so we drop the idea, and set a timer */
10604 			if (stcb->asoc.delayed_ack) {
10605 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10606 				    stcb->sctp_ep, stcb, NULL,
10607 				    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
10608 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10609 				    stcb->sctp_ep, stcb, NULL);
10610 			} else {
10611 				stcb->asoc.send_sack = 1;
10612 			}
10613 			return;
10614 		}
10615 		a_chk->copy_by_ref = 0;
10616 		a_chk->rec.chunk_id.id = type;
10617 		a_chk->rec.chunk_id.can_take_data = 1;
10618 	}
10619 	/* Clear our pkt counts */
10620 	asoc->data_pkts_seen = 0;
10621 
10622 	a_chk->flags = 0;
10623 	a_chk->asoc = asoc;
10624 	a_chk->snd_count = 0;
10625 	a_chk->send_size = 0;	/* fill in later */
10626 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
10627 	a_chk->whoTo = NULL;
10628 
10629 	if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) == 0) {
10630 		/*-
10631 		 * Ok, the destination for the SACK is unreachable, lets see if
10632 		 * we can select an alternate to asoc->last_data_chunk_from
10633 		 */
10634 		a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10635 		if (a_chk->whoTo == NULL) {
10636 			/* Nope, no alternate */
10637 			a_chk->whoTo = asoc->last_data_chunk_from;
10638 		}
10639 	} else {
10640 		a_chk->whoTo = asoc->last_data_chunk_from;
10641 	}
10642 	if (a_chk->whoTo) {
10643 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
10644 	}
10645 	if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10646 		highest_tsn = asoc->highest_tsn_inside_map;
10647 	} else {
10648 		highest_tsn = asoc->highest_tsn_inside_nr_map;
10649 	}
10650 	if (highest_tsn == asoc->cumulative_tsn) {
10651 		/* no gaps */
10652 		if (type == SCTP_SELECTIVE_ACK) {
10653 			space_req = sizeof(struct sctp_sack_chunk);
10654 		} else {
10655 			space_req = sizeof(struct sctp_nr_sack_chunk);
10656 		}
10657 	} else {
10658 		/* gaps get a cluster */
10659 		space_req = MCLBYTES;
10660 	}
10661 	/* Ok now lets formulate a MBUF with our sack */
10662 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA);
10663 	if ((a_chk->data == NULL) ||
10664 	    (a_chk->whoTo == NULL)) {
10665 		/* rats, no mbuf memory */
10666 		if (a_chk->data) {
10667 			/* was a problem with the destination */
10668 			sctp_m_freem(a_chk->data);
10669 			a_chk->data = NULL;
10670 		}
10671 		sctp_free_a_chunk(stcb, a_chk, so_locked);
10672 		/* sa_ignore NO_NULL_CHK */
10673 		if (stcb->asoc.delayed_ack) {
10674 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10675 			    stcb->sctp_ep, stcb, NULL,
10676 			    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
10677 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10678 			    stcb->sctp_ep, stcb, NULL);
10679 		} else {
10680 			stcb->asoc.send_sack = 1;
10681 		}
10682 		return;
10683 	}
10684 	/* ok, lets go through and fill it in */
10685 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10686 	space = (unsigned int)M_TRAILINGSPACE(a_chk->data);
10687 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10688 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10689 	}
10690 	limit = mtod(a_chk->data, caddr_t);
10691 	limit += space;
10692 
10693 	flags = 0;
10694 
10695 	if ((asoc->sctp_cmt_on_off > 0) &&
10696 	    SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10697 		/*-
10698 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10699 		 * received, then set high bit to 1, else 0. Reset
10700 		 * pkts_rcvd.
10701 		 */
10702 		flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10703 		asoc->cmt_dac_pkts_rcvd = 0;
10704 	}
10705 #ifdef SCTP_ASOCLOG_OF_TSNS
10706 	stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10707 	stcb->asoc.cumack_log_atsnt++;
10708 	if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10709 		stcb->asoc.cumack_log_atsnt = 0;
10710 	}
10711 #endif
10712 	/* reset the readers interpretation */
10713 	stcb->freed_by_sorcv_sincelast = 0;
10714 
10715 	if (type == SCTP_SELECTIVE_ACK) {
10716 		sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10717 		nr_sack = NULL;
10718 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10719 		if (highest_tsn > asoc->mapping_array_base_tsn) {
10720 			siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10721 		} else {
10722 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + highest_tsn + 7) / 8;
10723 		}
10724 	} else {
10725 		sack = NULL;
10726 		nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10727 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10728 		if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10729 			siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10730 		} else {
10731 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10732 		}
10733 	}
10734 
10735 	if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10736 		offset = 1;
10737 	} else {
10738 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10739 	}
10740 	if (((type == SCTP_SELECTIVE_ACK) &&
10741 	    SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10742 	    ((type == SCTP_NR_SELECTIVE_ACK) &&
10743 	    SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10744 		/* we have a gap .. maybe */
10745 		for (i = 0; i < siz; i++) {
10746 			tsn_map = asoc->mapping_array[i];
10747 			if (type == SCTP_SELECTIVE_ACK) {
10748 				tsn_map |= asoc->nr_mapping_array[i];
10749 			}
10750 			if (i == 0) {
10751 				/*
10752 				 * Clear all bits corresponding to TSNs
10753 				 * smaller or equal to the cumulative TSN.
10754 				 */
10755 				tsn_map &= (~0U << (1 - offset));
10756 			}
10757 			selector = &sack_array[tsn_map];
10758 			if (mergeable && selector->right_edge) {
10759 				/*
10760 				 * Backup, left and right edges were ok to
10761 				 * merge.
10762 				 */
10763 				num_gap_blocks--;
10764 				gap_descriptor--;
10765 			}
10766 			if (selector->num_entries == 0)
10767 				mergeable = 0;
10768 			else {
10769 				for (j = 0; j < selector->num_entries; j++) {
10770 					if (mergeable && selector->right_edge) {
10771 						/*
10772 						 * do a merge by NOT setting
10773 						 * the left side
10774 						 */
10775 						mergeable = 0;
10776 					} else {
10777 						/*
10778 						 * no merge, set the left
10779 						 * side
10780 						 */
10781 						mergeable = 0;
10782 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
10783 					}
10784 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
10785 					num_gap_blocks++;
10786 					gap_descriptor++;
10787 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10788 						/* no more room */
10789 						limit_reached = 1;
10790 						break;
10791 					}
10792 				}
10793 				if (selector->left_edge) {
10794 					mergeable = 1;
10795 				}
10796 			}
10797 			if (limit_reached) {
10798 				/* Reached the limit stop */
10799 				break;
10800 			}
10801 			offset += 8;
10802 		}
10803 	}
10804 	if ((type == SCTP_NR_SELECTIVE_ACK) &&
10805 	    (limit_reached == 0)) {
10806 		mergeable = 0;
10807 
10808 		if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10809 			siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10810 		} else {
10811 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10812 		}
10813 
10814 		if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10815 			offset = 1;
10816 		} else {
10817 			offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10818 		}
10819 		if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10820 			/* we have a gap .. maybe */
10821 			for (i = 0; i < siz; i++) {
10822 				tsn_map = asoc->nr_mapping_array[i];
10823 				if (i == 0) {
10824 					/*
10825 					 * Clear all bits corresponding to
10826 					 * TSNs smaller or equal to the
10827 					 * cumulative TSN.
10828 					 */
10829 					tsn_map &= (~0U << (1 - offset));
10830 				}
10831 				selector = &sack_array[tsn_map];
10832 				if (mergeable && selector->right_edge) {
10833 					/*
10834 					 * Backup, left and right edges were
10835 					 * ok to merge.
10836 					 */
10837 					num_nr_gap_blocks--;
10838 					gap_descriptor--;
10839 				}
10840 				if (selector->num_entries == 0)
10841 					mergeable = 0;
10842 				else {
10843 					for (j = 0; j < selector->num_entries; j++) {
10844 						if (mergeable && selector->right_edge) {
10845 							/*
10846 							 * do a merge by NOT
10847 							 * setting the left
10848 							 * side
10849 							 */
10850 							mergeable = 0;
10851 						} else {
10852 							/*
10853 							 * no merge, set the
10854 							 * left side
10855 							 */
10856 							mergeable = 0;
10857 							gap_descriptor->start = htons((selector->gaps[j].start + offset));
10858 						}
10859 						gap_descriptor->end = htons((selector->gaps[j].end + offset));
10860 						num_nr_gap_blocks++;
10861 						gap_descriptor++;
10862 						if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10863 							/* no more room */
10864 							limit_reached = 1;
10865 							break;
10866 						}
10867 					}
10868 					if (selector->left_edge) {
10869 						mergeable = 1;
10870 					}
10871 				}
10872 				if (limit_reached) {
10873 					/* Reached the limit stop */
10874 					break;
10875 				}
10876 				offset += 8;
10877 			}
10878 		}
10879 	}
10880 	/* now we must add any dups we are going to report. */
10881 	if ((limit_reached == 0) && (asoc->numduptsns)) {
10882 		dup = (uint32_t *)gap_descriptor;
10883 		for (i = 0; i < asoc->numduptsns; i++) {
10884 			*dup = htonl(asoc->dup_tsns[i]);
10885 			dup++;
10886 			num_dups++;
10887 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10888 				/* no more room */
10889 				break;
10890 			}
10891 		}
10892 		asoc->numduptsns = 0;
10893 	}
10894 	/*
10895 	 * now that the chunk is prepared queue it to the control chunk
10896 	 * queue.
10897 	 */
10898 	if (type == SCTP_SELECTIVE_ACK) {
10899 		a_chk->send_size = (uint16_t)(sizeof(struct sctp_sack_chunk) +
10900 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10901 		    num_dups * sizeof(int32_t));
10902 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10903 		sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10904 		sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10905 		sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10906 		sack->sack.num_dup_tsns = htons(num_dups);
10907 		sack->ch.chunk_type = type;
10908 		sack->ch.chunk_flags = flags;
10909 		sack->ch.chunk_length = htons(a_chk->send_size);
10910 	} else {
10911 		a_chk->send_size = (uint16_t)(sizeof(struct sctp_nr_sack_chunk) +
10912 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10913 		    num_dups * sizeof(int32_t));
10914 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10915 		nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10916 		nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10917 		nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10918 		nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10919 		nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10920 		nr_sack->nr_sack.reserved = 0;
10921 		nr_sack->ch.chunk_type = type;
10922 		nr_sack->ch.chunk_flags = flags;
10923 		nr_sack->ch.chunk_length = htons(a_chk->send_size);
10924 	}
10925 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10926 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
10927 	asoc->ctrl_queue_cnt++;
10928 	asoc->send_sack = 0;
10929 	SCTP_STAT_INCR(sctps_sendsacks);
10930 	return;
10931 }
10932 
10933 void
10934 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked)
10935 {
10936 	struct mbuf *m_abort, *m, *m_last;
10937 	struct mbuf *m_out, *m_end = NULL;
10938 	struct sctp_abort_chunk *abort;
10939 	struct sctp_auth_chunk *auth = NULL;
10940 	struct sctp_nets *net;
10941 	uint32_t vtag;
10942 	uint32_t auth_offset = 0;
10943 	int error;
10944 	uint16_t cause_len, chunk_len, padding_len;
10945 	bool use_zero_crc;
10946 
10947 	SCTP_TCB_LOCK_ASSERT(stcb);
10948 	/*-
10949 	 * Add an AUTH chunk, if chunk requires it and save the offset into
10950 	 * the chain for AUTH
10951 	 */
10952 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10953 	    stcb->asoc.peer_auth_chunks)) {
10954 		m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10955 		    stcb, SCTP_ABORT_ASSOCIATION);
10956 		SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10957 	} else {
10958 		m_out = NULL;
10959 	}
10960 	switch (stcb->asoc.snd_edmid) {
10961 	case SCTP_EDMID_LOWER_LAYER_DTLS:
10962 		use_zero_crc = true;
10963 		break;
10964 	default:
10965 		use_zero_crc = false;
10966 		break;
10967 	}
10968 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER);
10969 	if (m_abort == NULL) {
10970 		if (m_out) {
10971 			sctp_m_freem(m_out);
10972 		}
10973 		if (operr) {
10974 			sctp_m_freem(operr);
10975 		}
10976 		return;
10977 	}
10978 	/* link in any error */
10979 	SCTP_BUF_NEXT(m_abort) = operr;
10980 	cause_len = 0;
10981 	m_last = NULL;
10982 	for (m = operr; m; m = SCTP_BUF_NEXT(m)) {
10983 		cause_len += (uint16_t)SCTP_BUF_LEN(m);
10984 		if (SCTP_BUF_NEXT(m) == NULL) {
10985 			m_last = m;
10986 		}
10987 	}
10988 	SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk);
10989 	chunk_len = (uint16_t)sizeof(struct sctp_abort_chunk) + cause_len;
10990 	padding_len = SCTP_SIZE32(chunk_len) - chunk_len;
10991 	if (m_out == NULL) {
10992 		/* NO Auth chunk prepended, so reserve space in front */
10993 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10994 		m_out = m_abort;
10995 	} else {
10996 		/* Put AUTH chunk at the front of the chain */
10997 		SCTP_BUF_NEXT(m_end) = m_abort;
10998 	}
10999 	if (stcb->asoc.alternate) {
11000 		net = stcb->asoc.alternate;
11001 	} else {
11002 		net = stcb->asoc.primary_destination;
11003 	}
11004 	/* Fill in the ABORT chunk header. */
11005 	abort = mtod(m_abort, struct sctp_abort_chunk *);
11006 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
11007 	if (stcb->asoc.peer_vtag == 0) {
11008 		/* This happens iff the assoc is in COOKIE-WAIT state. */
11009 		vtag = stcb->asoc.my_vtag;
11010 		abort->ch.chunk_flags = SCTP_HAD_NO_TCB;
11011 	} else {
11012 		vtag = stcb->asoc.peer_vtag;
11013 		abort->ch.chunk_flags = 0;
11014 	}
11015 	abort->ch.chunk_length = htons(chunk_len);
11016 	/* Add padding, if necessary. */
11017 	if (padding_len > 0) {
11018 		if ((m_last == NULL) ||
11019 		    (sctp_add_pad_tombuf(m_last, padding_len) == NULL)) {
11020 			sctp_m_freem(m_out);
11021 			return;
11022 		}
11023 	}
11024 	if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
11025 	    (struct sockaddr *)&net->ro._l_addr,
11026 	    m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
11027 	    stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag),
11028 	    stcb->asoc.primary_destination->port, NULL,
11029 	    0, 0,
11030 	    use_zero_crc,
11031 	    so_locked))) {
11032 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
11033 		if (error == ENOBUFS) {
11034 			stcb->asoc.ifp_had_enobuf = 1;
11035 			SCTP_STAT_INCR(sctps_lowlevelerr);
11036 		}
11037 	} else {
11038 		stcb->asoc.ifp_had_enobuf = 0;
11039 	}
11040 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11041 }
11042 
11043 void
11044 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
11045     struct sctp_nets *net,
11046     int reflect_vtag)
11047 {
11048 	/* formulate and SEND a SHUTDOWN-COMPLETE */
11049 	struct mbuf *m_shutdown_comp;
11050 	struct sctp_shutdown_complete_chunk *shutdown_complete;
11051 	uint32_t vtag;
11052 	int error;
11053 	uint8_t flags;
11054 	bool use_zero_crc;
11055 
11056 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
11057 	if (m_shutdown_comp == NULL) {
11058 		/* no mbuf's */
11059 		return;
11060 	}
11061 	if (reflect_vtag) {
11062 		flags = SCTP_HAD_NO_TCB;
11063 		vtag = stcb->asoc.my_vtag;
11064 	} else {
11065 		flags = 0;
11066 		vtag = stcb->asoc.peer_vtag;
11067 	}
11068 	switch (stcb->asoc.snd_edmid) {
11069 	case SCTP_EDMID_LOWER_LAYER_DTLS:
11070 		use_zero_crc = true;
11071 		break;
11072 	default:
11073 		use_zero_crc = false;
11074 		break;
11075 	}
11076 	shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
11077 	shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
11078 	shutdown_complete->ch.chunk_flags = flags;
11079 	shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
11080 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
11081 	if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
11082 	    (struct sockaddr *)&net->ro._l_addr,
11083 	    m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
11084 	    stcb->sctp_ep->sctp_lport, stcb->rport,
11085 	    htonl(vtag),
11086 	    net->port, NULL,
11087 	    0, 0,
11088 	    use_zero_crc,
11089 	    SCTP_SO_NOT_LOCKED))) {
11090 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
11091 		if (error == ENOBUFS) {
11092 			stcb->asoc.ifp_had_enobuf = 1;
11093 			SCTP_STAT_INCR(sctps_lowlevelerr);
11094 		}
11095 	} else {
11096 		stcb->asoc.ifp_had_enobuf = 0;
11097 	}
11098 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11099 	return;
11100 }
11101 
11102 static void
11103 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
11104     struct sctphdr *sh, uint32_t vtag,
11105     uint8_t type, struct mbuf *cause,
11106     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
11107     uint32_t vrf_id, uint16_t port)
11108 {
11109 	struct mbuf *o_pak;
11110 	struct mbuf *mout;
11111 	struct sctphdr *shout;
11112 	struct sctp_chunkhdr *ch;
11113 #if defined(INET) || defined(INET6)
11114 	struct udphdr *udp;
11115 #endif
11116 	int ret, len, cause_len, padding_len;
11117 #ifdef INET
11118 	struct sockaddr_in *src_sin, *dst_sin;
11119 	struct ip *ip;
11120 #endif
11121 #ifdef INET6
11122 	struct sockaddr_in6 *src_sin6, *dst_sin6;
11123 	struct ip6_hdr *ip6;
11124 #endif
11125 
11126 	/* Compute the length of the cause and add final padding. */
11127 	cause_len = 0;
11128 	if (cause != NULL) {
11129 		struct mbuf *m_at, *m_last = NULL;
11130 
11131 		for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
11132 			if (SCTP_BUF_NEXT(m_at) == NULL)
11133 				m_last = m_at;
11134 			cause_len += SCTP_BUF_LEN(m_at);
11135 		}
11136 		padding_len = cause_len % 4;
11137 		if (padding_len != 0) {
11138 			padding_len = 4 - padding_len;
11139 		}
11140 		if (padding_len != 0) {
11141 			if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
11142 				sctp_m_freem(cause);
11143 				return;
11144 			}
11145 		}
11146 	} else {
11147 		padding_len = 0;
11148 	}
11149 	/* Get an mbuf for the header. */
11150 	len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
11151 	switch (dst->sa_family) {
11152 #ifdef INET
11153 	case AF_INET:
11154 		len += sizeof(struct ip);
11155 		break;
11156 #endif
11157 #ifdef INET6
11158 	case AF_INET6:
11159 		len += sizeof(struct ip6_hdr);
11160 		break;
11161 #endif
11162 	default:
11163 		break;
11164 	}
11165 #if defined(INET) || defined(INET6)
11166 	if (port) {
11167 		len += sizeof(struct udphdr);
11168 	}
11169 #endif
11170 	mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA);
11171 	if (mout == NULL) {
11172 		if (cause) {
11173 			sctp_m_freem(cause);
11174 		}
11175 		return;
11176 	}
11177 	SCTP_BUF_RESV_UF(mout, max_linkhdr);
11178 	SCTP_BUF_LEN(mout) = len;
11179 	SCTP_BUF_NEXT(mout) = cause;
11180 	M_SETFIB(mout, fibnum);
11181 	mout->m_pkthdr.flowid = mflowid;
11182 	M_HASHTYPE_SET(mout, mflowtype);
11183 #ifdef INET
11184 	ip = NULL;
11185 #endif
11186 #ifdef INET6
11187 	ip6 = NULL;
11188 #endif
11189 	switch (dst->sa_family) {
11190 #ifdef INET
11191 	case AF_INET:
11192 		src_sin = (struct sockaddr_in *)src;
11193 		dst_sin = (struct sockaddr_in *)dst;
11194 		ip = mtod(mout, struct ip *);
11195 		ip->ip_v = IPVERSION;
11196 		ip->ip_hl = (sizeof(struct ip) >> 2);
11197 		ip->ip_tos = 0;
11198 		ip->ip_off = htons(IP_DF);
11199 		ip_fillid(ip);
11200 		ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
11201 		if (port) {
11202 			ip->ip_p = IPPROTO_UDP;
11203 		} else {
11204 			ip->ip_p = IPPROTO_SCTP;
11205 		}
11206 		ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
11207 		ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
11208 		ip->ip_sum = 0;
11209 		len = sizeof(struct ip);
11210 		shout = (struct sctphdr *)((caddr_t)ip + len);
11211 		break;
11212 #endif
11213 #ifdef INET6
11214 	case AF_INET6:
11215 		src_sin6 = (struct sockaddr_in6 *)src;
11216 		dst_sin6 = (struct sockaddr_in6 *)dst;
11217 		ip6 = mtod(mout, struct ip6_hdr *);
11218 		ip6->ip6_flow = htonl(0x60000000);
11219 		if (V_ip6_auto_flowlabel) {
11220 			ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
11221 		}
11222 		ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
11223 		if (port) {
11224 			ip6->ip6_nxt = IPPROTO_UDP;
11225 		} else {
11226 			ip6->ip6_nxt = IPPROTO_SCTP;
11227 		}
11228 		ip6->ip6_src = dst_sin6->sin6_addr;
11229 		ip6->ip6_dst = src_sin6->sin6_addr;
11230 		len = sizeof(struct ip6_hdr);
11231 		shout = (struct sctphdr *)((caddr_t)ip6 + len);
11232 		break;
11233 #endif
11234 	default:
11235 		len = 0;
11236 		shout = mtod(mout, struct sctphdr *);
11237 		break;
11238 	}
11239 #if defined(INET) || defined(INET6)
11240 	if (port) {
11241 		if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
11242 			sctp_m_freem(mout);
11243 			return;
11244 		}
11245 		udp = (struct udphdr *)shout;
11246 		udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
11247 		udp->uh_dport = port;
11248 		udp->uh_sum = 0;
11249 		udp->uh_ulen = htons((uint16_t)(sizeof(struct udphdr) +
11250 		    sizeof(struct sctphdr) +
11251 		    sizeof(struct sctp_chunkhdr) +
11252 		    cause_len + padding_len));
11253 		len += sizeof(struct udphdr);
11254 		shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
11255 	} else {
11256 		udp = NULL;
11257 	}
11258 #endif
11259 	shout->src_port = sh->dest_port;
11260 	shout->dest_port = sh->src_port;
11261 	shout->checksum = 0;
11262 	if (vtag) {
11263 		shout->v_tag = htonl(vtag);
11264 	} else {
11265 		shout->v_tag = sh->v_tag;
11266 	}
11267 	len += sizeof(struct sctphdr);
11268 	ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
11269 	ch->chunk_type = type;
11270 	if (vtag) {
11271 		ch->chunk_flags = 0;
11272 	} else {
11273 		ch->chunk_flags = SCTP_HAD_NO_TCB;
11274 	}
11275 	ch->chunk_length = htons((uint16_t)(sizeof(struct sctp_chunkhdr) + cause_len));
11276 	len += sizeof(struct sctp_chunkhdr);
11277 	len += cause_len + padding_len;
11278 
11279 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
11280 		sctp_m_freem(mout);
11281 		return;
11282 	}
11283 	SCTP_ATTACH_CHAIN(o_pak, mout, len);
11284 	switch (dst->sa_family) {
11285 #ifdef INET
11286 	case AF_INET:
11287 		if (port) {
11288 			if (V_udp_cksum) {
11289 				udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
11290 			} else {
11291 				udp->uh_sum = 0;
11292 			}
11293 		}
11294 		ip->ip_len = htons(len);
11295 		if (port) {
11296 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
11297 			SCTP_STAT_INCR(sctps_sendswcrc);
11298 			if (V_udp_cksum) {
11299 				SCTP_ENABLE_UDP_CSUM(o_pak);
11300 			}
11301 		} else {
11302 			mout->m_pkthdr.csum_flags = CSUM_SCTP;
11303 			mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11304 			SCTP_STAT_INCR(sctps_sendhwcrc);
11305 		}
11306 #ifdef SCTP_PACKET_LOGGING
11307 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11308 			sctp_packet_log(o_pak);
11309 		}
11310 #endif
11311 		SCTP_PROBE5(send, NULL, NULL, ip, NULL, shout);
11312 		SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11313 		break;
11314 #endif
11315 #ifdef INET6
11316 	case AF_INET6:
11317 		ip6->ip6_plen = htons((uint16_t)(len - sizeof(struct ip6_hdr)));
11318 		if (port) {
11319 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11320 			SCTP_STAT_INCR(sctps_sendswcrc);
11321 			if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11322 				udp->uh_sum = 0xffff;
11323 			}
11324 		} else {
11325 			mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11326 			mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11327 			SCTP_STAT_INCR(sctps_sendhwcrc);
11328 		}
11329 #ifdef SCTP_PACKET_LOGGING
11330 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11331 			sctp_packet_log(o_pak);
11332 		}
11333 #endif
11334 		SCTP_PROBE5(send, NULL, NULL, ip6, NULL, shout);
11335 		SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11336 		break;
11337 #endif
11338 	default:
11339 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11340 		    dst->sa_family);
11341 		sctp_m_freem(mout);
11342 		SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11343 		return;
11344 	}
11345 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
11346 	if (port) {
11347 		UDPSTAT_INC(udps_opackets);
11348 	}
11349 	SCTP_STAT_INCR(sctps_sendpackets);
11350 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11351 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11352 	if (ret) {
11353 		SCTP_STAT_INCR(sctps_senderrors);
11354 	}
11355 	return;
11356 }
11357 
11358 void
11359 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11360     struct sctphdr *sh,
11361     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
11362     uint32_t vrf_id, uint16_t port)
11363 {
11364 	sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11365 	    mflowtype, mflowid, fibnum,
11366 	    vrf_id, port);
11367 }
11368 
11369 void
11370 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked)
11371 {
11372 	struct sctp_tmit_chunk *chk;
11373 	struct sctp_heartbeat_chunk *hb;
11374 	struct timeval now;
11375 
11376 	SCTP_TCB_LOCK_ASSERT(stcb);
11377 	if (net == NULL) {
11378 		return;
11379 	}
11380 	(void)SCTP_GETTIME_TIMEVAL(&now);
11381 	switch (net->ro._l_addr.sa.sa_family) {
11382 #ifdef INET
11383 	case AF_INET:
11384 		break;
11385 #endif
11386 #ifdef INET6
11387 	case AF_INET6:
11388 		break;
11389 #endif
11390 	default:
11391 		return;
11392 	}
11393 	sctp_alloc_a_chunk(stcb, chk);
11394 	if (chk == NULL) {
11395 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11396 		return;
11397 	}
11398 
11399 	chk->copy_by_ref = 0;
11400 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11401 	chk->rec.chunk_id.can_take_data = 1;
11402 	chk->flags = 0;
11403 	chk->asoc = &stcb->asoc;
11404 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11405 
11406 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11407 	if (chk->data == NULL) {
11408 		sctp_free_a_chunk(stcb, chk, so_locked);
11409 		return;
11410 	}
11411 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11412 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11413 	chk->sent = SCTP_DATAGRAM_UNSENT;
11414 	chk->snd_count = 0;
11415 	chk->whoTo = net;
11416 	atomic_add_int(&chk->whoTo->ref_count, 1);
11417 	/* Now we have a mbuf that we can fill in with the details */
11418 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11419 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11420 	/* fill out chunk header */
11421 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11422 	hb->ch.chunk_flags = 0;
11423 	hb->ch.chunk_length = htons(chk->send_size);
11424 	/* Fill out hb parameter */
11425 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11426 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11427 	hb->heartbeat.hb_info.time_value_1 = (uint32_t)now.tv_sec;
11428 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11429 	/* Did our user request this one, put it in */
11430 	hb->heartbeat.hb_info.addr_family = (uint8_t)net->ro._l_addr.sa.sa_family;
11431 	hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11432 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11433 		/*
11434 		 * we only take from the entropy pool if the address is not
11435 		 * confirmed.
11436 		 */
11437 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11438 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11439 	} else {
11440 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11441 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11442 	}
11443 	switch (net->ro._l_addr.sa.sa_family) {
11444 #ifdef INET
11445 	case AF_INET:
11446 		memcpy(hb->heartbeat.hb_info.address,
11447 		    &net->ro._l_addr.sin.sin_addr,
11448 		    sizeof(net->ro._l_addr.sin.sin_addr));
11449 		break;
11450 #endif
11451 #ifdef INET6
11452 	case AF_INET6:
11453 		memcpy(hb->heartbeat.hb_info.address,
11454 		    &net->ro._l_addr.sin6.sin6_addr,
11455 		    sizeof(net->ro._l_addr.sin6.sin6_addr));
11456 		break;
11457 #endif
11458 	default:
11459 		if (chk->data) {
11460 			sctp_m_freem(chk->data);
11461 			chk->data = NULL;
11462 		}
11463 		sctp_free_a_chunk(stcb, chk, so_locked);
11464 		return;
11465 		break;
11466 	}
11467 	net->hb_responded = 0;
11468 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11469 	stcb->asoc.ctrl_queue_cnt++;
11470 	SCTP_STAT_INCR(sctps_sendheartbeat);
11471 	return;
11472 }
11473 
11474 void
11475 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11476     uint32_t high_tsn)
11477 {
11478 	struct sctp_association *asoc;
11479 	struct sctp_ecne_chunk *ecne;
11480 	struct sctp_tmit_chunk *chk;
11481 
11482 	if (net == NULL) {
11483 		return;
11484 	}
11485 	asoc = &stcb->asoc;
11486 	SCTP_TCB_LOCK_ASSERT(stcb);
11487 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11488 		if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11489 			/* found a previous ECN_ECHO update it if needed */
11490 			uint32_t cnt, ctsn;
11491 
11492 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11493 			ctsn = ntohl(ecne->tsn);
11494 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11495 				ecne->tsn = htonl(high_tsn);
11496 				SCTP_STAT_INCR(sctps_queue_upd_ecne);
11497 			}
11498 			cnt = ntohl(ecne->num_pkts_since_cwr);
11499 			cnt++;
11500 			ecne->num_pkts_since_cwr = htonl(cnt);
11501 			return;
11502 		}
11503 	}
11504 	/* nope could not find one to update so we must build one */
11505 	sctp_alloc_a_chunk(stcb, chk);
11506 	if (chk == NULL) {
11507 		return;
11508 	}
11509 	SCTP_STAT_INCR(sctps_queue_upd_ecne);
11510 	chk->copy_by_ref = 0;
11511 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11512 	chk->rec.chunk_id.can_take_data = 0;
11513 	chk->flags = 0;
11514 	chk->asoc = &stcb->asoc;
11515 	chk->send_size = sizeof(struct sctp_ecne_chunk);
11516 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11517 	if (chk->data == NULL) {
11518 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11519 		return;
11520 	}
11521 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11522 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11523 	chk->sent = SCTP_DATAGRAM_UNSENT;
11524 	chk->snd_count = 0;
11525 	chk->whoTo = net;
11526 	atomic_add_int(&chk->whoTo->ref_count, 1);
11527 
11528 	stcb->asoc.ecn_echo_cnt_onq++;
11529 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11530 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
11531 	ecne->ch.chunk_flags = 0;
11532 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11533 	ecne->tsn = htonl(high_tsn);
11534 	ecne->num_pkts_since_cwr = htonl(1);
11535 	TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11536 	asoc->ctrl_queue_cnt++;
11537 }
11538 
11539 void
11540 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11541     struct mbuf *m, int len, int iphlen, int bad_crc)
11542 {
11543 	struct sctp_association *asoc;
11544 	struct sctp_pktdrop_chunk *drp;
11545 	struct sctp_tmit_chunk *chk;
11546 	uint8_t *datap;
11547 	int was_trunc = 0;
11548 	int fullsz = 0;
11549 	long spc;
11550 	int offset;
11551 	struct sctp_chunkhdr *ch, chunk_buf;
11552 	unsigned int chk_length;
11553 
11554 	if (!stcb) {
11555 		return;
11556 	}
11557 	asoc = &stcb->asoc;
11558 	SCTP_TCB_LOCK_ASSERT(stcb);
11559 	if (asoc->pktdrop_supported == 0) {
11560 		/*-
11561 		 * peer must declare support before I send one.
11562 		 */
11563 		return;
11564 	}
11565 	if (stcb->sctp_socket == NULL) {
11566 		return;
11567 	}
11568 	sctp_alloc_a_chunk(stcb, chk);
11569 	if (chk == NULL) {
11570 		return;
11571 	}
11572 	chk->copy_by_ref = 0;
11573 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11574 	chk->rec.chunk_id.can_take_data = 1;
11575 	chk->flags = 0;
11576 	len -= iphlen;
11577 	chk->send_size = len;
11578 	/* Validate that we do not have an ABORT in here. */
11579 	offset = iphlen + sizeof(struct sctphdr);
11580 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11581 	    sizeof(*ch), (uint8_t *)&chunk_buf);
11582 	while (ch != NULL) {
11583 		chk_length = ntohs(ch->chunk_length);
11584 		if (chk_length < sizeof(*ch)) {
11585 			/* break to abort land */
11586 			break;
11587 		}
11588 		switch (ch->chunk_type) {
11589 		case SCTP_PACKET_DROPPED:
11590 		case SCTP_ABORT_ASSOCIATION:
11591 		case SCTP_INITIATION_ACK:
11592 			/**
11593 			 * We don't respond with an PKT-DROP to an ABORT
11594 			 * or PKT-DROP. We also do not respond to an
11595 			 * INIT-ACK, because we can't know if the initiation
11596 			 * tag is correct or not.
11597 			 */
11598 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11599 			return;
11600 		default:
11601 			break;
11602 		}
11603 		offset += SCTP_SIZE32(chk_length);
11604 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11605 		    sizeof(*ch), (uint8_t *)&chunk_buf);
11606 	}
11607 
11608 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11609 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11610 		/*
11611 		 * only send 1 mtu worth, trim off the excess on the end.
11612 		 */
11613 		fullsz = len;
11614 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11615 		was_trunc = 1;
11616 	}
11617 	chk->asoc = &stcb->asoc;
11618 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11619 	if (chk->data == NULL) {
11620 jump_out:
11621 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11622 		return;
11623 	}
11624 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11625 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11626 	if (drp == NULL) {
11627 		sctp_m_freem(chk->data);
11628 		chk->data = NULL;
11629 		goto jump_out;
11630 	}
11631 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11632 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11633 	chk->book_size_scale = 0;
11634 	if (was_trunc) {
11635 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11636 		drp->trunc_len = htons(fullsz);
11637 		/*
11638 		 * Len is already adjusted to size minus overhead above take
11639 		 * out the pkt_drop chunk itself from it.
11640 		 */
11641 		chk->send_size = (uint16_t)(len - sizeof(struct sctp_pktdrop_chunk));
11642 		len = chk->send_size;
11643 	} else {
11644 		/* no truncation needed */
11645 		drp->ch.chunk_flags = 0;
11646 		drp->trunc_len = htons(0);
11647 	}
11648 	if (bad_crc) {
11649 		drp->ch.chunk_flags |= SCTP_BADCRC;
11650 	}
11651 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11652 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11653 	chk->sent = SCTP_DATAGRAM_UNSENT;
11654 	chk->snd_count = 0;
11655 	if (net) {
11656 		/* we should hit here */
11657 		chk->whoTo = net;
11658 		atomic_add_int(&chk->whoTo->ref_count, 1);
11659 	} else {
11660 		chk->whoTo = NULL;
11661 	}
11662 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11663 	drp->ch.chunk_length = htons(chk->send_size);
11664 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11665 	if (spc < 0) {
11666 		spc = 0;
11667 	}
11668 	drp->bottle_bw = htonl(spc);
11669 	if (asoc->my_rwnd) {
11670 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
11671 		    asoc->size_on_all_streams +
11672 		    asoc->my_rwnd_control_len +
11673 		    SCTP_SBAVAIL(&stcb->sctp_socket->so_rcv));
11674 	} else {
11675 		/*-
11676 		 * If my rwnd is 0, possibly from mbuf depletion as well as
11677 		 * space used, tell the peer there is NO space aka onq == bw
11678 		 */
11679 		drp->current_onq = htonl(spc);
11680 	}
11681 	drp->reserved = 0;
11682 	datap = drp->data;
11683 	m_copydata(m, iphlen, len, (caddr_t)datap);
11684 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11685 	asoc->ctrl_queue_cnt++;
11686 }
11687 
11688 void
11689 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11690 {
11691 	struct sctp_association *asoc;
11692 	struct sctp_cwr_chunk *cwr;
11693 	struct sctp_tmit_chunk *chk;
11694 
11695 	SCTP_TCB_LOCK_ASSERT(stcb);
11696 	if (net == NULL) {
11697 		return;
11698 	}
11699 	asoc = &stcb->asoc;
11700 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11701 		if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11702 			/*
11703 			 * found a previous CWR queued to same destination
11704 			 * update it if needed
11705 			 */
11706 			uint32_t ctsn;
11707 
11708 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11709 			ctsn = ntohl(cwr->tsn);
11710 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11711 				cwr->tsn = htonl(high_tsn);
11712 			}
11713 			if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11714 				/* Make sure override is carried */
11715 				cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11716 			}
11717 			return;
11718 		}
11719 	}
11720 	sctp_alloc_a_chunk(stcb, chk);
11721 	if (chk == NULL) {
11722 		return;
11723 	}
11724 	chk->copy_by_ref = 0;
11725 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
11726 	chk->rec.chunk_id.can_take_data = 1;
11727 	chk->flags = 0;
11728 	chk->asoc = asoc;
11729 	chk->send_size = sizeof(struct sctp_cwr_chunk);
11730 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11731 	if (chk->data == NULL) {
11732 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11733 		return;
11734 	}
11735 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11736 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11737 	chk->sent = SCTP_DATAGRAM_UNSENT;
11738 	chk->snd_count = 0;
11739 	chk->whoTo = net;
11740 	atomic_add_int(&chk->whoTo->ref_count, 1);
11741 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11742 	cwr->ch.chunk_type = SCTP_ECN_CWR;
11743 	cwr->ch.chunk_flags = override;
11744 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11745 	cwr->tsn = htonl(high_tsn);
11746 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
11747 	asoc->ctrl_queue_cnt++;
11748 }
11749 
11750 static int
11751 sctp_add_stream_reset_out(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk,
11752     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11753 {
11754 	uint16_t len, old_len, i;
11755 	struct sctp_stream_reset_out_request *req_out;
11756 	struct sctp_chunkhdr *ch;
11757 	int at;
11758 	int number_entries = 0;
11759 
11760 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11761 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11762 	/* get to new offset for the param. */
11763 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11764 	/* now how long will this param be? */
11765 	for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11766 		if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) &&
11767 		    (stcb->asoc.strmout[i].chunks_on_queues == 0) &&
11768 		    TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
11769 			number_entries++;
11770 		}
11771 	}
11772 	if (number_entries == 0) {
11773 		return (0);
11774 	}
11775 	if (number_entries == stcb->asoc.streamoutcnt) {
11776 		number_entries = 0;
11777 	}
11778 	if (number_entries > SCTP_MAX_STREAMS_AT_ONCE_RESET) {
11779 		number_entries = SCTP_MAX_STREAMS_AT_ONCE_RESET;
11780 	}
11781 	len = (uint16_t)(sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11782 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11783 	req_out->ph.param_length = htons(len);
11784 	req_out->request_seq = htonl(seq);
11785 	req_out->response_seq = htonl(resp_seq);
11786 	req_out->send_reset_at_tsn = htonl(last_sent);
11787 	at = 0;
11788 	if (number_entries) {
11789 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11790 			if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) &&
11791 			    (stcb->asoc.strmout[i].chunks_on_queues == 0) &&
11792 			    TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
11793 				req_out->list_of_streams[at] = htons(i);
11794 				at++;
11795 				stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT;
11796 				if (at >= number_entries) {
11797 					break;
11798 				}
11799 			}
11800 		}
11801 	} else {
11802 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11803 			stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT;
11804 		}
11805 	}
11806 	if (SCTP_SIZE32(len) > len) {
11807 		/*-
11808 		 * Need to worry about the pad we may end up adding to the
11809 		 * end. This is easy since the struct is either aligned to 4
11810 		 * bytes or 2 bytes off.
11811 		 */
11812 		req_out->list_of_streams[number_entries] = 0;
11813 	}
11814 	/* now fix the chunk length */
11815 	ch->chunk_length = htons(len + old_len);
11816 	chk->book_size = len + old_len;
11817 	chk->book_size_scale = 0;
11818 	chk->send_size = SCTP_SIZE32(chk->book_size);
11819 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11820 	return (1);
11821 }
11822 
11823 static void
11824 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11825     int number_entries, uint16_t *list,
11826     uint32_t seq)
11827 {
11828 	uint16_t len, old_len, i;
11829 	struct sctp_stream_reset_in_request *req_in;
11830 	struct sctp_chunkhdr *ch;
11831 
11832 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11833 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11834 
11835 	/* get to new offset for the param. */
11836 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11837 	/* now how long will this param be? */
11838 	len = (uint16_t)(sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11839 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11840 	req_in->ph.param_length = htons(len);
11841 	req_in->request_seq = htonl(seq);
11842 	if (number_entries) {
11843 		for (i = 0; i < number_entries; i++) {
11844 			req_in->list_of_streams[i] = htons(list[i]);
11845 		}
11846 	}
11847 	if (SCTP_SIZE32(len) > len) {
11848 		/*-
11849 		 * Need to worry about the pad we may end up adding to the
11850 		 * end. This is easy since the struct is either aligned to 4
11851 		 * bytes or 2 bytes off.
11852 		 */
11853 		req_in->list_of_streams[number_entries] = 0;
11854 	}
11855 	/* now fix the chunk length */
11856 	ch->chunk_length = htons(len + old_len);
11857 	chk->book_size = len + old_len;
11858 	chk->book_size_scale = 0;
11859 	chk->send_size = SCTP_SIZE32(chk->book_size);
11860 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11861 	return;
11862 }
11863 
11864 static void
11865 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11866     uint32_t seq)
11867 {
11868 	uint16_t len, old_len;
11869 	struct sctp_stream_reset_tsn_request *req_tsn;
11870 	struct sctp_chunkhdr *ch;
11871 
11872 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11873 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11874 
11875 	/* get to new offset for the param. */
11876 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11877 	/* now how long will this param be? */
11878 	len = sizeof(struct sctp_stream_reset_tsn_request);
11879 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11880 	req_tsn->ph.param_length = htons(len);
11881 	req_tsn->request_seq = htonl(seq);
11882 
11883 	/* now fix the chunk length */
11884 	ch->chunk_length = htons(len + old_len);
11885 	chk->send_size = len + old_len;
11886 	chk->book_size = SCTP_SIZE32(chk->send_size);
11887 	chk->book_size_scale = 0;
11888 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11889 	return;
11890 }
11891 
11892 void
11893 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11894     uint32_t resp_seq, uint32_t result)
11895 {
11896 	uint16_t len, old_len;
11897 	struct sctp_stream_reset_response *resp;
11898 	struct sctp_chunkhdr *ch;
11899 
11900 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11901 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11902 
11903 	/* get to new offset for the param. */
11904 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11905 	/* now how long will this param be? */
11906 	len = sizeof(struct sctp_stream_reset_response);
11907 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11908 	resp->ph.param_length = htons(len);
11909 	resp->response_seq = htonl(resp_seq);
11910 	resp->result = ntohl(result);
11911 
11912 	/* now fix the chunk length */
11913 	ch->chunk_length = htons(len + old_len);
11914 	chk->book_size = len + old_len;
11915 	chk->book_size_scale = 0;
11916 	chk->send_size = SCTP_SIZE32(chk->book_size);
11917 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11918 	return;
11919 }
11920 
11921 void
11922 sctp_send_deferred_reset_response(struct sctp_tcb *stcb,
11923     struct sctp_stream_reset_list *ent,
11924     int response)
11925 {
11926 	struct sctp_association *asoc;
11927 	struct sctp_tmit_chunk *chk;
11928 	struct sctp_chunkhdr *ch;
11929 
11930 	asoc = &stcb->asoc;
11931 
11932 	/*
11933 	 * Reset our last reset action to the new one IP -> response
11934 	 * (PERFORMED probably). This assures that if we fail to send, a
11935 	 * retran from the peer will get the new response.
11936 	 */
11937 	asoc->last_reset_action[0] = response;
11938 	if (asoc->stream_reset_outstanding) {
11939 		return;
11940 	}
11941 	sctp_alloc_a_chunk(stcb, chk);
11942 	if (chk == NULL) {
11943 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11944 		return;
11945 	}
11946 	chk->copy_by_ref = 0;
11947 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11948 	chk->rec.chunk_id.can_take_data = 0;
11949 	chk->flags = 0;
11950 	chk->asoc = &stcb->asoc;
11951 	chk->book_size = sizeof(struct sctp_chunkhdr);
11952 	chk->send_size = SCTP_SIZE32(chk->book_size);
11953 	chk->book_size_scale = 0;
11954 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11955 	if (chk->data == NULL) {
11956 		sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11957 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11958 		return;
11959 	}
11960 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11961 	/* setup chunk parameters */
11962 	chk->sent = SCTP_DATAGRAM_UNSENT;
11963 	chk->snd_count = 0;
11964 	if (stcb->asoc.alternate) {
11965 		chk->whoTo = stcb->asoc.alternate;
11966 	} else {
11967 		chk->whoTo = stcb->asoc.primary_destination;
11968 	}
11969 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11970 	ch->chunk_type = SCTP_STREAM_RESET;
11971 	ch->chunk_flags = 0;
11972 	ch->chunk_length = htons(chk->book_size);
11973 	atomic_add_int(&chk->whoTo->ref_count, 1);
11974 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11975 	sctp_add_stream_reset_result(chk, ent->seq, response);
11976 	/* insert the chunk for sending */
11977 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
11978 	    chk,
11979 	    sctp_next);
11980 	asoc->ctrl_queue_cnt++;
11981 }
11982 
11983 void
11984 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11985     uint32_t resp_seq, uint32_t result,
11986     uint32_t send_una, uint32_t recv_next)
11987 {
11988 	uint16_t len, old_len;
11989 	struct sctp_stream_reset_response_tsn *resp;
11990 	struct sctp_chunkhdr *ch;
11991 
11992 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11993 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11994 
11995 	/* get to new offset for the param. */
11996 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11997 	/* now how long will this param be? */
11998 	len = sizeof(struct sctp_stream_reset_response_tsn);
11999 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
12000 	resp->ph.param_length = htons(len);
12001 	resp->response_seq = htonl(resp_seq);
12002 	resp->result = htonl(result);
12003 	resp->senders_next_tsn = htonl(send_una);
12004 	resp->receivers_next_tsn = htonl(recv_next);
12005 
12006 	/* now fix the chunk length */
12007 	ch->chunk_length = htons(len + old_len);
12008 	chk->book_size = len + old_len;
12009 	chk->send_size = SCTP_SIZE32(chk->book_size);
12010 	chk->book_size_scale = 0;
12011 	SCTP_BUF_LEN(chk->data) = chk->send_size;
12012 	return;
12013 }
12014 
12015 static void
12016 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
12017     uint32_t seq,
12018     uint16_t adding)
12019 {
12020 	uint16_t len, old_len;
12021 	struct sctp_chunkhdr *ch;
12022 	struct sctp_stream_reset_add_strm *addstr;
12023 
12024 	ch = mtod(chk->data, struct sctp_chunkhdr *);
12025 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
12026 
12027 	/* get to new offset for the param. */
12028 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
12029 	/* now how long will this param be? */
12030 	len = sizeof(struct sctp_stream_reset_add_strm);
12031 
12032 	/* Fill it out. */
12033 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
12034 	addstr->ph.param_length = htons(len);
12035 	addstr->request_seq = htonl(seq);
12036 	addstr->number_of_streams = htons(adding);
12037 	addstr->reserved = 0;
12038 
12039 	/* now fix the chunk length */
12040 	ch->chunk_length = htons(len + old_len);
12041 	chk->send_size = len + old_len;
12042 	chk->book_size = SCTP_SIZE32(chk->send_size);
12043 	chk->book_size_scale = 0;
12044 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
12045 	return;
12046 }
12047 
12048 static void
12049 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
12050     uint32_t seq,
12051     uint16_t adding)
12052 {
12053 	uint16_t len, old_len;
12054 	struct sctp_chunkhdr *ch;
12055 	struct sctp_stream_reset_add_strm *addstr;
12056 
12057 	ch = mtod(chk->data, struct sctp_chunkhdr *);
12058 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
12059 
12060 	/* get to new offset for the param. */
12061 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
12062 	/* now how long will this param be? */
12063 	len = sizeof(struct sctp_stream_reset_add_strm);
12064 	/* Fill it out. */
12065 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
12066 	addstr->ph.param_length = htons(len);
12067 	addstr->request_seq = htonl(seq);
12068 	addstr->number_of_streams = htons(adding);
12069 	addstr->reserved = 0;
12070 
12071 	/* now fix the chunk length */
12072 	ch->chunk_length = htons(len + old_len);
12073 	chk->send_size = len + old_len;
12074 	chk->book_size = SCTP_SIZE32(chk->send_size);
12075 	chk->book_size_scale = 0;
12076 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
12077 	return;
12078 }
12079 
12080 int
12081 sctp_send_stream_reset_out_if_possible(struct sctp_tcb *stcb, int so_locked)
12082 {
12083 	struct sctp_association *asoc;
12084 	struct sctp_tmit_chunk *chk;
12085 	struct sctp_chunkhdr *ch;
12086 	uint32_t seq;
12087 
12088 	asoc = &stcb->asoc;
12089 	asoc->trigger_reset = 0;
12090 	if (asoc->stream_reset_outstanding) {
12091 		return (EALREADY);
12092 	}
12093 	sctp_alloc_a_chunk(stcb, chk);
12094 	if (chk == NULL) {
12095 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12096 		return (ENOMEM);
12097 	}
12098 	chk->copy_by_ref = 0;
12099 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
12100 	chk->rec.chunk_id.can_take_data = 0;
12101 	chk->flags = 0;
12102 	chk->asoc = &stcb->asoc;
12103 	chk->book_size = sizeof(struct sctp_chunkhdr);
12104 	chk->send_size = SCTP_SIZE32(chk->book_size);
12105 	chk->book_size_scale = 0;
12106 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
12107 	if (chk->data == NULL) {
12108 		sctp_free_a_chunk(stcb, chk, so_locked);
12109 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12110 		return (ENOMEM);
12111 	}
12112 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
12113 
12114 	/* setup chunk parameters */
12115 	chk->sent = SCTP_DATAGRAM_UNSENT;
12116 	chk->snd_count = 0;
12117 	if (stcb->asoc.alternate) {
12118 		chk->whoTo = stcb->asoc.alternate;
12119 	} else {
12120 		chk->whoTo = stcb->asoc.primary_destination;
12121 	}
12122 	ch = mtod(chk->data, struct sctp_chunkhdr *);
12123 	ch->chunk_type = SCTP_STREAM_RESET;
12124 	ch->chunk_flags = 0;
12125 	ch->chunk_length = htons(chk->book_size);
12126 	atomic_add_int(&chk->whoTo->ref_count, 1);
12127 	SCTP_BUF_LEN(chk->data) = chk->send_size;
12128 	seq = stcb->asoc.str_reset_seq_out;
12129 	if (sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1))) {
12130 		seq++;
12131 		asoc->stream_reset_outstanding++;
12132 	} else {
12133 		m_freem(chk->data);
12134 		chk->data = NULL;
12135 		sctp_free_a_chunk(stcb, chk, so_locked);
12136 		return (ENOENT);
12137 	}
12138 	asoc->str_reset = chk;
12139 	/* insert the chunk for sending */
12140 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
12141 	    chk,
12142 	    sctp_next);
12143 	asoc->ctrl_queue_cnt++;
12144 
12145 	if (stcb->asoc.send_sack) {
12146 		sctp_send_sack(stcb, so_locked);
12147 	}
12148 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
12149 	return (0);
12150 }
12151 
12152 int
12153 sctp_send_str_reset_req(struct sctp_tcb *stcb,
12154     uint16_t number_entries, uint16_t *list,
12155     uint8_t send_in_req,
12156     uint8_t send_tsn_req,
12157     uint8_t add_stream,
12158     uint16_t adding_o,
12159     uint16_t adding_i, uint8_t peer_asked)
12160 {
12161 	struct sctp_association *asoc;
12162 	struct sctp_tmit_chunk *chk;
12163 	struct sctp_chunkhdr *ch;
12164 	int can_send_out_req = 0;
12165 	uint32_t seq;
12166 
12167 	SCTP_TCB_LOCK_ASSERT(stcb);
12168 
12169 	asoc = &stcb->asoc;
12170 	if (asoc->stream_reset_outstanding) {
12171 		/*-
12172 		 * Already one pending, must get ACK back to clear the flag.
12173 		 */
12174 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
12175 		return (EBUSY);
12176 	}
12177 	if ((send_in_req == 0) && (send_tsn_req == 0) &&
12178 	    (add_stream == 0)) {
12179 		/* nothing to do */
12180 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12181 		return (EINVAL);
12182 	}
12183 	if (send_tsn_req && send_in_req) {
12184 		/* error, can't do that */
12185 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12186 		return (EINVAL);
12187 	} else if (send_in_req) {
12188 		can_send_out_req = 1;
12189 	}
12190 	if (number_entries > (MCLBYTES -
12191 	    SCTP_MIN_OVERHEAD -
12192 	    sizeof(struct sctp_chunkhdr) -
12193 	    sizeof(struct sctp_stream_reset_out_request)) /
12194 	    sizeof(uint16_t)) {
12195 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12196 		return (ENOMEM);
12197 	}
12198 	sctp_alloc_a_chunk(stcb, chk);
12199 	if (chk == NULL) {
12200 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12201 		return (ENOMEM);
12202 	}
12203 	chk->copy_by_ref = 0;
12204 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
12205 	chk->rec.chunk_id.can_take_data = 0;
12206 	chk->flags = 0;
12207 	chk->asoc = &stcb->asoc;
12208 	chk->book_size = sizeof(struct sctp_chunkhdr);
12209 	chk->send_size = SCTP_SIZE32(chk->book_size);
12210 	chk->book_size_scale = 0;
12211 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
12212 	if (chk->data == NULL) {
12213 		sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
12214 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12215 		return (ENOMEM);
12216 	}
12217 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
12218 
12219 	/* setup chunk parameters */
12220 	chk->sent = SCTP_DATAGRAM_UNSENT;
12221 	chk->snd_count = 0;
12222 	if (stcb->asoc.alternate) {
12223 		chk->whoTo = stcb->asoc.alternate;
12224 	} else {
12225 		chk->whoTo = stcb->asoc.primary_destination;
12226 	}
12227 	atomic_add_int(&chk->whoTo->ref_count, 1);
12228 	ch = mtod(chk->data, struct sctp_chunkhdr *);
12229 	ch->chunk_type = SCTP_STREAM_RESET;
12230 	ch->chunk_flags = 0;
12231 	ch->chunk_length = htons(chk->book_size);
12232 	SCTP_BUF_LEN(chk->data) = chk->send_size;
12233 
12234 	seq = stcb->asoc.str_reset_seq_out;
12235 	if (can_send_out_req) {
12236 		int ret;
12237 
12238 		ret = sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
12239 		if (ret) {
12240 			seq++;
12241 			asoc->stream_reset_outstanding++;
12242 		}
12243 	}
12244 	if ((add_stream & 1) &&
12245 	    ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
12246 		/* Need to allocate more */
12247 		struct sctp_stream_out *oldstream;
12248 		struct sctp_stream_queue_pending *sp, *nsp;
12249 		int i;
12250 #if defined(SCTP_DETAILED_STR_STATS)
12251 		int j;
12252 #endif
12253 
12254 		oldstream = stcb->asoc.strmout;
12255 		/* get some more */
12256 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
12257 		    (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out),
12258 		    SCTP_M_STRMO);
12259 		if (stcb->asoc.strmout == NULL) {
12260 			uint8_t x;
12261 
12262 			stcb->asoc.strmout = oldstream;
12263 			/* Turn off the bit */
12264 			x = add_stream & 0xfe;
12265 			add_stream = x;
12266 			goto skip_stuff;
12267 		}
12268 		/*
12269 		 * Ok now we proceed with copying the old out stuff and
12270 		 * initializing the new stuff.
12271 		 */
12272 		stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, false);
12273 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
12274 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
12275 			/* FIX ME FIX ME */
12276 			/*
12277 			 * This should be a SS_COPY operation FIX ME STREAM
12278 			 * SCHEDULER EXPERT
12279 			 */
12280 			stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]);
12281 			stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
12282 #if defined(SCTP_DETAILED_STR_STATS)
12283 			for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
12284 				stcb->asoc.strmout[i].abandoned_sent[j] = oldstream[i].abandoned_sent[j];
12285 				stcb->asoc.strmout[i].abandoned_unsent[j] = oldstream[i].abandoned_unsent[j];
12286 			}
12287 #else
12288 			stcb->asoc.strmout[i].abandoned_sent[0] = oldstream[i].abandoned_sent[0];
12289 			stcb->asoc.strmout[i].abandoned_unsent[0] = oldstream[i].abandoned_unsent[0];
12290 #endif
12291 			stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered;
12292 			stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered;
12293 			stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
12294 			stcb->asoc.strmout[i].sid = i;
12295 			stcb->asoc.strmout[i].state = oldstream[i].state;
12296 			/* now anything on those queues? */
12297 			TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
12298 				TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
12299 				TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
12300 			}
12301 		}
12302 		/* now the new streams */
12303 		stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc);
12304 		for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
12305 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
12306 			stcb->asoc.strmout[i].chunks_on_queues = 0;
12307 #if defined(SCTP_DETAILED_STR_STATS)
12308 			for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
12309 				stcb->asoc.strmout[i].abandoned_sent[j] = 0;
12310 				stcb->asoc.strmout[i].abandoned_unsent[j] = 0;
12311 			}
12312 #else
12313 			stcb->asoc.strmout[i].abandoned_sent[0] = 0;
12314 			stcb->asoc.strmout[i].abandoned_unsent[0] = 0;
12315 #endif
12316 			stcb->asoc.strmout[i].next_mid_ordered = 0;
12317 			stcb->asoc.strmout[i].next_mid_unordered = 0;
12318 			stcb->asoc.strmout[i].sid = i;
12319 			stcb->asoc.strmout[i].last_msg_incomplete = 0;
12320 			stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL);
12321 			stcb->asoc.strmout[i].state = SCTP_STREAM_CLOSED;
12322 		}
12323 		stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
12324 		SCTP_FREE(oldstream, SCTP_M_STRMO);
12325 	}
12326 skip_stuff:
12327 	if ((add_stream & 1) && (adding_o > 0)) {
12328 		asoc->strm_pending_add_size = adding_o;
12329 		asoc->peer_req_out = peer_asked;
12330 		sctp_add_an_out_stream(chk, seq, adding_o);
12331 		seq++;
12332 		asoc->stream_reset_outstanding++;
12333 	}
12334 	if ((add_stream & 2) && (adding_i > 0)) {
12335 		sctp_add_an_in_stream(chk, seq, adding_i);
12336 		seq++;
12337 		asoc->stream_reset_outstanding++;
12338 	}
12339 	if (send_in_req) {
12340 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
12341 		seq++;
12342 		asoc->stream_reset_outstanding++;
12343 	}
12344 	if (send_tsn_req) {
12345 		sctp_add_stream_reset_tsn(chk, seq);
12346 		asoc->stream_reset_outstanding++;
12347 	}
12348 	asoc->str_reset = chk;
12349 	/* insert the chunk for sending */
12350 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
12351 	    chk,
12352 	    sctp_next);
12353 	asoc->ctrl_queue_cnt++;
12354 	if (stcb->asoc.send_sack) {
12355 		sctp_send_sack(stcb, SCTP_SO_LOCKED);
12356 	}
12357 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
12358 	return (0);
12359 }
12360 
12361 void
12362 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
12363     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12364     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
12365     uint32_t vrf_id, uint16_t port)
12366 {
12367 	/* Don't respond to an ABORT with an ABORT. */
12368 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
12369 		if (cause)
12370 			sctp_m_freem(cause);
12371 		return;
12372 	}
12373 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
12374 	    mflowtype, mflowid, fibnum,
12375 	    vrf_id, port);
12376 	return;
12377 }
12378 
12379 void
12380 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
12381     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12382     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
12383     uint32_t vrf_id, uint16_t port)
12384 {
12385 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
12386 	    mflowtype, mflowid, fibnum,
12387 	    vrf_id, port);
12388 	return;
12389 }
12390 
12391 static struct mbuf *
12392 sctp_copy_resume(struct uio *uio,
12393     int max_send_len,
12394     int user_marks_eor,
12395     int *error,
12396     uint32_t *sndout,
12397     struct mbuf **new_tail)
12398 {
12399 	struct mbuf *m;
12400 
12401 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
12402 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
12403 	if (m == NULL) {
12404 		/* The only possible error is EFAULT. */
12405 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12406 		*error = EFAULT;
12407 	} else {
12408 		*sndout = m_length(m, NULL);
12409 		*new_tail = m_last(m);
12410 	}
12411 	return (m);
12412 }
12413 
12414 static int
12415 sctp_copy_one(struct sctp_stream_queue_pending *sp,
12416     struct uio *uio,
12417     int resv_upfront)
12418 {
12419 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, resv_upfront, 0);
12420 	if (sp->data == NULL) {
12421 		/* The only possible error is EFAULT. */
12422 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12423 		return (EFAULT);
12424 	}
12425 	sp->tail_mbuf = m_last(sp->data);
12426 	return (0);
12427 }
12428 
12429 static struct sctp_stream_queue_pending *
12430 sctp_copy_it_in(struct sctp_tcb *stcb,
12431     struct sctp_association *asoc,
12432     struct sctp_nonpad_sndrcvinfo *srcv,
12433     struct uio *uio,
12434     struct sctp_nets *net,
12435     ssize_t max_send_len,
12436     int user_marks_eor,
12437     int *error)
12438 {
12439 
12440 	/*-
12441 	 * This routine must be very careful in its work. Protocol
12442 	 * processing is up and running so care must be taken to spl...()
12443 	 * when you need to do something that may effect the stcb/asoc. The
12444 	 * sb is locked however. When data is copied the protocol processing
12445 	 * should be enabled since this is a slower operation...
12446 	 */
12447 	struct sctp_stream_queue_pending *sp;
12448 	int resv_in_first;
12449 
12450 	*error = 0;
12451 	sctp_alloc_a_strmoq(stcb, sp);
12452 	if (sp == NULL) {
12453 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12454 		*error = ENOMEM;
12455 		goto out_now;
12456 	}
12457 	sp->act_flags = 0;
12458 	sp->sender_all_done = 0;
12459 	sp->sinfo_flags = srcv->sinfo_flags;
12460 	sp->timetolive = srcv->sinfo_timetolive;
12461 	sp->ppid = srcv->sinfo_ppid;
12462 	sp->context = srcv->sinfo_context;
12463 	sp->fsn = 0;
12464 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
12465 	sp->sid = srcv->sinfo_stream;
12466 	sp->length = (uint32_t)min(uio->uio_resid, max_send_len);
12467 	if ((sp->length == (uint32_t)uio->uio_resid) &&
12468 	    ((user_marks_eor == 0) ||
12469 	    (srcv->sinfo_flags & SCTP_EOF) ||
12470 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12471 		sp->msg_is_complete = 1;
12472 	} else {
12473 		sp->msg_is_complete = 0;
12474 	}
12475 	sp->sender_all_done = 0;
12476 	sp->some_taken = 0;
12477 	sp->put_last_out = 0;
12478 	resv_in_first = SCTP_DATA_CHUNK_OVERHEAD(stcb);
12479 	sp->data = sp->tail_mbuf = NULL;
12480 	if (sp->length == 0) {
12481 		goto skip_copy;
12482 	}
12483 	if (srcv->sinfo_keynumber_valid) {
12484 		sp->auth_keyid = srcv->sinfo_keynumber;
12485 	} else {
12486 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
12487 	}
12488 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
12489 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
12490 		sp->holds_key_ref = 1;
12491 	}
12492 	*error = sctp_copy_one(sp, uio, resv_in_first);
12493 skip_copy:
12494 	if (*error) {
12495 		sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
12496 		sp = NULL;
12497 	} else {
12498 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12499 			sp->net = net;
12500 			atomic_add_int(&sp->net->ref_count, 1);
12501 		} else {
12502 			sp->net = NULL;
12503 		}
12504 		sctp_set_prsctp_policy(sp);
12505 	}
12506 out_now:
12507 	return (sp);
12508 }
12509 
12510 int
12511 sctp_sosend(struct socket *so,
12512     struct sockaddr *addr,
12513     struct uio *uio,
12514     struct mbuf *top,
12515     struct mbuf *control,
12516     int flags,
12517     struct thread *p)
12518 {
12519 	struct sctp_sndrcvinfo sndrcvninfo;
12520 #if defined(INET) && defined(INET6)
12521 	struct sockaddr_in sin;
12522 #endif
12523 	struct sockaddr *addr_to_use;
12524 	int error;
12525 	bool use_sndinfo;
12526 
12527 	if (control != NULL) {
12528 		/* process cmsg snd/rcv info (maybe a assoc-id) */
12529 		use_sndinfo = sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, sizeof(sndrcvninfo));
12530 	} else {
12531 		use_sndinfo = false;
12532 	}
12533 #if defined(INET) && defined(INET6)
12534 	if ((addr != NULL) && (addr->sa_family == AF_INET6)) {
12535 		struct sockaddr_in6 *sin6;
12536 
12537 		if (addr->sa_len != sizeof(struct sockaddr_in6)) {
12538 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12539 			return (EINVAL);
12540 		}
12541 		sin6 = (struct sockaddr_in6 *)addr;
12542 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12543 			in6_sin6_2_sin(&sin, sin6);
12544 			addr_to_use = (struct sockaddr *)&sin;
12545 		} else {
12546 			addr_to_use = addr;
12547 		}
12548 	} else {
12549 		addr_to_use = addr;
12550 	}
12551 #else
12552 	addr_to_use = addr;
12553 #endif
12554 	error = sctp_lower_sosend(so, addr_to_use, uio, top, control, flags,
12555 	    use_sndinfo ? &sndrcvninfo : NULL, p);
12556 	return (error);
12557 }
12558 
12559 int
12560 sctp_lower_sosend(struct socket *so,
12561     struct sockaddr *addr,
12562     struct uio *uio,
12563     struct mbuf *top,
12564     struct mbuf *control,
12565     int flags,
12566     struct sctp_sndrcvinfo *srcv,
12567     struct thread *p)
12568 {
12569 	struct sctp_nonpad_sndrcvinfo sndrcvninfo_buf;
12570 	struct epoch_tracker et;
12571 	struct timeval now;
12572 	struct sctp_block_entry be;
12573 	struct sctp_inpcb *inp;
12574 	struct sctp_tcb *stcb = NULL;
12575 	struct sctp_nets *net;
12576 	struct sctp_association *asoc;
12577 	struct sctp_inpcb *t_inp;
12578 	struct sctp_nonpad_sndrcvinfo *sndrcvninfo;
12579 	ssize_t sndlen = 0, max_len, local_add_more;
12580 	ssize_t local_soresv = 0;
12581 	sctp_assoc_t sinfo_assoc_id;
12582 	int user_marks_eor;
12583 	int nagle_applies = 0;
12584 	int error;
12585 	int queue_only = 0, queue_only_for_init = 0;
12586 	int un_sent;
12587 	int now_filled = 0;
12588 	unsigned int inqueue_bytes = 0;
12589 	uint16_t port;
12590 	uint16_t sinfo_flags;
12591 	uint16_t sinfo_stream;
12592 	bool create_lock_applied = false;
12593 	bool free_cnt_applied = false;
12594 	bool some_on_control;
12595 	bool got_all_of_the_send = false;
12596 	bool non_blocking = false;
12597 
12598 	error = 0;
12599 	net = NULL;
12600 	stcb = NULL;
12601 
12602 	if ((uio == NULL) && (top == NULL)) {
12603 		error = EINVAL;
12604 		goto out_unlocked;
12605 	}
12606 	if (addr != NULL) {
12607 		union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12608 
12609 		switch (raddr->sa.sa_family) {
12610 #ifdef INET
12611 		case AF_INET:
12612 			if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12613 				error = EINVAL;
12614 				goto out_unlocked;
12615 			}
12616 			port = raddr->sin.sin_port;
12617 			break;
12618 #endif
12619 #ifdef INET6
12620 		case AF_INET6:
12621 			if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12622 				error = EINVAL;
12623 				goto out_unlocked;
12624 			}
12625 			port = raddr->sin6.sin6_port;
12626 			break;
12627 #endif
12628 		default:
12629 			error = EAFNOSUPPORT;
12630 			goto out_unlocked;
12631 		}
12632 	} else {
12633 		port = 0;
12634 	}
12635 	if (uio != NULL) {
12636 		if (uio->uio_resid < 0) {
12637 			error = EINVAL;
12638 			goto out_unlocked;
12639 		}
12640 		sndlen = uio->uio_resid;
12641 	} else {
12642 		sndlen = SCTP_HEADER_LEN(top);
12643 	}
12644 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %zd\n",
12645 	    (void *)addr, sndlen);
12646 
12647 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12648 	if (inp == NULL) {
12649 		error = EINVAL;
12650 		goto out_unlocked;
12651 	}
12652 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12653 	if ((uio == NULL) && (user_marks_eor != 0)) {
12654 		/*-
12655 		 * We do not support eeor mode for
12656 		 * sending with mbuf chains (like sendfile).
12657 		 */
12658 		error = EINVAL;
12659 		goto out_unlocked;
12660 	}
12661 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12662 	    SCTP_IS_LISTENING(inp)) {
12663 		/* The listener can NOT send. */
12664 		error = EINVAL;
12665 		goto out_unlocked;
12666 	}
12667 	atomic_add_int(&inp->total_sends, 1);
12668 
12669 	if (srcv != NULL) {
12670 		sndrcvninfo = (struct sctp_nonpad_sndrcvinfo *)srcv;
12671 		sinfo_assoc_id = sndrcvninfo->sinfo_assoc_id;
12672 		sinfo_flags = sndrcvninfo->sinfo_flags;
12673 		if (INVALID_SINFO_FLAG(sinfo_flags) ||
12674 		    PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12675 			error = EINVAL;
12676 			goto out_unlocked;
12677 		}
12678 		if (sinfo_flags != 0) {
12679 			SCTP_STAT_INCR(sctps_sends_with_flags);
12680 		}
12681 	} else {
12682 		sndrcvninfo = NULL;
12683 		sinfo_flags = inp->def_send.sinfo_flags;
12684 		sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12685 	}
12686 	if (flags & MSG_EOR) {
12687 		sinfo_flags |= SCTP_EOR;
12688 	}
12689 	if (flags & MSG_EOF) {
12690 		sinfo_flags |= SCTP_EOF;
12691 	}
12692 	if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12693 		error = EINVAL;
12694 		goto out_unlocked;
12695 	}
12696 	SCTP_INP_RLOCK(inp);
12697 	if ((sinfo_flags & SCTP_SENDALL) &&
12698 	    (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)) {
12699 		SCTP_INP_RUNLOCK(inp);
12700 		error = sctp_sendall(inp, uio, top, sndrcvninfo);
12701 		top = NULL;
12702 		goto out_unlocked;
12703 	}
12704 	/* Now we must find the association. */
12705 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12706 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12707 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
12708 		if (stcb != NULL) {
12709 			SCTP_TCB_LOCK(stcb);
12710 		}
12711 		SCTP_INP_RUNLOCK(inp);
12712 	} else if (sinfo_assoc_id > SCTP_ALL_ASSOC) {
12713 		stcb = sctp_findasoc_ep_asocid_locked(inp, sinfo_assoc_id, 1);
12714 		SCTP_INP_RUNLOCK(inp);
12715 		if (stcb != NULL) {
12716 			SCTP_TCB_LOCK_ASSERT(stcb);
12717 		}
12718 	} else if (addr != NULL) {
12719 		/*-
12720 		 * Since we did not use findep we must
12721 		 * increment it, and if we don't find a tcb
12722 		 * decrement it.
12723 		 */
12724 		SCTP_INP_INCR_REF(inp);
12725 		SCTP_INP_RUNLOCK(inp);
12726 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12727 		if (stcb == NULL) {
12728 			SCTP_INP_WLOCK(inp);
12729 			SCTP_INP_DECR_REF(inp);
12730 			SCTP_INP_WUNLOCK(inp);
12731 		} else {
12732 			SCTP_TCB_LOCK_ASSERT(stcb);
12733 		}
12734 	} else {
12735 		SCTP_INP_RUNLOCK(inp);
12736 	}
12737 
12738 #ifdef INVARIANTS
12739 	if (stcb != NULL) {
12740 		SCTP_TCB_LOCK_ASSERT(stcb);
12741 	}
12742 #endif
12743 
12744 	if ((stcb == NULL) && (addr != NULL)) {
12745 		/* Possible implicit send? */
12746 		SCTP_ASOC_CREATE_LOCK(inp);
12747 		create_lock_applied = true;
12748 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12749 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12750 			error = EINVAL;
12751 			goto out_unlocked;
12752 		}
12753 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12754 		    (addr->sa_family == AF_INET6)) {
12755 			error = EINVAL;
12756 			goto out_unlocked;
12757 		}
12758 		SCTP_INP_WLOCK(inp);
12759 		SCTP_INP_INCR_REF(inp);
12760 		SCTP_INP_WUNLOCK(inp);
12761 		/* With the lock applied look again */
12762 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12763 #if defined(INET) || defined(INET6)
12764 		if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12765 			stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12766 		}
12767 #endif
12768 		if (stcb == NULL) {
12769 			SCTP_INP_WLOCK(inp);
12770 			SCTP_INP_DECR_REF(inp);
12771 			SCTP_INP_WUNLOCK(inp);
12772 		} else {
12773 			SCTP_TCB_LOCK_ASSERT(stcb);
12774 			SCTP_ASOC_CREATE_UNLOCK(inp);
12775 			create_lock_applied = false;
12776 		}
12777 		if (error != 0) {
12778 			goto out_unlocked;
12779 		}
12780 		if (t_inp != inp) {
12781 			error = ENOTCONN;
12782 			goto out_unlocked;
12783 		}
12784 	}
12785 	if (stcb == NULL) {
12786 		if (addr == NULL) {
12787 			error = ENOENT;
12788 			goto out_unlocked;
12789 		} else {
12790 			/* We must go ahead and start the INIT process */
12791 			uint32_t vrf_id;
12792 
12793 			if ((sinfo_flags & SCTP_ABORT) ||
12794 			    ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12795 				/*-
12796 				 * User asks to abort a non-existent assoc,
12797 				 * or EOF a non-existent assoc with no data
12798 				 */
12799 				error = ENOENT;
12800 				goto out_unlocked;
12801 			}
12802 			/* get an asoc/stcb struct */
12803 			vrf_id = inp->def_vrf_id;
12804 			KASSERT(create_lock_applied, ("create_lock_applied is false"));
12805 			stcb = sctp_aloc_assoc_connected(inp, addr, &error, 0, 0, vrf_id,
12806 			    inp->sctp_ep.pre_open_stream_count,
12807 			    inp->sctp_ep.port,
12808 			    p,
12809 			    SCTP_INITIALIZE_AUTH_PARAMS);
12810 			if (stcb == NULL) {
12811 				/* error is setup for us in the call. */
12812 				KASSERT(error != 0, ("error is 0 although stcb is NULL"));
12813 				goto out_unlocked;
12814 			}
12815 			SCTP_TCB_LOCK_ASSERT(stcb);
12816 			SCTP_ASOC_CREATE_UNLOCK(inp);
12817 			create_lock_applied = false;
12818 			/*
12819 			 * Turn on queue only flag to prevent data from
12820 			 * being sent
12821 			 */
12822 			queue_only = 1;
12823 			SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT);
12824 			(void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered);
12825 			if (control != NULL) {
12826 				if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12827 					sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC,
12828 					    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
12829 					stcb = NULL;
12830 					KASSERT(error != 0,
12831 					    ("error is 0 although sctp_process_cmsgs_for_init() indicated an error"));
12832 					goto out_unlocked;
12833 				}
12834 			}
12835 			/* out with the INIT */
12836 			queue_only_for_init = 1;
12837 			/*-
12838 			 * we may want to dig in after this call and adjust the MTU
12839 			 * value. It defaulted to 1500 (constant) but the ro
12840 			 * structure may now have an update and thus we may need to
12841 			 * change it BEFORE we append the message.
12842 			 */
12843 		}
12844 	}
12845 
12846 	KASSERT(!create_lock_applied, ("create_lock_applied is true"));
12847 	KASSERT(stcb != NULL, ("stcb is NULL"));
12848 	SCTP_TCB_LOCK_ASSERT(stcb);
12849 
12850 	asoc = &stcb->asoc;
12851 	if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
12852 	    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
12853 		if (asoc->state & SCTP_STATE_WAS_ABORTED) {
12854 			/* XXX: Could also be ECONNABORTED, not enough info. */
12855 			error = ECONNRESET;
12856 		} else {
12857 			error = ENOTCONN;
12858 		}
12859 		goto out_unlocked;
12860 	}
12861 	if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
12862 	    (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) {
12863 		queue_only = 1;
12864 	}
12865 	/* Keep the stcb from being freed under our feet. */
12866 	atomic_add_int(&asoc->refcnt, 1);
12867 	free_cnt_applied = true;
12868 	if (sndrcvninfo == NULL) {
12869 		/* Use a local copy to have a consistent view. */
12870 		sndrcvninfo_buf = asoc->def_send;
12871 		sndrcvninfo = &sndrcvninfo_buf;
12872 		sinfo_flags = sndrcvninfo->sinfo_flags;
12873 		if (flags & MSG_EOR) {
12874 			sinfo_flags |= SCTP_EOR;
12875 		}
12876 		if (flags & MSG_EOF) {
12877 			sinfo_flags |= SCTP_EOF;
12878 		}
12879 	}
12880 	/* Are we aborting? */
12881 	if (sinfo_flags & SCTP_ABORT) {
12882 		struct mbuf *mm;
12883 		struct sctp_paramhdr *ph;
12884 		ssize_t tot_demand, tot_out = 0, max_out;
12885 
12886 		SCTP_STAT_INCR(sctps_sends_with_abort);
12887 		if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) ||
12888 		    (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) {
12889 			/* It has to be up before we abort. */
12890 			error = EINVAL;
12891 			goto out_unlocked;
12892 		}
12893 		/* How big is the user initiated abort? */
12894 		if (top != NULL) {
12895 			struct mbuf *cntm;
12896 
12897 			if (sndlen != 0) {
12898 				for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12899 					tot_out += SCTP_BUF_LEN(cntm);
12900 				}
12901 			}
12902 			mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA);
12903 		} else {
12904 			/* Must fit in a MTU */
12905 			tot_out = sndlen;
12906 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12907 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12908 				error = EMSGSIZE;
12909 				goto out_unlocked;
12910 			}
12911 			mm = sctp_get_mbuf_for_msg((unsigned int)tot_demand, 0, M_NOWAIT, 1, MT_DATA);
12912 		}
12913 		if (mm == NULL) {
12914 			error = ENOMEM;
12915 			goto out_unlocked;
12916 		}
12917 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12918 		max_out -= sizeof(struct sctp_abort_msg);
12919 		if (tot_out > max_out) {
12920 			tot_out = max_out;
12921 		}
12922 		ph = mtod(mm, struct sctp_paramhdr *);
12923 		ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12924 		ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + tot_out));
12925 		ph++;
12926 		SCTP_BUF_LEN(mm) = (int)(tot_out + sizeof(struct sctp_paramhdr));
12927 		if (top == NULL) {
12928 			SCTP_TCB_UNLOCK(stcb);
12929 			error = uiomove((caddr_t)ph, (int)tot_out, uio);
12930 			SCTP_TCB_LOCK(stcb);
12931 			if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
12932 			    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
12933 				sctp_m_freem(mm);
12934 				if (asoc->state & SCTP_STATE_WAS_ABORTED) {
12935 					/*
12936 					 * XXX: Could also be ECONNABORTED,
12937 					 * not enough info.
12938 					 */
12939 					error = ECONNRESET;
12940 				} else {
12941 					error = ENOTCONN;
12942 				}
12943 				goto out_unlocked;
12944 			}
12945 			if (error != 0) {
12946 				/*-
12947 				 * Here if we can't get his data we
12948 				 * still abort we just don't get to
12949 				 * send the users note :-0
12950 				 */
12951 				sctp_m_freem(mm);
12952 				mm = NULL;
12953 				error = 0;
12954 			}
12955 		} else {
12956 			if (sndlen != 0) {
12957 				SCTP_BUF_NEXT(mm) = top;
12958 			}
12959 		}
12960 		atomic_subtract_int(&asoc->refcnt, 1);
12961 		free_cnt_applied = false;
12962 		/* release this lock, otherwise we hang on ourselves */
12963 		NET_EPOCH_ENTER(et);
12964 		sctp_abort_an_association(stcb->sctp_ep, stcb, mm, false, SCTP_SO_LOCKED);
12965 		NET_EPOCH_EXIT(et);
12966 		stcb = NULL;
12967 		/*
12968 		 * In this case top is already chained to mm avoid double
12969 		 * free, since we free it below if top != NULL and driver
12970 		 * would free it after sending the packet out
12971 		 */
12972 		if (sndlen != 0) {
12973 			top = NULL;
12974 		}
12975 		goto out_unlocked;
12976 	}
12977 
12978 	KASSERT(stcb != NULL, ("stcb is NULL"));
12979 	SCTP_TCB_LOCK_ASSERT(stcb);
12980 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
12981 	    ("Association about to be freed"));
12982 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
12983 	    ("Association was aborted"));
12984 
12985 	if (sinfo_flags & SCTP_ADDR_OVER) {
12986 		if (addr != NULL) {
12987 			net = sctp_findnet(stcb, addr);
12988 		} else {
12989 			net = NULL;
12990 		}
12991 		if ((net == NULL) ||
12992 		    ((port != 0) && (port != stcb->rport))) {
12993 			error = EINVAL;
12994 			goto out_unlocked;
12995 		}
12996 	} else {
12997 		if (asoc->alternate != NULL) {
12998 			net = asoc->alternate;
12999 		} else {
13000 			net = asoc->primary_destination;
13001 		}
13002 	}
13003 	if (sndlen == 0) {
13004 		if (sinfo_flags & SCTP_EOF) {
13005 			got_all_of_the_send = true;
13006 			goto dataless_eof;
13007 		} else {
13008 			error = EINVAL;
13009 			goto out_unlocked;
13010 		}
13011 	}
13012 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
13013 		if (sndlen > (ssize_t)asoc->smallest_mtu) {
13014 			error = EMSGSIZE;
13015 			goto out_unlocked;
13016 		}
13017 	}
13018 	sinfo_stream = sndrcvninfo->sinfo_stream;
13019 	/* Is the stream no. valid? */
13020 	if (sinfo_stream >= asoc->streamoutcnt) {
13021 		/* Invalid stream number */
13022 		error = EINVAL;
13023 		goto out_unlocked;
13024 	}
13025 	if ((asoc->strmout[sinfo_stream].state != SCTP_STREAM_OPEN) &&
13026 	    (asoc->strmout[sinfo_stream].state != SCTP_STREAM_OPENING)) {
13027 		/*
13028 		 * Can't queue any data while stream reset is underway.
13029 		 */
13030 		if (asoc->strmout[sinfo_stream].state > SCTP_STREAM_OPEN) {
13031 			error = EAGAIN;
13032 		} else {
13033 			error = EINVAL;
13034 		}
13035 		goto out_unlocked;
13036 	}
13037 	atomic_add_int(&stcb->total_sends, 1);
13038 	if (SCTP_SO_IS_NBIO(so) || (flags & (MSG_NBIO | MSG_DONTWAIT)) != 0) {
13039 		non_blocking = true;
13040 	}
13041 	if (non_blocking) {
13042 		ssize_t amount;
13043 
13044 		inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13045 		if (user_marks_eor == 0) {
13046 			amount = sndlen;
13047 		} else {
13048 			amount = 1;
13049 		}
13050 		if ((SCTP_SB_LIMIT_SND(so) < (amount + inqueue_bytes + asoc->sb_send_resv)) ||
13051 		    (asoc->chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
13052 			if ((sndlen > (ssize_t)SCTP_SB_LIMIT_SND(so)) &&
13053 			    (user_marks_eor == 0)) {
13054 				error = EMSGSIZE;
13055 			} else {
13056 				error = EWOULDBLOCK;
13057 			}
13058 			goto out_unlocked;
13059 		}
13060 	}
13061 	atomic_add_int(&asoc->sb_send_resv, (int)sndlen);
13062 	local_soresv = sndlen;
13063 
13064 	KASSERT(stcb != NULL, ("stcb is NULL"));
13065 	SCTP_TCB_LOCK_ASSERT(stcb);
13066 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13067 	    ("Association about to be freed"));
13068 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13069 	    ("Association was aborted"));
13070 
13071 	/* Ok, we will attempt a msgsnd :> */
13072 	if (p != NULL) {
13073 		p->td_ru.ru_msgsnd++;
13074 	}
13075 	/* Calculate the maximum we can send */
13076 	inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13077 	if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
13078 		max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13079 	} else {
13080 		max_len = 0;
13081 	}
13082 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
13083 	if ((user_marks_eor == 0) &&
13084 	    (sndlen > (ssize_t)SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
13085 		/* It will NEVER fit. */
13086 		error = EMSGSIZE;
13087 		goto out_unlocked;
13088 	}
13089 	if (user_marks_eor != 0) {
13090 		local_add_more = (ssize_t)min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
13091 	} else {
13092 		/*-
13093 		 * For non-eeor the whole message must fit in
13094 		 * the socket send buffer.
13095 		 */
13096 		local_add_more = sndlen;
13097 	}
13098 	if (non_blocking) {
13099 		goto skip_preblock;
13100 	}
13101 	if (((max_len <= local_add_more) && ((ssize_t)SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
13102 	    (max_len == 0) ||
13103 	    ((asoc->chunks_on_out_queue + asoc->stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
13104 		/* No room right now! */
13105 		inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13106 		SOCKBUF_LOCK(&so->so_snd);
13107 		while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
13108 		    ((asoc->stream_queue_cnt + asoc->chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
13109 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %zd) || (%d+%d > %d)\n",
13110 			    (unsigned int)SCTP_SB_LIMIT_SND(so),
13111 			    inqueue_bytes,
13112 			    local_add_more,
13113 			    asoc->stream_queue_cnt,
13114 			    asoc->chunks_on_out_queue,
13115 			    SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
13116 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13117 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
13118 			}
13119 			be.error = 0;
13120 			stcb->block_entry = &be;
13121 			SCTP_TCB_UNLOCK(stcb);
13122 			error = sbwait(so, SO_SND);
13123 			if (error == 0) {
13124 				if (so->so_error != 0) {
13125 					error = so->so_error;
13126 				}
13127 				if (be.error != 0) {
13128 					error = be.error;
13129 				}
13130 			}
13131 			SOCKBUF_UNLOCK(&so->so_snd);
13132 			SCTP_TCB_LOCK(stcb);
13133 			stcb->block_entry = NULL;
13134 			if (error != 0) {
13135 				goto out_unlocked;
13136 			}
13137 			if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
13138 			    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
13139 				if (asoc->state & SCTP_STATE_WAS_ABORTED) {
13140 					/*
13141 					 * XXX: Could also be ECONNABORTED,
13142 					 * not enough info.
13143 					 */
13144 					error = ECONNRESET;
13145 				} else {
13146 					error = ENOTCONN;
13147 				}
13148 				goto out_unlocked;
13149 			}
13150 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13151 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
13152 				    asoc, asoc->total_output_queue_size);
13153 			}
13154 			inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13155 			SOCKBUF_LOCK(&so->so_snd);
13156 		}
13157 		if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
13158 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13159 		} else {
13160 			max_len = 0;
13161 		}
13162 		SOCKBUF_UNLOCK(&so->so_snd);
13163 	}
13164 
13165 skip_preblock:
13166 	KASSERT(stcb != NULL, ("stcb is NULL"));
13167 	SCTP_TCB_LOCK_ASSERT(stcb);
13168 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13169 	    ("Association about to be freed"));
13170 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13171 	    ("Association was aborted"));
13172 
13173 	/*
13174 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
13175 	 * case NOTE: uio will be null when top/mbuf is passed
13176 	 */
13177 	if (top == NULL) {
13178 		struct sctp_stream_queue_pending *sp;
13179 		struct sctp_stream_out *strm;
13180 		uint32_t sndout;
13181 
13182 		if ((asoc->stream_locked) &&
13183 		    (asoc->stream_locked_on != sinfo_stream)) {
13184 			error = EINVAL;
13185 			goto out;
13186 		}
13187 		strm = &asoc->strmout[sinfo_stream];
13188 		if (strm->last_msg_incomplete == 0) {
13189 	do_a_copy_in:
13190 			SCTP_TCB_UNLOCK(stcb);
13191 			sp = sctp_copy_it_in(stcb, asoc, sndrcvninfo, uio, net, max_len, user_marks_eor, &error);
13192 			SCTP_TCB_LOCK(stcb);
13193 			if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
13194 			    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
13195 				if (asoc->state & SCTP_STATE_WAS_ABORTED) {
13196 					/*
13197 					 * XXX: Could also be ECONNABORTED,
13198 					 * not enough info.
13199 					 */
13200 					error = ECONNRESET;
13201 				} else {
13202 					error = ENOTCONN;
13203 				}
13204 				goto out;
13205 			}
13206 			if (error != 0) {
13207 				goto out;
13208 			}
13209 			/*
13210 			 * Reject the sending of a new user message, if the
13211 			 * association is about to be shut down.
13212 			 */
13213 			if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) ||
13214 			    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
13215 			    (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
13216 			    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
13217 				if (sp->data != 0) {
13218 					sctp_m_freem(sp->data);
13219 					sp->data = NULL;
13220 					sp->tail_mbuf = NULL;
13221 					sp->length = 0;
13222 				}
13223 				if (sp->net != NULL) {
13224 					sctp_free_remote_addr(sp->net);
13225 					sp->net = NULL;
13226 				}
13227 				sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
13228 				error = EPIPE;
13229 				goto out_unlocked;
13230 			}
13231 			/* The out streams might be reallocated. */
13232 			strm = &asoc->strmout[sinfo_stream];
13233 			if (sp->msg_is_complete) {
13234 				strm->last_msg_incomplete = 0;
13235 				asoc->stream_locked = 0;
13236 			} else {
13237 				/*
13238 				 * Just got locked to this guy in case of an
13239 				 * interrupt.
13240 				 */
13241 				strm->last_msg_incomplete = 1;
13242 				if (asoc->idata_supported == 0) {
13243 					asoc->stream_locked = 1;
13244 					asoc->stream_locked_on = sinfo_stream;
13245 				}
13246 				sp->sender_all_done = 0;
13247 			}
13248 			sctp_snd_sb_alloc(stcb, sp->length);
13249 			atomic_add_int(&asoc->stream_queue_cnt, 1);
13250 			if (sinfo_flags & SCTP_UNORDERED) {
13251 				SCTP_STAT_INCR(sctps_sends_with_unord);
13252 			}
13253 			sp->processing = 1;
13254 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
13255 			asoc->ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp);
13256 		} else {
13257 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
13258 			if (sp == NULL) {
13259 				/* ???? Huh ??? last msg is gone */
13260 #ifdef INVARIANTS
13261 				panic("Warning: Last msg marked incomplete, yet nothing left?");
13262 #else
13263 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
13264 				strm->last_msg_incomplete = 0;
13265 #endif
13266 				goto do_a_copy_in;
13267 			}
13268 			if (sp->processing != 0) {
13269 				error = EINVAL;
13270 				goto out;
13271 			} else {
13272 				sp->processing = 1;
13273 			}
13274 		}
13275 
13276 		KASSERT(stcb != NULL, ("stcb is NULL"));
13277 		SCTP_TCB_LOCK_ASSERT(stcb);
13278 		KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13279 		    ("Association about to be freed"));
13280 		KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13281 		    ("Association was aborted"));
13282 
13283 		while (uio->uio_resid > 0) {
13284 			/* How much room do we have? */
13285 			struct mbuf *new_tail, *mm;
13286 
13287 			inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13288 			if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
13289 				max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13290 			} else {
13291 				max_len = 0;
13292 			}
13293 			if ((max_len > (ssize_t)SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
13294 			    ((max_len > 0) && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
13295 			    (uio->uio_resid <= max_len)) {
13296 				SCTP_TCB_UNLOCK(stcb);
13297 				sndout = 0;
13298 				new_tail = NULL;
13299 				mm = sctp_copy_resume(uio, (int)max_len, user_marks_eor, &error, &sndout, &new_tail);
13300 				SCTP_TCB_LOCK(stcb);
13301 				if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
13302 				    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
13303 					/*
13304 					 * We need to get out. Peer probably
13305 					 * aborted.
13306 					 */
13307 					sctp_m_freem(mm);
13308 					if (asoc->state & SCTP_STATE_WAS_ABORTED) {
13309 						/*
13310 						 * XXX: Could also be
13311 						 * ECONNABORTED, not enough
13312 						 * info.
13313 						 */
13314 						error = ECONNRESET;
13315 					} else {
13316 						error = ENOTCONN;
13317 					}
13318 					goto out;
13319 				}
13320 				if ((mm == NULL) || (error != 0)) {
13321 					if (mm != NULL) {
13322 						sctp_m_freem(mm);
13323 					}
13324 					if (sp != NULL) {
13325 						sp->processing = 0;
13326 					}
13327 					goto out;
13328 				}
13329 				/* Update the mbuf and count */
13330 				if (sp->tail_mbuf != NULL) {
13331 					/* Tack it to the end. */
13332 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
13333 				} else {
13334 					/* A stolen mbuf. */
13335 					sp->data = mm;
13336 				}
13337 				sp->tail_mbuf = new_tail;
13338 				sctp_snd_sb_alloc(stcb, sndout);
13339 				atomic_add_int(&sp->length, sndout);
13340 				if (sinfo_flags & SCTP_SACK_IMMEDIATELY) {
13341 					sp->sinfo_flags |= SCTP_SACK_IMMEDIATELY;
13342 				}
13343 
13344 				/* Did we reach EOR? */
13345 				if ((uio->uio_resid == 0) &&
13346 				    ((user_marks_eor == 0) ||
13347 				    (sinfo_flags & SCTP_EOF) ||
13348 				    (user_marks_eor && (sinfo_flags & SCTP_EOR)))) {
13349 					sp->msg_is_complete = 1;
13350 				} else {
13351 					sp->msg_is_complete = 0;
13352 				}
13353 			}
13354 
13355 			KASSERT(stcb != NULL, ("stcb is NULL"));
13356 			SCTP_TCB_LOCK_ASSERT(stcb);
13357 			KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13358 			    ("Association about to be freed"));
13359 			KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13360 			    ("Association was aborted"));
13361 
13362 			if (uio->uio_resid == 0) {
13363 				/* got it all? */
13364 				continue;
13365 			}
13366 			/* PR-SCTP? */
13367 			if ((asoc->prsctp_supported) && (asoc->sent_queue_cnt_removeable > 0)) {
13368 				/*
13369 				 * This is ugly but we must assure locking
13370 				 * order
13371 				 */
13372 				sctp_prune_prsctp(stcb, asoc, sndrcvninfo, (int)sndlen);
13373 				inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13374 				if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes)
13375 					max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13376 				else
13377 					max_len = 0;
13378 				if (max_len > 0) {
13379 					continue;
13380 				}
13381 			}
13382 			/* wait for space now */
13383 			if (non_blocking) {
13384 				/* Non-blocking io in place out */
13385 				if (sp != NULL) {
13386 					sp->processing = 0;
13387 				}
13388 				goto skip_out_eof;
13389 			}
13390 			/* What about the INIT, send it maybe */
13391 			if (queue_only_for_init) {
13392 				if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) {
13393 					/* a collision took us forward? */
13394 					queue_only = 0;
13395 				} else {
13396 					NET_EPOCH_ENTER(et);
13397 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13398 					NET_EPOCH_EXIT(et);
13399 					SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT);
13400 					queue_only = 1;
13401 				}
13402 			}
13403 			if ((net->flight_size > net->cwnd) &&
13404 			    (asoc->sctp_cmt_on_off == 0)) {
13405 				SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13406 				queue_only = 1;
13407 			} else if (asoc->ifp_had_enobuf) {
13408 				SCTP_STAT_INCR(sctps_ifnomemqueued);
13409 				if (net->flight_size > (2 * net->mtu)) {
13410 					queue_only = 1;
13411 				}
13412 				asoc->ifp_had_enobuf = 0;
13413 			}
13414 			un_sent = asoc->total_output_queue_size - asoc->total_flight;
13415 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13416 			    (asoc->total_flight > 0) &&
13417 			    (asoc->stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13418 			    (un_sent < (int)(asoc->smallest_mtu - SCTP_MIN_OVERHEAD))) {
13419 				/*-
13420 				 * Ok, Nagle is set on and we have data outstanding.
13421 				 * Don't send anything and let SACKs drive out the
13422 				 * data unless we have a "full" segment to send.
13423 				 */
13424 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13425 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13426 				}
13427 				SCTP_STAT_INCR(sctps_naglequeued);
13428 				nagle_applies = 1;
13429 			} else {
13430 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13431 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13432 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13433 				}
13434 				SCTP_STAT_INCR(sctps_naglesent);
13435 				nagle_applies = 0;
13436 			}
13437 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13438 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13439 				    nagle_applies, un_sent);
13440 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, asoc->total_output_queue_size,
13441 				    asoc->total_flight,
13442 				    asoc->chunks_on_out_queue, asoc->total_flight_count);
13443 			}
13444 			if (queue_only_for_init) {
13445 				queue_only_for_init = 0;
13446 			}
13447 			if ((queue_only == 0) && (nagle_applies == 0)) {
13448 				/*-
13449 				 * need to start chunk output
13450 				 * before blocking.. note that if
13451 				 * a lock is already applied, then
13452 				 * the input via the net is happening
13453 				 * and I don't need to start output :-D
13454 				 */
13455 				NET_EPOCH_ENTER(et);
13456 				sctp_chunk_output(inp, stcb,
13457 				    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13458 				NET_EPOCH_EXIT(et);
13459 			}
13460 			/*-
13461 			 * This is a bit strange, but I think it will
13462 			 * work. The total_output_queue_size is locked and
13463 			 * protected by the TCB_LOCK, which we just released.
13464 			 * There is a race that can occur between releasing it
13465 			 * above, and me getting the socket lock, where sacks
13466 			 * come in but we have not put the SB_WAIT on the
13467 			 * so_snd buffer to get the wakeup. After the LOCK
13468 			 * is applied the sack_processing will also need to
13469 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
13470 			 * once we have the socket buffer lock if we recheck the
13471 			 * size we KNOW we will get to sleep safely with the
13472 			 * wakeup flag in place.
13473 			 */
13474 			inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb));
13475 			SOCKBUF_LOCK(&so->so_snd);
13476 			if (SCTP_SB_LIMIT_SND(so) <= (inqueue_bytes +
13477 			    min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
13478 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13479 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
13480 					    asoc, uio->uio_resid);
13481 				}
13482 				be.error = 0;
13483 				stcb->block_entry = &be;
13484 				SCTP_TCB_UNLOCK(stcb);
13485 				error = sbwait(so, SO_SND);
13486 				if (error == 0) {
13487 					if (so->so_error != 0)
13488 						error = so->so_error;
13489 					if (be.error != 0) {
13490 						error = be.error;
13491 					}
13492 				}
13493 				SOCKBUF_UNLOCK(&so->so_snd);
13494 				SCTP_TCB_LOCK(stcb);
13495 				stcb->block_entry = NULL;
13496 				if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
13497 				    (asoc->state & SCTP_STATE_WAS_ABORTED)) {
13498 					if (asoc->state & SCTP_STATE_WAS_ABORTED) {
13499 						/*
13500 						 * XXX: Could also be
13501 						 * ECONNABORTED, not enough
13502 						 * info.
13503 						 */
13504 						error = ECONNRESET;
13505 					} else {
13506 						error = ENOTCONN;
13507 					}
13508 					goto out_unlocked;
13509 				}
13510 				if (error != 0) {
13511 					if (sp != NULL) {
13512 						sp->processing = 0;
13513 					}
13514 					goto out_unlocked;
13515 				}
13516 			} else {
13517 				SOCKBUF_UNLOCK(&so->so_snd);
13518 			}
13519 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13520 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
13521 				    asoc, asoc->total_output_queue_size);
13522 			}
13523 		}
13524 
13525 		KASSERT(stcb != NULL, ("stcb is NULL"));
13526 		SCTP_TCB_LOCK_ASSERT(stcb);
13527 		KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13528 		    ("Association about to be freed"));
13529 		KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13530 		    ("Association was aborted"));
13531 
13532 		/* The out streams might be reallocated. */
13533 		strm = &asoc->strmout[sinfo_stream];
13534 		if (sp != NULL) {
13535 			if (sp->msg_is_complete == 0) {
13536 				strm->last_msg_incomplete = 1;
13537 				if (asoc->idata_supported == 0) {
13538 					asoc->stream_locked = 1;
13539 					asoc->stream_locked_on = sinfo_stream;
13540 				}
13541 			} else {
13542 				sp->sender_all_done = 1;
13543 				strm->last_msg_incomplete = 0;
13544 				asoc->stream_locked = 0;
13545 			}
13546 			sp->processing = 0;
13547 		} else {
13548 			SCTP_PRINTF("Huh no sp TSNH?\n");
13549 			strm->last_msg_incomplete = 0;
13550 			asoc->stream_locked = 0;
13551 		}
13552 		if (uio->uio_resid == 0) {
13553 			got_all_of_the_send = true;
13554 		}
13555 	} else {
13556 		error = sctp_msg_append(stcb, net, top, sndrcvninfo);
13557 		top = NULL;
13558 		if ((sinfo_flags & SCTP_EOF) != 0) {
13559 			got_all_of_the_send = true;
13560 		}
13561 	}
13562 	if (error != 0) {
13563 		goto out;
13564 	}
13565 
13566 dataless_eof:
13567 	KASSERT(stcb != NULL, ("stcb is NULL"));
13568 	SCTP_TCB_LOCK_ASSERT(stcb);
13569 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13570 	    ("Association about to be freed"));
13571 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13572 	    ("Association was aborted"));
13573 
13574 	/* EOF thing ? */
13575 	if ((sinfo_flags & SCTP_EOF) && got_all_of_the_send) {
13576 		SCTP_STAT_INCR(sctps_sends_with_eof);
13577 		error = 0;
13578 		if (TAILQ_EMPTY(&asoc->send_queue) &&
13579 		    TAILQ_EMPTY(&asoc->sent_queue) &&
13580 		    sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED) == 0) {
13581 			if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
13582 				goto abort_anyway;
13583 			}
13584 			/* there is nothing queued to send, so I'm done... */
13585 			if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) &&
13586 			    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13587 			    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13588 				struct sctp_nets *netp;
13589 
13590 				/* only send SHUTDOWN the first time through */
13591 				if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) {
13592 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13593 				}
13594 				SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT);
13595 				sctp_stop_timers_for_shutdown(stcb);
13596 				if (asoc->alternate != NULL) {
13597 					netp = asoc->alternate;
13598 				} else {
13599 					netp = asoc->primary_destination;
13600 				}
13601 				sctp_send_shutdown(stcb, netp);
13602 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13603 				    netp);
13604 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13605 				    NULL);
13606 			}
13607 		} else {
13608 			/*-
13609 			 * we still got (or just got) data to send, so set
13610 			 * SHUTDOWN_PENDING
13611 			 */
13612 			/*-
13613 			 * XXX sockets draft says that SCTP_EOF should be
13614 			 * sent with no data.  currently, we will allow user
13615 			 * data to be sent first and move to
13616 			 * SHUTDOWN-PENDING
13617 			 */
13618 			if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) &&
13619 			    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13620 			    (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13621 				if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
13622 					SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT);
13623 				}
13624 				SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING);
13625 				if (TAILQ_EMPTY(&asoc->send_queue) &&
13626 				    TAILQ_EMPTY(&asoc->sent_queue) &&
13627 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13628 					struct mbuf *op_err;
13629 					char msg[SCTP_DIAG_INFO_LEN];
13630 
13631 			abort_anyway:
13632 					if (free_cnt_applied) {
13633 						atomic_subtract_int(&asoc->refcnt, 1);
13634 						free_cnt_applied = false;
13635 					}
13636 					SCTP_SNPRINTF(msg, sizeof(msg),
13637 					    "%s:%d at %s", __FILE__, __LINE__, __func__);
13638 					op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
13639 					    msg);
13640 					NET_EPOCH_ENTER(et);
13641 					sctp_abort_an_association(stcb->sctp_ep, stcb,
13642 					    op_err, false, SCTP_SO_LOCKED);
13643 					NET_EPOCH_EXIT(et);
13644 					stcb = NULL;
13645 					error = ECONNABORTED;
13646 					goto out;
13647 				}
13648 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13649 			}
13650 		}
13651 	}
13652 
13653 skip_out_eof:
13654 	KASSERT(stcb != NULL, ("stcb is NULL"));
13655 	SCTP_TCB_LOCK_ASSERT(stcb);
13656 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13657 	    ("Association about to be freed"));
13658 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13659 	    ("Association was aborted"));
13660 
13661 	some_on_control = !TAILQ_EMPTY(&asoc->control_send_queue);
13662 	if (queue_only_for_init) {
13663 		if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) {
13664 			/* a collision took us forward? */
13665 			queue_only = 0;
13666 		} else {
13667 			NET_EPOCH_ENTER(et);
13668 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13669 			NET_EPOCH_EXIT(et);
13670 			SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT);
13671 			queue_only = 1;
13672 		}
13673 	}
13674 
13675 	KASSERT(stcb != NULL, ("stcb is NULL"));
13676 	SCTP_TCB_LOCK_ASSERT(stcb);
13677 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13678 	    ("Association about to be freed"));
13679 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13680 	    ("Association was aborted"));
13681 
13682 	if ((net->flight_size > net->cwnd) &&
13683 	    (asoc->sctp_cmt_on_off == 0)) {
13684 		SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13685 		queue_only = 1;
13686 	} else if (asoc->ifp_had_enobuf) {
13687 		SCTP_STAT_INCR(sctps_ifnomemqueued);
13688 		if (net->flight_size > (2 * net->mtu)) {
13689 			queue_only = 1;
13690 		}
13691 		asoc->ifp_had_enobuf = 0;
13692 	}
13693 	un_sent = asoc->total_output_queue_size - asoc->total_flight;
13694 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13695 	    (asoc->total_flight > 0) &&
13696 	    (asoc->stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13697 	    (un_sent < (int)(asoc->smallest_mtu - SCTP_MIN_OVERHEAD))) {
13698 		/*-
13699 		 * Ok, Nagle is set on and we have data outstanding.
13700 		 * Don't send anything and let SACKs drive out the
13701 		 * data unless wen have a "full" segment to send.
13702 		 */
13703 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13704 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13705 		}
13706 		SCTP_STAT_INCR(sctps_naglequeued);
13707 		nagle_applies = 1;
13708 	} else {
13709 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13710 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13711 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13712 		}
13713 		SCTP_STAT_INCR(sctps_naglesent);
13714 		nagle_applies = 0;
13715 	}
13716 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13717 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13718 		    nagle_applies, un_sent);
13719 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, asoc->total_output_queue_size,
13720 		    asoc->total_flight,
13721 		    asoc->chunks_on_out_queue, asoc->total_flight_count);
13722 	}
13723 
13724 	KASSERT(stcb != NULL, ("stcb is NULL"));
13725 	SCTP_TCB_LOCK_ASSERT(stcb);
13726 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13727 	    ("Association about to be freed"));
13728 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13729 	    ("Association was aborted"));
13730 
13731 	NET_EPOCH_ENTER(et);
13732 	if ((queue_only == 0) && (nagle_applies == 0) && (asoc->peers_rwnd && un_sent)) {
13733 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13734 	} else if ((queue_only == 0) &&
13735 		    (asoc->peers_rwnd == 0) &&
13736 	    (asoc->total_flight == 0)) {
13737 		/* We get to have a probe outstanding */
13738 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13739 	} else if (some_on_control) {
13740 		int num_out, reason;
13741 
13742 		/* Here we do control only */
13743 		(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out,
13744 		    &reason, 1, 1, &now, &now_filled,
13745 		    sctp_get_frag_point(stcb),
13746 		    SCTP_SO_LOCKED);
13747 	}
13748 	NET_EPOCH_EXIT(et);
13749 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13750 	    queue_only, asoc->peers_rwnd, un_sent,
13751 	    asoc->total_flight, asoc->chunks_on_out_queue,
13752 	    asoc->total_output_queue_size, error);
13753 
13754 	KASSERT(stcb != NULL, ("stcb is NULL"));
13755 	SCTP_TCB_LOCK_ASSERT(stcb);
13756 	KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0,
13757 	    ("Association about to be freed"));
13758 	KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0,
13759 	    ("Association was aborted"));
13760 
13761 out:
13762 out_unlocked:
13763 	if (create_lock_applied) {
13764 		SCTP_ASOC_CREATE_UNLOCK(inp);
13765 	}
13766 	if (stcb != NULL) {
13767 		if (local_soresv) {
13768 			atomic_subtract_int(&asoc->sb_send_resv, (int)sndlen);
13769 		}
13770 		if (free_cnt_applied) {
13771 			atomic_subtract_int(&asoc->refcnt, 1);
13772 		}
13773 		SCTP_TCB_UNLOCK(stcb);
13774 	}
13775 	if (top != NULL) {
13776 		sctp_m_freem(top);
13777 	}
13778 	if (control != NULL) {
13779 		sctp_m_freem(control);
13780 	}
13781 	SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, error);
13782 	return (error);
13783 }
13784 
13785 /*
13786  * generate an AUTHentication chunk, if required
13787  */
13788 struct mbuf *
13789 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13790     struct sctp_auth_chunk **auth_ret, uint32_t *offset,
13791     struct sctp_tcb *stcb, uint8_t chunk)
13792 {
13793 	struct mbuf *m_auth;
13794 	struct sctp_auth_chunk *auth;
13795 	int chunk_len;
13796 	struct mbuf *cn;
13797 
13798 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13799 	    (stcb == NULL))
13800 		return (m);
13801 
13802 	if (stcb->asoc.auth_supported == 0) {
13803 		return (m);
13804 	}
13805 	/* does the requested chunk require auth? */
13806 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13807 		return (m);
13808 	}
13809 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER);
13810 	if (m_auth == NULL) {
13811 		/* no mbuf's */
13812 		return (m);
13813 	}
13814 	/* reserve some space if this will be the first mbuf */
13815 	if (m == NULL)
13816 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13817 	/* fill in the AUTH chunk details */
13818 	auth = mtod(m_auth, struct sctp_auth_chunk *);
13819 	memset(auth, 0, sizeof(*auth));
13820 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
13821 	auth->ch.chunk_flags = 0;
13822 	chunk_len = sizeof(*auth) +
13823 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13824 	auth->ch.chunk_length = htons(chunk_len);
13825 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13826 	/* key id and hmac digest will be computed and filled in upon send */
13827 
13828 	/* save the offset where the auth was inserted into the chain */
13829 	*offset = 0;
13830 	for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13831 		*offset += SCTP_BUF_LEN(cn);
13832 	}
13833 
13834 	/* update length and return pointer to the auth chunk */
13835 	SCTP_BUF_LEN(m_auth) = chunk_len;
13836 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13837 	if (auth_ret != NULL)
13838 		*auth_ret = auth;
13839 
13840 	return (m);
13841 }
13842 
13843 #ifdef INET6
13844 int
13845 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t *ro)
13846 {
13847 	struct nd_prefix *pfx = NULL;
13848 	struct nd_pfxrouter *pfxrtr = NULL;
13849 	struct sockaddr_in6 gw6;
13850 
13851 	if (ro == NULL || ro->ro_nh == NULL || src6->sin6_family != AF_INET6)
13852 		return (0);
13853 
13854 	/* get prefix entry of address */
13855 	ND6_RLOCK();
13856 	LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13857 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13858 			continue;
13859 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13860 		    &src6->sin6_addr, &pfx->ndpr_mask))
13861 			break;
13862 	}
13863 	/* no prefix entry in the prefix list */
13864 	if (pfx == NULL) {
13865 		ND6_RUNLOCK();
13866 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13867 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13868 		return (0);
13869 	}
13870 
13871 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13872 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13873 
13874 	/* search installed gateway from prefix entry */
13875 	LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13876 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
13877 		gw6.sin6_family = AF_INET6;
13878 		gw6.sin6_len = sizeof(struct sockaddr_in6);
13879 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13880 		    sizeof(struct in6_addr));
13881 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13882 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13883 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13884 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa);
13885 		if (sctp_cmpaddr((struct sockaddr *)&gw6, &ro->ro_nh->gw_sa)) {
13886 			ND6_RUNLOCK();
13887 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13888 			return (1);
13889 		}
13890 	}
13891 	ND6_RUNLOCK();
13892 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13893 	return (0);
13894 }
13895 #endif
13896 
13897 int
13898 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t *ro)
13899 {
13900 #ifdef INET
13901 	struct sockaddr_in *sin, *mask;
13902 	struct ifaddr *ifa;
13903 	struct in_addr srcnetaddr, gwnetaddr;
13904 
13905 	if (ro == NULL || ro->ro_nh == NULL ||
13906 	    sifa->address.sa.sa_family != AF_INET) {
13907 		return (0);
13908 	}
13909 	ifa = (struct ifaddr *)sifa->ifa;
13910 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13911 	sin = &sifa->address.sin;
13912 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13913 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13914 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13915 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13916 
13917 	sin = &ro->ro_nh->gw4_sa;
13918 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13919 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13920 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa);
13921 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13922 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13923 		return (1);
13924 	}
13925 #endif
13926 	return (0);
13927 }
13928