xref: /freebsd/sys/netinet/sctp_output.c (revision 95d45410b5100e07f6f98450bcd841a8945d4726)
1 /*-
2  * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * a) Redistributions of source code must retain the above copyright notice,
10  *    this list of conditions and the following disclaimer.
11  *
12  * b) Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the distribution.
15  *
16  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include <netinet/sctp_os.h>
37 #include <sys/proc.h>
38 #include <netinet/sctp_var.h>
39 #include <netinet/sctp_sysctl.h>
40 #include <netinet/sctp_header.h>
41 #include <netinet/sctp_pcb.h>
42 #include <netinet/sctputil.h>
43 #include <netinet/sctp_output.h>
44 #include <netinet/sctp_uio.h>
45 #include <netinet/sctputil.h>
46 #include <netinet/sctp_auth.h>
47 #include <netinet/sctp_timer.h>
48 #include <netinet/sctp_asconf.h>
49 #include <netinet/sctp_indata.h>
50 #include <netinet/sctp_bsd_addr.h>
51 #include <netinet/sctp_input.h>
52 #include <netinet/sctp_crc32.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 
60 
61 #define SCTP_MAX_GAPS_INARRAY 4
62 struct sack_track {
63 	uint8_t right_edge;	/* mergable on the right edge */
64 	uint8_t left_edge;	/* mergable on the left edge */
65 	uint8_t num_entries;
66 	uint8_t spare;
67 	struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
68 };
69 
70 struct sack_track sack_array[256] = {
71 	{0, 0, 0, 0,		/* 0x00 */
72 		{{0, 0},
73 		{0, 0},
74 		{0, 0},
75 		{0, 0}
76 		}
77 	},
78 	{1, 0, 1, 0,		/* 0x01 */
79 		{{0, 0},
80 		{0, 0},
81 		{0, 0},
82 		{0, 0}
83 		}
84 	},
85 	{0, 0, 1, 0,		/* 0x02 */
86 		{{1, 1},
87 		{0, 0},
88 		{0, 0},
89 		{0, 0}
90 		}
91 	},
92 	{1, 0, 1, 0,		/* 0x03 */
93 		{{0, 1},
94 		{0, 0},
95 		{0, 0},
96 		{0, 0}
97 		}
98 	},
99 	{0, 0, 1, 0,		/* 0x04 */
100 		{{2, 2},
101 		{0, 0},
102 		{0, 0},
103 		{0, 0}
104 		}
105 	},
106 	{1, 0, 2, 0,		/* 0x05 */
107 		{{0, 0},
108 		{2, 2},
109 		{0, 0},
110 		{0, 0}
111 		}
112 	},
113 	{0, 0, 1, 0,		/* 0x06 */
114 		{{1, 2},
115 		{0, 0},
116 		{0, 0},
117 		{0, 0}
118 		}
119 	},
120 	{1, 0, 1, 0,		/* 0x07 */
121 		{{0, 2},
122 		{0, 0},
123 		{0, 0},
124 		{0, 0}
125 		}
126 	},
127 	{0, 0, 1, 0,		/* 0x08 */
128 		{{3, 3},
129 		{0, 0},
130 		{0, 0},
131 		{0, 0}
132 		}
133 	},
134 	{1, 0, 2, 0,		/* 0x09 */
135 		{{0, 0},
136 		{3, 3},
137 		{0, 0},
138 		{0, 0}
139 		}
140 	},
141 	{0, 0, 2, 0,		/* 0x0a */
142 		{{1, 1},
143 		{3, 3},
144 		{0, 0},
145 		{0, 0}
146 		}
147 	},
148 	{1, 0, 2, 0,		/* 0x0b */
149 		{{0, 1},
150 		{3, 3},
151 		{0, 0},
152 		{0, 0}
153 		}
154 	},
155 	{0, 0, 1, 0,		/* 0x0c */
156 		{{2, 3},
157 		{0, 0},
158 		{0, 0},
159 		{0, 0}
160 		}
161 	},
162 	{1, 0, 2, 0,		/* 0x0d */
163 		{{0, 0},
164 		{2, 3},
165 		{0, 0},
166 		{0, 0}
167 		}
168 	},
169 	{0, 0, 1, 0,		/* 0x0e */
170 		{{1, 3},
171 		{0, 0},
172 		{0, 0},
173 		{0, 0}
174 		}
175 	},
176 	{1, 0, 1, 0,		/* 0x0f */
177 		{{0, 3},
178 		{0, 0},
179 		{0, 0},
180 		{0, 0}
181 		}
182 	},
183 	{0, 0, 1, 0,		/* 0x10 */
184 		{{4, 4},
185 		{0, 0},
186 		{0, 0},
187 		{0, 0}
188 		}
189 	},
190 	{1, 0, 2, 0,		/* 0x11 */
191 		{{0, 0},
192 		{4, 4},
193 		{0, 0},
194 		{0, 0}
195 		}
196 	},
197 	{0, 0, 2, 0,		/* 0x12 */
198 		{{1, 1},
199 		{4, 4},
200 		{0, 0},
201 		{0, 0}
202 		}
203 	},
204 	{1, 0, 2, 0,		/* 0x13 */
205 		{{0, 1},
206 		{4, 4},
207 		{0, 0},
208 		{0, 0}
209 		}
210 	},
211 	{0, 0, 2, 0,		/* 0x14 */
212 		{{2, 2},
213 		{4, 4},
214 		{0, 0},
215 		{0, 0}
216 		}
217 	},
218 	{1, 0, 3, 0,		/* 0x15 */
219 		{{0, 0},
220 		{2, 2},
221 		{4, 4},
222 		{0, 0}
223 		}
224 	},
225 	{0, 0, 2, 0,		/* 0x16 */
226 		{{1, 2},
227 		{4, 4},
228 		{0, 0},
229 		{0, 0}
230 		}
231 	},
232 	{1, 0, 2, 0,		/* 0x17 */
233 		{{0, 2},
234 		{4, 4},
235 		{0, 0},
236 		{0, 0}
237 		}
238 	},
239 	{0, 0, 1, 0,		/* 0x18 */
240 		{{3, 4},
241 		{0, 0},
242 		{0, 0},
243 		{0, 0}
244 		}
245 	},
246 	{1, 0, 2, 0,		/* 0x19 */
247 		{{0, 0},
248 		{3, 4},
249 		{0, 0},
250 		{0, 0}
251 		}
252 	},
253 	{0, 0, 2, 0,		/* 0x1a */
254 		{{1, 1},
255 		{3, 4},
256 		{0, 0},
257 		{0, 0}
258 		}
259 	},
260 	{1, 0, 2, 0,		/* 0x1b */
261 		{{0, 1},
262 		{3, 4},
263 		{0, 0},
264 		{0, 0}
265 		}
266 	},
267 	{0, 0, 1, 0,		/* 0x1c */
268 		{{2, 4},
269 		{0, 0},
270 		{0, 0},
271 		{0, 0}
272 		}
273 	},
274 	{1, 0, 2, 0,		/* 0x1d */
275 		{{0, 0},
276 		{2, 4},
277 		{0, 0},
278 		{0, 0}
279 		}
280 	},
281 	{0, 0, 1, 0,		/* 0x1e */
282 		{{1, 4},
283 		{0, 0},
284 		{0, 0},
285 		{0, 0}
286 		}
287 	},
288 	{1, 0, 1, 0,		/* 0x1f */
289 		{{0, 4},
290 		{0, 0},
291 		{0, 0},
292 		{0, 0}
293 		}
294 	},
295 	{0, 0, 1, 0,		/* 0x20 */
296 		{{5, 5},
297 		{0, 0},
298 		{0, 0},
299 		{0, 0}
300 		}
301 	},
302 	{1, 0, 2, 0,		/* 0x21 */
303 		{{0, 0},
304 		{5, 5},
305 		{0, 0},
306 		{0, 0}
307 		}
308 	},
309 	{0, 0, 2, 0,		/* 0x22 */
310 		{{1, 1},
311 		{5, 5},
312 		{0, 0},
313 		{0, 0}
314 		}
315 	},
316 	{1, 0, 2, 0,		/* 0x23 */
317 		{{0, 1},
318 		{5, 5},
319 		{0, 0},
320 		{0, 0}
321 		}
322 	},
323 	{0, 0, 2, 0,		/* 0x24 */
324 		{{2, 2},
325 		{5, 5},
326 		{0, 0},
327 		{0, 0}
328 		}
329 	},
330 	{1, 0, 3, 0,		/* 0x25 */
331 		{{0, 0},
332 		{2, 2},
333 		{5, 5},
334 		{0, 0}
335 		}
336 	},
337 	{0, 0, 2, 0,		/* 0x26 */
338 		{{1, 2},
339 		{5, 5},
340 		{0, 0},
341 		{0, 0}
342 		}
343 	},
344 	{1, 0, 2, 0,		/* 0x27 */
345 		{{0, 2},
346 		{5, 5},
347 		{0, 0},
348 		{0, 0}
349 		}
350 	},
351 	{0, 0, 2, 0,		/* 0x28 */
352 		{{3, 3},
353 		{5, 5},
354 		{0, 0},
355 		{0, 0}
356 		}
357 	},
358 	{1, 0, 3, 0,		/* 0x29 */
359 		{{0, 0},
360 		{3, 3},
361 		{5, 5},
362 		{0, 0}
363 		}
364 	},
365 	{0, 0, 3, 0,		/* 0x2a */
366 		{{1, 1},
367 		{3, 3},
368 		{5, 5},
369 		{0, 0}
370 		}
371 	},
372 	{1, 0, 3, 0,		/* 0x2b */
373 		{{0, 1},
374 		{3, 3},
375 		{5, 5},
376 		{0, 0}
377 		}
378 	},
379 	{0, 0, 2, 0,		/* 0x2c */
380 		{{2, 3},
381 		{5, 5},
382 		{0, 0},
383 		{0, 0}
384 		}
385 	},
386 	{1, 0, 3, 0,		/* 0x2d */
387 		{{0, 0},
388 		{2, 3},
389 		{5, 5},
390 		{0, 0}
391 		}
392 	},
393 	{0, 0, 2, 0,		/* 0x2e */
394 		{{1, 3},
395 		{5, 5},
396 		{0, 0},
397 		{0, 0}
398 		}
399 	},
400 	{1, 0, 2, 0,		/* 0x2f */
401 		{{0, 3},
402 		{5, 5},
403 		{0, 0},
404 		{0, 0}
405 		}
406 	},
407 	{0, 0, 1, 0,		/* 0x30 */
408 		{{4, 5},
409 		{0, 0},
410 		{0, 0},
411 		{0, 0}
412 		}
413 	},
414 	{1, 0, 2, 0,		/* 0x31 */
415 		{{0, 0},
416 		{4, 5},
417 		{0, 0},
418 		{0, 0}
419 		}
420 	},
421 	{0, 0, 2, 0,		/* 0x32 */
422 		{{1, 1},
423 		{4, 5},
424 		{0, 0},
425 		{0, 0}
426 		}
427 	},
428 	{1, 0, 2, 0,		/* 0x33 */
429 		{{0, 1},
430 		{4, 5},
431 		{0, 0},
432 		{0, 0}
433 		}
434 	},
435 	{0, 0, 2, 0,		/* 0x34 */
436 		{{2, 2},
437 		{4, 5},
438 		{0, 0},
439 		{0, 0}
440 		}
441 	},
442 	{1, 0, 3, 0,		/* 0x35 */
443 		{{0, 0},
444 		{2, 2},
445 		{4, 5},
446 		{0, 0}
447 		}
448 	},
449 	{0, 0, 2, 0,		/* 0x36 */
450 		{{1, 2},
451 		{4, 5},
452 		{0, 0},
453 		{0, 0}
454 		}
455 	},
456 	{1, 0, 2, 0,		/* 0x37 */
457 		{{0, 2},
458 		{4, 5},
459 		{0, 0},
460 		{0, 0}
461 		}
462 	},
463 	{0, 0, 1, 0,		/* 0x38 */
464 		{{3, 5},
465 		{0, 0},
466 		{0, 0},
467 		{0, 0}
468 		}
469 	},
470 	{1, 0, 2, 0,		/* 0x39 */
471 		{{0, 0},
472 		{3, 5},
473 		{0, 0},
474 		{0, 0}
475 		}
476 	},
477 	{0, 0, 2, 0,		/* 0x3a */
478 		{{1, 1},
479 		{3, 5},
480 		{0, 0},
481 		{0, 0}
482 		}
483 	},
484 	{1, 0, 2, 0,		/* 0x3b */
485 		{{0, 1},
486 		{3, 5},
487 		{0, 0},
488 		{0, 0}
489 		}
490 	},
491 	{0, 0, 1, 0,		/* 0x3c */
492 		{{2, 5},
493 		{0, 0},
494 		{0, 0},
495 		{0, 0}
496 		}
497 	},
498 	{1, 0, 2, 0,		/* 0x3d */
499 		{{0, 0},
500 		{2, 5},
501 		{0, 0},
502 		{0, 0}
503 		}
504 	},
505 	{0, 0, 1, 0,		/* 0x3e */
506 		{{1, 5},
507 		{0, 0},
508 		{0, 0},
509 		{0, 0}
510 		}
511 	},
512 	{1, 0, 1, 0,		/* 0x3f */
513 		{{0, 5},
514 		{0, 0},
515 		{0, 0},
516 		{0, 0}
517 		}
518 	},
519 	{0, 0, 1, 0,		/* 0x40 */
520 		{{6, 6},
521 		{0, 0},
522 		{0, 0},
523 		{0, 0}
524 		}
525 	},
526 	{1, 0, 2, 0,		/* 0x41 */
527 		{{0, 0},
528 		{6, 6},
529 		{0, 0},
530 		{0, 0}
531 		}
532 	},
533 	{0, 0, 2, 0,		/* 0x42 */
534 		{{1, 1},
535 		{6, 6},
536 		{0, 0},
537 		{0, 0}
538 		}
539 	},
540 	{1, 0, 2, 0,		/* 0x43 */
541 		{{0, 1},
542 		{6, 6},
543 		{0, 0},
544 		{0, 0}
545 		}
546 	},
547 	{0, 0, 2, 0,		/* 0x44 */
548 		{{2, 2},
549 		{6, 6},
550 		{0, 0},
551 		{0, 0}
552 		}
553 	},
554 	{1, 0, 3, 0,		/* 0x45 */
555 		{{0, 0},
556 		{2, 2},
557 		{6, 6},
558 		{0, 0}
559 		}
560 	},
561 	{0, 0, 2, 0,		/* 0x46 */
562 		{{1, 2},
563 		{6, 6},
564 		{0, 0},
565 		{0, 0}
566 		}
567 	},
568 	{1, 0, 2, 0,		/* 0x47 */
569 		{{0, 2},
570 		{6, 6},
571 		{0, 0},
572 		{0, 0}
573 		}
574 	},
575 	{0, 0, 2, 0,		/* 0x48 */
576 		{{3, 3},
577 		{6, 6},
578 		{0, 0},
579 		{0, 0}
580 		}
581 	},
582 	{1, 0, 3, 0,		/* 0x49 */
583 		{{0, 0},
584 		{3, 3},
585 		{6, 6},
586 		{0, 0}
587 		}
588 	},
589 	{0, 0, 3, 0,		/* 0x4a */
590 		{{1, 1},
591 		{3, 3},
592 		{6, 6},
593 		{0, 0}
594 		}
595 	},
596 	{1, 0, 3, 0,		/* 0x4b */
597 		{{0, 1},
598 		{3, 3},
599 		{6, 6},
600 		{0, 0}
601 		}
602 	},
603 	{0, 0, 2, 0,		/* 0x4c */
604 		{{2, 3},
605 		{6, 6},
606 		{0, 0},
607 		{0, 0}
608 		}
609 	},
610 	{1, 0, 3, 0,		/* 0x4d */
611 		{{0, 0},
612 		{2, 3},
613 		{6, 6},
614 		{0, 0}
615 		}
616 	},
617 	{0, 0, 2, 0,		/* 0x4e */
618 		{{1, 3},
619 		{6, 6},
620 		{0, 0},
621 		{0, 0}
622 		}
623 	},
624 	{1, 0, 2, 0,		/* 0x4f */
625 		{{0, 3},
626 		{6, 6},
627 		{0, 0},
628 		{0, 0}
629 		}
630 	},
631 	{0, 0, 2, 0,		/* 0x50 */
632 		{{4, 4},
633 		{6, 6},
634 		{0, 0},
635 		{0, 0}
636 		}
637 	},
638 	{1, 0, 3, 0,		/* 0x51 */
639 		{{0, 0},
640 		{4, 4},
641 		{6, 6},
642 		{0, 0}
643 		}
644 	},
645 	{0, 0, 3, 0,		/* 0x52 */
646 		{{1, 1},
647 		{4, 4},
648 		{6, 6},
649 		{0, 0}
650 		}
651 	},
652 	{1, 0, 3, 0,		/* 0x53 */
653 		{{0, 1},
654 		{4, 4},
655 		{6, 6},
656 		{0, 0}
657 		}
658 	},
659 	{0, 0, 3, 0,		/* 0x54 */
660 		{{2, 2},
661 		{4, 4},
662 		{6, 6},
663 		{0, 0}
664 		}
665 	},
666 	{1, 0, 4, 0,		/* 0x55 */
667 		{{0, 0},
668 		{2, 2},
669 		{4, 4},
670 		{6, 6}
671 		}
672 	},
673 	{0, 0, 3, 0,		/* 0x56 */
674 		{{1, 2},
675 		{4, 4},
676 		{6, 6},
677 		{0, 0}
678 		}
679 	},
680 	{1, 0, 3, 0,		/* 0x57 */
681 		{{0, 2},
682 		{4, 4},
683 		{6, 6},
684 		{0, 0}
685 		}
686 	},
687 	{0, 0, 2, 0,		/* 0x58 */
688 		{{3, 4},
689 		{6, 6},
690 		{0, 0},
691 		{0, 0}
692 		}
693 	},
694 	{1, 0, 3, 0,		/* 0x59 */
695 		{{0, 0},
696 		{3, 4},
697 		{6, 6},
698 		{0, 0}
699 		}
700 	},
701 	{0, 0, 3, 0,		/* 0x5a */
702 		{{1, 1},
703 		{3, 4},
704 		{6, 6},
705 		{0, 0}
706 		}
707 	},
708 	{1, 0, 3, 0,		/* 0x5b */
709 		{{0, 1},
710 		{3, 4},
711 		{6, 6},
712 		{0, 0}
713 		}
714 	},
715 	{0, 0, 2, 0,		/* 0x5c */
716 		{{2, 4},
717 		{6, 6},
718 		{0, 0},
719 		{0, 0}
720 		}
721 	},
722 	{1, 0, 3, 0,		/* 0x5d */
723 		{{0, 0},
724 		{2, 4},
725 		{6, 6},
726 		{0, 0}
727 		}
728 	},
729 	{0, 0, 2, 0,		/* 0x5e */
730 		{{1, 4},
731 		{6, 6},
732 		{0, 0},
733 		{0, 0}
734 		}
735 	},
736 	{1, 0, 2, 0,		/* 0x5f */
737 		{{0, 4},
738 		{6, 6},
739 		{0, 0},
740 		{0, 0}
741 		}
742 	},
743 	{0, 0, 1, 0,		/* 0x60 */
744 		{{5, 6},
745 		{0, 0},
746 		{0, 0},
747 		{0, 0}
748 		}
749 	},
750 	{1, 0, 2, 0,		/* 0x61 */
751 		{{0, 0},
752 		{5, 6},
753 		{0, 0},
754 		{0, 0}
755 		}
756 	},
757 	{0, 0, 2, 0,		/* 0x62 */
758 		{{1, 1},
759 		{5, 6},
760 		{0, 0},
761 		{0, 0}
762 		}
763 	},
764 	{1, 0, 2, 0,		/* 0x63 */
765 		{{0, 1},
766 		{5, 6},
767 		{0, 0},
768 		{0, 0}
769 		}
770 	},
771 	{0, 0, 2, 0,		/* 0x64 */
772 		{{2, 2},
773 		{5, 6},
774 		{0, 0},
775 		{0, 0}
776 		}
777 	},
778 	{1, 0, 3, 0,		/* 0x65 */
779 		{{0, 0},
780 		{2, 2},
781 		{5, 6},
782 		{0, 0}
783 		}
784 	},
785 	{0, 0, 2, 0,		/* 0x66 */
786 		{{1, 2},
787 		{5, 6},
788 		{0, 0},
789 		{0, 0}
790 		}
791 	},
792 	{1, 0, 2, 0,		/* 0x67 */
793 		{{0, 2},
794 		{5, 6},
795 		{0, 0},
796 		{0, 0}
797 		}
798 	},
799 	{0, 0, 2, 0,		/* 0x68 */
800 		{{3, 3},
801 		{5, 6},
802 		{0, 0},
803 		{0, 0}
804 		}
805 	},
806 	{1, 0, 3, 0,		/* 0x69 */
807 		{{0, 0},
808 		{3, 3},
809 		{5, 6},
810 		{0, 0}
811 		}
812 	},
813 	{0, 0, 3, 0,		/* 0x6a */
814 		{{1, 1},
815 		{3, 3},
816 		{5, 6},
817 		{0, 0}
818 		}
819 	},
820 	{1, 0, 3, 0,		/* 0x6b */
821 		{{0, 1},
822 		{3, 3},
823 		{5, 6},
824 		{0, 0}
825 		}
826 	},
827 	{0, 0, 2, 0,		/* 0x6c */
828 		{{2, 3},
829 		{5, 6},
830 		{0, 0},
831 		{0, 0}
832 		}
833 	},
834 	{1, 0, 3, 0,		/* 0x6d */
835 		{{0, 0},
836 		{2, 3},
837 		{5, 6},
838 		{0, 0}
839 		}
840 	},
841 	{0, 0, 2, 0,		/* 0x6e */
842 		{{1, 3},
843 		{5, 6},
844 		{0, 0},
845 		{0, 0}
846 		}
847 	},
848 	{1, 0, 2, 0,		/* 0x6f */
849 		{{0, 3},
850 		{5, 6},
851 		{0, 0},
852 		{0, 0}
853 		}
854 	},
855 	{0, 0, 1, 0,		/* 0x70 */
856 		{{4, 6},
857 		{0, 0},
858 		{0, 0},
859 		{0, 0}
860 		}
861 	},
862 	{1, 0, 2, 0,		/* 0x71 */
863 		{{0, 0},
864 		{4, 6},
865 		{0, 0},
866 		{0, 0}
867 		}
868 	},
869 	{0, 0, 2, 0,		/* 0x72 */
870 		{{1, 1},
871 		{4, 6},
872 		{0, 0},
873 		{0, 0}
874 		}
875 	},
876 	{1, 0, 2, 0,		/* 0x73 */
877 		{{0, 1},
878 		{4, 6},
879 		{0, 0},
880 		{0, 0}
881 		}
882 	},
883 	{0, 0, 2, 0,		/* 0x74 */
884 		{{2, 2},
885 		{4, 6},
886 		{0, 0},
887 		{0, 0}
888 		}
889 	},
890 	{1, 0, 3, 0,		/* 0x75 */
891 		{{0, 0},
892 		{2, 2},
893 		{4, 6},
894 		{0, 0}
895 		}
896 	},
897 	{0, 0, 2, 0,		/* 0x76 */
898 		{{1, 2},
899 		{4, 6},
900 		{0, 0},
901 		{0, 0}
902 		}
903 	},
904 	{1, 0, 2, 0,		/* 0x77 */
905 		{{0, 2},
906 		{4, 6},
907 		{0, 0},
908 		{0, 0}
909 		}
910 	},
911 	{0, 0, 1, 0,		/* 0x78 */
912 		{{3, 6},
913 		{0, 0},
914 		{0, 0},
915 		{0, 0}
916 		}
917 	},
918 	{1, 0, 2, 0,		/* 0x79 */
919 		{{0, 0},
920 		{3, 6},
921 		{0, 0},
922 		{0, 0}
923 		}
924 	},
925 	{0, 0, 2, 0,		/* 0x7a */
926 		{{1, 1},
927 		{3, 6},
928 		{0, 0},
929 		{0, 0}
930 		}
931 	},
932 	{1, 0, 2, 0,		/* 0x7b */
933 		{{0, 1},
934 		{3, 6},
935 		{0, 0},
936 		{0, 0}
937 		}
938 	},
939 	{0, 0, 1, 0,		/* 0x7c */
940 		{{2, 6},
941 		{0, 0},
942 		{0, 0},
943 		{0, 0}
944 		}
945 	},
946 	{1, 0, 2, 0,		/* 0x7d */
947 		{{0, 0},
948 		{2, 6},
949 		{0, 0},
950 		{0, 0}
951 		}
952 	},
953 	{0, 0, 1, 0,		/* 0x7e */
954 		{{1, 6},
955 		{0, 0},
956 		{0, 0},
957 		{0, 0}
958 		}
959 	},
960 	{1, 0, 1, 0,		/* 0x7f */
961 		{{0, 6},
962 		{0, 0},
963 		{0, 0},
964 		{0, 0}
965 		}
966 	},
967 	{0, 1, 1, 0,		/* 0x80 */
968 		{{7, 7},
969 		{0, 0},
970 		{0, 0},
971 		{0, 0}
972 		}
973 	},
974 	{1, 1, 2, 0,		/* 0x81 */
975 		{{0, 0},
976 		{7, 7},
977 		{0, 0},
978 		{0, 0}
979 		}
980 	},
981 	{0, 1, 2, 0,		/* 0x82 */
982 		{{1, 1},
983 		{7, 7},
984 		{0, 0},
985 		{0, 0}
986 		}
987 	},
988 	{1, 1, 2, 0,		/* 0x83 */
989 		{{0, 1},
990 		{7, 7},
991 		{0, 0},
992 		{0, 0}
993 		}
994 	},
995 	{0, 1, 2, 0,		/* 0x84 */
996 		{{2, 2},
997 		{7, 7},
998 		{0, 0},
999 		{0, 0}
1000 		}
1001 	},
1002 	{1, 1, 3, 0,		/* 0x85 */
1003 		{{0, 0},
1004 		{2, 2},
1005 		{7, 7},
1006 		{0, 0}
1007 		}
1008 	},
1009 	{0, 1, 2, 0,		/* 0x86 */
1010 		{{1, 2},
1011 		{7, 7},
1012 		{0, 0},
1013 		{0, 0}
1014 		}
1015 	},
1016 	{1, 1, 2, 0,		/* 0x87 */
1017 		{{0, 2},
1018 		{7, 7},
1019 		{0, 0},
1020 		{0, 0}
1021 		}
1022 	},
1023 	{0, 1, 2, 0,		/* 0x88 */
1024 		{{3, 3},
1025 		{7, 7},
1026 		{0, 0},
1027 		{0, 0}
1028 		}
1029 	},
1030 	{1, 1, 3, 0,		/* 0x89 */
1031 		{{0, 0},
1032 		{3, 3},
1033 		{7, 7},
1034 		{0, 0}
1035 		}
1036 	},
1037 	{0, 1, 3, 0,		/* 0x8a */
1038 		{{1, 1},
1039 		{3, 3},
1040 		{7, 7},
1041 		{0, 0}
1042 		}
1043 	},
1044 	{1, 1, 3, 0,		/* 0x8b */
1045 		{{0, 1},
1046 		{3, 3},
1047 		{7, 7},
1048 		{0, 0}
1049 		}
1050 	},
1051 	{0, 1, 2, 0,		/* 0x8c */
1052 		{{2, 3},
1053 		{7, 7},
1054 		{0, 0},
1055 		{0, 0}
1056 		}
1057 	},
1058 	{1, 1, 3, 0,		/* 0x8d */
1059 		{{0, 0},
1060 		{2, 3},
1061 		{7, 7},
1062 		{0, 0}
1063 		}
1064 	},
1065 	{0, 1, 2, 0,		/* 0x8e */
1066 		{{1, 3},
1067 		{7, 7},
1068 		{0, 0},
1069 		{0, 0}
1070 		}
1071 	},
1072 	{1, 1, 2, 0,		/* 0x8f */
1073 		{{0, 3},
1074 		{7, 7},
1075 		{0, 0},
1076 		{0, 0}
1077 		}
1078 	},
1079 	{0, 1, 2, 0,		/* 0x90 */
1080 		{{4, 4},
1081 		{7, 7},
1082 		{0, 0},
1083 		{0, 0}
1084 		}
1085 	},
1086 	{1, 1, 3, 0,		/* 0x91 */
1087 		{{0, 0},
1088 		{4, 4},
1089 		{7, 7},
1090 		{0, 0}
1091 		}
1092 	},
1093 	{0, 1, 3, 0,		/* 0x92 */
1094 		{{1, 1},
1095 		{4, 4},
1096 		{7, 7},
1097 		{0, 0}
1098 		}
1099 	},
1100 	{1, 1, 3, 0,		/* 0x93 */
1101 		{{0, 1},
1102 		{4, 4},
1103 		{7, 7},
1104 		{0, 0}
1105 		}
1106 	},
1107 	{0, 1, 3, 0,		/* 0x94 */
1108 		{{2, 2},
1109 		{4, 4},
1110 		{7, 7},
1111 		{0, 0}
1112 		}
1113 	},
1114 	{1, 1, 4, 0,		/* 0x95 */
1115 		{{0, 0},
1116 		{2, 2},
1117 		{4, 4},
1118 		{7, 7}
1119 		}
1120 	},
1121 	{0, 1, 3, 0,		/* 0x96 */
1122 		{{1, 2},
1123 		{4, 4},
1124 		{7, 7},
1125 		{0, 0}
1126 		}
1127 	},
1128 	{1, 1, 3, 0,		/* 0x97 */
1129 		{{0, 2},
1130 		{4, 4},
1131 		{7, 7},
1132 		{0, 0}
1133 		}
1134 	},
1135 	{0, 1, 2, 0,		/* 0x98 */
1136 		{{3, 4},
1137 		{7, 7},
1138 		{0, 0},
1139 		{0, 0}
1140 		}
1141 	},
1142 	{1, 1, 3, 0,		/* 0x99 */
1143 		{{0, 0},
1144 		{3, 4},
1145 		{7, 7},
1146 		{0, 0}
1147 		}
1148 	},
1149 	{0, 1, 3, 0,		/* 0x9a */
1150 		{{1, 1},
1151 		{3, 4},
1152 		{7, 7},
1153 		{0, 0}
1154 		}
1155 	},
1156 	{1, 1, 3, 0,		/* 0x9b */
1157 		{{0, 1},
1158 		{3, 4},
1159 		{7, 7},
1160 		{0, 0}
1161 		}
1162 	},
1163 	{0, 1, 2, 0,		/* 0x9c */
1164 		{{2, 4},
1165 		{7, 7},
1166 		{0, 0},
1167 		{0, 0}
1168 		}
1169 	},
1170 	{1, 1, 3, 0,		/* 0x9d */
1171 		{{0, 0},
1172 		{2, 4},
1173 		{7, 7},
1174 		{0, 0}
1175 		}
1176 	},
1177 	{0, 1, 2, 0,		/* 0x9e */
1178 		{{1, 4},
1179 		{7, 7},
1180 		{0, 0},
1181 		{0, 0}
1182 		}
1183 	},
1184 	{1, 1, 2, 0,		/* 0x9f */
1185 		{{0, 4},
1186 		{7, 7},
1187 		{0, 0},
1188 		{0, 0}
1189 		}
1190 	},
1191 	{0, 1, 2, 0,		/* 0xa0 */
1192 		{{5, 5},
1193 		{7, 7},
1194 		{0, 0},
1195 		{0, 0}
1196 		}
1197 	},
1198 	{1, 1, 3, 0,		/* 0xa1 */
1199 		{{0, 0},
1200 		{5, 5},
1201 		{7, 7},
1202 		{0, 0}
1203 		}
1204 	},
1205 	{0, 1, 3, 0,		/* 0xa2 */
1206 		{{1, 1},
1207 		{5, 5},
1208 		{7, 7},
1209 		{0, 0}
1210 		}
1211 	},
1212 	{1, 1, 3, 0,		/* 0xa3 */
1213 		{{0, 1},
1214 		{5, 5},
1215 		{7, 7},
1216 		{0, 0}
1217 		}
1218 	},
1219 	{0, 1, 3, 0,		/* 0xa4 */
1220 		{{2, 2},
1221 		{5, 5},
1222 		{7, 7},
1223 		{0, 0}
1224 		}
1225 	},
1226 	{1, 1, 4, 0,		/* 0xa5 */
1227 		{{0, 0},
1228 		{2, 2},
1229 		{5, 5},
1230 		{7, 7}
1231 		}
1232 	},
1233 	{0, 1, 3, 0,		/* 0xa6 */
1234 		{{1, 2},
1235 		{5, 5},
1236 		{7, 7},
1237 		{0, 0}
1238 		}
1239 	},
1240 	{1, 1, 3, 0,		/* 0xa7 */
1241 		{{0, 2},
1242 		{5, 5},
1243 		{7, 7},
1244 		{0, 0}
1245 		}
1246 	},
1247 	{0, 1, 3, 0,		/* 0xa8 */
1248 		{{3, 3},
1249 		{5, 5},
1250 		{7, 7},
1251 		{0, 0}
1252 		}
1253 	},
1254 	{1, 1, 4, 0,		/* 0xa9 */
1255 		{{0, 0},
1256 		{3, 3},
1257 		{5, 5},
1258 		{7, 7}
1259 		}
1260 	},
1261 	{0, 1, 4, 0,		/* 0xaa */
1262 		{{1, 1},
1263 		{3, 3},
1264 		{5, 5},
1265 		{7, 7}
1266 		}
1267 	},
1268 	{1, 1, 4, 0,		/* 0xab */
1269 		{{0, 1},
1270 		{3, 3},
1271 		{5, 5},
1272 		{7, 7}
1273 		}
1274 	},
1275 	{0, 1, 3, 0,		/* 0xac */
1276 		{{2, 3},
1277 		{5, 5},
1278 		{7, 7},
1279 		{0, 0}
1280 		}
1281 	},
1282 	{1, 1, 4, 0,		/* 0xad */
1283 		{{0, 0},
1284 		{2, 3},
1285 		{5, 5},
1286 		{7, 7}
1287 		}
1288 	},
1289 	{0, 1, 3, 0,		/* 0xae */
1290 		{{1, 3},
1291 		{5, 5},
1292 		{7, 7},
1293 		{0, 0}
1294 		}
1295 	},
1296 	{1, 1, 3, 0,		/* 0xaf */
1297 		{{0, 3},
1298 		{5, 5},
1299 		{7, 7},
1300 		{0, 0}
1301 		}
1302 	},
1303 	{0, 1, 2, 0,		/* 0xb0 */
1304 		{{4, 5},
1305 		{7, 7},
1306 		{0, 0},
1307 		{0, 0}
1308 		}
1309 	},
1310 	{1, 1, 3, 0,		/* 0xb1 */
1311 		{{0, 0},
1312 		{4, 5},
1313 		{7, 7},
1314 		{0, 0}
1315 		}
1316 	},
1317 	{0, 1, 3, 0,		/* 0xb2 */
1318 		{{1, 1},
1319 		{4, 5},
1320 		{7, 7},
1321 		{0, 0}
1322 		}
1323 	},
1324 	{1, 1, 3, 0,		/* 0xb3 */
1325 		{{0, 1},
1326 		{4, 5},
1327 		{7, 7},
1328 		{0, 0}
1329 		}
1330 	},
1331 	{0, 1, 3, 0,		/* 0xb4 */
1332 		{{2, 2},
1333 		{4, 5},
1334 		{7, 7},
1335 		{0, 0}
1336 		}
1337 	},
1338 	{1, 1, 4, 0,		/* 0xb5 */
1339 		{{0, 0},
1340 		{2, 2},
1341 		{4, 5},
1342 		{7, 7}
1343 		}
1344 	},
1345 	{0, 1, 3, 0,		/* 0xb6 */
1346 		{{1, 2},
1347 		{4, 5},
1348 		{7, 7},
1349 		{0, 0}
1350 		}
1351 	},
1352 	{1, 1, 3, 0,		/* 0xb7 */
1353 		{{0, 2},
1354 		{4, 5},
1355 		{7, 7},
1356 		{0, 0}
1357 		}
1358 	},
1359 	{0, 1, 2, 0,		/* 0xb8 */
1360 		{{3, 5},
1361 		{7, 7},
1362 		{0, 0},
1363 		{0, 0}
1364 		}
1365 	},
1366 	{1, 1, 3, 0,		/* 0xb9 */
1367 		{{0, 0},
1368 		{3, 5},
1369 		{7, 7},
1370 		{0, 0}
1371 		}
1372 	},
1373 	{0, 1, 3, 0,		/* 0xba */
1374 		{{1, 1},
1375 		{3, 5},
1376 		{7, 7},
1377 		{0, 0}
1378 		}
1379 	},
1380 	{1, 1, 3, 0,		/* 0xbb */
1381 		{{0, 1},
1382 		{3, 5},
1383 		{7, 7},
1384 		{0, 0}
1385 		}
1386 	},
1387 	{0, 1, 2, 0,		/* 0xbc */
1388 		{{2, 5},
1389 		{7, 7},
1390 		{0, 0},
1391 		{0, 0}
1392 		}
1393 	},
1394 	{1, 1, 3, 0,		/* 0xbd */
1395 		{{0, 0},
1396 		{2, 5},
1397 		{7, 7},
1398 		{0, 0}
1399 		}
1400 	},
1401 	{0, 1, 2, 0,		/* 0xbe */
1402 		{{1, 5},
1403 		{7, 7},
1404 		{0, 0},
1405 		{0, 0}
1406 		}
1407 	},
1408 	{1, 1, 2, 0,		/* 0xbf */
1409 		{{0, 5},
1410 		{7, 7},
1411 		{0, 0},
1412 		{0, 0}
1413 		}
1414 	},
1415 	{0, 1, 1, 0,		/* 0xc0 */
1416 		{{6, 7},
1417 		{0, 0},
1418 		{0, 0},
1419 		{0, 0}
1420 		}
1421 	},
1422 	{1, 1, 2, 0,		/* 0xc1 */
1423 		{{0, 0},
1424 		{6, 7},
1425 		{0, 0},
1426 		{0, 0}
1427 		}
1428 	},
1429 	{0, 1, 2, 0,		/* 0xc2 */
1430 		{{1, 1},
1431 		{6, 7},
1432 		{0, 0},
1433 		{0, 0}
1434 		}
1435 	},
1436 	{1, 1, 2, 0,		/* 0xc3 */
1437 		{{0, 1},
1438 		{6, 7},
1439 		{0, 0},
1440 		{0, 0}
1441 		}
1442 	},
1443 	{0, 1, 2, 0,		/* 0xc4 */
1444 		{{2, 2},
1445 		{6, 7},
1446 		{0, 0},
1447 		{0, 0}
1448 		}
1449 	},
1450 	{1, 1, 3, 0,		/* 0xc5 */
1451 		{{0, 0},
1452 		{2, 2},
1453 		{6, 7},
1454 		{0, 0}
1455 		}
1456 	},
1457 	{0, 1, 2, 0,		/* 0xc6 */
1458 		{{1, 2},
1459 		{6, 7},
1460 		{0, 0},
1461 		{0, 0}
1462 		}
1463 	},
1464 	{1, 1, 2, 0,		/* 0xc7 */
1465 		{{0, 2},
1466 		{6, 7},
1467 		{0, 0},
1468 		{0, 0}
1469 		}
1470 	},
1471 	{0, 1, 2, 0,		/* 0xc8 */
1472 		{{3, 3},
1473 		{6, 7},
1474 		{0, 0},
1475 		{0, 0}
1476 		}
1477 	},
1478 	{1, 1, 3, 0,		/* 0xc9 */
1479 		{{0, 0},
1480 		{3, 3},
1481 		{6, 7},
1482 		{0, 0}
1483 		}
1484 	},
1485 	{0, 1, 3, 0,		/* 0xca */
1486 		{{1, 1},
1487 		{3, 3},
1488 		{6, 7},
1489 		{0, 0}
1490 		}
1491 	},
1492 	{1, 1, 3, 0,		/* 0xcb */
1493 		{{0, 1},
1494 		{3, 3},
1495 		{6, 7},
1496 		{0, 0}
1497 		}
1498 	},
1499 	{0, 1, 2, 0,		/* 0xcc */
1500 		{{2, 3},
1501 		{6, 7},
1502 		{0, 0},
1503 		{0, 0}
1504 		}
1505 	},
1506 	{1, 1, 3, 0,		/* 0xcd */
1507 		{{0, 0},
1508 		{2, 3},
1509 		{6, 7},
1510 		{0, 0}
1511 		}
1512 	},
1513 	{0, 1, 2, 0,		/* 0xce */
1514 		{{1, 3},
1515 		{6, 7},
1516 		{0, 0},
1517 		{0, 0}
1518 		}
1519 	},
1520 	{1, 1, 2, 0,		/* 0xcf */
1521 		{{0, 3},
1522 		{6, 7},
1523 		{0, 0},
1524 		{0, 0}
1525 		}
1526 	},
1527 	{0, 1, 2, 0,		/* 0xd0 */
1528 		{{4, 4},
1529 		{6, 7},
1530 		{0, 0},
1531 		{0, 0}
1532 		}
1533 	},
1534 	{1, 1, 3, 0,		/* 0xd1 */
1535 		{{0, 0},
1536 		{4, 4},
1537 		{6, 7},
1538 		{0, 0}
1539 		}
1540 	},
1541 	{0, 1, 3, 0,		/* 0xd2 */
1542 		{{1, 1},
1543 		{4, 4},
1544 		{6, 7},
1545 		{0, 0}
1546 		}
1547 	},
1548 	{1, 1, 3, 0,		/* 0xd3 */
1549 		{{0, 1},
1550 		{4, 4},
1551 		{6, 7},
1552 		{0, 0}
1553 		}
1554 	},
1555 	{0, 1, 3, 0,		/* 0xd4 */
1556 		{{2, 2},
1557 		{4, 4},
1558 		{6, 7},
1559 		{0, 0}
1560 		}
1561 	},
1562 	{1, 1, 4, 0,		/* 0xd5 */
1563 		{{0, 0},
1564 		{2, 2},
1565 		{4, 4},
1566 		{6, 7}
1567 		}
1568 	},
1569 	{0, 1, 3, 0,		/* 0xd6 */
1570 		{{1, 2},
1571 		{4, 4},
1572 		{6, 7},
1573 		{0, 0}
1574 		}
1575 	},
1576 	{1, 1, 3, 0,		/* 0xd7 */
1577 		{{0, 2},
1578 		{4, 4},
1579 		{6, 7},
1580 		{0, 0}
1581 		}
1582 	},
1583 	{0, 1, 2, 0,		/* 0xd8 */
1584 		{{3, 4},
1585 		{6, 7},
1586 		{0, 0},
1587 		{0, 0}
1588 		}
1589 	},
1590 	{1, 1, 3, 0,		/* 0xd9 */
1591 		{{0, 0},
1592 		{3, 4},
1593 		{6, 7},
1594 		{0, 0}
1595 		}
1596 	},
1597 	{0, 1, 3, 0,		/* 0xda */
1598 		{{1, 1},
1599 		{3, 4},
1600 		{6, 7},
1601 		{0, 0}
1602 		}
1603 	},
1604 	{1, 1, 3, 0,		/* 0xdb */
1605 		{{0, 1},
1606 		{3, 4},
1607 		{6, 7},
1608 		{0, 0}
1609 		}
1610 	},
1611 	{0, 1, 2, 0,		/* 0xdc */
1612 		{{2, 4},
1613 		{6, 7},
1614 		{0, 0},
1615 		{0, 0}
1616 		}
1617 	},
1618 	{1, 1, 3, 0,		/* 0xdd */
1619 		{{0, 0},
1620 		{2, 4},
1621 		{6, 7},
1622 		{0, 0}
1623 		}
1624 	},
1625 	{0, 1, 2, 0,		/* 0xde */
1626 		{{1, 4},
1627 		{6, 7},
1628 		{0, 0},
1629 		{0, 0}
1630 		}
1631 	},
1632 	{1, 1, 2, 0,		/* 0xdf */
1633 		{{0, 4},
1634 		{6, 7},
1635 		{0, 0},
1636 		{0, 0}
1637 		}
1638 	},
1639 	{0, 1, 1, 0,		/* 0xe0 */
1640 		{{5, 7},
1641 		{0, 0},
1642 		{0, 0},
1643 		{0, 0}
1644 		}
1645 	},
1646 	{1, 1, 2, 0,		/* 0xe1 */
1647 		{{0, 0},
1648 		{5, 7},
1649 		{0, 0},
1650 		{0, 0}
1651 		}
1652 	},
1653 	{0, 1, 2, 0,		/* 0xe2 */
1654 		{{1, 1},
1655 		{5, 7},
1656 		{0, 0},
1657 		{0, 0}
1658 		}
1659 	},
1660 	{1, 1, 2, 0,		/* 0xe3 */
1661 		{{0, 1},
1662 		{5, 7},
1663 		{0, 0},
1664 		{0, 0}
1665 		}
1666 	},
1667 	{0, 1, 2, 0,		/* 0xe4 */
1668 		{{2, 2},
1669 		{5, 7},
1670 		{0, 0},
1671 		{0, 0}
1672 		}
1673 	},
1674 	{1, 1, 3, 0,		/* 0xe5 */
1675 		{{0, 0},
1676 		{2, 2},
1677 		{5, 7},
1678 		{0, 0}
1679 		}
1680 	},
1681 	{0, 1, 2, 0,		/* 0xe6 */
1682 		{{1, 2},
1683 		{5, 7},
1684 		{0, 0},
1685 		{0, 0}
1686 		}
1687 	},
1688 	{1, 1, 2, 0,		/* 0xe7 */
1689 		{{0, 2},
1690 		{5, 7},
1691 		{0, 0},
1692 		{0, 0}
1693 		}
1694 	},
1695 	{0, 1, 2, 0,		/* 0xe8 */
1696 		{{3, 3},
1697 		{5, 7},
1698 		{0, 0},
1699 		{0, 0}
1700 		}
1701 	},
1702 	{1, 1, 3, 0,		/* 0xe9 */
1703 		{{0, 0},
1704 		{3, 3},
1705 		{5, 7},
1706 		{0, 0}
1707 		}
1708 	},
1709 	{0, 1, 3, 0,		/* 0xea */
1710 		{{1, 1},
1711 		{3, 3},
1712 		{5, 7},
1713 		{0, 0}
1714 		}
1715 	},
1716 	{1, 1, 3, 0,		/* 0xeb */
1717 		{{0, 1},
1718 		{3, 3},
1719 		{5, 7},
1720 		{0, 0}
1721 		}
1722 	},
1723 	{0, 1, 2, 0,		/* 0xec */
1724 		{{2, 3},
1725 		{5, 7},
1726 		{0, 0},
1727 		{0, 0}
1728 		}
1729 	},
1730 	{1, 1, 3, 0,		/* 0xed */
1731 		{{0, 0},
1732 		{2, 3},
1733 		{5, 7},
1734 		{0, 0}
1735 		}
1736 	},
1737 	{0, 1, 2, 0,		/* 0xee */
1738 		{{1, 3},
1739 		{5, 7},
1740 		{0, 0},
1741 		{0, 0}
1742 		}
1743 	},
1744 	{1, 1, 2, 0,		/* 0xef */
1745 		{{0, 3},
1746 		{5, 7},
1747 		{0, 0},
1748 		{0, 0}
1749 		}
1750 	},
1751 	{0, 1, 1, 0,		/* 0xf0 */
1752 		{{4, 7},
1753 		{0, 0},
1754 		{0, 0},
1755 		{0, 0}
1756 		}
1757 	},
1758 	{1, 1, 2, 0,		/* 0xf1 */
1759 		{{0, 0},
1760 		{4, 7},
1761 		{0, 0},
1762 		{0, 0}
1763 		}
1764 	},
1765 	{0, 1, 2, 0,		/* 0xf2 */
1766 		{{1, 1},
1767 		{4, 7},
1768 		{0, 0},
1769 		{0, 0}
1770 		}
1771 	},
1772 	{1, 1, 2, 0,		/* 0xf3 */
1773 		{{0, 1},
1774 		{4, 7},
1775 		{0, 0},
1776 		{0, 0}
1777 		}
1778 	},
1779 	{0, 1, 2, 0,		/* 0xf4 */
1780 		{{2, 2},
1781 		{4, 7},
1782 		{0, 0},
1783 		{0, 0}
1784 		}
1785 	},
1786 	{1, 1, 3, 0,		/* 0xf5 */
1787 		{{0, 0},
1788 		{2, 2},
1789 		{4, 7},
1790 		{0, 0}
1791 		}
1792 	},
1793 	{0, 1, 2, 0,		/* 0xf6 */
1794 		{{1, 2},
1795 		{4, 7},
1796 		{0, 0},
1797 		{0, 0}
1798 		}
1799 	},
1800 	{1, 1, 2, 0,		/* 0xf7 */
1801 		{{0, 2},
1802 		{4, 7},
1803 		{0, 0},
1804 		{0, 0}
1805 		}
1806 	},
1807 	{0, 1, 1, 0,		/* 0xf8 */
1808 		{{3, 7},
1809 		{0, 0},
1810 		{0, 0},
1811 		{0, 0}
1812 		}
1813 	},
1814 	{1, 1, 2, 0,		/* 0xf9 */
1815 		{{0, 0},
1816 		{3, 7},
1817 		{0, 0},
1818 		{0, 0}
1819 		}
1820 	},
1821 	{0, 1, 2, 0,		/* 0xfa */
1822 		{{1, 1},
1823 		{3, 7},
1824 		{0, 0},
1825 		{0, 0}
1826 		}
1827 	},
1828 	{1, 1, 2, 0,		/* 0xfb */
1829 		{{0, 1},
1830 		{3, 7},
1831 		{0, 0},
1832 		{0, 0}
1833 		}
1834 	},
1835 	{0, 1, 1, 0,		/* 0xfc */
1836 		{{2, 7},
1837 		{0, 0},
1838 		{0, 0},
1839 		{0, 0}
1840 		}
1841 	},
1842 	{1, 1, 2, 0,		/* 0xfd */
1843 		{{0, 0},
1844 		{2, 7},
1845 		{0, 0},
1846 		{0, 0}
1847 		}
1848 	},
1849 	{0, 1, 1, 0,		/* 0xfe */
1850 		{{1, 7},
1851 		{0, 0},
1852 		{0, 0},
1853 		{0, 0}
1854 		}
1855 	},
1856 	{1, 1, 1, 0,		/* 0xff */
1857 		{{0, 7},
1858 		{0, 0},
1859 		{0, 0},
1860 		{0, 0}
1861 		}
1862 	}
1863 };
1864 
1865 
1866 int
1867 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1868     struct sctp_scoping *scope,
1869     int do_update)
1870 {
1871 	if ((scope->loopback_scope == 0) &&
1872 	    (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1873 		/*
1874 		 * skip loopback if not in scope *
1875 		 */
1876 		return (0);
1877 	}
1878 	switch (ifa->address.sa.sa_family) {
1879 #ifdef INET
1880 	case AF_INET:
1881 		if (scope->ipv4_addr_legal) {
1882 			struct sockaddr_in *sin;
1883 
1884 			sin = (struct sockaddr_in *)&ifa->address.sin;
1885 			if (sin->sin_addr.s_addr == 0) {
1886 				/* not in scope , unspecified */
1887 				return (0);
1888 			}
1889 			if ((scope->ipv4_local_scope == 0) &&
1890 			    (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1891 				/* private address not in scope */
1892 				return (0);
1893 			}
1894 		} else {
1895 			return (0);
1896 		}
1897 		break;
1898 #endif
1899 #ifdef INET6
1900 	case AF_INET6:
1901 		if (scope->ipv6_addr_legal) {
1902 			struct sockaddr_in6 *sin6;
1903 
1904 			/*
1905 			 * Must update the flags,  bummer, which means any
1906 			 * IFA locks must now be applied HERE <->
1907 			 */
1908 			if (do_update) {
1909 				sctp_gather_internal_ifa_flags(ifa);
1910 			}
1911 			if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1912 				return (0);
1913 			}
1914 			/* ok to use deprecated addresses? */
1915 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1916 			if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1917 				/* skip unspecifed addresses */
1918 				return (0);
1919 			}
1920 			if (	/* (local_scope == 0) && */
1921 			    (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1922 				return (0);
1923 			}
1924 			if ((scope->site_scope == 0) &&
1925 			    (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1926 				return (0);
1927 			}
1928 		} else {
1929 			return (0);
1930 		}
1931 		break;
1932 #endif
1933 	default:
1934 		return (0);
1935 	}
1936 	return (1);
1937 }
1938 
1939 static struct mbuf *
1940 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t * len)
1941 {
1942 #if defined(INET) || defined(INET6)
1943 	struct sctp_paramhdr *parmh;
1944 	struct mbuf *mret;
1945 	uint16_t plen;
1946 
1947 #endif
1948 
1949 	switch (ifa->address.sa.sa_family) {
1950 #ifdef INET
1951 	case AF_INET:
1952 		plen = (uint16_t) sizeof(struct sctp_ipv4addr_param);
1953 		break;
1954 #endif
1955 #ifdef INET6
1956 	case AF_INET6:
1957 		plen = (uint16_t) sizeof(struct sctp_ipv6addr_param);
1958 		break;
1959 #endif
1960 	default:
1961 		return (m);
1962 	}
1963 #if defined(INET) || defined(INET6)
1964 	if (M_TRAILINGSPACE(m) >= plen) {
1965 		/* easy side we just drop it on the end */
1966 		parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1967 		mret = m;
1968 	} else {
1969 		/* Need more space */
1970 		mret = m;
1971 		while (SCTP_BUF_NEXT(mret) != NULL) {
1972 			mret = SCTP_BUF_NEXT(mret);
1973 		}
1974 		SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA);
1975 		if (SCTP_BUF_NEXT(mret) == NULL) {
1976 			/* We are hosed, can't add more addresses */
1977 			return (m);
1978 		}
1979 		mret = SCTP_BUF_NEXT(mret);
1980 		parmh = mtod(mret, struct sctp_paramhdr *);
1981 	}
1982 	/* now add the parameter */
1983 	switch (ifa->address.sa.sa_family) {
1984 #ifdef INET
1985 	case AF_INET:
1986 		{
1987 			struct sctp_ipv4addr_param *ipv4p;
1988 			struct sockaddr_in *sin;
1989 
1990 			sin = (struct sockaddr_in *)&ifa->address.sin;
1991 			ipv4p = (struct sctp_ipv4addr_param *)parmh;
1992 			parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1993 			parmh->param_length = htons(plen);
1994 			ipv4p->addr = sin->sin_addr.s_addr;
1995 			SCTP_BUF_LEN(mret) += plen;
1996 			break;
1997 		}
1998 #endif
1999 #ifdef INET6
2000 	case AF_INET6:
2001 		{
2002 			struct sctp_ipv6addr_param *ipv6p;
2003 			struct sockaddr_in6 *sin6;
2004 
2005 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
2006 			ipv6p = (struct sctp_ipv6addr_param *)parmh;
2007 			parmh->param_type = htons(SCTP_IPV6_ADDRESS);
2008 			parmh->param_length = htons(plen);
2009 			memcpy(ipv6p->addr, &sin6->sin6_addr,
2010 			    sizeof(ipv6p->addr));
2011 			/* clear embedded scope in the address */
2012 			in6_clearscope((struct in6_addr *)ipv6p->addr);
2013 			SCTP_BUF_LEN(mret) += plen;
2014 			break;
2015 		}
2016 #endif
2017 	default:
2018 		return (m);
2019 	}
2020 	if (len != NULL) {
2021 		*len += plen;
2022 	}
2023 	return (mret);
2024 #endif
2025 }
2026 
2027 
2028 struct mbuf *
2029 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2030     struct sctp_scoping *scope,
2031     struct mbuf *m_at, int cnt_inits_to,
2032     uint16_t * padding_len, uint16_t * chunk_len)
2033 {
2034 	struct sctp_vrf *vrf = NULL;
2035 	int cnt, limit_out = 0, total_count;
2036 	uint32_t vrf_id;
2037 
2038 	vrf_id = inp->def_vrf_id;
2039 	SCTP_IPI_ADDR_RLOCK();
2040 	vrf = sctp_find_vrf(vrf_id);
2041 	if (vrf == NULL) {
2042 		SCTP_IPI_ADDR_RUNLOCK();
2043 		return (m_at);
2044 	}
2045 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2046 		struct sctp_ifa *sctp_ifap;
2047 		struct sctp_ifn *sctp_ifnp;
2048 
2049 		cnt = cnt_inits_to;
2050 		if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2051 			limit_out = 1;
2052 			cnt = SCTP_ADDRESS_LIMIT;
2053 			goto skip_count;
2054 		}
2055 		LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2056 			if ((scope->loopback_scope == 0) &&
2057 			    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2058 				/*
2059 				 * Skip loopback devices if loopback_scope
2060 				 * not set
2061 				 */
2062 				continue;
2063 			}
2064 			LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2065 #ifdef INET
2066 				if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2067 				    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2068 				    &sctp_ifap->address.sin.sin_addr) != 0)) {
2069 					continue;
2070 				}
2071 #endif
2072 #ifdef INET6
2073 				if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2074 				    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2075 				    &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2076 					continue;
2077 				}
2078 #endif
2079 				if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2080 					continue;
2081 				}
2082 				if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) {
2083 					continue;
2084 				}
2085 				cnt++;
2086 				if (cnt > SCTP_ADDRESS_LIMIT) {
2087 					break;
2088 				}
2089 			}
2090 			if (cnt > SCTP_ADDRESS_LIMIT) {
2091 				break;
2092 			}
2093 		}
2094 skip_count:
2095 		if (cnt > 1) {
2096 			total_count = 0;
2097 			LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2098 				cnt = 0;
2099 				if ((scope->loopback_scope == 0) &&
2100 				    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2101 					/*
2102 					 * Skip loopback devices if
2103 					 * loopback_scope not set
2104 					 */
2105 					continue;
2106 				}
2107 				LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2108 #ifdef INET
2109 					if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2110 					    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2111 					    &sctp_ifap->address.sin.sin_addr) != 0)) {
2112 						continue;
2113 					}
2114 #endif
2115 #ifdef INET6
2116 					if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2117 					    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2118 					    &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2119 						continue;
2120 					}
2121 #endif
2122 					if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2123 						continue;
2124 					}
2125 					if (sctp_is_address_in_scope(sctp_ifap,
2126 					    scope, 0) == 0) {
2127 						continue;
2128 					}
2129 					if ((chunk_len != NULL) &&
2130 					    (padding_len != NULL) &&
2131 					    (*padding_len > 0)) {
2132 						memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2133 						SCTP_BUF_LEN(m_at) += *padding_len;
2134 						*chunk_len += *padding_len;
2135 						*padding_len = 0;
2136 					}
2137 					m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len);
2138 					if (limit_out) {
2139 						cnt++;
2140 						total_count++;
2141 						if (cnt >= 2) {
2142 							/*
2143 							 * two from each
2144 							 * address
2145 							 */
2146 							break;
2147 						}
2148 						if (total_count > SCTP_ADDRESS_LIMIT) {
2149 							/* No more addresses */
2150 							break;
2151 						}
2152 					}
2153 				}
2154 			}
2155 		}
2156 	} else {
2157 		struct sctp_laddr *laddr;
2158 
2159 		cnt = cnt_inits_to;
2160 		/* First, how many ? */
2161 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2162 			if (laddr->ifa == NULL) {
2163 				continue;
2164 			}
2165 			if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2166 				/*
2167 				 * Address being deleted by the system, dont
2168 				 * list.
2169 				 */
2170 				continue;
2171 			if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2172 				/*
2173 				 * Address being deleted on this ep don't
2174 				 * list.
2175 				 */
2176 				continue;
2177 			}
2178 			if (sctp_is_address_in_scope(laddr->ifa,
2179 			    scope, 1) == 0) {
2180 				continue;
2181 			}
2182 			cnt++;
2183 		}
2184 		/*
2185 		 * To get through a NAT we only list addresses if we have
2186 		 * more than one. That way if you just bind a single address
2187 		 * we let the source of the init dictate our address.
2188 		 */
2189 		if (cnt > 1) {
2190 			cnt = cnt_inits_to;
2191 			LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2192 				if (laddr->ifa == NULL) {
2193 					continue;
2194 				}
2195 				if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) {
2196 					continue;
2197 				}
2198 				if (sctp_is_address_in_scope(laddr->ifa,
2199 				    scope, 0) == 0) {
2200 					continue;
2201 				}
2202 				if ((chunk_len != NULL) &&
2203 				    (padding_len != NULL) &&
2204 				    (*padding_len > 0)) {
2205 					memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2206 					SCTP_BUF_LEN(m_at) += *padding_len;
2207 					*chunk_len += *padding_len;
2208 					*padding_len = 0;
2209 				}
2210 				m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len);
2211 				cnt++;
2212 				if (cnt >= SCTP_ADDRESS_LIMIT) {
2213 					break;
2214 				}
2215 			}
2216 		}
2217 	}
2218 	SCTP_IPI_ADDR_RUNLOCK();
2219 	return (m_at);
2220 }
2221 
2222 static struct sctp_ifa *
2223 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2224     uint8_t dest_is_loop,
2225     uint8_t dest_is_priv,
2226     sa_family_t fam)
2227 {
2228 	uint8_t dest_is_global = 0;
2229 
2230 	/* dest_is_priv is true if destination is a private address */
2231 	/* dest_is_loop is true if destination is a loopback addresses */
2232 
2233 	/**
2234 	 * Here we determine if its a preferred address. A preferred address
2235 	 * means it is the same scope or higher scope then the destination.
2236 	 * L = loopback, P = private, G = global
2237 	 * -----------------------------------------
2238 	 *    src    |  dest | result
2239 	 *  ----------------------------------------
2240 	 *     L     |    L  |    yes
2241 	 *  -----------------------------------------
2242 	 *     P     |    L  |    yes-v4 no-v6
2243 	 *  -----------------------------------------
2244 	 *     G     |    L  |    yes-v4 no-v6
2245 	 *  -----------------------------------------
2246 	 *     L     |    P  |    no
2247 	 *  -----------------------------------------
2248 	 *     P     |    P  |    yes
2249 	 *  -----------------------------------------
2250 	 *     G     |    P  |    no
2251 	 *   -----------------------------------------
2252 	 *     L     |    G  |    no
2253 	 *   -----------------------------------------
2254 	 *     P     |    G  |    no
2255 	 *    -----------------------------------------
2256 	 *     G     |    G  |    yes
2257 	 *    -----------------------------------------
2258 	 */
2259 
2260 	if (ifa->address.sa.sa_family != fam) {
2261 		/* forget mis-matched family */
2262 		return (NULL);
2263 	}
2264 	if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2265 		dest_is_global = 1;
2266 	}
2267 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2268 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2269 	/* Ok the address may be ok */
2270 #ifdef INET6
2271 	if (fam == AF_INET6) {
2272 		/* ok to use deprecated addresses? no lets not! */
2273 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2274 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2275 			return (NULL);
2276 		}
2277 		if (ifa->src_is_priv && !ifa->src_is_loop) {
2278 			if (dest_is_loop) {
2279 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2280 				return (NULL);
2281 			}
2282 		}
2283 		if (ifa->src_is_glob) {
2284 			if (dest_is_loop) {
2285 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2286 				return (NULL);
2287 			}
2288 		}
2289 	}
2290 #endif
2291 	/*
2292 	 * Now that we know what is what, implement or table this could in
2293 	 * theory be done slicker (it used to be), but this is
2294 	 * straightforward and easier to validate :-)
2295 	 */
2296 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2297 	    ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2298 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2299 	    dest_is_loop, dest_is_priv, dest_is_global);
2300 
2301 	if ((ifa->src_is_loop) && (dest_is_priv)) {
2302 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2303 		return (NULL);
2304 	}
2305 	if ((ifa->src_is_glob) && (dest_is_priv)) {
2306 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2307 		return (NULL);
2308 	}
2309 	if ((ifa->src_is_loop) && (dest_is_global)) {
2310 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2311 		return (NULL);
2312 	}
2313 	if ((ifa->src_is_priv) && (dest_is_global)) {
2314 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2315 		return (NULL);
2316 	}
2317 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2318 	/* its a preferred address */
2319 	return (ifa);
2320 }
2321 
2322 static struct sctp_ifa *
2323 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2324     uint8_t dest_is_loop,
2325     uint8_t dest_is_priv,
2326     sa_family_t fam)
2327 {
2328 	uint8_t dest_is_global = 0;
2329 
2330 	/**
2331 	 * Here we determine if its a acceptable address. A acceptable
2332 	 * address means it is the same scope or higher scope but we can
2333 	 * allow for NAT which means its ok to have a global dest and a
2334 	 * private src.
2335 	 *
2336 	 * L = loopback, P = private, G = global
2337 	 * -----------------------------------------
2338 	 *  src    |  dest | result
2339 	 * -----------------------------------------
2340 	 *   L     |   L   |    yes
2341 	 *  -----------------------------------------
2342 	 *   P     |   L   |    yes-v4 no-v6
2343 	 *  -----------------------------------------
2344 	 *   G     |   L   |    yes
2345 	 * -----------------------------------------
2346 	 *   L     |   P   |    no
2347 	 * -----------------------------------------
2348 	 *   P     |   P   |    yes
2349 	 * -----------------------------------------
2350 	 *   G     |   P   |    yes - May not work
2351 	 * -----------------------------------------
2352 	 *   L     |   G   |    no
2353 	 * -----------------------------------------
2354 	 *   P     |   G   |    yes - May not work
2355 	 * -----------------------------------------
2356 	 *   G     |   G   |    yes
2357 	 * -----------------------------------------
2358 	 */
2359 
2360 	if (ifa->address.sa.sa_family != fam) {
2361 		/* forget non matching family */
2362 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2363 		    ifa->address.sa.sa_family, fam);
2364 		return (NULL);
2365 	}
2366 	/* Ok the address may be ok */
2367 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2368 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2369 	    dest_is_loop, dest_is_priv);
2370 	if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2371 		dest_is_global = 1;
2372 	}
2373 #ifdef INET6
2374 	if (fam == AF_INET6) {
2375 		/* ok to use deprecated addresses? */
2376 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2377 			return (NULL);
2378 		}
2379 		if (ifa->src_is_priv) {
2380 			/* Special case, linklocal to loop */
2381 			if (dest_is_loop)
2382 				return (NULL);
2383 		}
2384 	}
2385 #endif
2386 	/*
2387 	 * Now that we know what is what, implement our table. This could in
2388 	 * theory be done slicker (it used to be), but this is
2389 	 * straightforward and easier to validate :-)
2390 	 */
2391 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2392 	    ifa->src_is_loop,
2393 	    dest_is_priv);
2394 	if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2395 		return (NULL);
2396 	}
2397 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2398 	    ifa->src_is_loop,
2399 	    dest_is_global);
2400 	if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2401 		return (NULL);
2402 	}
2403 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2404 	/* its an acceptable address */
2405 	return (ifa);
2406 }
2407 
2408 int
2409 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2410 {
2411 	struct sctp_laddr *laddr;
2412 
2413 	if (stcb == NULL) {
2414 		/* There are no restrictions, no TCB :-) */
2415 		return (0);
2416 	}
2417 	LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2418 		if (laddr->ifa == NULL) {
2419 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2420 			    __FUNCTION__);
2421 			continue;
2422 		}
2423 		if (laddr->ifa == ifa) {
2424 			/* Yes it is on the list */
2425 			return (1);
2426 		}
2427 	}
2428 	return (0);
2429 }
2430 
2431 
2432 int
2433 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2434 {
2435 	struct sctp_laddr *laddr;
2436 
2437 	if (ifa == NULL)
2438 		return (0);
2439 	LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2440 		if (laddr->ifa == NULL) {
2441 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2442 			    __FUNCTION__);
2443 			continue;
2444 		}
2445 		if ((laddr->ifa == ifa) && laddr->action == 0)
2446 			/* same pointer */
2447 			return (1);
2448 	}
2449 	return (0);
2450 }
2451 
2452 
2453 
2454 static struct sctp_ifa *
2455 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2456     sctp_route_t * ro,
2457     uint32_t vrf_id,
2458     int non_asoc_addr_ok,
2459     uint8_t dest_is_priv,
2460     uint8_t dest_is_loop,
2461     sa_family_t fam)
2462 {
2463 	struct sctp_laddr *laddr, *starting_point;
2464 	void *ifn;
2465 	int resettotop = 0;
2466 	struct sctp_ifn *sctp_ifn;
2467 	struct sctp_ifa *sctp_ifa, *sifa;
2468 	struct sctp_vrf *vrf;
2469 	uint32_t ifn_index;
2470 
2471 	vrf = sctp_find_vrf(vrf_id);
2472 	if (vrf == NULL)
2473 		return (NULL);
2474 
2475 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2476 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2477 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2478 	/*
2479 	 * first question, is the ifn we will emit on in our list, if so, we
2480 	 * want such an address. Note that we first looked for a preferred
2481 	 * address.
2482 	 */
2483 	if (sctp_ifn) {
2484 		/* is a preferred one on the interface we route out? */
2485 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2486 #ifdef INET
2487 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2488 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2489 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2490 				continue;
2491 			}
2492 #endif
2493 #ifdef INET6
2494 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2495 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2496 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2497 				continue;
2498 			}
2499 #endif
2500 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2501 			    (non_asoc_addr_ok == 0))
2502 				continue;
2503 			sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2504 			    dest_is_loop,
2505 			    dest_is_priv, fam);
2506 			if (sifa == NULL)
2507 				continue;
2508 			if (sctp_is_addr_in_ep(inp, sifa)) {
2509 				atomic_add_int(&sifa->refcount, 1);
2510 				return (sifa);
2511 			}
2512 		}
2513 	}
2514 	/*
2515 	 * ok, now we now need to find one on the list of the addresses. We
2516 	 * can't get one on the emitting interface so let's find first a
2517 	 * preferred one. If not that an acceptable one otherwise... we
2518 	 * return NULL.
2519 	 */
2520 	starting_point = inp->next_addr_touse;
2521 once_again:
2522 	if (inp->next_addr_touse == NULL) {
2523 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2524 		resettotop = 1;
2525 	}
2526 	for (laddr = inp->next_addr_touse; laddr;
2527 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2528 		if (laddr->ifa == NULL) {
2529 			/* address has been removed */
2530 			continue;
2531 		}
2532 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2533 			/* address is being deleted */
2534 			continue;
2535 		}
2536 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2537 		    dest_is_priv, fam);
2538 		if (sifa == NULL)
2539 			continue;
2540 		atomic_add_int(&sifa->refcount, 1);
2541 		return (sifa);
2542 	}
2543 	if (resettotop == 0) {
2544 		inp->next_addr_touse = NULL;
2545 		goto once_again;
2546 	}
2547 	inp->next_addr_touse = starting_point;
2548 	resettotop = 0;
2549 once_again_too:
2550 	if (inp->next_addr_touse == NULL) {
2551 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2552 		resettotop = 1;
2553 	}
2554 	/* ok, what about an acceptable address in the inp */
2555 	for (laddr = inp->next_addr_touse; laddr;
2556 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2557 		if (laddr->ifa == NULL) {
2558 			/* address has been removed */
2559 			continue;
2560 		}
2561 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2562 			/* address is being deleted */
2563 			continue;
2564 		}
2565 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2566 		    dest_is_priv, fam);
2567 		if (sifa == NULL)
2568 			continue;
2569 		atomic_add_int(&sifa->refcount, 1);
2570 		return (sifa);
2571 	}
2572 	if (resettotop == 0) {
2573 		inp->next_addr_touse = NULL;
2574 		goto once_again_too;
2575 	}
2576 	/*
2577 	 * no address bound can be a source for the destination we are in
2578 	 * trouble
2579 	 */
2580 	return (NULL);
2581 }
2582 
2583 
2584 
2585 static struct sctp_ifa *
2586 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2587     struct sctp_tcb *stcb,
2588     sctp_route_t * ro,
2589     uint32_t vrf_id,
2590     uint8_t dest_is_priv,
2591     uint8_t dest_is_loop,
2592     int non_asoc_addr_ok,
2593     sa_family_t fam)
2594 {
2595 	struct sctp_laddr *laddr, *starting_point;
2596 	void *ifn;
2597 	struct sctp_ifn *sctp_ifn;
2598 	struct sctp_ifa *sctp_ifa, *sifa;
2599 	uint8_t start_at_beginning = 0;
2600 	struct sctp_vrf *vrf;
2601 	uint32_t ifn_index;
2602 
2603 	/*
2604 	 * first question, is the ifn we will emit on in our list, if so, we
2605 	 * want that one.
2606 	 */
2607 	vrf = sctp_find_vrf(vrf_id);
2608 	if (vrf == NULL)
2609 		return (NULL);
2610 
2611 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2612 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2613 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2614 
2615 	/*
2616 	 * first question, is the ifn we will emit on in our list?  If so,
2617 	 * we want that one. First we look for a preferred. Second, we go
2618 	 * for an acceptable.
2619 	 */
2620 	if (sctp_ifn) {
2621 		/* first try for a preferred address on the ep */
2622 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2623 #ifdef INET
2624 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2625 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2626 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2627 				continue;
2628 			}
2629 #endif
2630 #ifdef INET6
2631 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2632 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2633 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2634 				continue;
2635 			}
2636 #endif
2637 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2638 				continue;
2639 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2640 				sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2641 				if (sifa == NULL)
2642 					continue;
2643 				if (((non_asoc_addr_ok == 0) &&
2644 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2645 				    (non_asoc_addr_ok &&
2646 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2647 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2648 					/* on the no-no list */
2649 					continue;
2650 				}
2651 				atomic_add_int(&sifa->refcount, 1);
2652 				return (sifa);
2653 			}
2654 		}
2655 		/* next try for an acceptable address on the ep */
2656 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2657 #ifdef INET
2658 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2659 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2660 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
2661 				continue;
2662 			}
2663 #endif
2664 #ifdef INET6
2665 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2666 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2667 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2668 				continue;
2669 			}
2670 #endif
2671 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2672 				continue;
2673 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2674 				sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2675 				if (sifa == NULL)
2676 					continue;
2677 				if (((non_asoc_addr_ok == 0) &&
2678 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2679 				    (non_asoc_addr_ok &&
2680 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2681 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2682 					/* on the no-no list */
2683 					continue;
2684 				}
2685 				atomic_add_int(&sifa->refcount, 1);
2686 				return (sifa);
2687 			}
2688 		}
2689 
2690 	}
2691 	/*
2692 	 * if we can't find one like that then we must look at all addresses
2693 	 * bound to pick one at first preferable then secondly acceptable.
2694 	 */
2695 	starting_point = stcb->asoc.last_used_address;
2696 sctp_from_the_top:
2697 	if (stcb->asoc.last_used_address == NULL) {
2698 		start_at_beginning = 1;
2699 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2700 	}
2701 	/* search beginning with the last used address */
2702 	for (laddr = stcb->asoc.last_used_address; laddr;
2703 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2704 		if (laddr->ifa == NULL) {
2705 			/* address has been removed */
2706 			continue;
2707 		}
2708 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2709 			/* address is being deleted */
2710 			continue;
2711 		}
2712 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2713 		if (sifa == NULL)
2714 			continue;
2715 		if (((non_asoc_addr_ok == 0) &&
2716 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2717 		    (non_asoc_addr_ok &&
2718 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2719 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2720 			/* on the no-no list */
2721 			continue;
2722 		}
2723 		stcb->asoc.last_used_address = laddr;
2724 		atomic_add_int(&sifa->refcount, 1);
2725 		return (sifa);
2726 	}
2727 	if (start_at_beginning == 0) {
2728 		stcb->asoc.last_used_address = NULL;
2729 		goto sctp_from_the_top;
2730 	}
2731 	/* now try for any higher scope than the destination */
2732 	stcb->asoc.last_used_address = starting_point;
2733 	start_at_beginning = 0;
2734 sctp_from_the_top2:
2735 	if (stcb->asoc.last_used_address == NULL) {
2736 		start_at_beginning = 1;
2737 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2738 	}
2739 	/* search beginning with the last used address */
2740 	for (laddr = stcb->asoc.last_used_address; laddr;
2741 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2742 		if (laddr->ifa == NULL) {
2743 			/* address has been removed */
2744 			continue;
2745 		}
2746 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2747 			/* address is being deleted */
2748 			continue;
2749 		}
2750 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2751 		    dest_is_priv, fam);
2752 		if (sifa == NULL)
2753 			continue;
2754 		if (((non_asoc_addr_ok == 0) &&
2755 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2756 		    (non_asoc_addr_ok &&
2757 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2758 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2759 			/* on the no-no list */
2760 			continue;
2761 		}
2762 		stcb->asoc.last_used_address = laddr;
2763 		atomic_add_int(&sifa->refcount, 1);
2764 		return (sifa);
2765 	}
2766 	if (start_at_beginning == 0) {
2767 		stcb->asoc.last_used_address = NULL;
2768 		goto sctp_from_the_top2;
2769 	}
2770 	return (NULL);
2771 }
2772 
2773 static struct sctp_ifa *
2774 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2775     struct sctp_inpcb *inp,
2776     struct sctp_tcb *stcb,
2777     int non_asoc_addr_ok,
2778     uint8_t dest_is_loop,
2779     uint8_t dest_is_priv,
2780     int addr_wanted,
2781     sa_family_t fam,
2782     sctp_route_t * ro
2783 )
2784 {
2785 	struct sctp_ifa *ifa, *sifa;
2786 	int num_eligible_addr = 0;
2787 
2788 #ifdef INET6
2789 	struct sockaddr_in6 sin6, lsa6;
2790 
2791 	if (fam == AF_INET6) {
2792 		memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2793 		(void)sa6_recoverscope(&sin6);
2794 	}
2795 #endif				/* INET6 */
2796 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2797 #ifdef INET
2798 		if ((ifa->address.sa.sa_family == AF_INET) &&
2799 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2800 		    &ifa->address.sin.sin_addr) != 0)) {
2801 			continue;
2802 		}
2803 #endif
2804 #ifdef INET6
2805 		if ((ifa->address.sa.sa_family == AF_INET6) &&
2806 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2807 		    &ifa->address.sin6.sin6_addr) != 0)) {
2808 			continue;
2809 		}
2810 #endif
2811 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2812 		    (non_asoc_addr_ok == 0))
2813 			continue;
2814 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2815 		    dest_is_priv, fam);
2816 		if (sifa == NULL)
2817 			continue;
2818 #ifdef INET6
2819 		if (fam == AF_INET6 &&
2820 		    dest_is_loop &&
2821 		    sifa->src_is_loop && sifa->src_is_priv) {
2822 			/*
2823 			 * don't allow fe80::1 to be a src on loop ::1, we
2824 			 * don't list it to the peer so we will get an
2825 			 * abort.
2826 			 */
2827 			continue;
2828 		}
2829 		if (fam == AF_INET6 &&
2830 		    IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2831 		    IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2832 			/*
2833 			 * link-local <-> link-local must belong to the same
2834 			 * scope.
2835 			 */
2836 			memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2837 			(void)sa6_recoverscope(&lsa6);
2838 			if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2839 				continue;
2840 			}
2841 		}
2842 #endif				/* INET6 */
2843 
2844 		/*
2845 		 * Check if the IPv6 address matches to next-hop. In the
2846 		 * mobile case, old IPv6 address may be not deleted from the
2847 		 * interface. Then, the interface has previous and new
2848 		 * addresses.  We should use one corresponding to the
2849 		 * next-hop.  (by micchie)
2850 		 */
2851 #ifdef INET6
2852 		if (stcb && fam == AF_INET6 &&
2853 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2854 			if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2855 			    == 0) {
2856 				continue;
2857 			}
2858 		}
2859 #endif
2860 #ifdef INET
2861 		/* Avoid topologically incorrect IPv4 address */
2862 		if (stcb && fam == AF_INET &&
2863 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2864 			if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2865 				continue;
2866 			}
2867 		}
2868 #endif
2869 		if (stcb) {
2870 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2871 				continue;
2872 			}
2873 			if (((non_asoc_addr_ok == 0) &&
2874 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2875 			    (non_asoc_addr_ok &&
2876 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2877 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2878 				/*
2879 				 * It is restricted for some reason..
2880 				 * probably not yet added.
2881 				 */
2882 				continue;
2883 			}
2884 		}
2885 		if (num_eligible_addr >= addr_wanted) {
2886 			return (sifa);
2887 		}
2888 		num_eligible_addr++;
2889 	}
2890 	return (NULL);
2891 }
2892 
2893 
2894 static int
2895 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2896     struct sctp_inpcb *inp,
2897     struct sctp_tcb *stcb,
2898     int non_asoc_addr_ok,
2899     uint8_t dest_is_loop,
2900     uint8_t dest_is_priv,
2901     sa_family_t fam)
2902 {
2903 	struct sctp_ifa *ifa, *sifa;
2904 	int num_eligible_addr = 0;
2905 
2906 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2907 #ifdef INET
2908 		if ((ifa->address.sa.sa_family == AF_INET) &&
2909 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2910 		    &ifa->address.sin.sin_addr) != 0)) {
2911 			continue;
2912 		}
2913 #endif
2914 #ifdef INET6
2915 		if ((ifa->address.sa.sa_family == AF_INET6) &&
2916 		    (stcb != NULL) &&
2917 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2918 		    &ifa->address.sin6.sin6_addr) != 0)) {
2919 			continue;
2920 		}
2921 #endif
2922 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2923 		    (non_asoc_addr_ok == 0)) {
2924 			continue;
2925 		}
2926 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2927 		    dest_is_priv, fam);
2928 		if (sifa == NULL) {
2929 			continue;
2930 		}
2931 		if (stcb) {
2932 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2933 				continue;
2934 			}
2935 			if (((non_asoc_addr_ok == 0) &&
2936 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2937 			    (non_asoc_addr_ok &&
2938 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2939 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2940 				/*
2941 				 * It is restricted for some reason..
2942 				 * probably not yet added.
2943 				 */
2944 				continue;
2945 			}
2946 		}
2947 		num_eligible_addr++;
2948 	}
2949 	return (num_eligible_addr);
2950 }
2951 
2952 static struct sctp_ifa *
2953 sctp_choose_boundall(struct sctp_inpcb *inp,
2954     struct sctp_tcb *stcb,
2955     struct sctp_nets *net,
2956     sctp_route_t * ro,
2957     uint32_t vrf_id,
2958     uint8_t dest_is_priv,
2959     uint8_t dest_is_loop,
2960     int non_asoc_addr_ok,
2961     sa_family_t fam)
2962 {
2963 	int cur_addr_num = 0, num_preferred = 0;
2964 	void *ifn;
2965 	struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2966 	struct sctp_ifa *sctp_ifa, *sifa;
2967 	uint32_t ifn_index;
2968 	struct sctp_vrf *vrf;
2969 
2970 #ifdef INET
2971 	int retried = 0;
2972 
2973 #endif
2974 
2975 	/*-
2976 	 * For boundall we can use any address in the association.
2977 	 * If non_asoc_addr_ok is set we can use any address (at least in
2978 	 * theory). So we look for preferred addresses first. If we find one,
2979 	 * we use it. Otherwise we next try to get an address on the
2980 	 * interface, which we should be able to do (unless non_asoc_addr_ok
2981 	 * is false and we are routed out that way). In these cases where we
2982 	 * can't use the address of the interface we go through all the
2983 	 * ifn's looking for an address we can use and fill that in. Punting
2984 	 * means we send back address 0, which will probably cause problems
2985 	 * actually since then IP will fill in the address of the route ifn,
2986 	 * which means we probably already rejected it.. i.e. here comes an
2987 	 * abort :-<.
2988 	 */
2989 	vrf = sctp_find_vrf(vrf_id);
2990 	if (vrf == NULL)
2991 		return (NULL);
2992 
2993 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2994 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2995 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2996 	emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2997 	if (sctp_ifn == NULL) {
2998 		/* ?? We don't have this guy ?? */
2999 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
3000 		goto bound_all_plan_b;
3001 	}
3002 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
3003 	    ifn_index, sctp_ifn->ifn_name);
3004 
3005 	if (net) {
3006 		cur_addr_num = net->indx_of_eligible_next_to_use;
3007 	}
3008 	num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
3009 	    inp, stcb,
3010 	    non_asoc_addr_ok,
3011 	    dest_is_loop,
3012 	    dest_is_priv, fam);
3013 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
3014 	    num_preferred, sctp_ifn->ifn_name);
3015 	if (num_preferred == 0) {
3016 		/*
3017 		 * no eligible addresses, we must use some other interface
3018 		 * address if we can find one.
3019 		 */
3020 		goto bound_all_plan_b;
3021 	}
3022 	/*
3023 	 * Ok we have num_eligible_addr set with how many we can use, this
3024 	 * may vary from call to call due to addresses being deprecated
3025 	 * etc..
3026 	 */
3027 	if (cur_addr_num >= num_preferred) {
3028 		cur_addr_num = 0;
3029 	}
3030 	/*
3031 	 * select the nth address from the list (where cur_addr_num is the
3032 	 * nth) and 0 is the first one, 1 is the second one etc...
3033 	 */
3034 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
3035 
3036 	sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3037 	    dest_is_priv, cur_addr_num, fam, ro);
3038 
3039 	/* if sctp_ifa is NULL something changed??, fall to plan b. */
3040 	if (sctp_ifa) {
3041 		atomic_add_int(&sctp_ifa->refcount, 1);
3042 		if (net) {
3043 			/* save off where the next one we will want */
3044 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3045 		}
3046 		return (sctp_ifa);
3047 	}
3048 	/*
3049 	 * plan_b: Look at all interfaces and find a preferred address. If
3050 	 * no preferred fall through to plan_c.
3051 	 */
3052 bound_all_plan_b:
3053 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
3054 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3055 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
3056 		    sctp_ifn->ifn_name);
3057 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3058 			/* wrong base scope */
3059 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
3060 			continue;
3061 		}
3062 		if ((sctp_ifn == looked_at) && looked_at) {
3063 			/* already looked at this guy */
3064 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
3065 			continue;
3066 		}
3067 		num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok,
3068 		    dest_is_loop, dest_is_priv, fam);
3069 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
3070 		    "Found ifn:%p %d preferred source addresses\n",
3071 		    ifn, num_preferred);
3072 		if (num_preferred == 0) {
3073 			/* None on this interface. */
3074 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n");
3075 			continue;
3076 		}
3077 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
3078 		    "num preferred:%d on interface:%p cur_addr_num:%d\n",
3079 		    num_preferred, (void *)sctp_ifn, cur_addr_num);
3080 
3081 		/*
3082 		 * Ok we have num_eligible_addr set with how many we can
3083 		 * use, this may vary from call to call due to addresses
3084 		 * being deprecated etc..
3085 		 */
3086 		if (cur_addr_num >= num_preferred) {
3087 			cur_addr_num = 0;
3088 		}
3089 		sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3090 		    dest_is_priv, cur_addr_num, fam, ro);
3091 		if (sifa == NULL)
3092 			continue;
3093 		if (net) {
3094 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3095 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
3096 			    cur_addr_num);
3097 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
3098 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
3099 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
3100 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
3101 		}
3102 		atomic_add_int(&sifa->refcount, 1);
3103 		return (sifa);
3104 	}
3105 #ifdef INET
3106 again_with_private_addresses_allowed:
3107 #endif
3108 	/* plan_c: do we have an acceptable address on the emit interface */
3109 	sifa = NULL;
3110 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3111 	if (emit_ifn == NULL) {
3112 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3113 		goto plan_d;
3114 	}
3115 	LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3116 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3117 #ifdef INET
3118 		if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3119 		    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3120 		    &sctp_ifa->address.sin.sin_addr) != 0)) {
3121 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3122 			continue;
3123 		}
3124 #endif
3125 #ifdef INET6
3126 		if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3127 		    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3128 		    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3129 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3130 			continue;
3131 		}
3132 #endif
3133 		if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3134 		    (non_asoc_addr_ok == 0)) {
3135 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3136 			continue;
3137 		}
3138 		sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3139 		    dest_is_priv, fam);
3140 		if (sifa == NULL) {
3141 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3142 			continue;
3143 		}
3144 		if (stcb) {
3145 			if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3146 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3147 				sifa = NULL;
3148 				continue;
3149 			}
3150 			if (((non_asoc_addr_ok == 0) &&
3151 			    (sctp_is_addr_restricted(stcb, sifa))) ||
3152 			    (non_asoc_addr_ok &&
3153 			    (sctp_is_addr_restricted(stcb, sifa)) &&
3154 			    (!sctp_is_addr_pending(stcb, sifa)))) {
3155 				/*
3156 				 * It is restricted for some reason..
3157 				 * probably not yet added.
3158 				 */
3159 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n");
3160 				sifa = NULL;
3161 				continue;
3162 			}
3163 		} else {
3164 			SCTP_PRINTF("Stcb is null - no print\n");
3165 		}
3166 		atomic_add_int(&sifa->refcount, 1);
3167 		goto out;
3168 	}
3169 plan_d:
3170 	/*
3171 	 * plan_d: We are in trouble. No preferred address on the emit
3172 	 * interface. And not even a preferred address on all interfaces. Go
3173 	 * out and see if we can find an acceptable address somewhere
3174 	 * amongst all interfaces.
3175 	 */
3176 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3177 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3178 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3179 			/* wrong base scope */
3180 			continue;
3181 		}
3182 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3183 #ifdef INET
3184 			if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3185 			    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3186 			    &sctp_ifa->address.sin.sin_addr) != 0)) {
3187 				continue;
3188 			}
3189 #endif
3190 #ifdef INET6
3191 			if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3192 			    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3193 			    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3194 				continue;
3195 			}
3196 #endif
3197 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3198 			    (non_asoc_addr_ok == 0))
3199 				continue;
3200 			sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3201 			    dest_is_loop,
3202 			    dest_is_priv, fam);
3203 			if (sifa == NULL)
3204 				continue;
3205 			if (stcb) {
3206 				if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3207 					sifa = NULL;
3208 					continue;
3209 				}
3210 				if (((non_asoc_addr_ok == 0) &&
3211 				    (sctp_is_addr_restricted(stcb, sifa))) ||
3212 				    (non_asoc_addr_ok &&
3213 				    (sctp_is_addr_restricted(stcb, sifa)) &&
3214 				    (!sctp_is_addr_pending(stcb, sifa)))) {
3215 					/*
3216 					 * It is restricted for some
3217 					 * reason.. probably not yet added.
3218 					 */
3219 					sifa = NULL;
3220 					continue;
3221 				}
3222 			}
3223 			goto out;
3224 		}
3225 	}
3226 #ifdef INET
3227 	if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) {
3228 		stcb->asoc.scope.ipv4_local_scope = 1;
3229 		retried = 1;
3230 		goto again_with_private_addresses_allowed;
3231 	} else if (retried == 1) {
3232 		stcb->asoc.scope.ipv4_local_scope = 0;
3233 	}
3234 #endif
3235 out:
3236 #ifdef INET
3237 	if (sifa) {
3238 		if (retried == 1) {
3239 			LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3240 				if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3241 					/* wrong base scope */
3242 					continue;
3243 				}
3244 				LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3245 					struct sctp_ifa *tmp_sifa;
3246 
3247 #ifdef INET
3248 					if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3249 					    (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3250 					    &sctp_ifa->address.sin.sin_addr) != 0)) {
3251 						continue;
3252 					}
3253 #endif
3254 #ifdef INET6
3255 					if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3256 					    (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3257 					    &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3258 						continue;
3259 					}
3260 #endif
3261 					if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3262 					    (non_asoc_addr_ok == 0))
3263 						continue;
3264 					tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3265 					    dest_is_loop,
3266 					    dest_is_priv, fam);
3267 					if (tmp_sifa == NULL) {
3268 						continue;
3269 					}
3270 					if (tmp_sifa == sifa) {
3271 						continue;
3272 					}
3273 					if (stcb) {
3274 						if (sctp_is_address_in_scope(tmp_sifa,
3275 						    &stcb->asoc.scope, 0) == 0) {
3276 							continue;
3277 						}
3278 						if (((non_asoc_addr_ok == 0) &&
3279 						    (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3280 						    (non_asoc_addr_ok &&
3281 						    (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3282 						    (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3283 							/*
3284 							 * It is restricted
3285 							 * for some reason..
3286 							 * probably not yet
3287 							 * added.
3288 							 */
3289 							continue;
3290 						}
3291 					}
3292 					if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3293 					    (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3294 						sctp_add_local_addr_restricted(stcb, tmp_sifa);
3295 					}
3296 				}
3297 			}
3298 		}
3299 		atomic_add_int(&sifa->refcount, 1);
3300 	}
3301 #endif
3302 	return (sifa);
3303 }
3304 
3305 
3306 
3307 /* tcb may be NULL */
3308 struct sctp_ifa *
3309 sctp_source_address_selection(struct sctp_inpcb *inp,
3310     struct sctp_tcb *stcb,
3311     sctp_route_t * ro,
3312     struct sctp_nets *net,
3313     int non_asoc_addr_ok, uint32_t vrf_id)
3314 {
3315 	struct sctp_ifa *answer;
3316 	uint8_t dest_is_priv, dest_is_loop;
3317 	sa_family_t fam;
3318 
3319 #ifdef INET
3320 	struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3321 
3322 #endif
3323 #ifdef INET6
3324 	struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3325 
3326 #endif
3327 
3328 	/**
3329 	 * Rules: - Find the route if needed, cache if I can. - Look at
3330 	 * interface address in route, Is it in the bound list. If so we
3331 	 * have the best source. - If not we must rotate amongst the
3332 	 * addresses.
3333 	 *
3334 	 * Cavets and issues
3335 	 *
3336 	 * Do we need to pay attention to scope. We can have a private address
3337 	 * or a global address we are sourcing or sending to. So if we draw
3338 	 * it out
3339 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3340 	 * For V4
3341 	 * ------------------------------------------
3342 	 *      source     *      dest  *  result
3343 	 * -----------------------------------------
3344 	 * <a>  Private    *    Global  *  NAT
3345 	 * -----------------------------------------
3346 	 * <b>  Private    *    Private *  No problem
3347 	 * -----------------------------------------
3348 	 * <c>  Global     *    Private *  Huh, How will this work?
3349 	 * -----------------------------------------
3350 	 * <d>  Global     *    Global  *  No Problem
3351 	 *------------------------------------------
3352 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3353 	 * For V6
3354 	 *------------------------------------------
3355 	 *      source     *      dest  *  result
3356 	 * -----------------------------------------
3357 	 * <a>  Linklocal  *    Global  *
3358 	 * -----------------------------------------
3359 	 * <b>  Linklocal  * Linklocal  *  No problem
3360 	 * -----------------------------------------
3361 	 * <c>  Global     * Linklocal  *  Huh, How will this work?
3362 	 * -----------------------------------------
3363 	 * <d>  Global     *    Global  *  No Problem
3364 	 *------------------------------------------
3365 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3366 	 *
3367 	 * And then we add to that what happens if there are multiple addresses
3368 	 * assigned to an interface. Remember the ifa on a ifn is a linked
3369 	 * list of addresses. So one interface can have more than one IP
3370 	 * address. What happens if we have both a private and a global
3371 	 * address? Do we then use context of destination to sort out which
3372 	 * one is best? And what about NAT's sending P->G may get you a NAT
3373 	 * translation, or should you select the G thats on the interface in
3374 	 * preference.
3375 	 *
3376 	 * Decisions:
3377 	 *
3378 	 * - count the number of addresses on the interface.
3379 	 * - if it is one, no problem except case <c>.
3380 	 *   For <a> we will assume a NAT out there.
3381 	 * - if there are more than one, then we need to worry about scope P
3382 	 *   or G. We should prefer G -> G and P -> P if possible.
3383 	 *   Then as a secondary fall back to mixed types G->P being a last
3384 	 *   ditch one.
3385 	 * - The above all works for bound all, but bound specific we need to
3386 	 *   use the same concept but instead only consider the bound
3387 	 *   addresses. If the bound set is NOT assigned to the interface then
3388 	 *   we must use rotation amongst the bound addresses..
3389 	 */
3390 	if (ro->ro_rt == NULL) {
3391 		/*
3392 		 * Need a route to cache.
3393 		 */
3394 		SCTP_RTALLOC(ro, vrf_id);
3395 	}
3396 	if (ro->ro_rt == NULL) {
3397 		return (NULL);
3398 	}
3399 	fam = ro->ro_dst.sa_family;
3400 	dest_is_priv = dest_is_loop = 0;
3401 	/* Setup our scopes for the destination */
3402 	switch (fam) {
3403 #ifdef INET
3404 	case AF_INET:
3405 		/* Scope based on outbound address */
3406 		if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3407 			dest_is_loop = 1;
3408 			if (net != NULL) {
3409 				/* mark it as local */
3410 				net->addr_is_local = 1;
3411 			}
3412 		} else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3413 			dest_is_priv = 1;
3414 		}
3415 		break;
3416 #endif
3417 #ifdef INET6
3418 	case AF_INET6:
3419 		/* Scope based on outbound address */
3420 		if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3421 		    SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3422 			/*
3423 			 * If the address is a loopback address, which
3424 			 * consists of "::1" OR "fe80::1%lo0", we are
3425 			 * loopback scope. But we don't use dest_is_priv
3426 			 * (link local addresses).
3427 			 */
3428 			dest_is_loop = 1;
3429 			if (net != NULL) {
3430 				/* mark it as local */
3431 				net->addr_is_local = 1;
3432 			}
3433 		} else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3434 			dest_is_priv = 1;
3435 		}
3436 		break;
3437 #endif
3438 	}
3439 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3440 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3441 	SCTP_IPI_ADDR_RLOCK();
3442 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3443 		/*
3444 		 * Bound all case
3445 		 */
3446 		answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id,
3447 		    dest_is_priv, dest_is_loop,
3448 		    non_asoc_addr_ok, fam);
3449 		SCTP_IPI_ADDR_RUNLOCK();
3450 		return (answer);
3451 	}
3452 	/*
3453 	 * Subset bound case
3454 	 */
3455 	if (stcb) {
3456 		answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3457 		    vrf_id, dest_is_priv,
3458 		    dest_is_loop,
3459 		    non_asoc_addr_ok, fam);
3460 	} else {
3461 		answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3462 		    non_asoc_addr_ok,
3463 		    dest_is_priv,
3464 		    dest_is_loop, fam);
3465 	}
3466 	SCTP_IPI_ADDR_RUNLOCK();
3467 	return (answer);
3468 }
3469 
3470 static int
3471 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3472 {
3473 	struct cmsghdr cmh;
3474 	int tlen, at, found;
3475 	struct sctp_sndinfo sndinfo;
3476 	struct sctp_prinfo prinfo;
3477 	struct sctp_authinfo authinfo;
3478 
3479 	tlen = SCTP_BUF_LEN(control);
3480 	at = 0;
3481 	found = 0;
3482 	/*
3483 	 * Independent of how many mbufs, find the c_type inside the control
3484 	 * structure and copy out the data.
3485 	 */
3486 	while (at < tlen) {
3487 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3488 			/* There is not enough room for one more. */
3489 			return (found);
3490 		}
3491 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3492 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3493 			/* We dont't have a complete CMSG header. */
3494 			return (found);
3495 		}
3496 		if (((int)cmh.cmsg_len + at) > tlen) {
3497 			/* We don't have the complete CMSG. */
3498 			return (found);
3499 		}
3500 		if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3501 		    ((c_type == cmh.cmsg_type) ||
3502 		    ((c_type == SCTP_SNDRCV) &&
3503 		    ((cmh.cmsg_type == SCTP_SNDINFO) ||
3504 		    (cmh.cmsg_type == SCTP_PRINFO) ||
3505 		    (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3506 			if (c_type == cmh.cmsg_type) {
3507 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) {
3508 					return (found);
3509 				}
3510 				/* It is exactly what we want. Copy it out. */
3511 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data);
3512 				return (1);
3513 			} else {
3514 				struct sctp_sndrcvinfo *sndrcvinfo;
3515 
3516 				sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3517 				if (found == 0) {
3518 					if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3519 						return (found);
3520 					}
3521 					memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3522 				}
3523 				switch (cmh.cmsg_type) {
3524 				case SCTP_SNDINFO:
3525 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) {
3526 						return (found);
3527 					}
3528 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3529 					sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3530 					sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3531 					sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3532 					sndrcvinfo->sinfo_context = sndinfo.snd_context;
3533 					sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3534 					break;
3535 				case SCTP_PRINFO:
3536 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) {
3537 						return (found);
3538 					}
3539 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3540 					if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) {
3541 						sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3542 					} else {
3543 						sndrcvinfo->sinfo_timetolive = 0;
3544 					}
3545 					sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3546 					break;
3547 				case SCTP_AUTHINFO:
3548 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) {
3549 						return (found);
3550 					}
3551 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3552 					sndrcvinfo->sinfo_keynumber_valid = 1;
3553 					sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3554 					break;
3555 				default:
3556 					return (found);
3557 				}
3558 				found = 1;
3559 			}
3560 		}
3561 		at += CMSG_ALIGN(cmh.cmsg_len);
3562 	}
3563 	return (found);
3564 }
3565 
3566 static int
3567 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3568 {
3569 	struct cmsghdr cmh;
3570 	int tlen, at;
3571 	struct sctp_initmsg initmsg;
3572 
3573 #ifdef INET
3574 	struct sockaddr_in sin;
3575 
3576 #endif
3577 #ifdef INET6
3578 	struct sockaddr_in6 sin6;
3579 
3580 #endif
3581 
3582 	tlen = SCTP_BUF_LEN(control);
3583 	at = 0;
3584 	while (at < tlen) {
3585 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3586 			/* There is not enough room for one more. */
3587 			*error = EINVAL;
3588 			return (1);
3589 		}
3590 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3591 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3592 			/* We dont't have a complete CMSG header. */
3593 			*error = EINVAL;
3594 			return (1);
3595 		}
3596 		if (((int)cmh.cmsg_len + at) > tlen) {
3597 			/* We don't have the complete CMSG. */
3598 			*error = EINVAL;
3599 			return (1);
3600 		}
3601 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3602 			switch (cmh.cmsg_type) {
3603 			case SCTP_INIT:
3604 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) {
3605 					*error = EINVAL;
3606 					return (1);
3607 				}
3608 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3609 				if (initmsg.sinit_max_attempts)
3610 					stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3611 				if (initmsg.sinit_num_ostreams)
3612 					stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3613 				if (initmsg.sinit_max_instreams)
3614 					stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3615 				if (initmsg.sinit_max_init_timeo)
3616 					stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3617 				if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3618 					struct sctp_stream_out *tmp_str;
3619 					unsigned int i;
3620 
3621 					/* Default is NOT correct */
3622 					SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3623 					    stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3624 					SCTP_TCB_UNLOCK(stcb);
3625 					SCTP_MALLOC(tmp_str,
3626 					    struct sctp_stream_out *,
3627 					    (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3628 					    SCTP_M_STRMO);
3629 					SCTP_TCB_LOCK(stcb);
3630 					if (tmp_str != NULL) {
3631 						SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3632 						stcb->asoc.strmout = tmp_str;
3633 						stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3634 					} else {
3635 						stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3636 					}
3637 					for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3638 						TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3639 						stcb->asoc.strmout[i].chunks_on_queues = 0;
3640 						stcb->asoc.strmout[i].next_sequence_send = 0;
3641 						stcb->asoc.strmout[i].stream_no = i;
3642 						stcb->asoc.strmout[i].last_msg_incomplete = 0;
3643 						stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
3644 					}
3645 				}
3646 				break;
3647 #ifdef INET
3648 			case SCTP_DSTADDRV4:
3649 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < 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, at + CMSG_ALIGN(sizeof(cmh)), 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,
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 ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < 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, at + CMSG_ALIGN(sizeof(cmh)), 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,
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,
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 		at += CMSG_ALIGN(cmh.cmsg_len);
3715 	}
3716 	return (0);
3717 }
3718 
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 	int tlen, at;
3728 	struct sctp_tcb *stcb;
3729 	struct sockaddr *addr;
3730 
3731 #ifdef INET
3732 	struct sockaddr_in sin;
3733 
3734 #endif
3735 #ifdef INET6
3736 	struct sockaddr_in6 sin6;
3737 
3738 #endif
3739 
3740 	tlen = SCTP_BUF_LEN(control);
3741 	at = 0;
3742 	while (at < tlen) {
3743 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3744 			/* There is not enough room for one more. */
3745 			*error = EINVAL;
3746 			return (NULL);
3747 		}
3748 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3749 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3750 			/* We dont't have a complete CMSG header. */
3751 			*error = EINVAL;
3752 			return (NULL);
3753 		}
3754 		if (((int)cmh.cmsg_len + at) > tlen) {
3755 			/* We don't have the complete CMSG. */
3756 			*error = EINVAL;
3757 			return (NULL);
3758 		}
3759 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3760 			switch (cmh.cmsg_type) {
3761 #ifdef INET
3762 			case SCTP_DSTADDRV4:
3763 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3764 					*error = EINVAL;
3765 					return (NULL);
3766 				}
3767 				memset(&sin, 0, sizeof(struct sockaddr_in));
3768 				sin.sin_family = AF_INET;
3769 				sin.sin_len = sizeof(struct sockaddr_in);
3770 				sin.sin_port = port;
3771 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3772 				addr = (struct sockaddr *)&sin;
3773 				break;
3774 #endif
3775 #ifdef INET6
3776 			case SCTP_DSTADDRV6:
3777 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3778 					*error = EINVAL;
3779 					return (NULL);
3780 				}
3781 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3782 				sin6.sin6_family = AF_INET6;
3783 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3784 				sin6.sin6_port = port;
3785 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3786 #ifdef INET
3787 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3788 					in6_sin6_2_sin(&sin, &sin6);
3789 					addr = (struct sockaddr *)&sin;
3790 				} else
3791 #endif
3792 					addr = (struct sockaddr *)&sin6;
3793 				break;
3794 #endif
3795 			default:
3796 				addr = NULL;
3797 				break;
3798 			}
3799 			if (addr) {
3800 				stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3801 				if (stcb != NULL) {
3802 					return (stcb);
3803 				}
3804 			}
3805 		}
3806 		at += CMSG_ALIGN(cmh.cmsg_len);
3807 	}
3808 	return (NULL);
3809 }
3810 
3811 static struct mbuf *
3812 sctp_add_cookie(struct mbuf *init, int init_offset,
3813     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3814 {
3815 	struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3816 	struct sctp_state_cookie *stc;
3817 	struct sctp_paramhdr *ph;
3818 	uint8_t *foo;
3819 	int sig_offset;
3820 	uint16_t cookie_sz;
3821 
3822 	mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3823 	    sizeof(struct sctp_paramhdr)), 0,
3824 	    M_NOWAIT, 1, MT_DATA);
3825 	if (mret == NULL) {
3826 		return (NULL);
3827 	}
3828 	copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT);
3829 	if (copy_init == NULL) {
3830 		sctp_m_freem(mret);
3831 		return (NULL);
3832 	}
3833 #ifdef SCTP_MBUF_LOGGING
3834 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3835 		struct mbuf *mat;
3836 
3837 		for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) {
3838 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3839 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3840 			}
3841 		}
3842 	}
3843 #endif
3844 	copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3845 	    M_NOWAIT);
3846 	if (copy_initack == NULL) {
3847 		sctp_m_freem(mret);
3848 		sctp_m_freem(copy_init);
3849 		return (NULL);
3850 	}
3851 #ifdef SCTP_MBUF_LOGGING
3852 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3853 		struct mbuf *mat;
3854 
3855 		for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) {
3856 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3857 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3858 			}
3859 		}
3860 	}
3861 #endif
3862 	/* easy side we just drop it on the end */
3863 	ph = mtod(mret, struct sctp_paramhdr *);
3864 	SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3865 	    sizeof(struct sctp_paramhdr);
3866 	stc = (struct sctp_state_cookie *)((caddr_t)ph +
3867 	    sizeof(struct sctp_paramhdr));
3868 	ph->param_type = htons(SCTP_STATE_COOKIE);
3869 	ph->param_length = 0;	/* fill in at the end */
3870 	/* Fill in the stc cookie data */
3871 	memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3872 
3873 	/* tack the INIT and then the INIT-ACK onto the chain */
3874 	cookie_sz = 0;
3875 	for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3876 		cookie_sz += SCTP_BUF_LEN(m_at);
3877 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3878 			SCTP_BUF_NEXT(m_at) = copy_init;
3879 			break;
3880 		}
3881 	}
3882 	for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3883 		cookie_sz += SCTP_BUF_LEN(m_at);
3884 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3885 			SCTP_BUF_NEXT(m_at) = copy_initack;
3886 			break;
3887 		}
3888 	}
3889 	for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3890 		cookie_sz += SCTP_BUF_LEN(m_at);
3891 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3892 			break;
3893 		}
3894 	}
3895 	sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA);
3896 	if (sig == NULL) {
3897 		/* no space, so free the entire chain */
3898 		sctp_m_freem(mret);
3899 		return (NULL);
3900 	}
3901 	SCTP_BUF_LEN(sig) = 0;
3902 	SCTP_BUF_NEXT(m_at) = sig;
3903 	sig_offset = 0;
3904 	foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3905 	memset(foo, 0, SCTP_SIGNATURE_SIZE);
3906 	*signature = foo;
3907 	SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3908 	cookie_sz += SCTP_SIGNATURE_SIZE;
3909 	ph->param_length = htons(cookie_sz);
3910 	return (mret);
3911 }
3912 
3913 
3914 static uint8_t
3915 sctp_get_ect(struct sctp_tcb *stcb)
3916 {
3917 	if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) {
3918 		return (SCTP_ECT0_BIT);
3919 	} else {
3920 		return (0);
3921 	}
3922 }
3923 
3924 #if defined(INET) || defined(INET6)
3925 static void
3926 sctp_handle_no_route(struct sctp_tcb *stcb,
3927     struct sctp_nets *net,
3928     int so_locked)
3929 {
3930 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3931 
3932 	if (net) {
3933 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3934 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3935 		if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3936 			if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3937 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3938 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3939 				    stcb, 0,
3940 				    (void *)net,
3941 				    so_locked);
3942 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
3943 				net->dest_state &= ~SCTP_ADDR_PF;
3944 			}
3945 		}
3946 		if (stcb) {
3947 			if (net == stcb->asoc.primary_destination) {
3948 				/* need a new primary */
3949 				struct sctp_nets *alt;
3950 
3951 				alt = sctp_find_alternate_net(stcb, net, 0);
3952 				if (alt != net) {
3953 					if (stcb->asoc.alternate) {
3954 						sctp_free_remote_addr(stcb->asoc.alternate);
3955 					}
3956 					stcb->asoc.alternate = alt;
3957 					atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3958 					if (net->ro._s_addr) {
3959 						sctp_free_ifa(net->ro._s_addr);
3960 						net->ro._s_addr = NULL;
3961 					}
3962 					net->src_addr_selected = 0;
3963 				}
3964 			}
3965 		}
3966 	}
3967 }
3968 
3969 #endif
3970 
3971 static int
3972 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3973     struct sctp_tcb *stcb,	/* may be NULL */
3974     struct sctp_nets *net,
3975     struct sockaddr *to,
3976     struct mbuf *m,
3977     uint32_t auth_offset,
3978     struct sctp_auth_chunk *auth,
3979     uint16_t auth_keyid,
3980     int nofragment_flag,
3981     int ecn_ok,
3982     int out_of_asoc_ok,
3983     uint16_t src_port,
3984     uint16_t dest_port,
3985     uint32_t v_tag,
3986     uint16_t port,
3987     union sctp_sockstore *over_addr,
3988     uint8_t use_mflowid, uint32_t mflowid,
3989 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3990     int so_locked SCTP_UNUSED
3991 #else
3992     int so_locked
3993 #endif
3994 )
3995 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3996 {
3997 	/**
3998 	 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
3999 	 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
4000 	 * - fill in the HMAC digest of any AUTH chunk in the packet.
4001 	 * - calculate and fill in the SCTP checksum.
4002 	 * - prepend an IP address header.
4003 	 * - if boundall use INADDR_ANY.
4004 	 * - if boundspecific do source address selection.
4005 	 * - set fragmentation option for ipV4.
4006 	 * - On return from IP output, check/adjust mtu size of output
4007 	 *   interface and smallest_mtu size as well.
4008 	 */
4009 	/* Will need ifdefs around this */
4010 	struct mbuf *newm;
4011 	struct sctphdr *sctphdr;
4012 	int packet_length;
4013 	int ret;
4014 
4015 #if defined(INET) || defined(INET6)
4016 	uint32_t vrf_id;
4017 
4018 #endif
4019 #if defined(INET) || defined(INET6)
4020 	struct mbuf *o_pak;
4021 	sctp_route_t *ro = NULL;
4022 	struct udphdr *udp = NULL;
4023 
4024 #endif
4025 	uint8_t tos_value;
4026 
4027 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4028 	struct socket *so = NULL;
4029 
4030 #endif
4031 
4032 	if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
4033 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4034 		sctp_m_freem(m);
4035 		return (EFAULT);
4036 	}
4037 #if defined(INET) || defined(INET6)
4038 	if (stcb) {
4039 		vrf_id = stcb->asoc.vrf_id;
4040 	} else {
4041 		vrf_id = inp->def_vrf_id;
4042 	}
4043 #endif
4044 	/* fill in the HMAC digest for any AUTH chunk in the packet */
4045 	if ((auth != NULL) && (stcb != NULL)) {
4046 		sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
4047 	}
4048 	if (net) {
4049 		tos_value = net->dscp;
4050 	} else if (stcb) {
4051 		tos_value = stcb->asoc.default_dscp;
4052 	} else {
4053 		tos_value = inp->sctp_ep.default_dscp;
4054 	}
4055 
4056 	switch (to->sa_family) {
4057 #ifdef INET
4058 	case AF_INET:
4059 		{
4060 			struct ip *ip = NULL;
4061 			sctp_route_t iproute;
4062 			int len;
4063 
4064 			len = sizeof(struct ip) + sizeof(struct sctphdr);
4065 			if (port) {
4066 				len += sizeof(struct udphdr);
4067 			}
4068 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4069 			if (newm == NULL) {
4070 				sctp_m_freem(m);
4071 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4072 				return (ENOMEM);
4073 			}
4074 			SCTP_ALIGN_TO_END(newm, len);
4075 			SCTP_BUF_LEN(newm) = len;
4076 			SCTP_BUF_NEXT(newm) = m;
4077 			m = newm;
4078 			if (net != NULL) {
4079 #ifdef INVARIANTS
4080 				if (net->flowidset == 0) {
4081 					panic("Flow ID not set");
4082 				}
4083 #endif
4084 				m->m_pkthdr.flowid = net->flowid;
4085 				m->m_flags |= M_FLOWID;
4086 			} else {
4087 				if (use_mflowid != 0) {
4088 					m->m_pkthdr.flowid = mflowid;
4089 					m->m_flags |= M_FLOWID;
4090 				}
4091 			}
4092 			packet_length = sctp_calculate_len(m);
4093 			ip = mtod(m, struct ip *);
4094 			ip->ip_v = IPVERSION;
4095 			ip->ip_hl = (sizeof(struct ip) >> 2);
4096 			if (tos_value == 0) {
4097 				/*
4098 				 * This means especially, that it is not set
4099 				 * at the SCTP layer. So use the value from
4100 				 * the IP layer.
4101 				 */
4102 				tos_value = inp->ip_inp.inp.inp_ip_tos;
4103 			}
4104 			tos_value &= 0xfc;
4105 			if (ecn_ok) {
4106 				tos_value |= sctp_get_ect(stcb);
4107 			}
4108 			if ((nofragment_flag) && (port == 0)) {
4109 				ip->ip_off = htons(IP_DF);
4110 			} else {
4111 				ip->ip_off = htons(0);
4112 			}
4113 			/* FreeBSD has a function for ip_id's */
4114 			ip->ip_id = ip_newid();
4115 
4116 			ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
4117 			ip->ip_len = htons(packet_length);
4118 			ip->ip_tos = tos_value;
4119 			if (port) {
4120 				ip->ip_p = IPPROTO_UDP;
4121 			} else {
4122 				ip->ip_p = IPPROTO_SCTP;
4123 			}
4124 			ip->ip_sum = 0;
4125 			if (net == NULL) {
4126 				ro = &iproute;
4127 				memset(&iproute, 0, sizeof(iproute));
4128 				memcpy(&ro->ro_dst, to, to->sa_len);
4129 			} else {
4130 				ro = (sctp_route_t *) & net->ro;
4131 			}
4132 			/* Now the address selection part */
4133 			ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
4134 
4135 			/* call the routine to select the src address */
4136 			if (net && out_of_asoc_ok == 0) {
4137 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4138 					sctp_free_ifa(net->ro._s_addr);
4139 					net->ro._s_addr = NULL;
4140 					net->src_addr_selected = 0;
4141 					if (ro->ro_rt) {
4142 						RTFREE(ro->ro_rt);
4143 						ro->ro_rt = NULL;
4144 					}
4145 				}
4146 				if (net->src_addr_selected == 0) {
4147 					/* Cache the source address */
4148 					net->ro._s_addr = sctp_source_address_selection(inp, stcb,
4149 					    ro, net, 0,
4150 					    vrf_id);
4151 					net->src_addr_selected = 1;
4152 				}
4153 				if (net->ro._s_addr == NULL) {
4154 					/* No route to host */
4155 					net->src_addr_selected = 0;
4156 					sctp_handle_no_route(stcb, net, so_locked);
4157 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4158 					sctp_m_freem(m);
4159 					return (EHOSTUNREACH);
4160 				}
4161 				ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4162 			} else {
4163 				if (over_addr == NULL) {
4164 					struct sctp_ifa *_lsrc;
4165 
4166 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4167 					    net,
4168 					    out_of_asoc_ok,
4169 					    vrf_id);
4170 					if (_lsrc == NULL) {
4171 						sctp_handle_no_route(stcb, net, so_locked);
4172 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4173 						sctp_m_freem(m);
4174 						return (EHOSTUNREACH);
4175 					}
4176 					ip->ip_src = _lsrc->address.sin.sin_addr;
4177 					sctp_free_ifa(_lsrc);
4178 				} else {
4179 					ip->ip_src = over_addr->sin.sin_addr;
4180 					SCTP_RTALLOC(ro, vrf_id);
4181 				}
4182 			}
4183 			if (port) {
4184 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4185 					sctp_handle_no_route(stcb, net, so_locked);
4186 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4187 					sctp_m_freem(m);
4188 					return (EHOSTUNREACH);
4189 				}
4190 				udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4191 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4192 				udp->uh_dport = port;
4193 				udp->uh_ulen = htons(packet_length - sizeof(struct ip));
4194 				if (V_udp_cksum) {
4195 					udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4196 				} else {
4197 					udp->uh_sum = 0;
4198 				}
4199 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4200 			} else {
4201 				sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4202 			}
4203 
4204 			sctphdr->src_port = src_port;
4205 			sctphdr->dest_port = dest_port;
4206 			sctphdr->v_tag = v_tag;
4207 			sctphdr->checksum = 0;
4208 
4209 			/*
4210 			 * If source address selection fails and we find no
4211 			 * route then the ip_output should fail as well with
4212 			 * a NO_ROUTE_TO_HOST type error. We probably should
4213 			 * catch that somewhere and abort the association
4214 			 * right away (assuming this is an INIT being sent).
4215 			 */
4216 			if (ro->ro_rt == NULL) {
4217 				/*
4218 				 * src addr selection failed to find a route
4219 				 * (or valid source addr), so we can't get
4220 				 * there from here (yet)!
4221 				 */
4222 				sctp_handle_no_route(stcb, net, so_locked);
4223 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4224 				sctp_m_freem(m);
4225 				return (EHOSTUNREACH);
4226 			}
4227 			if (ro != &iproute) {
4228 				memcpy(&iproute, ro, sizeof(*ro));
4229 			}
4230 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4231 			    (uint32_t) (ntohl(ip->ip_src.s_addr)));
4232 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4233 			    (uint32_t) (ntohl(ip->ip_dst.s_addr)));
4234 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4235 			    (void *)ro->ro_rt);
4236 
4237 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4238 				/* failed to prepend data, give up */
4239 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4240 				sctp_m_freem(m);
4241 				return (ENOMEM);
4242 			}
4243 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4244 			if (port) {
4245 #if defined(SCTP_WITH_NO_CSUM)
4246 				SCTP_STAT_INCR(sctps_sendnocrc);
4247 #else
4248 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4249 				SCTP_STAT_INCR(sctps_sendswcrc);
4250 #endif
4251 				if (V_udp_cksum) {
4252 					SCTP_ENABLE_UDP_CSUM(o_pak);
4253 				}
4254 			} else {
4255 #if defined(SCTP_WITH_NO_CSUM)
4256 				SCTP_STAT_INCR(sctps_sendnocrc);
4257 #else
4258 				m->m_pkthdr.csum_flags = CSUM_SCTP;
4259 				m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4260 				SCTP_STAT_INCR(sctps_sendhwcrc);
4261 #endif
4262 			}
4263 #ifdef SCTP_PACKET_LOGGING
4264 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4265 				sctp_packet_log(o_pak);
4266 #endif
4267 			/* send it out.  table id is taken from stcb */
4268 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4269 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4270 				so = SCTP_INP_SO(inp);
4271 				SCTP_SOCKET_UNLOCK(so, 0);
4272 			}
4273 #endif
4274 			SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
4275 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4276 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4277 				atomic_add_int(&stcb->asoc.refcnt, 1);
4278 				SCTP_TCB_UNLOCK(stcb);
4279 				SCTP_SOCKET_LOCK(so, 0);
4280 				SCTP_TCB_LOCK(stcb);
4281 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4282 			}
4283 #endif
4284 			SCTP_STAT_INCR(sctps_sendpackets);
4285 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4286 			if (ret)
4287 				SCTP_STAT_INCR(sctps_senderrors);
4288 
4289 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4290 			if (net == NULL) {
4291 				/* free tempy routes */
4292 				RO_RTFREE(ro);
4293 			} else {
4294 				/*
4295 				 * PMTU check versus smallest asoc MTU goes
4296 				 * here
4297 				 */
4298 				if ((ro->ro_rt != NULL) &&
4299 				    (net->ro._s_addr)) {
4300 					uint32_t mtu;
4301 
4302 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4303 					if (net->port) {
4304 						mtu -= sizeof(struct udphdr);
4305 					}
4306 					if (mtu && (stcb->asoc.smallest_mtu > mtu)) {
4307 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4308 						net->mtu = mtu;
4309 					}
4310 				} else if (ro->ro_rt == NULL) {
4311 					/* route was freed */
4312 					if (net->ro._s_addr &&
4313 					    net->src_addr_selected) {
4314 						sctp_free_ifa(net->ro._s_addr);
4315 						net->ro._s_addr = NULL;
4316 					}
4317 					net->src_addr_selected = 0;
4318 				}
4319 			}
4320 			return (ret);
4321 		}
4322 #endif
4323 #ifdef INET6
4324 	case AF_INET6:
4325 		{
4326 			uint32_t flowlabel, flowinfo;
4327 			struct ip6_hdr *ip6h;
4328 			struct route_in6 ip6route;
4329 			struct ifnet *ifp;
4330 			struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4331 			int prev_scope = 0;
4332 			struct sockaddr_in6 lsa6_storage;
4333 			int error;
4334 			u_short prev_port = 0;
4335 			int len;
4336 
4337 			if (net) {
4338 				flowlabel = net->flowlabel;
4339 			} else if (stcb) {
4340 				flowlabel = stcb->asoc.default_flowlabel;
4341 			} else {
4342 				flowlabel = inp->sctp_ep.default_flowlabel;
4343 			}
4344 			if (flowlabel == 0) {
4345 				/*
4346 				 * This means especially, that it is not set
4347 				 * at the SCTP layer. So use the value from
4348 				 * the IP layer.
4349 				 */
4350 				flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo);
4351 			}
4352 			flowlabel &= 0x000fffff;
4353 			len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr);
4354 			if (port) {
4355 				len += sizeof(struct udphdr);
4356 			}
4357 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4358 			if (newm == NULL) {
4359 				sctp_m_freem(m);
4360 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4361 				return (ENOMEM);
4362 			}
4363 			SCTP_ALIGN_TO_END(newm, len);
4364 			SCTP_BUF_LEN(newm) = len;
4365 			SCTP_BUF_NEXT(newm) = m;
4366 			m = newm;
4367 			if (net != NULL) {
4368 #ifdef INVARIANTS
4369 				if (net->flowidset == 0) {
4370 					panic("Flow ID not set");
4371 				}
4372 #endif
4373 				m->m_pkthdr.flowid = net->flowid;
4374 				m->m_flags |= M_FLOWID;
4375 			} else {
4376 				if (use_mflowid != 0) {
4377 					m->m_pkthdr.flowid = mflowid;
4378 					m->m_flags |= M_FLOWID;
4379 				}
4380 			}
4381 			packet_length = sctp_calculate_len(m);
4382 
4383 			ip6h = mtod(m, struct ip6_hdr *);
4384 			/* protect *sin6 from overwrite */
4385 			sin6 = (struct sockaddr_in6 *)to;
4386 			tmp = *sin6;
4387 			sin6 = &tmp;
4388 
4389 			/* KAME hack: embed scopeid */
4390 			if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4391 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4392 				return (EINVAL);
4393 			}
4394 			if (net == NULL) {
4395 				memset(&ip6route, 0, sizeof(ip6route));
4396 				ro = (sctp_route_t *) & ip6route;
4397 				memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4398 			} else {
4399 				ro = (sctp_route_t *) & net->ro;
4400 			}
4401 			/*
4402 			 * We assume here that inp_flow is in host byte
4403 			 * order within the TCB!
4404 			 */
4405 			if (tos_value == 0) {
4406 				/*
4407 				 * This means especially, that it is not set
4408 				 * at the SCTP layer. So use the value from
4409 				 * the IP layer.
4410 				 */
4411 				tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff;
4412 			}
4413 			tos_value &= 0xfc;
4414 			if (ecn_ok) {
4415 				tos_value |= sctp_get_ect(stcb);
4416 			}
4417 			flowinfo = 0x06;
4418 			flowinfo <<= 8;
4419 			flowinfo |= tos_value;
4420 			flowinfo <<= 20;
4421 			flowinfo |= flowlabel;
4422 			ip6h->ip6_flow = htonl(flowinfo);
4423 			if (port) {
4424 				ip6h->ip6_nxt = IPPROTO_UDP;
4425 			} else {
4426 				ip6h->ip6_nxt = IPPROTO_SCTP;
4427 			}
4428 			ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr));
4429 			ip6h->ip6_dst = sin6->sin6_addr;
4430 
4431 			/*
4432 			 * Add SRC address selection here: we can only reuse
4433 			 * to a limited degree the kame src-addr-sel, since
4434 			 * we can try their selection but it may not be
4435 			 * bound.
4436 			 */
4437 			bzero(&lsa6_tmp, sizeof(lsa6_tmp));
4438 			lsa6_tmp.sin6_family = AF_INET6;
4439 			lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4440 			lsa6 = &lsa6_tmp;
4441 			if (net && out_of_asoc_ok == 0) {
4442 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4443 					sctp_free_ifa(net->ro._s_addr);
4444 					net->ro._s_addr = NULL;
4445 					net->src_addr_selected = 0;
4446 					if (ro->ro_rt) {
4447 						RTFREE(ro->ro_rt);
4448 						ro->ro_rt = NULL;
4449 					}
4450 				}
4451 				if (net->src_addr_selected == 0) {
4452 					sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4453 					/* KAME hack: embed scopeid */
4454 					if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4455 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4456 						return (EINVAL);
4457 					}
4458 					/* Cache the source address */
4459 					net->ro._s_addr = sctp_source_address_selection(inp,
4460 					    stcb,
4461 					    ro,
4462 					    net,
4463 					    0,
4464 					    vrf_id);
4465 					(void)sa6_recoverscope(sin6);
4466 					net->src_addr_selected = 1;
4467 				}
4468 				if (net->ro._s_addr == NULL) {
4469 					SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4470 					net->src_addr_selected = 0;
4471 					sctp_handle_no_route(stcb, net, so_locked);
4472 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4473 					sctp_m_freem(m);
4474 					return (EHOSTUNREACH);
4475 				}
4476 				lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4477 			} else {
4478 				sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4479 				/* KAME hack: embed scopeid */
4480 				if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4481 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4482 					return (EINVAL);
4483 				}
4484 				if (over_addr == NULL) {
4485 					struct sctp_ifa *_lsrc;
4486 
4487 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4488 					    net,
4489 					    out_of_asoc_ok,
4490 					    vrf_id);
4491 					if (_lsrc == NULL) {
4492 						sctp_handle_no_route(stcb, net, so_locked);
4493 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4494 						sctp_m_freem(m);
4495 						return (EHOSTUNREACH);
4496 					}
4497 					lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4498 					sctp_free_ifa(_lsrc);
4499 				} else {
4500 					lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4501 					SCTP_RTALLOC(ro, vrf_id);
4502 				}
4503 				(void)sa6_recoverscope(sin6);
4504 			}
4505 			lsa6->sin6_port = inp->sctp_lport;
4506 
4507 			if (ro->ro_rt == NULL) {
4508 				/*
4509 				 * src addr selection failed to find a route
4510 				 * (or valid source addr), so we can't get
4511 				 * there from here!
4512 				 */
4513 				sctp_handle_no_route(stcb, net, so_locked);
4514 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4515 				sctp_m_freem(m);
4516 				return (EHOSTUNREACH);
4517 			}
4518 			/*
4519 			 * XXX: sa6 may not have a valid sin6_scope_id in
4520 			 * the non-SCOPEDROUTING case.
4521 			 */
4522 			bzero(&lsa6_storage, sizeof(lsa6_storage));
4523 			lsa6_storage.sin6_family = AF_INET6;
4524 			lsa6_storage.sin6_len = sizeof(lsa6_storage);
4525 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4526 			if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4527 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4528 				sctp_m_freem(m);
4529 				return (error);
4530 			}
4531 			/* XXX */
4532 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4533 			lsa6_storage.sin6_port = inp->sctp_lport;
4534 			lsa6 = &lsa6_storage;
4535 			ip6h->ip6_src = lsa6->sin6_addr;
4536 
4537 			if (port) {
4538 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4539 					sctp_handle_no_route(stcb, net, so_locked);
4540 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4541 					sctp_m_freem(m);
4542 					return (EHOSTUNREACH);
4543 				}
4544 				udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4545 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4546 				udp->uh_dport = port;
4547 				udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr));
4548 				udp->uh_sum = 0;
4549 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4550 			} else {
4551 				sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4552 			}
4553 
4554 			sctphdr->src_port = src_port;
4555 			sctphdr->dest_port = dest_port;
4556 			sctphdr->v_tag = v_tag;
4557 			sctphdr->checksum = 0;
4558 
4559 			/*
4560 			 * We set the hop limit now since there is a good
4561 			 * chance that our ro pointer is now filled
4562 			 */
4563 			ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4564 			ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4565 
4566 #ifdef SCTP_DEBUG
4567 			/* Copy to be sure something bad is not happening */
4568 			sin6->sin6_addr = ip6h->ip6_dst;
4569 			lsa6->sin6_addr = ip6h->ip6_src;
4570 #endif
4571 
4572 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4573 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4574 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4575 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4576 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4577 			if (net) {
4578 				sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4579 				/*
4580 				 * preserve the port and scope for link
4581 				 * local send
4582 				 */
4583 				prev_scope = sin6->sin6_scope_id;
4584 				prev_port = sin6->sin6_port;
4585 			}
4586 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4587 				/* failed to prepend data, give up */
4588 				sctp_m_freem(m);
4589 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4590 				return (ENOMEM);
4591 			}
4592 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4593 			if (port) {
4594 #if defined(SCTP_WITH_NO_CSUM)
4595 				SCTP_STAT_INCR(sctps_sendnocrc);
4596 #else
4597 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4598 				SCTP_STAT_INCR(sctps_sendswcrc);
4599 #endif
4600 				if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4601 					udp->uh_sum = 0xffff;
4602 				}
4603 			} else {
4604 #if defined(SCTP_WITH_NO_CSUM)
4605 				SCTP_STAT_INCR(sctps_sendnocrc);
4606 #else
4607 				m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4608 				m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4609 				SCTP_STAT_INCR(sctps_sendhwcrc);
4610 #endif
4611 			}
4612 			/* send it out. table id is taken from stcb */
4613 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4614 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4615 				so = SCTP_INP_SO(inp);
4616 				SCTP_SOCKET_UNLOCK(so, 0);
4617 			}
4618 #endif
4619 #ifdef SCTP_PACKET_LOGGING
4620 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4621 				sctp_packet_log(o_pak);
4622 #endif
4623 			SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id);
4624 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4625 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4626 				atomic_add_int(&stcb->asoc.refcnt, 1);
4627 				SCTP_TCB_UNLOCK(stcb);
4628 				SCTP_SOCKET_LOCK(so, 0);
4629 				SCTP_TCB_LOCK(stcb);
4630 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4631 			}
4632 #endif
4633 			if (net) {
4634 				/* for link local this must be done */
4635 				sin6->sin6_scope_id = prev_scope;
4636 				sin6->sin6_port = prev_port;
4637 			}
4638 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4639 			SCTP_STAT_INCR(sctps_sendpackets);
4640 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4641 			if (ret) {
4642 				SCTP_STAT_INCR(sctps_senderrors);
4643 			}
4644 			if (net == NULL) {
4645 				/* Now if we had a temp route free it */
4646 				RO_RTFREE(ro);
4647 			} else {
4648 				/*
4649 				 * PMTU check versus smallest asoc MTU goes
4650 				 * here
4651 				 */
4652 				if (ro->ro_rt == NULL) {
4653 					/* Route was freed */
4654 					if (net->ro._s_addr &&
4655 					    net->src_addr_selected) {
4656 						sctp_free_ifa(net->ro._s_addr);
4657 						net->ro._s_addr = NULL;
4658 					}
4659 					net->src_addr_selected = 0;
4660 				}
4661 				if ((ro->ro_rt != NULL) &&
4662 				    (net->ro._s_addr)) {
4663 					uint32_t mtu;
4664 
4665 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4666 					if (mtu &&
4667 					    (stcb->asoc.smallest_mtu > mtu)) {
4668 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4669 						net->mtu = mtu;
4670 						if (net->port) {
4671 							net->mtu -= sizeof(struct udphdr);
4672 						}
4673 					}
4674 				} else if (ifp) {
4675 					if (ND_IFINFO(ifp)->linkmtu &&
4676 					    (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4677 						sctp_mtu_size_reset(inp,
4678 						    &stcb->asoc,
4679 						    ND_IFINFO(ifp)->linkmtu);
4680 					}
4681 				}
4682 			}
4683 			return (ret);
4684 		}
4685 #endif
4686 	default:
4687 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4688 		    ((struct sockaddr *)to)->sa_family);
4689 		sctp_m_freem(m);
4690 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4691 		return (EFAULT);
4692 	}
4693 }
4694 
4695 
4696 void
4697 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
4698 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
4699     SCTP_UNUSED
4700 #endif
4701 )
4702 {
4703 	struct mbuf *m;
4704 	struct sctp_nets *net;
4705 	struct sctp_init_chunk *init;
4706 	struct sctp_supported_addr_param *sup_addr;
4707 	struct sctp_adaptation_layer_indication *ali;
4708 	struct sctp_supported_chunk_types_param *pr_supported;
4709 	struct sctp_paramhdr *ph;
4710 	int cnt_inits_to = 0;
4711 	int ret;
4712 	uint16_t num_ext, chunk_len, padding_len, parameter_len;
4713 
4714 	/* INIT's always go to the primary (and usually ONLY address) */
4715 	net = stcb->asoc.primary_destination;
4716 	if (net == NULL) {
4717 		net = TAILQ_FIRST(&stcb->asoc.nets);
4718 		if (net == NULL) {
4719 			/* TSNH */
4720 			return;
4721 		}
4722 		/* we confirm any address we send an INIT to */
4723 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4724 		(void)sctp_set_primary_addr(stcb, NULL, net);
4725 	} else {
4726 		/* we confirm any address we send an INIT to */
4727 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4728 	}
4729 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4730 #ifdef INET6
4731 	if (net->ro._l_addr.sa.sa_family == AF_INET6) {
4732 		/*
4733 		 * special hook, if we are sending to link local it will not
4734 		 * show up in our private address count.
4735 		 */
4736 		if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr))
4737 			cnt_inits_to = 1;
4738 	}
4739 #endif
4740 	if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4741 		/* This case should not happen */
4742 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4743 		return;
4744 	}
4745 	/* start the INIT timer */
4746 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4747 
4748 	m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA);
4749 	if (m == NULL) {
4750 		/* No memory, INIT timer will re-attempt. */
4751 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4752 		return;
4753 	}
4754 	chunk_len = (uint16_t) sizeof(struct sctp_init_chunk);
4755 	padding_len = 0;
4756 	/*
4757 	 * assume peer supports asconf in order to be able to queue local
4758 	 * address changes while an INIT is in flight and before the assoc
4759 	 * is established.
4760 	 */
4761 	stcb->asoc.peer_supports_asconf = 1;
4762 	/* Now lets put the chunk header in place */
4763 	init = mtod(m, struct sctp_init_chunk *);
4764 	/* now the chunk header */
4765 	init->ch.chunk_type = SCTP_INITIATION;
4766 	init->ch.chunk_flags = 0;
4767 	/* fill in later from mbuf we build */
4768 	init->ch.chunk_length = 0;
4769 	/* place in my tag */
4770 	init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4771 	/* set up some of the credits. */
4772 	init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4773 	    SCTP_MINIMAL_RWND));
4774 	init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4775 	init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4776 	init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4777 
4778 	if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) {
4779 		uint8_t i;
4780 
4781 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4782 		if (stcb->asoc.scope.ipv4_addr_legal) {
4783 			parameter_len += (uint16_t) sizeof(uint16_t);
4784 		}
4785 		if (stcb->asoc.scope.ipv6_addr_legal) {
4786 			parameter_len += (uint16_t) sizeof(uint16_t);
4787 		}
4788 		sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len);
4789 		sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4790 		sup_addr->ph.param_length = htons(parameter_len);
4791 		i = 0;
4792 		if (stcb->asoc.scope.ipv4_addr_legal) {
4793 			sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS);
4794 		}
4795 		if (stcb->asoc.scope.ipv6_addr_legal) {
4796 			sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS);
4797 		}
4798 		padding_len = 4 - 2 * i;
4799 		chunk_len += parameter_len;
4800 	}
4801 	/* Adaptation layer indication parameter */
4802 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
4803 		if (padding_len > 0) {
4804 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4805 			chunk_len += padding_len;
4806 			padding_len = 0;
4807 		}
4808 		parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication);
4809 		ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
4810 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4811 		ali->ph.param_length = htons(parameter_len);
4812 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
4813 		chunk_len += parameter_len;
4814 	}
4815 	if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4816 		/* Add NAT friendly parameter. */
4817 		if (padding_len > 0) {
4818 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4819 			chunk_len += padding_len;
4820 			padding_len = 0;
4821 		}
4822 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4823 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4824 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4825 		ph->param_length = htons(parameter_len);
4826 		chunk_len += parameter_len;
4827 	}
4828 	/* now any cookie time extensions */
4829 	if (stcb->asoc.cookie_preserve_req) {
4830 		struct sctp_cookie_perserve_param *cookie_preserve;
4831 
4832 		if (padding_len > 0) {
4833 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4834 			chunk_len += padding_len;
4835 			padding_len = 0;
4836 		}
4837 		parameter_len = (uint16_t) sizeof(struct sctp_cookie_perserve_param);
4838 		cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len);
4839 		cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4840 		cookie_preserve->ph.param_length = htons(parameter_len);
4841 		cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4842 		stcb->asoc.cookie_preserve_req = 0;
4843 		chunk_len += parameter_len;
4844 	}
4845 	/* ECN parameter */
4846 	if (stcb->asoc.ecn_allowed == 1) {
4847 		if (padding_len > 0) {
4848 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4849 			chunk_len += padding_len;
4850 			padding_len = 0;
4851 		}
4852 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4853 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4854 		ph->param_type = htons(SCTP_ECN_CAPABLE);
4855 		ph->param_length = htons(parameter_len);
4856 		chunk_len += parameter_len;
4857 	}
4858 	/* And now tell the peer we do support PR-SCTP. */
4859 	if (padding_len > 0) {
4860 		memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4861 		chunk_len += padding_len;
4862 		padding_len = 0;
4863 	}
4864 	parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4865 	ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4866 	ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
4867 	ph->param_length = htons(parameter_len);
4868 	chunk_len += parameter_len;
4869 
4870 	/* And now tell the peer we do all the extensions */
4871 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
4872 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4873 	num_ext = 0;
4874 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4875 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4876 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4877 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4878 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4879 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4880 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4881 	}
4882 	if (stcb->asoc.sctp_nr_sack_on_off == 1) {
4883 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4884 	}
4885 	parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext;
4886 	pr_supported->ph.param_length = htons(parameter_len);
4887 	padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4888 	chunk_len += parameter_len;
4889 
4890 	/* add authentication parameters */
4891 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4892 		/* attach RANDOM parameter, if available */
4893 		if (stcb->asoc.authinfo.random != NULL) {
4894 			struct sctp_auth_random *randp;
4895 
4896 			if (padding_len > 0) {
4897 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4898 				chunk_len += padding_len;
4899 				padding_len = 0;
4900 			}
4901 			randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
4902 			parameter_len = (uint16_t) sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
4903 			/* random key already contains the header */
4904 			memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
4905 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4906 			chunk_len += parameter_len;
4907 		}
4908 		/* add HMAC_ALGO parameter */
4909 		if ((stcb->asoc.local_hmacs != NULL) &&
4910 		    (stcb->asoc.local_hmacs->num_algo > 0)) {
4911 			struct sctp_auth_hmac_algo *hmacs;
4912 
4913 			if (padding_len > 0) {
4914 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4915 				chunk_len += padding_len;
4916 				padding_len = 0;
4917 			}
4918 			hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
4919 			parameter_len = (uint16_t) (sizeof(struct sctp_auth_hmac_algo) +
4920 			    stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t));
4921 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4922 			hmacs->ph.param_length = htons(parameter_len);
4923 			sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *) hmacs->hmac_ids);
4924 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4925 			chunk_len += parameter_len;
4926 		}
4927 		/* add CHUNKS parameter */
4928 		if (sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks) > 0) {
4929 			struct sctp_auth_chunk_list *chunks;
4930 
4931 			if (padding_len > 0) {
4932 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4933 				chunk_len += padding_len;
4934 				padding_len = 0;
4935 			}
4936 			chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
4937 			parameter_len = (uint16_t) (sizeof(struct sctp_auth_chunk_list) +
4938 			    sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks));
4939 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4940 			chunks->ph.param_length = htons(parameter_len);
4941 			sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types);
4942 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4943 			chunk_len += parameter_len;
4944 		}
4945 	}
4946 	SCTP_BUF_LEN(m) = chunk_len;
4947 
4948 	/* now the addresses */
4949 	/*
4950 	 * To optimize this we could put the scoping stuff into a structure
4951 	 * and remove the individual uint8's from the assoc structure. Then
4952 	 * we could just sifa in the address within the stcb. But for now
4953 	 * this is a quick hack to get the address stuff teased apart.
4954 	 */
4955 	sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, m, cnt_inits_to, &padding_len, &chunk_len);
4956 
4957 	init->ch.chunk_length = htons(chunk_len);
4958 	if (padding_len > 0) {
4959 		struct mbuf *m_at, *mp_last;
4960 
4961 		mp_last = NULL;
4962 		for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
4963 			if (SCTP_BUF_NEXT(m_at) == NULL)
4964 				mp_last = m_at;
4965 		}
4966 		if ((mp_last == NULL) || sctp_add_pad_tombuf(mp_last, padding_len)) {
4967 			sctp_m_freem(m);
4968 			return;
4969 		}
4970 	}
4971 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4972 	ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4973 	    (struct sockaddr *)&net->ro._l_addr,
4974 	    m, 0, NULL, 0, 0, 0, 0,
4975 	    inp->sctp_lport, stcb->rport, htonl(0),
4976 	    net->port, NULL,
4977 	    0, 0,
4978 	    so_locked);
4979 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4980 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4981 	(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4982 }
4983 
4984 struct mbuf *
4985 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4986     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly)
4987 {
4988 	/*
4989 	 * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4990 	 * being equal to the beginning of the params i.e. (iphlen +
4991 	 * sizeof(struct sctp_init_msg) parse through the parameters to the
4992 	 * end of the mbuf verifying that all parameters are known.
4993 	 *
4994 	 * For unknown parameters build and return a mbuf with
4995 	 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4996 	 * processing this chunk stop, and set *abort_processing to 1.
4997 	 *
4998 	 * By having param_offset be pre-set to where parameters begin it is
4999 	 * hoped that this routine may be reused in the future by new
5000 	 * features.
5001 	 */
5002 	struct sctp_paramhdr *phdr, params;
5003 
5004 	struct mbuf *mat, *op_err;
5005 	char tempbuf[SCTP_PARAM_BUFFER_SIZE];
5006 	int at, limit, pad_needed;
5007 	uint16_t ptype, plen, padded_size;
5008 	int err_at;
5009 
5010 	*abort_processing = 0;
5011 	mat = in_initpkt;
5012 	err_at = 0;
5013 	limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
5014 	at = param_offset;
5015 	op_err = NULL;
5016 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
5017 	phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5018 	while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
5019 		ptype = ntohs(phdr->param_type);
5020 		plen = ntohs(phdr->param_length);
5021 		if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
5022 			/* wacked parameter */
5023 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
5024 			goto invalid_size;
5025 		}
5026 		limit -= SCTP_SIZE32(plen);
5027 		/*-
5028 		 * All parameters for all chunks that we know/understand are
5029 		 * listed here. We process them other places and make
5030 		 * appropriate stop actions per the upper bits. However this
5031 		 * is the generic routine processor's can call to get back
5032 		 * an operr.. to either incorporate (init-ack) or send.
5033 		 */
5034 		padded_size = SCTP_SIZE32(plen);
5035 		switch (ptype) {
5036 			/* Param's with variable size */
5037 		case SCTP_HEARTBEAT_INFO:
5038 		case SCTP_STATE_COOKIE:
5039 		case SCTP_UNRECOG_PARAM:
5040 		case SCTP_ERROR_CAUSE_IND:
5041 			/* ok skip fwd */
5042 			at += padded_size;
5043 			break;
5044 			/* Param's with variable size within a range */
5045 		case SCTP_CHUNK_LIST:
5046 		case SCTP_SUPPORTED_CHUNK_EXT:
5047 			if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
5048 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
5049 				goto invalid_size;
5050 			}
5051 			at += padded_size;
5052 			break;
5053 		case SCTP_SUPPORTED_ADDRTYPE:
5054 			if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
5055 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
5056 				goto invalid_size;
5057 			}
5058 			at += padded_size;
5059 			break;
5060 		case SCTP_RANDOM:
5061 			if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
5062 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
5063 				goto invalid_size;
5064 			}
5065 			at += padded_size;
5066 			break;
5067 		case SCTP_SET_PRIM_ADDR:
5068 		case SCTP_DEL_IP_ADDRESS:
5069 		case SCTP_ADD_IP_ADDRESS:
5070 			if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
5071 			    (padded_size != sizeof(struct sctp_asconf_addr_param))) {
5072 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
5073 				goto invalid_size;
5074 			}
5075 			at += padded_size;
5076 			break;
5077 			/* Param's with a fixed size */
5078 		case SCTP_IPV4_ADDRESS:
5079 			if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
5080 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
5081 				goto invalid_size;
5082 			}
5083 			at += padded_size;
5084 			break;
5085 		case SCTP_IPV6_ADDRESS:
5086 			if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
5087 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
5088 				goto invalid_size;
5089 			}
5090 			at += padded_size;
5091 			break;
5092 		case SCTP_COOKIE_PRESERVE:
5093 			if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
5094 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
5095 				goto invalid_size;
5096 			}
5097 			at += padded_size;
5098 			break;
5099 		case SCTP_HAS_NAT_SUPPORT:
5100 			*nat_friendly = 1;
5101 			/* fall through */
5102 		case SCTP_PRSCTP_SUPPORTED:
5103 
5104 			if (padded_size != sizeof(struct sctp_paramhdr)) {
5105 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen);
5106 				goto invalid_size;
5107 			}
5108 			at += padded_size;
5109 			break;
5110 		case SCTP_ECN_CAPABLE:
5111 			if (padded_size != sizeof(struct sctp_ecn_supported_param)) {
5112 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
5113 				goto invalid_size;
5114 			}
5115 			at += padded_size;
5116 			break;
5117 		case SCTP_ULP_ADAPTATION:
5118 			if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
5119 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
5120 				goto invalid_size;
5121 			}
5122 			at += padded_size;
5123 			break;
5124 		case SCTP_SUCCESS_REPORT:
5125 			if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
5126 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
5127 				goto invalid_size;
5128 			}
5129 			at += padded_size;
5130 			break;
5131 		case SCTP_HOSTNAME_ADDRESS:
5132 			{
5133 				/* We can NOT handle HOST NAME addresses!! */
5134 				int l_len;
5135 
5136 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
5137 				*abort_processing = 1;
5138 				if (op_err == NULL) {
5139 					/* Ok need to try to get a mbuf */
5140 #ifdef INET6
5141 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5142 #else
5143 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5144 #endif
5145 					l_len += plen;
5146 					l_len += sizeof(struct sctp_paramhdr);
5147 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5148 					if (op_err) {
5149 						SCTP_BUF_LEN(op_err) = 0;
5150 						/*
5151 						 * pre-reserve space for ip
5152 						 * and sctp header  and
5153 						 * chunk hdr
5154 						 */
5155 #ifdef INET6
5156 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5157 #else
5158 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5159 #endif
5160 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5161 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5162 					}
5163 				}
5164 				if (op_err) {
5165 					/* If we have space */
5166 					struct sctp_paramhdr s;
5167 
5168 					if (err_at % 4) {
5169 						uint32_t cpthis = 0;
5170 
5171 						pad_needed = 4 - (err_at % 4);
5172 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5173 						err_at += pad_needed;
5174 					}
5175 					s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5176 					s.param_length = htons(sizeof(s) + plen);
5177 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5178 					err_at += sizeof(s);
5179 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5180 					if (phdr == NULL) {
5181 						sctp_m_freem(op_err);
5182 						/*
5183 						 * we are out of memory but
5184 						 * we still need to have a
5185 						 * look at what to do (the
5186 						 * system is in trouble
5187 						 * though).
5188 						 */
5189 						return (NULL);
5190 					}
5191 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5192 				}
5193 				return (op_err);
5194 				break;
5195 			}
5196 		default:
5197 			/*
5198 			 * we do not recognize the parameter figure out what
5199 			 * we do.
5200 			 */
5201 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5202 			if ((ptype & 0x4000) == 0x4000) {
5203 				/* Report bit is set?? */
5204 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5205 				if (op_err == NULL) {
5206 					int l_len;
5207 
5208 					/* Ok need to try to get an mbuf */
5209 #ifdef INET6
5210 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5211 #else
5212 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5213 #endif
5214 					l_len += plen;
5215 					l_len += sizeof(struct sctp_paramhdr);
5216 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5217 					if (op_err) {
5218 						SCTP_BUF_LEN(op_err) = 0;
5219 #ifdef INET6
5220 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5221 #else
5222 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5223 #endif
5224 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5225 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5226 					}
5227 				}
5228 				if (op_err) {
5229 					/* If we have space */
5230 					struct sctp_paramhdr s;
5231 
5232 					if (err_at % 4) {
5233 						uint32_t cpthis = 0;
5234 
5235 						pad_needed = 4 - (err_at % 4);
5236 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5237 						err_at += pad_needed;
5238 					}
5239 					s.param_type = htons(SCTP_UNRECOG_PARAM);
5240 					s.param_length = htons(sizeof(s) + plen);
5241 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5242 					err_at += sizeof(s);
5243 					if (plen > sizeof(tempbuf)) {
5244 						plen = sizeof(tempbuf);
5245 					}
5246 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5247 					if (phdr == NULL) {
5248 						sctp_m_freem(op_err);
5249 						/*
5250 						 * we are out of memory but
5251 						 * we still need to have a
5252 						 * look at what to do (the
5253 						 * system is in trouble
5254 						 * though).
5255 						 */
5256 						op_err = NULL;
5257 						goto more_processing;
5258 					}
5259 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5260 					err_at += plen;
5261 				}
5262 			}
5263 	more_processing:
5264 			if ((ptype & 0x8000) == 0x0000) {
5265 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5266 				return (op_err);
5267 			} else {
5268 				/* skip this chunk and continue processing */
5269 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5270 				at += SCTP_SIZE32(plen);
5271 			}
5272 			break;
5273 
5274 		}
5275 		phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5276 	}
5277 	return (op_err);
5278 invalid_size:
5279 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5280 	*abort_processing = 1;
5281 	if ((op_err == NULL) && phdr) {
5282 		int l_len;
5283 
5284 #ifdef INET6
5285 		l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5286 #else
5287 		l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5288 #endif
5289 		l_len += (2 * sizeof(struct sctp_paramhdr));
5290 		op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5291 		if (op_err) {
5292 			SCTP_BUF_LEN(op_err) = 0;
5293 #ifdef INET6
5294 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5295 #else
5296 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5297 #endif
5298 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5299 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5300 		}
5301 	}
5302 	if ((op_err) && phdr) {
5303 		struct sctp_paramhdr s;
5304 
5305 		if (err_at % 4) {
5306 			uint32_t cpthis = 0;
5307 
5308 			pad_needed = 4 - (err_at % 4);
5309 			m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5310 			err_at += pad_needed;
5311 		}
5312 		s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5313 		s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
5314 		m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5315 		err_at += sizeof(s);
5316 		/* Only copy back the p-hdr that caused the issue */
5317 		m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
5318 	}
5319 	return (op_err);
5320 }
5321 
5322 static int
5323 sctp_are_there_new_addresses(struct sctp_association *asoc,
5324     struct mbuf *in_initpkt, int offset, struct sockaddr *src)
5325 {
5326 	/*
5327 	 * Given a INIT packet, look through the packet to verify that there
5328 	 * are NO new addresses. As we go through the parameters add reports
5329 	 * of any un-understood parameters that require an error.  Also we
5330 	 * must return (1) to drop the packet if we see a un-understood
5331 	 * parameter that tells us to drop the chunk.
5332 	 */
5333 	struct sockaddr *sa_touse;
5334 	struct sockaddr *sa;
5335 	struct sctp_paramhdr *phdr, params;
5336 	uint16_t ptype, plen;
5337 	uint8_t fnd;
5338 	struct sctp_nets *net;
5339 
5340 #ifdef INET
5341 	struct sockaddr_in sin4, *sa4;
5342 
5343 #endif
5344 #ifdef INET6
5345 	struct sockaddr_in6 sin6, *sa6;
5346 
5347 #endif
5348 
5349 #ifdef INET
5350 	memset(&sin4, 0, sizeof(sin4));
5351 	sin4.sin_family = AF_INET;
5352 	sin4.sin_len = sizeof(sin4);
5353 #endif
5354 #ifdef INET6
5355 	memset(&sin6, 0, sizeof(sin6));
5356 	sin6.sin6_family = AF_INET6;
5357 	sin6.sin6_len = sizeof(sin6);
5358 #endif
5359 	/* First what about the src address of the pkt ? */
5360 	fnd = 0;
5361 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5362 		sa = (struct sockaddr *)&net->ro._l_addr;
5363 		if (sa->sa_family == src->sa_family) {
5364 #ifdef INET
5365 			if (sa->sa_family == AF_INET) {
5366 				struct sockaddr_in *src4;
5367 
5368 				sa4 = (struct sockaddr_in *)sa;
5369 				src4 = (struct sockaddr_in *)src;
5370 				if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5371 					fnd = 1;
5372 					break;
5373 				}
5374 			}
5375 #endif
5376 #ifdef INET6
5377 			if (sa->sa_family == AF_INET6) {
5378 				struct sockaddr_in6 *src6;
5379 
5380 				sa6 = (struct sockaddr_in6 *)sa;
5381 				src6 = (struct sockaddr_in6 *)src;
5382 				if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5383 					fnd = 1;
5384 					break;
5385 				}
5386 			}
5387 #endif
5388 		}
5389 	}
5390 	if (fnd == 0) {
5391 		/* New address added! no need to look futher. */
5392 		return (1);
5393 	}
5394 	/* Ok so far lets munge through the rest of the packet */
5395 	offset += sizeof(struct sctp_init_chunk);
5396 	phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5397 	while (phdr) {
5398 		sa_touse = NULL;
5399 		ptype = ntohs(phdr->param_type);
5400 		plen = ntohs(phdr->param_length);
5401 		switch (ptype) {
5402 #ifdef INET
5403 		case SCTP_IPV4_ADDRESS:
5404 			{
5405 				struct sctp_ipv4addr_param *p4, p4_buf;
5406 
5407 				phdr = sctp_get_next_param(in_initpkt, offset,
5408 				    (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5409 				if (plen != sizeof(struct sctp_ipv4addr_param) ||
5410 				    phdr == NULL) {
5411 					return (1);
5412 				}
5413 				p4 = (struct sctp_ipv4addr_param *)phdr;
5414 				sin4.sin_addr.s_addr = p4->addr;
5415 				sa_touse = (struct sockaddr *)&sin4;
5416 				break;
5417 			}
5418 #endif
5419 #ifdef INET6
5420 		case SCTP_IPV6_ADDRESS:
5421 			{
5422 				struct sctp_ipv6addr_param *p6, p6_buf;
5423 
5424 				phdr = sctp_get_next_param(in_initpkt, offset,
5425 				    (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5426 				if (plen != sizeof(struct sctp_ipv6addr_param) ||
5427 				    phdr == NULL) {
5428 					return (1);
5429 				}
5430 				p6 = (struct sctp_ipv6addr_param *)phdr;
5431 				memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5432 				    sizeof(p6->addr));
5433 				sa_touse = (struct sockaddr *)&sin6;
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 = 0;
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 = 1;
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 = 1;
5465 						break;
5466 					}
5467 				}
5468 #endif
5469 			}
5470 			if (!fnd) {
5471 				/* New addr added! no need to look further */
5472 				return (1);
5473 			}
5474 		}
5475 		offset += SCTP_SIZE32(plen);
5476 		phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5477 	}
5478 	return (0);
5479 }
5480 
5481 /*
5482  * Given a MBUF chain that was sent into us containing an INIT. Build a
5483  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5484  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5485  * message (i.e. the struct sctp_init_msg).
5486  */
5487 void
5488 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5489     struct mbuf *init_pkt, int iphlen, int offset,
5490     struct sockaddr *src, struct sockaddr *dst,
5491     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5492     uint8_t use_mflowid, uint32_t mflowid,
5493     uint32_t vrf_id, uint16_t port, int hold_inp_lock)
5494 {
5495 	struct sctp_association *asoc;
5496 	struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last;
5497 	struct sctp_init_ack_chunk *initack;
5498 	struct sctp_adaptation_layer_indication *ali;
5499 	struct sctp_ecn_supported_param *ecn;
5500 	struct sctp_prsctp_supported_param *prsctp;
5501 	struct sctp_supported_chunk_types_param *pr_supported;
5502 	union sctp_sockstore *over_addr;
5503 
5504 #ifdef INET
5505 	struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5506 	struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5507 	struct sockaddr_in *sin;
5508 
5509 #endif
5510 #ifdef INET6
5511 	struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5512 	struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5513 	struct sockaddr_in6 *sin6;
5514 
5515 #endif
5516 	struct sockaddr *to;
5517 	struct sctp_state_cookie stc;
5518 	struct sctp_nets *net = NULL;
5519 	uint8_t *signature = NULL;
5520 	int cnt_inits_to = 0;
5521 	uint16_t his_limit, i_want;
5522 	int abort_flag, padval;
5523 	int num_ext;
5524 	int p_len;
5525 	int nat_friendly = 0;
5526 	struct socket *so;
5527 
5528 	if (stcb) {
5529 		asoc = &stcb->asoc;
5530 	} else {
5531 		asoc = NULL;
5532 	}
5533 	mp_last = NULL;
5534 	if ((asoc != NULL) &&
5535 	    (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
5536 	    (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) {
5537 		/* new addresses, out of here in non-cookie-wait states */
5538 		/*
5539 		 * Send a ABORT, we don't add the new address error clause
5540 		 * though we even set the T bit and copy in the 0 tag.. this
5541 		 * looks no different than if no listener was present.
5542 		 */
5543 		op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5544 		    "Address added");
5545 		sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5546 		    use_mflowid, mflowid,
5547 		    vrf_id, port);
5548 		return;
5549 	}
5550 	abort_flag = 0;
5551 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5552 	    (offset + sizeof(struct sctp_init_chunk)),
5553 	    &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly);
5554 	if (abort_flag) {
5555 do_a_abort:
5556 		if (op_err == NULL) {
5557 			char msg[SCTP_DIAG_INFO_LEN];
5558 
5559 			snprintf(msg, sizeof(msg), "%s:%d at %s\n", __FILE__, __LINE__, __FUNCTION__);
5560 			op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5561 			    msg);
5562 		}
5563 		sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5564 		    init_chk->init.initiate_tag, op_err,
5565 		    use_mflowid, mflowid,
5566 		    vrf_id, port);
5567 		return;
5568 	}
5569 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
5570 	if (m == NULL) {
5571 		/* No memory, INIT timer will re-attempt. */
5572 		if (op_err)
5573 			sctp_m_freem(op_err);
5574 		return;
5575 	}
5576 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk);
5577 
5578 	/*
5579 	 * We might not overwrite the identification[] completely and on
5580 	 * some platforms time_entered will contain some padding. Therefore
5581 	 * zero out the cookie to avoid putting uninitialized memory on the
5582 	 * wire.
5583 	 */
5584 	memset(&stc, 0, sizeof(struct sctp_state_cookie));
5585 
5586 	/* the time I built cookie */
5587 	(void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
5588 
5589 	/* populate any tie tags */
5590 	if (asoc != NULL) {
5591 		/* unlock before tag selections */
5592 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5593 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5594 		stc.cookie_life = asoc->cookie_life;
5595 		net = asoc->primary_destination;
5596 	} else {
5597 		stc.tie_tag_my_vtag = 0;
5598 		stc.tie_tag_peer_vtag = 0;
5599 		/* life I will award this cookie */
5600 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
5601 	}
5602 
5603 	/* copy in the ports for later check */
5604 	stc.myport = sh->dest_port;
5605 	stc.peerport = sh->src_port;
5606 
5607 	/*
5608 	 * If we wanted to honor cookie life extentions, we would add to
5609 	 * stc.cookie_life. For now we should NOT honor any extension
5610 	 */
5611 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5612 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5613 		stc.ipv6_addr_legal = 1;
5614 		if (SCTP_IPV6_V6ONLY(inp)) {
5615 			stc.ipv4_addr_legal = 0;
5616 		} else {
5617 			stc.ipv4_addr_legal = 1;
5618 		}
5619 	} else {
5620 		stc.ipv6_addr_legal = 0;
5621 		stc.ipv4_addr_legal = 1;
5622 	}
5623 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
5624 	stc.ipv4_scope = 1;
5625 #else
5626 	stc.ipv4_scope = 0;
5627 #endif
5628 	if (net == NULL) {
5629 		to = src;
5630 		switch (dst->sa_family) {
5631 #ifdef INET
5632 		case AF_INET:
5633 			{
5634 				/* lookup address */
5635 				stc.address[0] = src4->sin_addr.s_addr;
5636 				stc.address[1] = 0;
5637 				stc.address[2] = 0;
5638 				stc.address[3] = 0;
5639 				stc.addr_type = SCTP_IPV4_ADDRESS;
5640 				/* local from address */
5641 				stc.laddress[0] = dst4->sin_addr.s_addr;
5642 				stc.laddress[1] = 0;
5643 				stc.laddress[2] = 0;
5644 				stc.laddress[3] = 0;
5645 				stc.laddr_type = SCTP_IPV4_ADDRESS;
5646 				/* scope_id is only for v6 */
5647 				stc.scope_id = 0;
5648 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
5649 				if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) {
5650 					stc.ipv4_scope = 1;
5651 				}
5652 #else
5653 				stc.ipv4_scope = 1;
5654 #endif				/* SCTP_DONT_DO_PRIVADDR_SCOPE */
5655 				/* Must use the address in this case */
5656 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5657 					stc.loopback_scope = 1;
5658 					stc.ipv4_scope = 1;
5659 					stc.site_scope = 1;
5660 					stc.local_scope = 0;
5661 				}
5662 				break;
5663 			}
5664 #endif
5665 #ifdef INET6
5666 		case AF_INET6:
5667 			{
5668 				stc.addr_type = SCTP_IPV6_ADDRESS;
5669 				memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5670 				stc.scope_id = in6_getscope(&src6->sin6_addr);
5671 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5672 					stc.loopback_scope = 1;
5673 					stc.local_scope = 0;
5674 					stc.site_scope = 1;
5675 					stc.ipv4_scope = 1;
5676 				} else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) {
5677 					/*
5678 					 * If the new destination is a
5679 					 * LINK_LOCAL we must have common
5680 					 * both site and local scope. Don't
5681 					 * set local scope though since we
5682 					 * must depend on the source to be
5683 					 * added implicitly. We cannot
5684 					 * assure just because we share one
5685 					 * link that all links are common.
5686 					 */
5687 					stc.local_scope = 0;
5688 					stc.site_scope = 1;
5689 					stc.ipv4_scope = 1;
5690 					/*
5691 					 * we start counting for the private
5692 					 * address stuff at 1. since the
5693 					 * link local we source from won't
5694 					 * show up in our scoped count.
5695 					 */
5696 					cnt_inits_to = 1;
5697 					/*
5698 					 * pull out the scope_id from
5699 					 * incoming pkt
5700 					 */
5701 				} else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) {
5702 					/*
5703 					 * If the new destination is
5704 					 * SITE_LOCAL then we must have site
5705 					 * scope in common.
5706 					 */
5707 					stc.site_scope = 1;
5708 				}
5709 				memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5710 				stc.laddr_type = SCTP_IPV6_ADDRESS;
5711 				break;
5712 			}
5713 #endif
5714 		default:
5715 			/* TSNH */
5716 			goto do_a_abort;
5717 			break;
5718 		}
5719 	} else {
5720 		/* set the scope per the existing tcb */
5721 
5722 #ifdef INET6
5723 		struct sctp_nets *lnet;
5724 
5725 #endif
5726 
5727 		stc.loopback_scope = asoc->scope.loopback_scope;
5728 		stc.ipv4_scope = asoc->scope.ipv4_local_scope;
5729 		stc.site_scope = asoc->scope.site_scope;
5730 		stc.local_scope = asoc->scope.local_scope;
5731 #ifdef INET6
5732 		/* Why do we not consider IPv4 LL addresses? */
5733 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5734 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5735 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5736 					/*
5737 					 * if we have a LL address, start
5738 					 * counting at 1.
5739 					 */
5740 					cnt_inits_to = 1;
5741 				}
5742 			}
5743 		}
5744 #endif
5745 		/* use the net pointer */
5746 		to = (struct sockaddr *)&net->ro._l_addr;
5747 		switch (to->sa_family) {
5748 #ifdef INET
5749 		case AF_INET:
5750 			sin = (struct sockaddr_in *)to;
5751 			stc.address[0] = sin->sin_addr.s_addr;
5752 			stc.address[1] = 0;
5753 			stc.address[2] = 0;
5754 			stc.address[3] = 0;
5755 			stc.addr_type = SCTP_IPV4_ADDRESS;
5756 			if (net->src_addr_selected == 0) {
5757 				/*
5758 				 * strange case here, the INIT should have
5759 				 * did the selection.
5760 				 */
5761 				net->ro._s_addr = sctp_source_address_selection(inp,
5762 				    stcb, (sctp_route_t *) & net->ro,
5763 				    net, 0, vrf_id);
5764 				if (net->ro._s_addr == NULL)
5765 					return;
5766 
5767 				net->src_addr_selected = 1;
5768 
5769 			}
5770 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5771 			stc.laddress[1] = 0;
5772 			stc.laddress[2] = 0;
5773 			stc.laddress[3] = 0;
5774 			stc.laddr_type = SCTP_IPV4_ADDRESS;
5775 			/* scope_id is only for v6 */
5776 			stc.scope_id = 0;
5777 			break;
5778 #endif
5779 #ifdef INET6
5780 		case AF_INET6:
5781 			sin6 = (struct sockaddr_in6 *)to;
5782 			memcpy(&stc.address, &sin6->sin6_addr,
5783 			    sizeof(struct in6_addr));
5784 			stc.addr_type = SCTP_IPV6_ADDRESS;
5785 			stc.scope_id = sin6->sin6_scope_id;
5786 			if (net->src_addr_selected == 0) {
5787 				/*
5788 				 * strange case here, the INIT should have
5789 				 * done the selection.
5790 				 */
5791 				net->ro._s_addr = sctp_source_address_selection(inp,
5792 				    stcb, (sctp_route_t *) & net->ro,
5793 				    net, 0, vrf_id);
5794 				if (net->ro._s_addr == NULL)
5795 					return;
5796 
5797 				net->src_addr_selected = 1;
5798 			}
5799 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5800 			    sizeof(struct in6_addr));
5801 			stc.laddr_type = SCTP_IPV6_ADDRESS;
5802 			break;
5803 #endif
5804 		}
5805 	}
5806 	/* Now lets put the SCTP header in place */
5807 	initack = mtod(m, struct sctp_init_ack_chunk *);
5808 	/* Save it off for quick ref */
5809 	stc.peers_vtag = init_chk->init.initiate_tag;
5810 	/* who are we */
5811 	memcpy(stc.identification, SCTP_VERSION_STRING,
5812 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5813 	memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5814 	/* now the chunk header */
5815 	initack->ch.chunk_type = SCTP_INITIATION_ACK;
5816 	initack->ch.chunk_flags = 0;
5817 	/* fill in later from mbuf we build */
5818 	initack->ch.chunk_length = 0;
5819 	/* place in my tag */
5820 	if ((asoc != NULL) &&
5821 	    ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
5822 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
5823 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
5824 		/* re-use the v-tags and init-seq here */
5825 		initack->init.initiate_tag = htonl(asoc->my_vtag);
5826 		initack->init.initial_tsn = htonl(asoc->init_seq_number);
5827 	} else {
5828 		uint32_t vtag, itsn;
5829 
5830 		if (hold_inp_lock) {
5831 			SCTP_INP_INCR_REF(inp);
5832 			SCTP_INP_RUNLOCK(inp);
5833 		}
5834 		if (asoc) {
5835 			atomic_add_int(&asoc->refcnt, 1);
5836 			SCTP_TCB_UNLOCK(stcb);
5837 	new_tag:
5838 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5839 			if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5840 				/*
5841 				 * Got a duplicate vtag on some guy behind a
5842 				 * nat make sure we don't use it.
5843 				 */
5844 				goto new_tag;
5845 			}
5846 			initack->init.initiate_tag = htonl(vtag);
5847 			/* get a TSN to use too */
5848 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5849 			initack->init.initial_tsn = htonl(itsn);
5850 			SCTP_TCB_LOCK(stcb);
5851 			atomic_add_int(&asoc->refcnt, -1);
5852 		} else {
5853 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5854 			initack->init.initiate_tag = htonl(vtag);
5855 			/* get a TSN to use too */
5856 			initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5857 		}
5858 		if (hold_inp_lock) {
5859 			SCTP_INP_RLOCK(inp);
5860 			SCTP_INP_DECR_REF(inp);
5861 		}
5862 	}
5863 	/* save away my tag to */
5864 	stc.my_vtag = initack->init.initiate_tag;
5865 
5866 	/* set up some of the credits. */
5867 	so = inp->sctp_socket;
5868 	if (so == NULL) {
5869 		/* memory problem */
5870 		sctp_m_freem(m);
5871 		return;
5872 	} else {
5873 		initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5874 	}
5875 	/* set what I want */
5876 	his_limit = ntohs(init_chk->init.num_inbound_streams);
5877 	/* choose what I want */
5878 	if (asoc != NULL) {
5879 		if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
5880 			i_want = asoc->streamoutcnt;
5881 		} else {
5882 			i_want = inp->sctp_ep.pre_open_stream_count;
5883 		}
5884 	} else {
5885 		i_want = inp->sctp_ep.pre_open_stream_count;
5886 	}
5887 	if (his_limit < i_want) {
5888 		/* I Want more :< */
5889 		initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5890 	} else {
5891 		/* I can have what I want :> */
5892 		initack->init.num_outbound_streams = htons(i_want);
5893 	}
5894 	/* tell him his limit. */
5895 	initack->init.num_inbound_streams =
5896 	    htons(inp->sctp_ep.max_open_streams_intome);
5897 
5898 	/* adaptation layer indication parameter */
5899 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
5900 		ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack));
5901 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5902 		ali->ph.param_length = htons(sizeof(*ali));
5903 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5904 		SCTP_BUF_LEN(m) += sizeof(*ali);
5905 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali));
5906 	} else {
5907 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)initack + sizeof(*initack));
5908 	}
5909 
5910 	/* ECN parameter */
5911 	if (((asoc != NULL) && (asoc->ecn_allowed == 1)) ||
5912 	    (inp->sctp_ecn_enable == 1)) {
5913 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5914 		ecn->ph.param_length = htons(sizeof(*ecn));
5915 		SCTP_BUF_LEN(m) += sizeof(*ecn);
5916 
5917 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5918 		    sizeof(*ecn));
5919 	} else {
5920 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5921 	}
5922 	/* And now tell the peer we do  pr-sctp */
5923 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5924 	prsctp->ph.param_length = htons(sizeof(*prsctp));
5925 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
5926 	if (nat_friendly) {
5927 		/* Add NAT friendly parameter */
5928 		struct sctp_paramhdr *ph;
5929 
5930 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5931 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5932 		ph->param_length = htons(sizeof(struct sctp_paramhdr));
5933 		SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr);
5934 	}
5935 	/* And now tell the peer we do all the extensions */
5936 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5937 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5938 	num_ext = 0;
5939 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5940 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5941 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5942 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5943 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5944 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable))
5945 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5946 	if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off))
5947 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
5948 	p_len = sizeof(*pr_supported) + num_ext;
5949 	pr_supported->ph.param_length = htons(p_len);
5950 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5951 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5952 
5953 	/* add authentication parameters */
5954 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
5955 		struct sctp_auth_random *randp;
5956 		struct sctp_auth_hmac_algo *hmacs;
5957 		struct sctp_auth_chunk_list *chunks;
5958 		uint16_t random_len;
5959 
5960 		/* generate and add RANDOM parameter */
5961 		random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5962 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5963 		randp->ph.param_type = htons(SCTP_RANDOM);
5964 		p_len = sizeof(*randp) + random_len;
5965 		randp->ph.param_length = htons(p_len);
5966 		SCTP_READ_RANDOM(randp->random_data, random_len);
5967 		/* zero out any padding required */
5968 		bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5969 		SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5970 
5971 		/* add HMAC_ALGO parameter */
5972 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5973 		p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5974 		    (uint8_t *) hmacs->hmac_ids);
5975 		if (p_len > 0) {
5976 			p_len += sizeof(*hmacs);
5977 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5978 			hmacs->ph.param_length = htons(p_len);
5979 			/* zero out any padding required */
5980 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5981 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5982 		}
5983 		/* add CHUNKS parameter */
5984 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5985 		p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5986 		    chunks->chunk_types);
5987 		if (p_len > 0) {
5988 			p_len += sizeof(*chunks);
5989 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5990 			chunks->ph.param_length = htons(p_len);
5991 			/* zero out any padding required */
5992 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5993 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5994 		}
5995 	}
5996 	m_at = m;
5997 	/* now the addresses */
5998 	{
5999 		struct sctp_scoping scp;
6000 
6001 		/*
6002 		 * To optimize this we could put the scoping stuff into a
6003 		 * structure and remove the individual uint8's from the stc
6004 		 * structure. Then we could just sifa in the address within
6005 		 * the stc.. but for now this is a quick hack to get the
6006 		 * address stuff teased apart.
6007 		 */
6008 		scp.ipv4_addr_legal = stc.ipv4_addr_legal;
6009 		scp.ipv6_addr_legal = stc.ipv6_addr_legal;
6010 		scp.loopback_scope = stc.loopback_scope;
6011 		scp.ipv4_local_scope = stc.ipv4_scope;
6012 		scp.local_scope = stc.local_scope;
6013 		scp.site_scope = stc.site_scope;
6014 		m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to, NULL, NULL);
6015 	}
6016 
6017 	/* tack on the operational error if present */
6018 	if (op_err) {
6019 		struct mbuf *ol;
6020 		int llen;
6021 
6022 		llen = 0;
6023 		ol = op_err;
6024 
6025 		while (ol) {
6026 			llen += SCTP_BUF_LEN(ol);
6027 			ol = SCTP_BUF_NEXT(ol);
6028 		}
6029 		if (llen % 4) {
6030 			/* must add a pad to the param */
6031 			uint32_t cpthis = 0;
6032 			int padlen;
6033 
6034 			padlen = 4 - (llen % 4);
6035 			m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
6036 		}
6037 		while (SCTP_BUF_NEXT(m_at) != NULL) {
6038 			m_at = SCTP_BUF_NEXT(m_at);
6039 		}
6040 		SCTP_BUF_NEXT(m_at) = op_err;
6041 		while (SCTP_BUF_NEXT(m_at) != NULL) {
6042 			m_at = SCTP_BUF_NEXT(m_at);
6043 		}
6044 	}
6045 	/* pre-calulate the size and update pkt header and chunk header */
6046 	p_len = 0;
6047 	for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6048 		p_len += SCTP_BUF_LEN(m_tmp);
6049 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6050 			/* m_tmp should now point to last one */
6051 			break;
6052 		}
6053 	}
6054 
6055 	/* Now we must build a cookie */
6056 	m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
6057 	if (m_cookie == NULL) {
6058 		/* memory problem */
6059 		sctp_m_freem(m);
6060 		return;
6061 	}
6062 	/* Now append the cookie to the end and update the space/size */
6063 	SCTP_BUF_NEXT(m_tmp) = m_cookie;
6064 
6065 	for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6066 		p_len += SCTP_BUF_LEN(m_tmp);
6067 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6068 			/* m_tmp should now point to last one */
6069 			mp_last = m_tmp;
6070 			break;
6071 		}
6072 	}
6073 	/*
6074 	 * Place in the size, but we don't include the last pad (if any) in
6075 	 * the INIT-ACK.
6076 	 */
6077 	initack->ch.chunk_length = htons(p_len);
6078 
6079 	/*
6080 	 * Time to sign the cookie, we don't sign over the cookie signature
6081 	 * though thus we set trailer.
6082 	 */
6083 	(void)sctp_hmac_m(SCTP_HMAC,
6084 	    (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
6085 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
6086 	    (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
6087 	/*
6088 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
6089 	 * here since the timer will drive a retranmission.
6090 	 */
6091 	padval = p_len % 4;
6092 	if ((padval) && (mp_last)) {
6093 		/* see my previous comments on mp_last */
6094 		if (sctp_add_pad_tombuf(mp_last, (4 - padval))) {
6095 			/* Houston we have a problem, no space */
6096 			sctp_m_freem(m);
6097 			return;
6098 		}
6099 	}
6100 	if (stc.loopback_scope) {
6101 		over_addr = (union sctp_sockstore *)dst;
6102 	} else {
6103 		over_addr = NULL;
6104 	}
6105 
6106 	(void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
6107 	    0, 0,
6108 	    inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
6109 	    port, over_addr,
6110 	    use_mflowid, mflowid,
6111 	    SCTP_SO_NOT_LOCKED);
6112 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
6113 }
6114 
6115 
6116 static void
6117 sctp_prune_prsctp(struct sctp_tcb *stcb,
6118     struct sctp_association *asoc,
6119     struct sctp_sndrcvinfo *srcv,
6120     int dataout)
6121 {
6122 	int freed_spc = 0;
6123 	struct sctp_tmit_chunk *chk, *nchk;
6124 
6125 	SCTP_TCB_LOCK_ASSERT(stcb);
6126 	if ((asoc->peer_supports_prsctp) &&
6127 	    (asoc->sent_queue_cnt_removeable > 0)) {
6128 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
6129 			/*
6130 			 * Look for chunks marked with the PR_SCTP flag AND
6131 			 * the buffer space flag. If the one being sent is
6132 			 * equal or greater priority then purge the old one
6133 			 * and free some space.
6134 			 */
6135 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6136 				/*
6137 				 * This one is PR-SCTP AND buffer space
6138 				 * limited type
6139 				 */
6140 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6141 					/*
6142 					 * Lower numbers equates to higher
6143 					 * priority so if the one we are
6144 					 * looking at has a larger or equal
6145 					 * priority we want to drop the data
6146 					 * and NOT retransmit it.
6147 					 */
6148 					if (chk->data) {
6149 						/*
6150 						 * We release the book_size
6151 						 * if the mbuf is here
6152 						 */
6153 						int ret_spc;
6154 						uint8_t sent;
6155 
6156 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
6157 							sent = 1;
6158 						else
6159 							sent = 0;
6160 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6161 						    sent,
6162 						    SCTP_SO_LOCKED);
6163 						freed_spc += ret_spc;
6164 						if (freed_spc >= dataout) {
6165 							return;
6166 						}
6167 					}	/* if chunk was present */
6168 				}	/* if of sufficent priority */
6169 			}	/* if chunk has enabled */
6170 		}		/* tailqforeach */
6171 
6172 		TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6173 			/* Here we must move to the sent queue and mark */
6174 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6175 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6176 					if (chk->data) {
6177 						/*
6178 						 * We release the book_size
6179 						 * if the mbuf is here
6180 						 */
6181 						int ret_spc;
6182 
6183 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6184 						    0, SCTP_SO_LOCKED);
6185 
6186 						freed_spc += ret_spc;
6187 						if (freed_spc >= dataout) {
6188 							return;
6189 						}
6190 					}	/* end if chk->data */
6191 				}	/* end if right class */
6192 			}	/* end if chk pr-sctp */
6193 		}		/* tailqforeachsafe (chk) */
6194 	}			/* if enabled in asoc */
6195 }
6196 
6197 int
6198 sctp_get_frag_point(struct sctp_tcb *stcb,
6199     struct sctp_association *asoc)
6200 {
6201 	int siz, ovh;
6202 
6203 	/*
6204 	 * For endpoints that have both v6 and v4 addresses we must reserve
6205 	 * room for the ipv6 header, for those that are only dealing with V4
6206 	 * we use a larger frag point.
6207 	 */
6208 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6209 		ovh = SCTP_MED_OVERHEAD;
6210 	} else {
6211 		ovh = SCTP_MED_V4_OVERHEAD;
6212 	}
6213 
6214 	if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
6215 		siz = asoc->smallest_mtu - ovh;
6216 	else
6217 		siz = (stcb->asoc.sctp_frag_point - ovh);
6218 	/*
6219 	 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
6220 	 */
6221 	/* A data chunk MUST fit in a cluster */
6222 	/* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
6223 	/* } */
6224 
6225 	/* adjust for an AUTH chunk if DATA requires auth */
6226 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
6227 		siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
6228 
6229 	if (siz % 4) {
6230 		/* make it an even word boundary please */
6231 		siz -= (siz % 4);
6232 	}
6233 	return (siz);
6234 }
6235 
6236 static void
6237 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6238 {
6239 	/*
6240 	 * We assume that the user wants PR_SCTP_TTL if the user provides a
6241 	 * positive lifetime but does not specify any PR_SCTP policy.
6242 	 */
6243 	if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6244 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6245 	} else if (sp->timetolive > 0) {
6246 		sp->sinfo_flags |= SCTP_PR_SCTP_TTL;
6247 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6248 	} else {
6249 		return;
6250 	}
6251 	switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6252 	case CHUNK_FLAGS_PR_SCTP_BUF:
6253 		/*
6254 		 * Time to live is a priority stored in tv_sec when doing
6255 		 * the buffer drop thing.
6256 		 */
6257 		sp->ts.tv_sec = sp->timetolive;
6258 		sp->ts.tv_usec = 0;
6259 		break;
6260 	case CHUNK_FLAGS_PR_SCTP_TTL:
6261 		{
6262 			struct timeval tv;
6263 
6264 			(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6265 			tv.tv_sec = sp->timetolive / 1000;
6266 			tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6267 			/*
6268 			 * TODO sctp_constants.h needs alternative time
6269 			 * macros when _KERNEL is undefined.
6270 			 */
6271 			timevaladd(&sp->ts, &tv);
6272 		}
6273 		break;
6274 	case CHUNK_FLAGS_PR_SCTP_RTX:
6275 		/*
6276 		 * Time to live is a the number or retransmissions stored in
6277 		 * tv_sec.
6278 		 */
6279 		sp->ts.tv_sec = sp->timetolive;
6280 		sp->ts.tv_usec = 0;
6281 		break;
6282 	default:
6283 		SCTPDBG(SCTP_DEBUG_USRREQ1,
6284 		    "Unknown PR_SCTP policy %u.\n",
6285 		    PR_SCTP_POLICY(sp->sinfo_flags));
6286 		break;
6287 	}
6288 }
6289 
6290 static int
6291 sctp_msg_append(struct sctp_tcb *stcb,
6292     struct sctp_nets *net,
6293     struct mbuf *m,
6294     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
6295 {
6296 	int error = 0;
6297 	struct mbuf *at;
6298 	struct sctp_stream_queue_pending *sp = NULL;
6299 	struct sctp_stream_out *strm;
6300 
6301 	/*
6302 	 * Given an mbuf chain, put it into the association send queue and
6303 	 * place it on the wheel
6304 	 */
6305 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6306 		/* Invalid stream number */
6307 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6308 		error = EINVAL;
6309 		goto out_now;
6310 	}
6311 	if ((stcb->asoc.stream_locked) &&
6312 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6313 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6314 		error = EINVAL;
6315 		goto out_now;
6316 	}
6317 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6318 	/* Now can we send this? */
6319 	if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
6320 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6321 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6322 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6323 		/* got data while shutting down */
6324 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
6325 		error = ECONNRESET;
6326 		goto out_now;
6327 	}
6328 	sctp_alloc_a_strmoq(stcb, sp);
6329 	if (sp == NULL) {
6330 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6331 		error = ENOMEM;
6332 		goto out_now;
6333 	}
6334 	sp->sinfo_flags = srcv->sinfo_flags;
6335 	sp->timetolive = srcv->sinfo_timetolive;
6336 	sp->ppid = srcv->sinfo_ppid;
6337 	sp->context = srcv->sinfo_context;
6338 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6339 		sp->net = net;
6340 		atomic_add_int(&sp->net->ref_count, 1);
6341 	} else {
6342 		sp->net = NULL;
6343 	}
6344 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6345 	sp->stream = srcv->sinfo_stream;
6346 	sp->msg_is_complete = 1;
6347 	sp->sender_all_done = 1;
6348 	sp->some_taken = 0;
6349 	sp->data = m;
6350 	sp->tail_mbuf = NULL;
6351 	sctp_set_prsctp_policy(sp);
6352 	/*
6353 	 * We could in theory (for sendall) sifa the length in, but we would
6354 	 * still have to hunt through the chain since we need to setup the
6355 	 * tail_mbuf
6356 	 */
6357 	sp->length = 0;
6358 	for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6359 		if (SCTP_BUF_NEXT(at) == NULL)
6360 			sp->tail_mbuf = at;
6361 		sp->length += SCTP_BUF_LEN(at);
6362 	}
6363 	if (srcv->sinfo_keynumber_valid) {
6364 		sp->auth_keyid = srcv->sinfo_keynumber;
6365 	} else {
6366 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6367 	}
6368 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6369 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
6370 		sp->holds_key_ref = 1;
6371 	}
6372 	if (hold_stcb_lock == 0) {
6373 		SCTP_TCB_SEND_LOCK(stcb);
6374 	}
6375 	sctp_snd_sb_alloc(stcb, sp->length);
6376 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6377 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6378 	stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1);
6379 	m = NULL;
6380 	if (hold_stcb_lock == 0) {
6381 		SCTP_TCB_SEND_UNLOCK(stcb);
6382 	}
6383 out_now:
6384 	if (m) {
6385 		sctp_m_freem(m);
6386 	}
6387 	return (error);
6388 }
6389 
6390 
6391 static struct mbuf *
6392 sctp_copy_mbufchain(struct mbuf *clonechain,
6393     struct mbuf *outchain,
6394     struct mbuf **endofchain,
6395     int can_take_mbuf,
6396     int sizeofcpy,
6397     uint8_t copy_by_ref)
6398 {
6399 	struct mbuf *m;
6400 	struct mbuf *appendchain;
6401 	caddr_t cp;
6402 	int len;
6403 
6404 	if (endofchain == NULL) {
6405 		/* error */
6406 error_out:
6407 		if (outchain)
6408 			sctp_m_freem(outchain);
6409 		return (NULL);
6410 	}
6411 	if (can_take_mbuf) {
6412 		appendchain = clonechain;
6413 	} else {
6414 		if (!copy_by_ref &&
6415 		    (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))
6416 		    ) {
6417 			/* Its not in a cluster */
6418 			if (*endofchain == NULL) {
6419 				/* lets get a mbuf cluster */
6420 				if (outchain == NULL) {
6421 					/* This is the general case */
6422 			new_mbuf:
6423 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6424 					if (outchain == NULL) {
6425 						goto error_out;
6426 					}
6427 					SCTP_BUF_LEN(outchain) = 0;
6428 					*endofchain = outchain;
6429 					/* get the prepend space */
6430 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6431 				} else {
6432 					/*
6433 					 * We really should not get a NULL
6434 					 * in endofchain
6435 					 */
6436 					/* find end */
6437 					m = outchain;
6438 					while (m) {
6439 						if (SCTP_BUF_NEXT(m) == NULL) {
6440 							*endofchain = m;
6441 							break;
6442 						}
6443 						m = SCTP_BUF_NEXT(m);
6444 					}
6445 					/* sanity */
6446 					if (*endofchain == NULL) {
6447 						/*
6448 						 * huh, TSNH XXX maybe we
6449 						 * should panic
6450 						 */
6451 						sctp_m_freem(outchain);
6452 						goto new_mbuf;
6453 					}
6454 				}
6455 				/* get the new end of length */
6456 				len = M_TRAILINGSPACE(*endofchain);
6457 			} else {
6458 				/* how much is left at the end? */
6459 				len = M_TRAILINGSPACE(*endofchain);
6460 			}
6461 			/* Find the end of the data, for appending */
6462 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6463 
6464 			/* Now lets copy it out */
6465 			if (len >= sizeofcpy) {
6466 				/* It all fits, copy it in */
6467 				m_copydata(clonechain, 0, sizeofcpy, cp);
6468 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6469 			} else {
6470 				/* fill up the end of the chain */
6471 				if (len > 0) {
6472 					m_copydata(clonechain, 0, len, cp);
6473 					SCTP_BUF_LEN((*endofchain)) += len;
6474 					/* now we need another one */
6475 					sizeofcpy -= len;
6476 				}
6477 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6478 				if (m == NULL) {
6479 					/* We failed */
6480 					goto error_out;
6481 				}
6482 				SCTP_BUF_NEXT((*endofchain)) = m;
6483 				*endofchain = m;
6484 				cp = mtod((*endofchain), caddr_t);
6485 				m_copydata(clonechain, len, sizeofcpy, cp);
6486 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6487 			}
6488 			return (outchain);
6489 		} else {
6490 			/* copy the old fashion way */
6491 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT);
6492 #ifdef SCTP_MBUF_LOGGING
6493 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6494 				struct mbuf *mat;
6495 
6496 				for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) {
6497 					if (SCTP_BUF_IS_EXTENDED(mat)) {
6498 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6499 					}
6500 				}
6501 			}
6502 #endif
6503 		}
6504 	}
6505 	if (appendchain == NULL) {
6506 		/* error */
6507 		if (outchain)
6508 			sctp_m_freem(outchain);
6509 		return (NULL);
6510 	}
6511 	if (outchain) {
6512 		/* tack on to the end */
6513 		if (*endofchain != NULL) {
6514 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6515 		} else {
6516 			m = outchain;
6517 			while (m) {
6518 				if (SCTP_BUF_NEXT(m) == NULL) {
6519 					SCTP_BUF_NEXT(m) = appendchain;
6520 					break;
6521 				}
6522 				m = SCTP_BUF_NEXT(m);
6523 			}
6524 		}
6525 		/*
6526 		 * save off the end and update the end-chain postion
6527 		 */
6528 		m = appendchain;
6529 		while (m) {
6530 			if (SCTP_BUF_NEXT(m) == NULL) {
6531 				*endofchain = m;
6532 				break;
6533 			}
6534 			m = SCTP_BUF_NEXT(m);
6535 		}
6536 		return (outchain);
6537 	} else {
6538 		/* save off the end and update the end-chain postion */
6539 		m = appendchain;
6540 		while (m) {
6541 			if (SCTP_BUF_NEXT(m) == NULL) {
6542 				*endofchain = m;
6543 				break;
6544 			}
6545 			m = SCTP_BUF_NEXT(m);
6546 		}
6547 		return (appendchain);
6548 	}
6549 }
6550 
6551 static int
6552 sctp_med_chunk_output(struct sctp_inpcb *inp,
6553     struct sctp_tcb *stcb,
6554     struct sctp_association *asoc,
6555     int *num_out,
6556     int *reason_code,
6557     int control_only, int from_where,
6558     struct timeval *now, int *now_filled, int frag_point, int so_locked
6559 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6560     SCTP_UNUSED
6561 #endif
6562 );
6563 
6564 static void
6565 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6566     uint32_t val SCTP_UNUSED)
6567 {
6568 	struct sctp_copy_all *ca;
6569 	struct mbuf *m;
6570 	int ret = 0;
6571 	int added_control = 0;
6572 	int un_sent, do_chunk_output = 1;
6573 	struct sctp_association *asoc;
6574 	struct sctp_nets *net;
6575 
6576 	ca = (struct sctp_copy_all *)ptr;
6577 	if (ca->m == NULL) {
6578 		return;
6579 	}
6580 	if (ca->inp != inp) {
6581 		/* TSNH */
6582 		return;
6583 	}
6584 	if (ca->sndlen > 0) {
6585 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT);
6586 		if (m == NULL) {
6587 			/* can't copy so we are done */
6588 			ca->cnt_failed++;
6589 			return;
6590 		}
6591 #ifdef SCTP_MBUF_LOGGING
6592 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6593 			struct mbuf *mat;
6594 
6595 			for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6596 				if (SCTP_BUF_IS_EXTENDED(mat)) {
6597 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6598 				}
6599 			}
6600 		}
6601 #endif
6602 	} else {
6603 		m = NULL;
6604 	}
6605 	SCTP_TCB_LOCK_ASSERT(stcb);
6606 	if (stcb->asoc.alternate) {
6607 		net = stcb->asoc.alternate;
6608 	} else {
6609 		net = stcb->asoc.primary_destination;
6610 	}
6611 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6612 		/* Abort this assoc with m as the user defined reason */
6613 		if (m != NULL) {
6614 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT);
6615 		} else {
6616 			m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr),
6617 			    0, M_NOWAIT, 1, MT_DATA);
6618 			SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr);
6619 		}
6620 		if (m != NULL) {
6621 			struct sctp_paramhdr *ph;
6622 
6623 			ph = mtod(m, struct sctp_paramhdr *);
6624 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6625 			ph->param_length = htons(sizeof(struct sctp_paramhdr) + ca->sndlen);
6626 		}
6627 		/*
6628 		 * We add one here to keep the assoc from dis-appearing on
6629 		 * us.
6630 		 */
6631 		atomic_add_int(&stcb->asoc.refcnt, 1);
6632 		sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED);
6633 		/*
6634 		 * sctp_abort_an_association calls sctp_free_asoc() free
6635 		 * association will NOT free it since we incremented the
6636 		 * refcnt .. we do this to prevent it being freed and things
6637 		 * getting tricky since we could end up (from free_asoc)
6638 		 * calling inpcb_free which would get a recursive lock call
6639 		 * to the iterator lock.. But as a consequence of that the
6640 		 * stcb will return to us un-locked.. since free_asoc
6641 		 * returns with either no TCB or the TCB unlocked, we must
6642 		 * relock.. to unlock in the iterator timer :-0
6643 		 */
6644 		SCTP_TCB_LOCK(stcb);
6645 		atomic_add_int(&stcb->asoc.refcnt, -1);
6646 		goto no_chunk_output;
6647 	} else {
6648 		if (m) {
6649 			ret = sctp_msg_append(stcb, net, m,
6650 			    &ca->sndrcv, 1);
6651 		}
6652 		asoc = &stcb->asoc;
6653 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6654 			/* shutdown this assoc */
6655 			int cnt;
6656 
6657 			cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED);
6658 
6659 			if (TAILQ_EMPTY(&asoc->send_queue) &&
6660 			    TAILQ_EMPTY(&asoc->sent_queue) &&
6661 			    (cnt == 0)) {
6662 				if (asoc->locked_on_sending) {
6663 					goto abort_anyway;
6664 				}
6665 				/*
6666 				 * there is nothing queued to send, so I'm
6667 				 * done...
6668 				 */
6669 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6670 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6671 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6672 					/*
6673 					 * only send SHUTDOWN the first time
6674 					 * through
6675 					 */
6676 					if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
6677 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6678 					}
6679 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
6680 					SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
6681 					sctp_stop_timers_for_shutdown(stcb);
6682 					sctp_send_shutdown(stcb, net);
6683 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6684 					    net);
6685 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6686 					    asoc->primary_destination);
6687 					added_control = 1;
6688 					do_chunk_output = 0;
6689 				}
6690 			} else {
6691 				/*
6692 				 * we still got (or just got) data to send,
6693 				 * so set SHUTDOWN_PENDING
6694 				 */
6695 				/*
6696 				 * XXX sockets draft says that SCTP_EOF
6697 				 * should be sent with no data.  currently,
6698 				 * we will allow user data to be sent first
6699 				 * and move to SHUTDOWN-PENDING
6700 				 */
6701 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6702 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6703 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6704 					if (asoc->locked_on_sending) {
6705 						/*
6706 						 * Locked to send out the
6707 						 * data
6708 						 */
6709 						struct sctp_stream_queue_pending *sp;
6710 
6711 						sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
6712 						if (sp) {
6713 							if ((sp->length == 0) && (sp->msg_is_complete == 0))
6714 								asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
6715 						}
6716 					}
6717 					asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
6718 					if (TAILQ_EMPTY(&asoc->send_queue) &&
6719 					    TAILQ_EMPTY(&asoc->sent_queue) &&
6720 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6721 				abort_anyway:
6722 						atomic_add_int(&stcb->asoc.refcnt, 1);
6723 						sctp_abort_an_association(stcb->sctp_ep, stcb,
6724 						    NULL, SCTP_SO_NOT_LOCKED);
6725 						atomic_add_int(&stcb->asoc.refcnt, -1);
6726 						goto no_chunk_output;
6727 					}
6728 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6729 					    asoc->primary_destination);
6730 				}
6731 			}
6732 
6733 		}
6734 	}
6735 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6736 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
6737 
6738 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6739 	    (stcb->asoc.total_flight > 0) &&
6740 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
6741 		do_chunk_output = 0;
6742 	}
6743 	if (do_chunk_output)
6744 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6745 	else if (added_control) {
6746 		int num_out = 0, reason = 0, now_filled = 0;
6747 		struct timeval now;
6748 		int frag_point;
6749 
6750 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
6751 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6752 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
6753 	}
6754 no_chunk_output:
6755 	if (ret) {
6756 		ca->cnt_failed++;
6757 	} else {
6758 		ca->cnt_sent++;
6759 	}
6760 }
6761 
6762 static void
6763 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6764 {
6765 	struct sctp_copy_all *ca;
6766 
6767 	ca = (struct sctp_copy_all *)ptr;
6768 	/*
6769 	 * Do a notify here? Kacheong suggests that the notify be done at
6770 	 * the send time.. so you would push up a notification if any send
6771 	 * failed. Don't know if this is feasable since the only failures we
6772 	 * have is "memory" related and if you cannot get an mbuf to send
6773 	 * the data you surely can't get an mbuf to send up to notify the
6774 	 * user you can't send the data :->
6775 	 */
6776 
6777 	/* now free everything */
6778 	sctp_m_freem(ca->m);
6779 	SCTP_FREE(ca, SCTP_M_COPYAL);
6780 }
6781 
6782 
6783 #define	MC_ALIGN(m, len) do {						\
6784 	SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1));	\
6785 } while (0)
6786 
6787 
6788 
6789 static struct mbuf *
6790 sctp_copy_out_all(struct uio *uio, int len)
6791 {
6792 	struct mbuf *ret, *at;
6793 	int left, willcpy, cancpy, error;
6794 
6795 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA);
6796 	if (ret == NULL) {
6797 		/* TSNH */
6798 		return (NULL);
6799 	}
6800 	left = len;
6801 	SCTP_BUF_LEN(ret) = 0;
6802 	/* save space for the data chunk header */
6803 	cancpy = M_TRAILINGSPACE(ret);
6804 	willcpy = min(cancpy, left);
6805 	at = ret;
6806 	while (left > 0) {
6807 		/* Align data to the end */
6808 		error = uiomove(mtod(at, caddr_t), willcpy, uio);
6809 		if (error) {
6810 	err_out_now:
6811 			sctp_m_freem(at);
6812 			return (NULL);
6813 		}
6814 		SCTP_BUF_LEN(at) = willcpy;
6815 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6816 		left -= willcpy;
6817 		if (left > 0) {
6818 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA);
6819 			if (SCTP_BUF_NEXT(at) == NULL) {
6820 				goto err_out_now;
6821 			}
6822 			at = SCTP_BUF_NEXT(at);
6823 			SCTP_BUF_LEN(at) = 0;
6824 			cancpy = M_TRAILINGSPACE(at);
6825 			willcpy = min(cancpy, left);
6826 		}
6827 	}
6828 	return (ret);
6829 }
6830 
6831 static int
6832 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6833     struct sctp_sndrcvinfo *srcv)
6834 {
6835 	int ret;
6836 	struct sctp_copy_all *ca;
6837 
6838 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6839 	    SCTP_M_COPYAL);
6840 	if (ca == NULL) {
6841 		sctp_m_freem(m);
6842 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6843 		return (ENOMEM);
6844 	}
6845 	memset(ca, 0, sizeof(struct sctp_copy_all));
6846 
6847 	ca->inp = inp;
6848 	if (srcv) {
6849 		memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6850 	}
6851 	/*
6852 	 * take off the sendall flag, it would be bad if we failed to do
6853 	 * this :-0
6854 	 */
6855 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6856 	/* get length and mbuf chain */
6857 	if (uio) {
6858 		ca->sndlen = uio->uio_resid;
6859 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
6860 		if (ca->m == NULL) {
6861 			SCTP_FREE(ca, SCTP_M_COPYAL);
6862 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6863 			return (ENOMEM);
6864 		}
6865 	} else {
6866 		/* Gather the length of the send */
6867 		struct mbuf *mat;
6868 
6869 		ca->sndlen = 0;
6870 		for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6871 			ca->sndlen += SCTP_BUF_LEN(mat);
6872 		}
6873 	}
6874 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6875 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6876 	    SCTP_ASOC_ANY_STATE,
6877 	    (void *)ca, 0,
6878 	    sctp_sendall_completes, inp, 1);
6879 	if (ret) {
6880 		SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6881 		SCTP_FREE(ca, SCTP_M_COPYAL);
6882 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6883 		return (EFAULT);
6884 	}
6885 	return (0);
6886 }
6887 
6888 
6889 void
6890 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6891 {
6892 	struct sctp_tmit_chunk *chk, *nchk;
6893 
6894 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6895 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6896 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6897 			if (chk->data) {
6898 				sctp_m_freem(chk->data);
6899 				chk->data = NULL;
6900 			}
6901 			asoc->ctrl_queue_cnt--;
6902 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6903 		}
6904 	}
6905 }
6906 
6907 void
6908 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6909 {
6910 	struct sctp_association *asoc;
6911 	struct sctp_tmit_chunk *chk, *nchk;
6912 	struct sctp_asconf_chunk *acp;
6913 
6914 	asoc = &stcb->asoc;
6915 	TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
6916 		/* find SCTP_ASCONF chunk in queue */
6917 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6918 			if (chk->data) {
6919 				acp = mtod(chk->data, struct sctp_asconf_chunk *);
6920 				if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
6921 					/* Not Acked yet */
6922 					break;
6923 				}
6924 			}
6925 			TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
6926 			if (chk->data) {
6927 				sctp_m_freem(chk->data);
6928 				chk->data = NULL;
6929 			}
6930 			asoc->ctrl_queue_cnt--;
6931 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6932 		}
6933 	}
6934 }
6935 
6936 
6937 static void
6938 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6939     struct sctp_association *asoc,
6940     struct sctp_tmit_chunk **data_list,
6941     int bundle_at,
6942     struct sctp_nets *net)
6943 {
6944 	int i;
6945 	struct sctp_tmit_chunk *tp1;
6946 
6947 	for (i = 0; i < bundle_at; i++) {
6948 		/* off of the send queue */
6949 		TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
6950 		asoc->send_queue_cnt--;
6951 		if (i > 0) {
6952 			/*
6953 			 * Any chunk NOT 0 you zap the time chunk 0 gets
6954 			 * zapped or set based on if a RTO measurment is
6955 			 * needed.
6956 			 */
6957 			data_list[i]->do_rtt = 0;
6958 		}
6959 		/* record time */
6960 		data_list[i]->sent_rcv_time = net->last_sent_time;
6961 		data_list[i]->rec.data.cwnd_at_send = net->cwnd;
6962 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6963 		if (data_list[i]->whoTo == NULL) {
6964 			data_list[i]->whoTo = net;
6965 			atomic_add_int(&net->ref_count, 1);
6966 		}
6967 		/* on to the sent queue */
6968 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6969 		if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6970 			struct sctp_tmit_chunk *tpp;
6971 
6972 			/* need to move back */
6973 	back_up_more:
6974 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6975 			if (tpp == NULL) {
6976 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6977 				goto all_done;
6978 			}
6979 			tp1 = tpp;
6980 			if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6981 				goto back_up_more;
6982 			}
6983 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6984 		} else {
6985 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
6986 			    data_list[i],
6987 			    sctp_next);
6988 		}
6989 all_done:
6990 		/* This does not lower until the cum-ack passes it */
6991 		asoc->sent_queue_cnt++;
6992 		if ((asoc->peers_rwnd <= 0) &&
6993 		    (asoc->total_flight == 0) &&
6994 		    (bundle_at == 1)) {
6995 			/* Mark the chunk as being a window probe */
6996 			SCTP_STAT_INCR(sctps_windowprobed);
6997 		}
6998 #ifdef SCTP_AUDITING_ENABLED
6999 		sctp_audit_log(0xC2, 3);
7000 #endif
7001 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
7002 		data_list[i]->snd_count = 1;
7003 		data_list[i]->rec.data.chunk_was_revoked = 0;
7004 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
7005 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
7006 			    data_list[i]->whoTo->flight_size,
7007 			    data_list[i]->book_size,
7008 			    (uintptr_t) data_list[i]->whoTo,
7009 			    data_list[i]->rec.data.TSN_seq);
7010 		}
7011 		sctp_flight_size_increase(data_list[i]);
7012 		sctp_total_flight_increase(stcb, data_list[i]);
7013 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
7014 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
7015 			    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
7016 		}
7017 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
7018 		    (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
7019 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
7020 			/* SWS sender side engages */
7021 			asoc->peers_rwnd = 0;
7022 		}
7023 	}
7024 	if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
7025 		(*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
7026 	}
7027 }
7028 
7029 static void
7030 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked
7031 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7032     SCTP_UNUSED
7033 #endif
7034 )
7035 {
7036 	struct sctp_tmit_chunk *chk, *nchk;
7037 
7038 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
7039 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7040 		    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
7041 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
7042 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
7043 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
7044 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
7045 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
7046 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
7047 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
7048 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
7049 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
7050 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
7051 			/* Stray chunks must be cleaned up */
7052 	clean_up_anyway:
7053 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
7054 			if (chk->data) {
7055 				sctp_m_freem(chk->data);
7056 				chk->data = NULL;
7057 			}
7058 			asoc->ctrl_queue_cnt--;
7059 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)
7060 				asoc->fwd_tsn_cnt--;
7061 			sctp_free_a_chunk(stcb, chk, so_locked);
7062 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
7063 			/* special handling, we must look into the param */
7064 			if (chk != asoc->str_reset) {
7065 				goto clean_up_anyway;
7066 			}
7067 		}
7068 	}
7069 }
7070 
7071 
7072 static int
7073 sctp_can_we_split_this(struct sctp_tcb *stcb,
7074     uint32_t length,
7075     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
7076 {
7077 	/*
7078 	 * Make a decision on if I should split a msg into multiple parts.
7079 	 * This is only asked of incomplete messages.
7080 	 */
7081 	if (eeor_on) {
7082 		/*
7083 		 * If we are doing EEOR we need to always send it if its the
7084 		 * entire thing, since it might be all the guy is putting in
7085 		 * the hopper.
7086 		 */
7087 		if (goal_mtu >= length) {
7088 			/*-
7089 			 * If we have data outstanding,
7090 			 * we get another chance when the sack
7091 			 * arrives to transmit - wait for more data
7092 			 */
7093 			if (stcb->asoc.total_flight == 0) {
7094 				/*
7095 				 * If nothing is in flight, we zero the
7096 				 * packet counter.
7097 				 */
7098 				return (length);
7099 			}
7100 			return (0);
7101 
7102 		} else {
7103 			/* You can fill the rest */
7104 			return (goal_mtu);
7105 		}
7106 	}
7107 	/*-
7108 	 * For those strange folk that make the send buffer
7109 	 * smaller than our fragmentation point, we can't
7110 	 * get a full msg in so we have to allow splitting.
7111 	 */
7112 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
7113 		return (length);
7114 	}
7115 	if ((length <= goal_mtu) ||
7116 	    ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
7117 		/* Sub-optimial residual don't split in non-eeor mode. */
7118 		return (0);
7119 	}
7120 	/*
7121 	 * If we reach here length is larger than the goal_mtu. Do we wish
7122 	 * to split it for the sake of packet putting together?
7123 	 */
7124 	if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
7125 		/* Its ok to split it */
7126 		return (min(goal_mtu, frag_point));
7127 	}
7128 	/* Nope, can't split */
7129 	return (0);
7130 
7131 }
7132 
7133 static uint32_t
7134 sctp_move_to_outqueue(struct sctp_tcb *stcb,
7135     struct sctp_stream_out *strq,
7136     uint32_t goal_mtu,
7137     uint32_t frag_point,
7138     int *locked,
7139     int *giveup,
7140     int eeor_mode,
7141     int *bail,
7142     int so_locked
7143 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7144     SCTP_UNUSED
7145 #endif
7146 )
7147 {
7148 	/* Move from the stream to the send_queue keeping track of the total */
7149 	struct sctp_association *asoc;
7150 	struct sctp_stream_queue_pending *sp;
7151 	struct sctp_tmit_chunk *chk;
7152 	struct sctp_data_chunk *dchkh;
7153 	uint32_t to_move, length;
7154 	uint8_t rcv_flags = 0;
7155 	uint8_t some_taken;
7156 	uint8_t send_lock_up = 0;
7157 
7158 	SCTP_TCB_LOCK_ASSERT(stcb);
7159 	asoc = &stcb->asoc;
7160 one_more_time:
7161 	/* sa_ignore FREED_MEMORY */
7162 	sp = TAILQ_FIRST(&strq->outqueue);
7163 	if (sp == NULL) {
7164 		*locked = 0;
7165 		if (send_lock_up == 0) {
7166 			SCTP_TCB_SEND_LOCK(stcb);
7167 			send_lock_up = 1;
7168 		}
7169 		sp = TAILQ_FIRST(&strq->outqueue);
7170 		if (sp) {
7171 			goto one_more_time;
7172 		}
7173 		if (strq->last_msg_incomplete) {
7174 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7175 			    strq->stream_no,
7176 			    strq->last_msg_incomplete);
7177 			strq->last_msg_incomplete = 0;
7178 		}
7179 		to_move = 0;
7180 		if (send_lock_up) {
7181 			SCTP_TCB_SEND_UNLOCK(stcb);
7182 			send_lock_up = 0;
7183 		}
7184 		goto out_of;
7185 	}
7186 	if ((sp->msg_is_complete) && (sp->length == 0)) {
7187 		if (sp->sender_all_done) {
7188 			/*
7189 			 * We are doing differed cleanup. Last time through
7190 			 * when we took all the data the sender_all_done was
7191 			 * not set.
7192 			 */
7193 			if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7194 				SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7195 				SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7196 				    sp->sender_all_done,
7197 				    sp->length,
7198 				    sp->msg_is_complete,
7199 				    sp->put_last_out,
7200 				    send_lock_up);
7201 			}
7202 			if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) {
7203 				SCTP_TCB_SEND_LOCK(stcb);
7204 				send_lock_up = 1;
7205 			}
7206 			atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7207 			TAILQ_REMOVE(&strq->outqueue, sp, next);
7208 			stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7209 			if (sp->net) {
7210 				sctp_free_remote_addr(sp->net);
7211 				sp->net = NULL;
7212 			}
7213 			if (sp->data) {
7214 				sctp_m_freem(sp->data);
7215 				sp->data = NULL;
7216 			}
7217 			sctp_free_a_strmoq(stcb, sp, so_locked);
7218 			/* we can't be locked to it */
7219 			*locked = 0;
7220 			stcb->asoc.locked_on_sending = NULL;
7221 			if (send_lock_up) {
7222 				SCTP_TCB_SEND_UNLOCK(stcb);
7223 				send_lock_up = 0;
7224 			}
7225 			/* back to get the next msg */
7226 			goto one_more_time;
7227 		} else {
7228 			/*
7229 			 * sender just finished this but still holds a
7230 			 * reference
7231 			 */
7232 			*locked = 1;
7233 			*giveup = 1;
7234 			to_move = 0;
7235 			goto out_of;
7236 		}
7237 	} else {
7238 		/* is there some to get */
7239 		if (sp->length == 0) {
7240 			/* no */
7241 			*locked = 1;
7242 			*giveup = 1;
7243 			to_move = 0;
7244 			goto out_of;
7245 		} else if (sp->discard_rest) {
7246 			if (send_lock_up == 0) {
7247 				SCTP_TCB_SEND_LOCK(stcb);
7248 				send_lock_up = 1;
7249 			}
7250 			/* Whack down the size */
7251 			atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7252 			if ((stcb->sctp_socket != NULL) && \
7253 			    ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7254 			    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7255 				atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length);
7256 			}
7257 			if (sp->data) {
7258 				sctp_m_freem(sp->data);
7259 				sp->data = NULL;
7260 				sp->tail_mbuf = NULL;
7261 			}
7262 			sp->length = 0;
7263 			sp->some_taken = 1;
7264 			*locked = 1;
7265 			*giveup = 1;
7266 			to_move = 0;
7267 			goto out_of;
7268 		}
7269 	}
7270 	some_taken = sp->some_taken;
7271 	if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
7272 		sp->msg_is_complete = 1;
7273 	}
7274 re_look:
7275 	length = sp->length;
7276 	if (sp->msg_is_complete) {
7277 		/* The message is complete */
7278 		to_move = min(length, frag_point);
7279 		if (to_move == length) {
7280 			/* All of it fits in the MTU */
7281 			if (sp->some_taken) {
7282 				rcv_flags |= SCTP_DATA_LAST_FRAG;
7283 				sp->put_last_out = 1;
7284 			} else {
7285 				rcv_flags |= SCTP_DATA_NOT_FRAG;
7286 				sp->put_last_out = 1;
7287 			}
7288 		} else {
7289 			/* Not all of it fits, we fragment */
7290 			if (sp->some_taken == 0) {
7291 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7292 			}
7293 			sp->some_taken = 1;
7294 		}
7295 	} else {
7296 		to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode);
7297 		if (to_move) {
7298 			/*-
7299 			 * We use a snapshot of length in case it
7300 			 * is expanding during the compare.
7301 			 */
7302 			uint32_t llen;
7303 
7304 			llen = length;
7305 			if (to_move >= llen) {
7306 				to_move = llen;
7307 				if (send_lock_up == 0) {
7308 					/*-
7309 					 * We are taking all of an incomplete msg
7310 					 * thus we need a send lock.
7311 					 */
7312 					SCTP_TCB_SEND_LOCK(stcb);
7313 					send_lock_up = 1;
7314 					if (sp->msg_is_complete) {
7315 						/*
7316 						 * the sender finished the
7317 						 * msg
7318 						 */
7319 						goto re_look;
7320 					}
7321 				}
7322 			}
7323 			if (sp->some_taken == 0) {
7324 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7325 				sp->some_taken = 1;
7326 			}
7327 		} else {
7328 			/* Nothing to take. */
7329 			if (sp->some_taken) {
7330 				*locked = 1;
7331 			}
7332 			*giveup = 1;
7333 			to_move = 0;
7334 			goto out_of;
7335 		}
7336 	}
7337 
7338 	/* If we reach here, we can copy out a chunk */
7339 	sctp_alloc_a_chunk(stcb, chk);
7340 	if (chk == NULL) {
7341 		/* No chunk memory */
7342 		*giveup = 1;
7343 		to_move = 0;
7344 		goto out_of;
7345 	}
7346 	/*
7347 	 * Setup for unordered if needed by looking at the user sent info
7348 	 * flags.
7349 	 */
7350 	if (sp->sinfo_flags & SCTP_UNORDERED) {
7351 		rcv_flags |= SCTP_DATA_UNORDERED;
7352 	}
7353 	if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) ||
7354 	    ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) {
7355 		rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7356 	}
7357 	/* clear out the chunk before setting up */
7358 	memset(chk, 0, sizeof(*chk));
7359 	chk->rec.data.rcv_flags = rcv_flags;
7360 
7361 	if (to_move >= length) {
7362 		/* we think we can steal the whole thing */
7363 		if ((sp->sender_all_done == 0) && (send_lock_up == 0)) {
7364 			SCTP_TCB_SEND_LOCK(stcb);
7365 			send_lock_up = 1;
7366 		}
7367 		if (to_move < sp->length) {
7368 			/* bail, it changed */
7369 			goto dont_do_it;
7370 		}
7371 		chk->data = sp->data;
7372 		chk->last_mbuf = sp->tail_mbuf;
7373 		/* register the stealing */
7374 		sp->data = sp->tail_mbuf = NULL;
7375 	} else {
7376 		struct mbuf *m;
7377 
7378 dont_do_it:
7379 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT);
7380 		chk->last_mbuf = NULL;
7381 		if (chk->data == NULL) {
7382 			sp->some_taken = some_taken;
7383 			sctp_free_a_chunk(stcb, chk, so_locked);
7384 			*bail = 1;
7385 			to_move = 0;
7386 			goto out_of;
7387 		}
7388 #ifdef SCTP_MBUF_LOGGING
7389 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7390 			struct mbuf *mat;
7391 
7392 			for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) {
7393 				if (SCTP_BUF_IS_EXTENDED(mat)) {
7394 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
7395 				}
7396 			}
7397 		}
7398 #endif
7399 		/* Pull off the data */
7400 		m_adj(sp->data, to_move);
7401 		/* Now lets work our way down and compact it */
7402 		m = sp->data;
7403 		while (m && (SCTP_BUF_LEN(m) == 0)) {
7404 			sp->data = SCTP_BUF_NEXT(m);
7405 			SCTP_BUF_NEXT(m) = NULL;
7406 			if (sp->tail_mbuf == m) {
7407 				/*-
7408 				 * Freeing tail? TSNH since
7409 				 * we supposedly were taking less
7410 				 * than the sp->length.
7411 				 */
7412 #ifdef INVARIANTS
7413 				panic("Huh, freing tail? - TSNH");
7414 #else
7415 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7416 				sp->tail_mbuf = sp->data = NULL;
7417 				sp->length = 0;
7418 #endif
7419 
7420 			}
7421 			sctp_m_free(m);
7422 			m = sp->data;
7423 		}
7424 	}
7425 	if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7426 		chk->copy_by_ref = 1;
7427 	} else {
7428 		chk->copy_by_ref = 0;
7429 	}
7430 	/*
7431 	 * get last_mbuf and counts of mb useage This is ugly but hopefully
7432 	 * its only one mbuf.
7433 	 */
7434 	if (chk->last_mbuf == NULL) {
7435 		chk->last_mbuf = chk->data;
7436 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7437 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7438 		}
7439 	}
7440 	if (to_move > length) {
7441 		/*- This should not happen either
7442 		 * since we always lower to_move to the size
7443 		 * of sp->length if its larger.
7444 		 */
7445 #ifdef INVARIANTS
7446 		panic("Huh, how can to_move be larger?");
7447 #else
7448 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
7449 		sp->length = 0;
7450 #endif
7451 	} else {
7452 		atomic_subtract_int(&sp->length, to_move);
7453 	}
7454 	if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
7455 		/* Not enough room for a chunk header, get some */
7456 		struct mbuf *m;
7457 
7458 		m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA);
7459 		if (m == NULL) {
7460 			/*
7461 			 * we're in trouble here. _PREPEND below will free
7462 			 * all the data if there is no leading space, so we
7463 			 * must put the data back and restore.
7464 			 */
7465 			if (send_lock_up == 0) {
7466 				SCTP_TCB_SEND_LOCK(stcb);
7467 				send_lock_up = 1;
7468 			}
7469 			if (chk->data == NULL) {
7470 				/* unsteal the data */
7471 				sp->data = chk->data;
7472 				sp->tail_mbuf = chk->last_mbuf;
7473 			} else {
7474 				struct mbuf *m_tmp;
7475 
7476 				/* reassemble the data */
7477 				m_tmp = sp->data;
7478 				sp->data = chk->data;
7479 				SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7480 			}
7481 			sp->some_taken = some_taken;
7482 			atomic_add_int(&sp->length, to_move);
7483 			chk->data = NULL;
7484 			*bail = 1;
7485 			sctp_free_a_chunk(stcb, chk, so_locked);
7486 			to_move = 0;
7487 			goto out_of;
7488 		} else {
7489 			SCTP_BUF_LEN(m) = 0;
7490 			SCTP_BUF_NEXT(m) = chk->data;
7491 			chk->data = m;
7492 			M_ALIGN(chk->data, 4);
7493 		}
7494 	}
7495 	SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT);
7496 	if (chk->data == NULL) {
7497 		/* HELP, TSNH since we assured it would not above? */
7498 #ifdef INVARIANTS
7499 		panic("prepend failes HELP?");
7500 #else
7501 		SCTP_PRINTF("prepend fails HELP?\n");
7502 		sctp_free_a_chunk(stcb, chk, so_locked);
7503 #endif
7504 		*bail = 1;
7505 		to_move = 0;
7506 		goto out_of;
7507 	}
7508 	sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
7509 	chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk));
7510 	chk->book_size_scale = 0;
7511 	chk->sent = SCTP_DATAGRAM_UNSENT;
7512 
7513 	chk->flags = 0;
7514 	chk->asoc = &stcb->asoc;
7515 	chk->pad_inplace = 0;
7516 	chk->no_fr_allowed = 0;
7517 	chk->rec.data.stream_seq = strq->next_sequence_send;
7518 	if ((rcv_flags & SCTP_DATA_LAST_FRAG) &&
7519 	    !(rcv_flags & SCTP_DATA_UNORDERED)) {
7520 		strq->next_sequence_send++;
7521 	}
7522 	chk->rec.data.stream_number = sp->stream;
7523 	chk->rec.data.payloadtype = sp->ppid;
7524 	chk->rec.data.context = sp->context;
7525 	chk->rec.data.doing_fast_retransmit = 0;
7526 
7527 	chk->rec.data.timetodrop = sp->ts;
7528 	chk->flags = sp->act_flags;
7529 
7530 	if (sp->net) {
7531 		chk->whoTo = sp->net;
7532 		atomic_add_int(&chk->whoTo->ref_count, 1);
7533 	} else
7534 		chk->whoTo = NULL;
7535 
7536 	if (sp->holds_key_ref) {
7537 		chk->auth_keyid = sp->auth_keyid;
7538 		sctp_auth_key_acquire(stcb, chk->auth_keyid);
7539 		chk->holds_key_ref = 1;
7540 	}
7541 	chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
7542 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7543 		sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7544 		    (uintptr_t) stcb, sp->length,
7545 		    (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
7546 		    chk->rec.data.TSN_seq);
7547 	}
7548 	dchkh = mtod(chk->data, struct sctp_data_chunk *);
7549 	/*
7550 	 * Put the rest of the things in place now. Size was done earlier in
7551 	 * previous loop prior to padding.
7552 	 */
7553 
7554 #ifdef SCTP_ASOCLOG_OF_TSNS
7555 	SCTP_TCB_LOCK_ASSERT(stcb);
7556 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7557 		asoc->tsn_out_at = 0;
7558 		asoc->tsn_out_wrapped = 1;
7559 	}
7560 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
7561 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
7562 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
7563 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7564 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7565 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7566 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7567 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7568 	asoc->tsn_out_at++;
7569 #endif
7570 
7571 	dchkh->ch.chunk_type = SCTP_DATA;
7572 	dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7573 	dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7574 	dchkh->dp.stream_id = htons(strq->stream_no);
7575 	dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
7576 	dchkh->dp.protocol_id = chk->rec.data.payloadtype;
7577 	dchkh->ch.chunk_length = htons(chk->send_size);
7578 	/* Now advance the chk->send_size by the actual pad needed. */
7579 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7580 		/* need a pad */
7581 		struct mbuf *lm;
7582 		int pads;
7583 
7584 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7585 		if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
7586 			chk->pad_inplace = 1;
7587 		}
7588 		if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
7589 			/* pad added an mbuf */
7590 			chk->last_mbuf = lm;
7591 		}
7592 		chk->send_size += pads;
7593 	}
7594 	if (PR_SCTP_ENABLED(chk->flags)) {
7595 		asoc->pr_sctp_cnt++;
7596 	}
7597 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7598 		/* All done pull and kill the message */
7599 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7600 		if (sp->put_last_out == 0) {
7601 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7602 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7603 			    sp->sender_all_done,
7604 			    sp->length,
7605 			    sp->msg_is_complete,
7606 			    sp->put_last_out,
7607 			    send_lock_up);
7608 		}
7609 		if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
7610 			SCTP_TCB_SEND_LOCK(stcb);
7611 			send_lock_up = 1;
7612 		}
7613 		TAILQ_REMOVE(&strq->outqueue, sp, next);
7614 		stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7615 		if (sp->net) {
7616 			sctp_free_remote_addr(sp->net);
7617 			sp->net = NULL;
7618 		}
7619 		if (sp->data) {
7620 			sctp_m_freem(sp->data);
7621 			sp->data = NULL;
7622 		}
7623 		sctp_free_a_strmoq(stcb, sp, so_locked);
7624 
7625 		/* we can't be locked to it */
7626 		*locked = 0;
7627 		stcb->asoc.locked_on_sending = NULL;
7628 	} else {
7629 		/* more to go, we are locked */
7630 		*locked = 1;
7631 	}
7632 	asoc->chunks_on_out_queue++;
7633 	strq->chunks_on_queues++;
7634 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7635 	asoc->send_queue_cnt++;
7636 out_of:
7637 	if (send_lock_up) {
7638 		SCTP_TCB_SEND_UNLOCK(stcb);
7639 	}
7640 	return (to_move);
7641 }
7642 
7643 
7644 static void
7645 sctp_fill_outqueue(struct sctp_tcb *stcb,
7646     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked
7647 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7648     SCTP_UNUSED
7649 #endif
7650 )
7651 {
7652 	struct sctp_association *asoc;
7653 	struct sctp_stream_out *strq;
7654 	int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
7655 	int locked, giveup;
7656 
7657 	SCTP_TCB_LOCK_ASSERT(stcb);
7658 	asoc = &stcb->asoc;
7659 	switch (net->ro._l_addr.sa.sa_family) {
7660 #ifdef INET
7661 	case AF_INET:
7662 		goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
7663 		break;
7664 #endif
7665 #ifdef INET6
7666 	case AF_INET6:
7667 		goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
7668 		break;
7669 #endif
7670 	default:
7671 		/* TSNH */
7672 		goal_mtu = net->mtu;
7673 		break;
7674 	}
7675 	/* Need an allowance for the data chunk header too */
7676 	goal_mtu -= sizeof(struct sctp_data_chunk);
7677 
7678 	/* must make even word boundary */
7679 	goal_mtu &= 0xfffffffc;
7680 	if (asoc->locked_on_sending) {
7681 		/* We are stuck on one stream until the message completes. */
7682 		strq = asoc->locked_on_sending;
7683 		locked = 1;
7684 	} else {
7685 		strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7686 		locked = 0;
7687 	}
7688 	while ((goal_mtu > 0) && strq) {
7689 		giveup = 0;
7690 		bail = 0;
7691 		moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked,
7692 		    &giveup, eeor_mode, &bail, so_locked);
7693 		if (moved_how_much)
7694 			stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much);
7695 
7696 		if (locked) {
7697 			asoc->locked_on_sending = strq;
7698 			if ((moved_how_much == 0) || (giveup) || bail)
7699 				/* no more to move for now */
7700 				break;
7701 		} else {
7702 			asoc->locked_on_sending = NULL;
7703 			if ((giveup) || bail) {
7704 				break;
7705 			}
7706 			strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7707 			if (strq == NULL) {
7708 				break;
7709 			}
7710 		}
7711 		total_moved += moved_how_much;
7712 		goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
7713 		goal_mtu &= 0xfffffffc;
7714 	}
7715 	if (bail)
7716 		*quit_now = 1;
7717 
7718 	stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7719 
7720 	if (total_moved == 0) {
7721 		if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7722 		    (net == stcb->asoc.primary_destination)) {
7723 			/* ran dry for primary network net */
7724 			SCTP_STAT_INCR(sctps_primary_randry);
7725 		} else if (stcb->asoc.sctp_cmt_on_off > 0) {
7726 			/* ran dry with CMT on */
7727 			SCTP_STAT_INCR(sctps_cmt_randry);
7728 		}
7729 	}
7730 }
7731 
7732 void
7733 sctp_fix_ecn_echo(struct sctp_association *asoc)
7734 {
7735 	struct sctp_tmit_chunk *chk;
7736 
7737 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7738 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7739 			chk->sent = SCTP_DATAGRAM_UNSENT;
7740 		}
7741 	}
7742 }
7743 
7744 void
7745 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7746 {
7747 	struct sctp_association *asoc;
7748 	struct sctp_tmit_chunk *chk;
7749 	struct sctp_stream_queue_pending *sp;
7750 	unsigned int i;
7751 
7752 	if (net == NULL) {
7753 		return;
7754 	}
7755 	asoc = &stcb->asoc;
7756 	for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7757 		TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7758 			if (sp->net == net) {
7759 				sctp_free_remote_addr(sp->net);
7760 				sp->net = NULL;
7761 			}
7762 		}
7763 	}
7764 	TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7765 		if (chk->whoTo == net) {
7766 			sctp_free_remote_addr(chk->whoTo);
7767 			chk->whoTo = NULL;
7768 		}
7769 	}
7770 }
7771 
7772 int
7773 sctp_med_chunk_output(struct sctp_inpcb *inp,
7774     struct sctp_tcb *stcb,
7775     struct sctp_association *asoc,
7776     int *num_out,
7777     int *reason_code,
7778     int control_only, int from_where,
7779     struct timeval *now, int *now_filled, int frag_point, int so_locked
7780 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7781     SCTP_UNUSED
7782 #endif
7783 )
7784 {
7785 	/**
7786 	 * Ok this is the generic chunk service queue. we must do the
7787 	 * following: - Service the stream queue that is next, moving any
7788 	 * message (note I must get a complete message i.e. FIRST/MIDDLE and
7789 	 * LAST to the out queue in one pass) and assigning TSN's - Check to
7790 	 * see if the cwnd/rwnd allows any output, if so we go ahead and
7791 	 * fomulate and send the low level chunks. Making sure to combine
7792 	 * any control in the control chunk queue also.
7793 	 */
7794 	struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7795 	struct mbuf *outchain, *endoutchain;
7796 	struct sctp_tmit_chunk *chk, *nchk;
7797 
7798 	/* temp arrays for unlinking */
7799 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7800 	int no_fragmentflg, error;
7801 	unsigned int max_rwnd_per_dest, max_send_per_dest;
7802 	int one_chunk, hbflag, skip_data_for_this_net;
7803 	int asconf, cookie, no_out_cnt;
7804 	int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7805 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7806 	int tsns_sent = 0;
7807 	uint32_t auth_offset = 0;
7808 	struct sctp_auth_chunk *auth = NULL;
7809 	uint16_t auth_keyid;
7810 	int override_ok = 1;
7811 	int skip_fill_up = 0;
7812 	int data_auth_reqd = 0;
7813 
7814 	/*
7815 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7816 	 * destination.
7817 	 */
7818 	int quit_now = 0;
7819 
7820 	*num_out = 0;
7821 	auth_keyid = stcb->asoc.authinfo.active_keyid;
7822 
7823 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7824 	    (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
7825 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7826 		eeor_mode = 1;
7827 	} else {
7828 		eeor_mode = 0;
7829 	}
7830 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
7831 	/*
7832 	 * First lets prime the pump. For each destination, if there is room
7833 	 * in the flight size, attempt to pull an MTU's worth out of the
7834 	 * stream queues into the general send_queue
7835 	 */
7836 #ifdef SCTP_AUDITING_ENABLED
7837 	sctp_audit_log(0xC2, 2);
7838 #endif
7839 	SCTP_TCB_LOCK_ASSERT(stcb);
7840 	hbflag = 0;
7841 	if ((control_only) || (asoc->stream_reset_outstanding))
7842 		no_data_chunks = 1;
7843 	else
7844 		no_data_chunks = 0;
7845 
7846 	/* Nothing to possible to send? */
7847 	if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7848 	    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7849 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7850 	    TAILQ_EMPTY(&asoc->send_queue) &&
7851 	    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
7852 nothing_to_send:
7853 		*reason_code = 9;
7854 		return (0);
7855 	}
7856 	if (asoc->peers_rwnd == 0) {
7857 		/* No room in peers rwnd */
7858 		*reason_code = 1;
7859 		if (asoc->total_flight > 0) {
7860 			/* we are allowed one chunk in flight */
7861 			no_data_chunks = 1;
7862 		}
7863 	}
7864 	if (stcb->asoc.ecn_echo_cnt_onq) {
7865 		/* Record where a sack goes, if any */
7866 		if (no_data_chunks &&
7867 		    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7868 			/* Nothing but ECNe to send - we don't do that */
7869 			goto nothing_to_send;
7870 		}
7871 		TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7872 			if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7873 			    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7874 				sack_goes_to = chk->whoTo;
7875 				break;
7876 			}
7877 		}
7878 	}
7879 	max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7880 	if (stcb->sctp_socket)
7881 		max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7882 	else
7883 		max_send_per_dest = 0;
7884 	if (no_data_chunks == 0) {
7885 		/* How many non-directed chunks are there? */
7886 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7887 			if (chk->whoTo == NULL) {
7888 				/*
7889 				 * We already have non-directed chunks on
7890 				 * the queue, no need to do a fill-up.
7891 				 */
7892 				skip_fill_up = 1;
7893 				break;
7894 			}
7895 		}
7896 
7897 	}
7898 	if ((no_data_chunks == 0) &&
7899 	    (skip_fill_up == 0) &&
7900 	    (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7901 		TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7902 			/*
7903 			 * This for loop we are in takes in each net, if
7904 			 * its's got space in cwnd and has data sent to it
7905 			 * (when CMT is off) then it calls
7906 			 * sctp_fill_outqueue for the net. This gets data on
7907 			 * the send queue for that network.
7908 			 *
7909 			 * In sctp_fill_outqueue TSN's are assigned and data is
7910 			 * copied out of the stream buffers. Note mostly
7911 			 * copy by reference (we hope).
7912 			 */
7913 			net->window_probe = 0;
7914 			if ((net != stcb->asoc.alternate) &&
7915 			    ((net->dest_state & SCTP_ADDR_PF) ||
7916 			    (!(net->dest_state & SCTP_ADDR_REACHABLE)) ||
7917 			    (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7918 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7919 					sctp_log_cwnd(stcb, net, 1,
7920 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7921 				}
7922 				continue;
7923 			}
7924 			if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7925 			    (net->flight_size == 0)) {
7926 				(*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7927 			}
7928 			if (net->flight_size >= net->cwnd) {
7929 				/* skip this network, no room - can't fill */
7930 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7931 					sctp_log_cwnd(stcb, net, 3,
7932 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7933 				}
7934 				continue;
7935 			}
7936 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7937 				sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7938 			}
7939 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7940 			if (quit_now) {
7941 				/* memory alloc failure */
7942 				no_data_chunks = 1;
7943 				break;
7944 			}
7945 		}
7946 	}
7947 	/* now service each destination and send out what we can for it */
7948 	/* Nothing to send? */
7949 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7950 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7951 	    TAILQ_EMPTY(&asoc->send_queue)) {
7952 		*reason_code = 8;
7953 		return (0);
7954 	}
7955 	if (asoc->sctp_cmt_on_off > 0) {
7956 		/* get the last start point */
7957 		start_at = asoc->last_net_cmt_send_started;
7958 		if (start_at == NULL) {
7959 			/* null so to beginning */
7960 			start_at = TAILQ_FIRST(&asoc->nets);
7961 		} else {
7962 			start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7963 			if (start_at == NULL) {
7964 				start_at = TAILQ_FIRST(&asoc->nets);
7965 			}
7966 		}
7967 		asoc->last_net_cmt_send_started = start_at;
7968 	} else {
7969 		start_at = TAILQ_FIRST(&asoc->nets);
7970 	}
7971 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7972 		if (chk->whoTo == NULL) {
7973 			if (asoc->alternate) {
7974 				chk->whoTo = asoc->alternate;
7975 			} else {
7976 				chk->whoTo = asoc->primary_destination;
7977 			}
7978 			atomic_add_int(&chk->whoTo->ref_count, 1);
7979 		}
7980 	}
7981 	old_start_at = NULL;
7982 again_one_more_time:
7983 	for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7984 		/* how much can we send? */
7985 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7986 		if (old_start_at && (old_start_at == net)) {
7987 			/* through list ocmpletely. */
7988 			break;
7989 		}
7990 		tsns_sent = 0xa;
7991 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7992 		    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7993 		    (net->flight_size >= net->cwnd)) {
7994 			/*
7995 			 * Nothing on control or asconf and flight is full,
7996 			 * we can skip even in the CMT case.
7997 			 */
7998 			continue;
7999 		}
8000 		bundle_at = 0;
8001 		endoutchain = outchain = NULL;
8002 		no_fragmentflg = 1;
8003 		one_chunk = 0;
8004 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
8005 			skip_data_for_this_net = 1;
8006 		} else {
8007 			skip_data_for_this_net = 0;
8008 		}
8009 		if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
8010 			/*
8011 			 * if we have a route and an ifp check to see if we
8012 			 * have room to send to this guy
8013 			 */
8014 			struct ifnet *ifp;
8015 
8016 			ifp = net->ro.ro_rt->rt_ifp;
8017 			if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
8018 				SCTP_STAT_INCR(sctps_ifnomemqueued);
8019 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
8020 					sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
8021 				}
8022 				continue;
8023 			}
8024 		}
8025 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8026 #ifdef INET
8027 		case AF_INET:
8028 			mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
8029 			break;
8030 #endif
8031 #ifdef INET6
8032 		case AF_INET6:
8033 			mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
8034 			break;
8035 #endif
8036 		default:
8037 			/* TSNH */
8038 			mtu = net->mtu;
8039 			break;
8040 		}
8041 		mx_mtu = mtu;
8042 		to_out = 0;
8043 		if (mtu > asoc->peers_rwnd) {
8044 			if (asoc->total_flight > 0) {
8045 				/* We have a packet in flight somewhere */
8046 				r_mtu = asoc->peers_rwnd;
8047 			} else {
8048 				/* We are always allowed to send one MTU out */
8049 				one_chunk = 1;
8050 				r_mtu = mtu;
8051 			}
8052 		} else {
8053 			r_mtu = mtu;
8054 		}
8055 		/************************/
8056 		/* ASCONF transmission */
8057 		/************************/
8058 		/* Now first lets go through the asconf queue */
8059 		TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
8060 			if (chk->rec.chunk_id.id != SCTP_ASCONF) {
8061 				continue;
8062 			}
8063 			if (chk->whoTo == NULL) {
8064 				if (asoc->alternate == NULL) {
8065 					if (asoc->primary_destination != net) {
8066 						break;
8067 					}
8068 				} else {
8069 					if (asoc->alternate != net) {
8070 						break;
8071 					}
8072 				}
8073 			} else {
8074 				if (chk->whoTo != net) {
8075 					break;
8076 				}
8077 			}
8078 			if (chk->data == NULL) {
8079 				break;
8080 			}
8081 			if (chk->sent != SCTP_DATAGRAM_UNSENT &&
8082 			    chk->sent != SCTP_DATAGRAM_RESEND) {
8083 				break;
8084 			}
8085 			/*
8086 			 * if no AUTH is yet included and this chunk
8087 			 * requires it, make sure to account for it.  We
8088 			 * don't apply the size until the AUTH chunk is
8089 			 * actually added below in case there is no room for
8090 			 * this chunk. NOTE: we overload the use of "omtu"
8091 			 * here
8092 			 */
8093 			if ((auth == NULL) &&
8094 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8095 			    stcb->asoc.peer_auth_chunks)) {
8096 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8097 			} else
8098 				omtu = 0;
8099 			/* Here we do NOT factor the r_mtu */
8100 			if ((chk->send_size < (int)(mtu - omtu)) ||
8101 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8102 				/*
8103 				 * We probably should glom the mbuf chain
8104 				 * from the chk->data for control but the
8105 				 * problem is it becomes yet one more level
8106 				 * of tracking to do if for some reason
8107 				 * output fails. Then I have got to
8108 				 * reconstruct the merged control chain.. el
8109 				 * yucko.. for now we take the easy way and
8110 				 * do the copy
8111 				 */
8112 				/*
8113 				 * Add an AUTH chunk, if chunk requires it
8114 				 * save the offset into the chain for AUTH
8115 				 */
8116 				if ((auth == NULL) &&
8117 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8118 				    stcb->asoc.peer_auth_chunks))) {
8119 					outchain = sctp_add_auth_chunk(outchain,
8120 					    &endoutchain,
8121 					    &auth,
8122 					    &auth_offset,
8123 					    stcb,
8124 					    chk->rec.chunk_id.id);
8125 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8126 				}
8127 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8128 				    (int)chk->rec.chunk_id.can_take_data,
8129 				    chk->send_size, chk->copy_by_ref);
8130 				if (outchain == NULL) {
8131 					*reason_code = 8;
8132 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8133 					return (ENOMEM);
8134 				}
8135 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8136 				/* update our MTU size */
8137 				if (mtu > (chk->send_size + omtu))
8138 					mtu -= (chk->send_size + omtu);
8139 				else
8140 					mtu = 0;
8141 				to_out += (chk->send_size + omtu);
8142 				/* Do clear IP_DF ? */
8143 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8144 					no_fragmentflg = 0;
8145 				}
8146 				if (chk->rec.chunk_id.can_take_data)
8147 					chk->data = NULL;
8148 				/*
8149 				 * set hb flag since we can use these for
8150 				 * RTO
8151 				 */
8152 				hbflag = 1;
8153 				asconf = 1;
8154 				/*
8155 				 * should sysctl this: don't bundle data
8156 				 * with ASCONF since it requires AUTH
8157 				 */
8158 				no_data_chunks = 1;
8159 				chk->sent = SCTP_DATAGRAM_SENT;
8160 				if (chk->whoTo == NULL) {
8161 					chk->whoTo = net;
8162 					atomic_add_int(&net->ref_count, 1);
8163 				}
8164 				chk->snd_count++;
8165 				if (mtu == 0) {
8166 					/*
8167 					 * Ok we are out of room but we can
8168 					 * output without effecting the
8169 					 * flight size since this little guy
8170 					 * is a control only packet.
8171 					 */
8172 					sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8173 					/*
8174 					 * do NOT clear the asconf flag as
8175 					 * it is used to do appropriate
8176 					 * source address selection.
8177 					 */
8178 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8179 					    (struct sockaddr *)&net->ro._l_addr,
8180 					    outchain, auth_offset, auth,
8181 					    stcb->asoc.authinfo.active_keyid,
8182 					    no_fragmentflg, 0, asconf,
8183 					    inp->sctp_lport, stcb->rport,
8184 					    htonl(stcb->asoc.peer_vtag),
8185 					    net->port, NULL,
8186 					    0, 0,
8187 					    so_locked))) {
8188 						if (error == ENOBUFS) {
8189 							asoc->ifp_had_enobuf = 1;
8190 							SCTP_STAT_INCR(sctps_lowlevelerr);
8191 						}
8192 						if (from_where == 0) {
8193 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8194 						}
8195 						if (*now_filled == 0) {
8196 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8197 							*now_filled = 1;
8198 							*now = net->last_sent_time;
8199 						} else {
8200 							net->last_sent_time = *now;
8201 						}
8202 						hbflag = 0;
8203 						/* error, could not output */
8204 						if (error == EHOSTUNREACH) {
8205 							/*
8206 							 * Destination went
8207 							 * unreachable
8208 							 * during this send
8209 							 */
8210 							sctp_move_chunks_from_net(stcb, net);
8211 						}
8212 						*reason_code = 7;
8213 						continue;
8214 					} else
8215 						asoc->ifp_had_enobuf = 0;
8216 					if (*now_filled == 0) {
8217 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8218 						*now_filled = 1;
8219 						*now = net->last_sent_time;
8220 					} else {
8221 						net->last_sent_time = *now;
8222 					}
8223 					hbflag = 0;
8224 					/*
8225 					 * increase the number we sent, if a
8226 					 * cookie is sent we don't tell them
8227 					 * any was sent out.
8228 					 */
8229 					outchain = endoutchain = NULL;
8230 					auth = NULL;
8231 					auth_offset = 0;
8232 					if (!no_out_cnt)
8233 						*num_out += ctl_cnt;
8234 					/* recalc a clean slate and setup */
8235 					switch (net->ro._l_addr.sa.sa_family) {
8236 #ifdef INET
8237 					case AF_INET:
8238 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8239 						break;
8240 #endif
8241 #ifdef INET6
8242 					case AF_INET6:
8243 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8244 						break;
8245 #endif
8246 					default:
8247 						/* TSNH */
8248 						mtu = net->mtu;
8249 						break;
8250 					}
8251 					to_out = 0;
8252 					no_fragmentflg = 1;
8253 				}
8254 			}
8255 		}
8256 		/************************/
8257 		/* Control transmission */
8258 		/************************/
8259 		/* Now first lets go through the control queue */
8260 		TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8261 			if ((sack_goes_to) &&
8262 			    (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8263 			    (chk->whoTo != sack_goes_to)) {
8264 				/*
8265 				 * if we have a sack in queue, and we are
8266 				 * looking at an ecn echo that is NOT queued
8267 				 * to where the sack is going..
8268 				 */
8269 				if (chk->whoTo == net) {
8270 					/*
8271 					 * Don't transmit it to where its
8272 					 * going (current net)
8273 					 */
8274 					continue;
8275 				} else if (sack_goes_to == net) {
8276 					/*
8277 					 * But do transmit it to this
8278 					 * address
8279 					 */
8280 					goto skip_net_check;
8281 				}
8282 			}
8283 			if (chk->whoTo == NULL) {
8284 				if (asoc->alternate == NULL) {
8285 					if (asoc->primary_destination != net) {
8286 						continue;
8287 					}
8288 				} else {
8289 					if (asoc->alternate != net) {
8290 						continue;
8291 					}
8292 				}
8293 			} else {
8294 				if (chk->whoTo != net) {
8295 					continue;
8296 				}
8297 			}
8298 	skip_net_check:
8299 			if (chk->data == NULL) {
8300 				continue;
8301 			}
8302 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8303 				/*
8304 				 * It must be unsent. Cookies and ASCONF's
8305 				 * hang around but there timers will force
8306 				 * when marked for resend.
8307 				 */
8308 				continue;
8309 			}
8310 			/*
8311 			 * if no AUTH is yet included and this chunk
8312 			 * requires it, make sure to account for it.  We
8313 			 * don't apply the size until the AUTH chunk is
8314 			 * actually added below in case there is no room for
8315 			 * this chunk. NOTE: we overload the use of "omtu"
8316 			 * here
8317 			 */
8318 			if ((auth == NULL) &&
8319 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8320 			    stcb->asoc.peer_auth_chunks)) {
8321 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8322 			} else
8323 				omtu = 0;
8324 			/* Here we do NOT factor the r_mtu */
8325 			if ((chk->send_size <= (int)(mtu - omtu)) ||
8326 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8327 				/*
8328 				 * We probably should glom the mbuf chain
8329 				 * from the chk->data for control but the
8330 				 * problem is it becomes yet one more level
8331 				 * of tracking to do if for some reason
8332 				 * output fails. Then I have got to
8333 				 * reconstruct the merged control chain.. el
8334 				 * yucko.. for now we take the easy way and
8335 				 * do the copy
8336 				 */
8337 				/*
8338 				 * Add an AUTH chunk, if chunk requires it
8339 				 * save the offset into the chain for AUTH
8340 				 */
8341 				if ((auth == NULL) &&
8342 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8343 				    stcb->asoc.peer_auth_chunks))) {
8344 					outchain = sctp_add_auth_chunk(outchain,
8345 					    &endoutchain,
8346 					    &auth,
8347 					    &auth_offset,
8348 					    stcb,
8349 					    chk->rec.chunk_id.id);
8350 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8351 				}
8352 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8353 				    (int)chk->rec.chunk_id.can_take_data,
8354 				    chk->send_size, chk->copy_by_ref);
8355 				if (outchain == NULL) {
8356 					*reason_code = 8;
8357 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8358 					return (ENOMEM);
8359 				}
8360 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8361 				/* update our MTU size */
8362 				if (mtu > (chk->send_size + omtu))
8363 					mtu -= (chk->send_size + omtu);
8364 				else
8365 					mtu = 0;
8366 				to_out += (chk->send_size + omtu);
8367 				/* Do clear IP_DF ? */
8368 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8369 					no_fragmentflg = 0;
8370 				}
8371 				if (chk->rec.chunk_id.can_take_data)
8372 					chk->data = NULL;
8373 				/* Mark things to be removed, if needed */
8374 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8375 				    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
8376 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8377 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8378 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8379 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8380 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8381 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8382 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8383 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8384 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8385 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8386 						hbflag = 1;
8387 					}
8388 					/* remove these chunks at the end */
8389 					if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8390 					    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8391 						/* turn off the timer */
8392 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8393 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8394 							    inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8395 						}
8396 					}
8397 					ctl_cnt++;
8398 				} else {
8399 					/*
8400 					 * Other chunks, since they have
8401 					 * timers running (i.e. COOKIE) we
8402 					 * just "trust" that it gets sent or
8403 					 * retransmitted.
8404 					 */
8405 					ctl_cnt++;
8406 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8407 						cookie = 1;
8408 						no_out_cnt = 1;
8409 					} else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8410 						/*
8411 						 * Increment ecne send count
8412 						 * here this means we may be
8413 						 * over-zealous in our
8414 						 * counting if the send
8415 						 * fails, but its the best
8416 						 * place to do it (we used
8417 						 * to do it in the queue of
8418 						 * the chunk, but that did
8419 						 * not tell how many times
8420 						 * it was sent.
8421 						 */
8422 						SCTP_STAT_INCR(sctps_sendecne);
8423 					}
8424 					chk->sent = SCTP_DATAGRAM_SENT;
8425 					if (chk->whoTo == NULL) {
8426 						chk->whoTo = net;
8427 						atomic_add_int(&net->ref_count, 1);
8428 					}
8429 					chk->snd_count++;
8430 				}
8431 				if (mtu == 0) {
8432 					/*
8433 					 * Ok we are out of room but we can
8434 					 * output without effecting the
8435 					 * flight size since this little guy
8436 					 * is a control only packet.
8437 					 */
8438 					if (asconf) {
8439 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8440 						/*
8441 						 * do NOT clear the asconf
8442 						 * flag as it is used to do
8443 						 * appropriate source
8444 						 * address selection.
8445 						 */
8446 					}
8447 					if (cookie) {
8448 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8449 						cookie = 0;
8450 					}
8451 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8452 					    (struct sockaddr *)&net->ro._l_addr,
8453 					    outchain,
8454 					    auth_offset, auth,
8455 					    stcb->asoc.authinfo.active_keyid,
8456 					    no_fragmentflg, 0, asconf,
8457 					    inp->sctp_lport, stcb->rport,
8458 					    htonl(stcb->asoc.peer_vtag),
8459 					    net->port, NULL,
8460 					    0, 0,
8461 					    so_locked))) {
8462 						if (error == ENOBUFS) {
8463 							asoc->ifp_had_enobuf = 1;
8464 							SCTP_STAT_INCR(sctps_lowlevelerr);
8465 						}
8466 						if (from_where == 0) {
8467 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8468 						}
8469 						/* error, could not output */
8470 						if (hbflag) {
8471 							if (*now_filled == 0) {
8472 								(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8473 								*now_filled = 1;
8474 								*now = net->last_sent_time;
8475 							} else {
8476 								net->last_sent_time = *now;
8477 							}
8478 							hbflag = 0;
8479 						}
8480 						if (error == EHOSTUNREACH) {
8481 							/*
8482 							 * Destination went
8483 							 * unreachable
8484 							 * during this send
8485 							 */
8486 							sctp_move_chunks_from_net(stcb, net);
8487 						}
8488 						*reason_code = 7;
8489 						continue;
8490 					} else
8491 						asoc->ifp_had_enobuf = 0;
8492 					/* Only HB or ASCONF advances time */
8493 					if (hbflag) {
8494 						if (*now_filled == 0) {
8495 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8496 							*now_filled = 1;
8497 							*now = net->last_sent_time;
8498 						} else {
8499 							net->last_sent_time = *now;
8500 						}
8501 						hbflag = 0;
8502 					}
8503 					/*
8504 					 * increase the number we sent, if a
8505 					 * cookie is sent we don't tell them
8506 					 * any was sent out.
8507 					 */
8508 					outchain = endoutchain = NULL;
8509 					auth = NULL;
8510 					auth_offset = 0;
8511 					if (!no_out_cnt)
8512 						*num_out += ctl_cnt;
8513 					/* recalc a clean slate and setup */
8514 					switch (net->ro._l_addr.sa.sa_family) {
8515 #ifdef INET
8516 					case AF_INET:
8517 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8518 						break;
8519 #endif
8520 #ifdef INET6
8521 					case AF_INET6:
8522 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8523 						break;
8524 #endif
8525 					default:
8526 						/* TSNH */
8527 						mtu = net->mtu;
8528 						break;
8529 					}
8530 					to_out = 0;
8531 					no_fragmentflg = 1;
8532 				}
8533 			}
8534 		}
8535 		/* JRI: if dest is in PF state, do not send data to it */
8536 		if ((asoc->sctp_cmt_on_off > 0) &&
8537 		    (net != stcb->asoc.alternate) &&
8538 		    (net->dest_state & SCTP_ADDR_PF)) {
8539 			goto no_data_fill;
8540 		}
8541 		if (net->flight_size >= net->cwnd) {
8542 			goto no_data_fill;
8543 		}
8544 		if ((asoc->sctp_cmt_on_off > 0) &&
8545 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8546 		    (net->flight_size > max_rwnd_per_dest)) {
8547 			goto no_data_fill;
8548 		}
8549 		/*
8550 		 * We need a specific accounting for the usage of the send
8551 		 * buffer. We also need to check the number of messages per
8552 		 * net. For now, this is better than nothing and it disabled
8553 		 * by default...
8554 		 */
8555 		if ((asoc->sctp_cmt_on_off > 0) &&
8556 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8557 		    (max_send_per_dest > 0) &&
8558 		    (net->flight_size > max_send_per_dest)) {
8559 			goto no_data_fill;
8560 		}
8561 		/*********************/
8562 		/* Data transmission */
8563 		/*********************/
8564 		/*
8565 		 * if AUTH for DATA is required and no AUTH has been added
8566 		 * yet, account for this in the mtu now... if no data can be
8567 		 * bundled, this adjustment won't matter anyways since the
8568 		 * packet will be going out...
8569 		 */
8570 		data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8571 		    stcb->asoc.peer_auth_chunks);
8572 		if (data_auth_reqd && (auth == NULL)) {
8573 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8574 		}
8575 		/* now lets add any data within the MTU constraints */
8576 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8577 #ifdef INET
8578 		case AF_INET:
8579 			if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
8580 				omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
8581 			else
8582 				omtu = 0;
8583 			break;
8584 #endif
8585 #ifdef INET6
8586 		case AF_INET6:
8587 			if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
8588 				omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
8589 			else
8590 				omtu = 0;
8591 			break;
8592 #endif
8593 		default:
8594 			/* TSNH */
8595 			omtu = 0;
8596 			break;
8597 		}
8598 		if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) &&
8599 		    (skip_data_for_this_net == 0)) ||
8600 		    (cookie)) {
8601 			TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8602 				if (no_data_chunks) {
8603 					/* let only control go out */
8604 					*reason_code = 1;
8605 					break;
8606 				}
8607 				if (net->flight_size >= net->cwnd) {
8608 					/* skip this net, no room for data */
8609 					*reason_code = 2;
8610 					break;
8611 				}
8612 				if ((chk->whoTo != NULL) &&
8613 				    (chk->whoTo != net)) {
8614 					/* Don't send the chunk on this net */
8615 					continue;
8616 				}
8617 				if (asoc->sctp_cmt_on_off == 0) {
8618 					if ((asoc->alternate) &&
8619 					    (asoc->alternate != net) &&
8620 					    (chk->whoTo == NULL)) {
8621 						continue;
8622 					} else if ((net != asoc->primary_destination) &&
8623 						    (asoc->alternate == NULL) &&
8624 					    (chk->whoTo == NULL)) {
8625 						continue;
8626 					}
8627 				}
8628 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8629 					/*-
8630 					 * strange, we have a chunk that is
8631 					 * to big for its destination and
8632 					 * yet no fragment ok flag.
8633 					 * Something went wrong when the
8634 					 * PMTU changed...we did not mark
8635 					 * this chunk for some reason?? I
8636 					 * will fix it here by letting IP
8637 					 * fragment it for now and printing
8638 					 * a warning. This really should not
8639 					 * happen ...
8640 					 */
8641 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8642 					    chk->send_size, mtu);
8643 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8644 				}
8645 				if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8646 				    ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) {
8647 					struct sctp_data_chunk *dchkh;
8648 
8649 					dchkh = mtod(chk->data, struct sctp_data_chunk *);
8650 					dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8651 				}
8652 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8653 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8654 					/* ok we will add this one */
8655 
8656 					/*
8657 					 * Add an AUTH chunk, if chunk
8658 					 * requires it, save the offset into
8659 					 * the chain for AUTH
8660 					 */
8661 					if (data_auth_reqd) {
8662 						if (auth == NULL) {
8663 							outchain = sctp_add_auth_chunk(outchain,
8664 							    &endoutchain,
8665 							    &auth,
8666 							    &auth_offset,
8667 							    stcb,
8668 							    SCTP_DATA);
8669 							auth_keyid = chk->auth_keyid;
8670 							override_ok = 0;
8671 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8672 						} else if (override_ok) {
8673 							/*
8674 							 * use this data's
8675 							 * keyid
8676 							 */
8677 							auth_keyid = chk->auth_keyid;
8678 							override_ok = 0;
8679 						} else if (auth_keyid != chk->auth_keyid) {
8680 							/*
8681 							 * different keyid,
8682 							 * so done bundling
8683 							 */
8684 							break;
8685 						}
8686 					}
8687 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8688 					    chk->send_size, chk->copy_by_ref);
8689 					if (outchain == NULL) {
8690 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8691 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8692 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8693 						}
8694 						*reason_code = 3;
8695 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8696 						return (ENOMEM);
8697 					}
8698 					/* upate our MTU size */
8699 					/* Do clear IP_DF ? */
8700 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8701 						no_fragmentflg = 0;
8702 					}
8703 					/* unsigned subtraction of mtu */
8704 					if (mtu > chk->send_size)
8705 						mtu -= chk->send_size;
8706 					else
8707 						mtu = 0;
8708 					/* unsigned subtraction of r_mtu */
8709 					if (r_mtu > chk->send_size)
8710 						r_mtu -= chk->send_size;
8711 					else
8712 						r_mtu = 0;
8713 
8714 					to_out += chk->send_size;
8715 					if ((to_out > mx_mtu) && no_fragmentflg) {
8716 #ifdef INVARIANTS
8717 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8718 #else
8719 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8720 						    mx_mtu, to_out);
8721 #endif
8722 					}
8723 					chk->window_probe = 0;
8724 					data_list[bundle_at++] = chk;
8725 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8726 						break;
8727 					}
8728 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8729 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8730 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8731 						} else {
8732 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8733 						}
8734 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8735 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8736 							/*
8737 							 * Count number of
8738 							 * user msg's that
8739 							 * were fragmented
8740 							 * we do this by
8741 							 * counting when we
8742 							 * see a LAST
8743 							 * fragment only.
8744 							 */
8745 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8746 					}
8747 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8748 						if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8749 							data_list[0]->window_probe = 1;
8750 							net->window_probe = 1;
8751 						}
8752 						break;
8753 					}
8754 				} else {
8755 					/*
8756 					 * Must be sent in order of the
8757 					 * TSN's (on a network)
8758 					 */
8759 					break;
8760 				}
8761 			}	/* for (chunk gather loop for this net) */
8762 		}		/* if asoc.state OPEN */
8763 no_data_fill:
8764 		/* Is there something to send for this destination? */
8765 		if (outchain) {
8766 			/* We may need to start a control timer or two */
8767 			if (asconf) {
8768 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8769 				    stcb, net);
8770 				/*
8771 				 * do NOT clear the asconf flag as it is
8772 				 * used to do appropriate source address
8773 				 * selection.
8774 				 */
8775 			}
8776 			if (cookie) {
8777 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8778 				cookie = 0;
8779 			}
8780 			/* must start a send timer if data is being sent */
8781 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8782 				/*
8783 				 * no timer running on this destination
8784 				 * restart it.
8785 				 */
8786 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8787 			}
8788 			/* Now send it, if there is anything to send :> */
8789 			if ((error = sctp_lowlevel_chunk_output(inp,
8790 			    stcb,
8791 			    net,
8792 			    (struct sockaddr *)&net->ro._l_addr,
8793 			    outchain,
8794 			    auth_offset,
8795 			    auth,
8796 			    auth_keyid,
8797 			    no_fragmentflg,
8798 			    bundle_at,
8799 			    asconf,
8800 			    inp->sctp_lport, stcb->rport,
8801 			    htonl(stcb->asoc.peer_vtag),
8802 			    net->port, NULL,
8803 			    0, 0,
8804 			    so_locked))) {
8805 				/* error, we could not output */
8806 				if (error == ENOBUFS) {
8807 					SCTP_STAT_INCR(sctps_lowlevelerr);
8808 					asoc->ifp_had_enobuf = 1;
8809 				}
8810 				if (from_where == 0) {
8811 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
8812 				}
8813 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8814 				if (hbflag) {
8815 					if (*now_filled == 0) {
8816 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8817 						*now_filled = 1;
8818 						*now = net->last_sent_time;
8819 					} else {
8820 						net->last_sent_time = *now;
8821 					}
8822 					hbflag = 0;
8823 				}
8824 				if (error == EHOSTUNREACH) {
8825 					/*
8826 					 * Destination went unreachable
8827 					 * during this send
8828 					 */
8829 					sctp_move_chunks_from_net(stcb, net);
8830 				}
8831 				*reason_code = 6;
8832 				/*-
8833 				 * I add this line to be paranoid. As far as
8834 				 * I can tell the continue, takes us back to
8835 				 * the top of the for, but just to make sure
8836 				 * I will reset these again here.
8837 				 */
8838 				ctl_cnt = bundle_at = 0;
8839 				continue;	/* This takes us back to the
8840 						 * for() for the nets. */
8841 			} else {
8842 				asoc->ifp_had_enobuf = 0;
8843 			}
8844 			endoutchain = NULL;
8845 			auth = NULL;
8846 			auth_offset = 0;
8847 			if (bundle_at || hbflag) {
8848 				/* For data/asconf and hb set time */
8849 				if (*now_filled == 0) {
8850 					(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8851 					*now_filled = 1;
8852 					*now = net->last_sent_time;
8853 				} else {
8854 					net->last_sent_time = *now;
8855 				}
8856 			}
8857 			if (!no_out_cnt) {
8858 				*num_out += (ctl_cnt + bundle_at);
8859 			}
8860 			if (bundle_at) {
8861 				/* setup for a RTO measurement */
8862 				tsns_sent = data_list[0]->rec.data.TSN_seq;
8863 				/* fill time if not already filled */
8864 				if (*now_filled == 0) {
8865 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8866 					*now_filled = 1;
8867 					*now = asoc->time_last_sent;
8868 				} else {
8869 					asoc->time_last_sent = *now;
8870 				}
8871 				if (net->rto_needed) {
8872 					data_list[0]->do_rtt = 1;
8873 					net->rto_needed = 0;
8874 				}
8875 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8876 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8877 			}
8878 			if (one_chunk) {
8879 				break;
8880 			}
8881 		}
8882 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8883 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8884 		}
8885 	}
8886 	if (old_start_at == NULL) {
8887 		old_start_at = start_at;
8888 		start_at = TAILQ_FIRST(&asoc->nets);
8889 		if (old_start_at)
8890 			goto again_one_more_time;
8891 	}
8892 	/*
8893 	 * At the end there should be no NON timed chunks hanging on this
8894 	 * queue.
8895 	 */
8896 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8897 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8898 	}
8899 	if ((*num_out == 0) && (*reason_code == 0)) {
8900 		*reason_code = 4;
8901 	} else {
8902 		*reason_code = 5;
8903 	}
8904 	sctp_clean_up_ctl(stcb, asoc, so_locked);
8905 	return (0);
8906 }
8907 
8908 void
8909 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8910 {
8911 	/*-
8912 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8913 	 * the control chunk queue.
8914 	 */
8915 	struct sctp_chunkhdr *hdr;
8916 	struct sctp_tmit_chunk *chk;
8917 	struct mbuf *mat;
8918 
8919 	SCTP_TCB_LOCK_ASSERT(stcb);
8920 	sctp_alloc_a_chunk(stcb, chk);
8921 	if (chk == NULL) {
8922 		/* no memory */
8923 		sctp_m_freem(op_err);
8924 		return;
8925 	}
8926 	chk->copy_by_ref = 0;
8927 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT);
8928 	if (op_err == NULL) {
8929 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
8930 		return;
8931 	}
8932 	chk->send_size = 0;
8933 	mat = op_err;
8934 	while (mat != NULL) {
8935 		chk->send_size += SCTP_BUF_LEN(mat);
8936 		mat = SCTP_BUF_NEXT(mat);
8937 	}
8938 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8939 	chk->rec.chunk_id.can_take_data = 1;
8940 	chk->sent = SCTP_DATAGRAM_UNSENT;
8941 	chk->snd_count = 0;
8942 	chk->flags = 0;
8943 	chk->asoc = &stcb->asoc;
8944 	chk->data = op_err;
8945 	chk->whoTo = NULL;
8946 	hdr = mtod(op_err, struct sctp_chunkhdr *);
8947 	hdr->chunk_type = SCTP_OPERATION_ERROR;
8948 	hdr->chunk_flags = 0;
8949 	hdr->chunk_length = htons(chk->send_size);
8950 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
8951 	    chk,
8952 	    sctp_next);
8953 	chk->asoc->ctrl_queue_cnt++;
8954 }
8955 
8956 int
8957 sctp_send_cookie_echo(struct mbuf *m,
8958     int offset,
8959     struct sctp_tcb *stcb,
8960     struct sctp_nets *net)
8961 {
8962 	/*-
8963 	 * pull out the cookie and put it at the front of the control chunk
8964 	 * queue.
8965 	 */
8966 	int at;
8967 	struct mbuf *cookie;
8968 	struct sctp_paramhdr parm, *phdr;
8969 	struct sctp_chunkhdr *hdr;
8970 	struct sctp_tmit_chunk *chk;
8971 	uint16_t ptype, plen;
8972 
8973 	/* First find the cookie in the param area */
8974 	cookie = NULL;
8975 	at = offset + sizeof(struct sctp_init_chunk);
8976 
8977 	SCTP_TCB_LOCK_ASSERT(stcb);
8978 	do {
8979 		phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
8980 		if (phdr == NULL) {
8981 			return (-3);
8982 		}
8983 		ptype = ntohs(phdr->param_type);
8984 		plen = ntohs(phdr->param_length);
8985 		if (ptype == SCTP_STATE_COOKIE) {
8986 			int pad;
8987 
8988 			/* found the cookie */
8989 			if ((pad = (plen % 4))) {
8990 				plen += 4 - pad;
8991 			}
8992 			cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT);
8993 			if (cookie == NULL) {
8994 				/* No memory */
8995 				return (-2);
8996 			}
8997 #ifdef SCTP_MBUF_LOGGING
8998 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8999 				struct mbuf *mat;
9000 
9001 				for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) {
9002 					if (SCTP_BUF_IS_EXTENDED(mat)) {
9003 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9004 					}
9005 				}
9006 			}
9007 #endif
9008 			break;
9009 		}
9010 		at += SCTP_SIZE32(plen);
9011 	} while (phdr);
9012 	if (cookie == NULL) {
9013 		/* Did not find the cookie */
9014 		return (-3);
9015 	}
9016 	/* ok, we got the cookie lets change it into a cookie echo chunk */
9017 
9018 	/* first the change from param to cookie */
9019 	hdr = mtod(cookie, struct sctp_chunkhdr *);
9020 	hdr->chunk_type = SCTP_COOKIE_ECHO;
9021 	hdr->chunk_flags = 0;
9022 	/* get the chunk stuff now and place it in the FRONT of the queue */
9023 	sctp_alloc_a_chunk(stcb, chk);
9024 	if (chk == NULL) {
9025 		/* no memory */
9026 		sctp_m_freem(cookie);
9027 		return (-5);
9028 	}
9029 	chk->copy_by_ref = 0;
9030 	chk->send_size = plen;
9031 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
9032 	chk->rec.chunk_id.can_take_data = 0;
9033 	chk->sent = SCTP_DATAGRAM_UNSENT;
9034 	chk->snd_count = 0;
9035 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9036 	chk->asoc = &stcb->asoc;
9037 	chk->data = cookie;
9038 	chk->whoTo = net;
9039 	atomic_add_int(&chk->whoTo->ref_count, 1);
9040 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
9041 	chk->asoc->ctrl_queue_cnt++;
9042 	return (0);
9043 }
9044 
9045 void
9046 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
9047     struct mbuf *m,
9048     int offset,
9049     int chk_length,
9050     struct sctp_nets *net)
9051 {
9052 	/*
9053 	 * take a HB request and make it into a HB ack and send it.
9054 	 */
9055 	struct mbuf *outchain;
9056 	struct sctp_chunkhdr *chdr;
9057 	struct sctp_tmit_chunk *chk;
9058 
9059 
9060 	if (net == NULL)
9061 		/* must have a net pointer */
9062 		return;
9063 
9064 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT);
9065 	if (outchain == NULL) {
9066 		/* gak out of memory */
9067 		return;
9068 	}
9069 #ifdef SCTP_MBUF_LOGGING
9070 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9071 		struct mbuf *mat;
9072 
9073 		for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) {
9074 			if (SCTP_BUF_IS_EXTENDED(mat)) {
9075 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9076 			}
9077 		}
9078 	}
9079 #endif
9080 	chdr = mtod(outchain, struct sctp_chunkhdr *);
9081 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
9082 	chdr->chunk_flags = 0;
9083 	if (chk_length % 4) {
9084 		/* need pad */
9085 		uint32_t cpthis = 0;
9086 		int padlen;
9087 
9088 		padlen = 4 - (chk_length % 4);
9089 		m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
9090 	}
9091 	sctp_alloc_a_chunk(stcb, chk);
9092 	if (chk == NULL) {
9093 		/* no memory */
9094 		sctp_m_freem(outchain);
9095 		return;
9096 	}
9097 	chk->copy_by_ref = 0;
9098 	chk->send_size = chk_length;
9099 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
9100 	chk->rec.chunk_id.can_take_data = 1;
9101 	chk->sent = SCTP_DATAGRAM_UNSENT;
9102 	chk->snd_count = 0;
9103 	chk->flags = 0;
9104 	chk->asoc = &stcb->asoc;
9105 	chk->data = outchain;
9106 	chk->whoTo = net;
9107 	atomic_add_int(&chk->whoTo->ref_count, 1);
9108 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9109 	chk->asoc->ctrl_queue_cnt++;
9110 }
9111 
9112 void
9113 sctp_send_cookie_ack(struct sctp_tcb *stcb)
9114 {
9115 	/* formulate and queue a cookie-ack back to sender */
9116 	struct mbuf *cookie_ack;
9117 	struct sctp_chunkhdr *hdr;
9118 	struct sctp_tmit_chunk *chk;
9119 
9120 	SCTP_TCB_LOCK_ASSERT(stcb);
9121 
9122 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
9123 	if (cookie_ack == NULL) {
9124 		/* no mbuf's */
9125 		return;
9126 	}
9127 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
9128 	sctp_alloc_a_chunk(stcb, chk);
9129 	if (chk == NULL) {
9130 		/* no memory */
9131 		sctp_m_freem(cookie_ack);
9132 		return;
9133 	}
9134 	chk->copy_by_ref = 0;
9135 	chk->send_size = sizeof(struct sctp_chunkhdr);
9136 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
9137 	chk->rec.chunk_id.can_take_data = 1;
9138 	chk->sent = SCTP_DATAGRAM_UNSENT;
9139 	chk->snd_count = 0;
9140 	chk->flags = 0;
9141 	chk->asoc = &stcb->asoc;
9142 	chk->data = cookie_ack;
9143 	if (chk->asoc->last_control_chunk_from != NULL) {
9144 		chk->whoTo = chk->asoc->last_control_chunk_from;
9145 		atomic_add_int(&chk->whoTo->ref_count, 1);
9146 	} else {
9147 		chk->whoTo = NULL;
9148 	}
9149 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
9150 	hdr->chunk_type = SCTP_COOKIE_ACK;
9151 	hdr->chunk_flags = 0;
9152 	hdr->chunk_length = htons(chk->send_size);
9153 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
9154 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9155 	chk->asoc->ctrl_queue_cnt++;
9156 	return;
9157 }
9158 
9159 
9160 void
9161 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
9162 {
9163 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
9164 	struct mbuf *m_shutdown_ack;
9165 	struct sctp_shutdown_ack_chunk *ack_cp;
9166 	struct sctp_tmit_chunk *chk;
9167 
9168 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9169 	if (m_shutdown_ack == NULL) {
9170 		/* no mbuf's */
9171 		return;
9172 	}
9173 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9174 	sctp_alloc_a_chunk(stcb, chk);
9175 	if (chk == NULL) {
9176 		/* no memory */
9177 		sctp_m_freem(m_shutdown_ack);
9178 		return;
9179 	}
9180 	chk->copy_by_ref = 0;
9181 	chk->send_size = sizeof(struct sctp_chunkhdr);
9182 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9183 	chk->rec.chunk_id.can_take_data = 1;
9184 	chk->sent = SCTP_DATAGRAM_UNSENT;
9185 	chk->snd_count = 0;
9186 	chk->flags = 0;
9187 	chk->asoc = &stcb->asoc;
9188 	chk->data = m_shutdown_ack;
9189 	chk->whoTo = net;
9190 	if (chk->whoTo) {
9191 		atomic_add_int(&chk->whoTo->ref_count, 1);
9192 	}
9193 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9194 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9195 	ack_cp->ch.chunk_flags = 0;
9196 	ack_cp->ch.chunk_length = htons(chk->send_size);
9197 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9198 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9199 	chk->asoc->ctrl_queue_cnt++;
9200 	return;
9201 }
9202 
9203 void
9204 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9205 {
9206 	/* formulate and queue a SHUTDOWN to the sender */
9207 	struct mbuf *m_shutdown;
9208 	struct sctp_shutdown_chunk *shutdown_cp;
9209 	struct sctp_tmit_chunk *chk;
9210 
9211 	m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9212 	if (m_shutdown == NULL) {
9213 		/* no mbuf's */
9214 		return;
9215 	}
9216 	SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9217 	sctp_alloc_a_chunk(stcb, chk);
9218 	if (chk == NULL) {
9219 		/* no memory */
9220 		sctp_m_freem(m_shutdown);
9221 		return;
9222 	}
9223 	chk->copy_by_ref = 0;
9224 	chk->send_size = sizeof(struct sctp_shutdown_chunk);
9225 	chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9226 	chk->rec.chunk_id.can_take_data = 1;
9227 	chk->sent = SCTP_DATAGRAM_UNSENT;
9228 	chk->snd_count = 0;
9229 	chk->flags = 0;
9230 	chk->asoc = &stcb->asoc;
9231 	chk->data = m_shutdown;
9232 	chk->whoTo = net;
9233 	if (chk->whoTo) {
9234 		atomic_add_int(&chk->whoTo->ref_count, 1);
9235 	}
9236 	shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9237 	shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9238 	shutdown_cp->ch.chunk_flags = 0;
9239 	shutdown_cp->ch.chunk_length = htons(chk->send_size);
9240 	shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9241 	SCTP_BUF_LEN(m_shutdown) = 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_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9249 {
9250 	/*
9251 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
9252 	 * should be queued on the assoc queue.
9253 	 */
9254 	struct sctp_tmit_chunk *chk;
9255 	struct mbuf *m_asconf;
9256 	int len;
9257 
9258 	SCTP_TCB_LOCK_ASSERT(stcb);
9259 
9260 	if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9261 	    (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9262 		/* can't send a new one if there is one in flight already */
9263 		return;
9264 	}
9265 	/* compose an ASCONF chunk, maximum length is PMTU */
9266 	m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9267 	if (m_asconf == NULL) {
9268 		return;
9269 	}
9270 	sctp_alloc_a_chunk(stcb, chk);
9271 	if (chk == NULL) {
9272 		/* no memory */
9273 		sctp_m_freem(m_asconf);
9274 		return;
9275 	}
9276 	chk->copy_by_ref = 0;
9277 	chk->data = m_asconf;
9278 	chk->send_size = len;
9279 	chk->rec.chunk_id.id = SCTP_ASCONF;
9280 	chk->rec.chunk_id.can_take_data = 0;
9281 	chk->sent = SCTP_DATAGRAM_UNSENT;
9282 	chk->snd_count = 0;
9283 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9284 	chk->asoc = &stcb->asoc;
9285 	chk->whoTo = net;
9286 	if (chk->whoTo) {
9287 		atomic_add_int(&chk->whoTo->ref_count, 1);
9288 	}
9289 	TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9290 	chk->asoc->ctrl_queue_cnt++;
9291 	return;
9292 }
9293 
9294 void
9295 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9296 {
9297 	/*
9298 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
9299 	 * must be stored in the tcb.
9300 	 */
9301 	struct sctp_tmit_chunk *chk;
9302 	struct sctp_asconf_ack *ack, *latest_ack;
9303 	struct mbuf *m_ack;
9304 	struct sctp_nets *net = NULL;
9305 
9306 	SCTP_TCB_LOCK_ASSERT(stcb);
9307 	/* Get the latest ASCONF-ACK */
9308 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9309 	if (latest_ack == NULL) {
9310 		return;
9311 	}
9312 	if (latest_ack->last_sent_to != NULL &&
9313 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9314 		/* we're doing a retransmission */
9315 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9316 		if (net == NULL) {
9317 			/* no alternate */
9318 			if (stcb->asoc.last_control_chunk_from == NULL) {
9319 				if (stcb->asoc.alternate) {
9320 					net = stcb->asoc.alternate;
9321 				} else {
9322 					net = stcb->asoc.primary_destination;
9323 				}
9324 			} else {
9325 				net = stcb->asoc.last_control_chunk_from;
9326 			}
9327 		}
9328 	} else {
9329 		/* normal case */
9330 		if (stcb->asoc.last_control_chunk_from == NULL) {
9331 			if (stcb->asoc.alternate) {
9332 				net = stcb->asoc.alternate;
9333 			} else {
9334 				net = stcb->asoc.primary_destination;
9335 			}
9336 		} else {
9337 			net = stcb->asoc.last_control_chunk_from;
9338 		}
9339 	}
9340 	latest_ack->last_sent_to = net;
9341 
9342 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9343 		if (ack->data == NULL) {
9344 			continue;
9345 		}
9346 		/* copy the asconf_ack */
9347 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9348 		if (m_ack == NULL) {
9349 			/* couldn't copy it */
9350 			return;
9351 		}
9352 #ifdef SCTP_MBUF_LOGGING
9353 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9354 			struct mbuf *mat;
9355 
9356 			for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9357 				if (SCTP_BUF_IS_EXTENDED(mat)) {
9358 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9359 				}
9360 			}
9361 		}
9362 #endif
9363 
9364 		sctp_alloc_a_chunk(stcb, chk);
9365 		if (chk == NULL) {
9366 			/* no memory */
9367 			if (m_ack)
9368 				sctp_m_freem(m_ack);
9369 			return;
9370 		}
9371 		chk->copy_by_ref = 0;
9372 
9373 		chk->whoTo = net;
9374 		if (chk->whoTo) {
9375 			atomic_add_int(&chk->whoTo->ref_count, 1);
9376 		}
9377 		chk->data = m_ack;
9378 		chk->send_size = 0;
9379 		/* Get size */
9380 		chk->send_size = ack->len;
9381 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9382 		chk->rec.chunk_id.can_take_data = 1;
9383 		chk->sent = SCTP_DATAGRAM_UNSENT;
9384 		chk->snd_count = 0;
9385 		chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;	/* XXX */
9386 		chk->asoc = &stcb->asoc;
9387 
9388 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9389 		chk->asoc->ctrl_queue_cnt++;
9390 	}
9391 	return;
9392 }
9393 
9394 
9395 static int
9396 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9397     struct sctp_tcb *stcb,
9398     struct sctp_association *asoc,
9399     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
9400 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9401     SCTP_UNUSED
9402 #endif
9403 )
9404 {
9405 	/*-
9406 	 * send out one MTU of retransmission. If fast_retransmit is
9407 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
9408 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
9409 	 * retransmit them by themselves.
9410 	 *
9411 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
9412 	 * marked for resend and bundle them all together (up to a MTU of
9413 	 * destination). The address to send to should have been
9414 	 * selected/changed where the retransmission was marked (i.e. in FR
9415 	 * or t3-timeout routines).
9416 	 */
9417 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9418 	struct sctp_tmit_chunk *chk, *fwd;
9419 	struct mbuf *m, *endofchain;
9420 	struct sctp_nets *net = NULL;
9421 	uint32_t tsns_sent = 0;
9422 	int no_fragmentflg, bundle_at, cnt_thru;
9423 	unsigned int mtu;
9424 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9425 	struct sctp_auth_chunk *auth = NULL;
9426 	uint32_t auth_offset = 0;
9427 	uint16_t auth_keyid;
9428 	int override_ok = 1;
9429 	int data_auth_reqd = 0;
9430 	uint32_t dmtu = 0;
9431 
9432 	SCTP_TCB_LOCK_ASSERT(stcb);
9433 	tmr_started = ctl_cnt = bundle_at = error = 0;
9434 	no_fragmentflg = 1;
9435 	fwd_tsn = 0;
9436 	*cnt_out = 0;
9437 	fwd = NULL;
9438 	endofchain = m = NULL;
9439 	auth_keyid = stcb->asoc.authinfo.active_keyid;
9440 #ifdef SCTP_AUDITING_ENABLED
9441 	sctp_audit_log(0xC3, 1);
9442 #endif
9443 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9444 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
9445 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9446 		    asoc->sent_queue_retran_cnt);
9447 		asoc->sent_queue_cnt = 0;
9448 		asoc->sent_queue_cnt_removeable = 0;
9449 		/* send back 0/0 so we enter normal transmission */
9450 		*cnt_out = 0;
9451 		return (0);
9452 	}
9453 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9454 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9455 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9456 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9457 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
9458 				continue;
9459 			}
9460 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9461 				if (chk != asoc->str_reset) {
9462 					/*
9463 					 * not eligible for retran if its
9464 					 * not ours
9465 					 */
9466 					continue;
9467 				}
9468 			}
9469 			ctl_cnt++;
9470 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9471 				fwd_tsn = 1;
9472 			}
9473 			/*
9474 			 * Add an AUTH chunk, if chunk requires it save the
9475 			 * offset into the chain for AUTH
9476 			 */
9477 			if ((auth == NULL) &&
9478 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9479 			    stcb->asoc.peer_auth_chunks))) {
9480 				m = sctp_add_auth_chunk(m, &endofchain,
9481 				    &auth, &auth_offset,
9482 				    stcb,
9483 				    chk->rec.chunk_id.id);
9484 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9485 			}
9486 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9487 			break;
9488 		}
9489 	}
9490 	one_chunk = 0;
9491 	cnt_thru = 0;
9492 	/* do we have control chunks to retransmit? */
9493 	if (m != NULL) {
9494 		/* Start a timer no matter if we suceed or fail */
9495 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9496 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9497 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF)
9498 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9499 		chk->snd_count++;	/* update our count */
9500 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9501 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9502 		    auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9503 		    no_fragmentflg, 0, 0,
9504 		    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9505 		    chk->whoTo->port, NULL,
9506 		    0, 0,
9507 		    so_locked))) {
9508 			SCTP_STAT_INCR(sctps_lowlevelerr);
9509 			return (error);
9510 		}
9511 		endofchain = NULL;
9512 		auth = NULL;
9513 		auth_offset = 0;
9514 		/*
9515 		 * We don't want to mark the net->sent time here since this
9516 		 * we use this for HB and retrans cannot measure RTT
9517 		 */
9518 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9519 		*cnt_out += 1;
9520 		chk->sent = SCTP_DATAGRAM_SENT;
9521 		sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9522 		if (fwd_tsn == 0) {
9523 			return (0);
9524 		} else {
9525 			/* Clean up the fwd-tsn list */
9526 			sctp_clean_up_ctl(stcb, asoc, so_locked);
9527 			return (0);
9528 		}
9529 	}
9530 	/*
9531 	 * Ok, it is just data retransmission we need to do or that and a
9532 	 * fwd-tsn with it all.
9533 	 */
9534 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
9535 		return (SCTP_RETRAN_DONE);
9536 	}
9537 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
9538 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
9539 		/* not yet open, resend the cookie and that is it */
9540 		return (1);
9541 	}
9542 #ifdef SCTP_AUDITING_ENABLED
9543 	sctp_auditing(20, inp, stcb, NULL);
9544 #endif
9545 	data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9546 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9547 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
9548 			/* No, not sent to this net or not ready for rtx */
9549 			continue;
9550 		}
9551 		if (chk->data == NULL) {
9552 			SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9553 			    chk->rec.data.TSN_seq, chk->snd_count, chk->sent);
9554 			continue;
9555 		}
9556 		if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9557 		    (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9558 			/* Gak, we have exceeded max unlucky retran, abort! */
9559 			SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
9560 			    chk->snd_count,
9561 			    SCTP_BASE_SYSCTL(sctp_max_retran_chunk));
9562 			atomic_add_int(&stcb->asoc.refcnt, 1);
9563 			sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked);
9564 			SCTP_TCB_LOCK(stcb);
9565 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
9566 			return (SCTP_RETRAN_EXIT);
9567 		}
9568 		/* pick up the net */
9569 		net = chk->whoTo;
9570 		switch (net->ro._l_addr.sa.sa_family) {
9571 #ifdef INET
9572 		case AF_INET:
9573 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9574 			break;
9575 #endif
9576 #ifdef INET6
9577 		case AF_INET6:
9578 			mtu = net->mtu - SCTP_MIN_OVERHEAD;
9579 			break;
9580 #endif
9581 		default:
9582 			/* TSNH */
9583 			mtu = net->mtu;
9584 			break;
9585 		}
9586 
9587 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9588 			/* No room in peers rwnd */
9589 			uint32_t tsn;
9590 
9591 			tsn = asoc->last_acked_seq + 1;
9592 			if (tsn == chk->rec.data.TSN_seq) {
9593 				/*
9594 				 * we make a special exception for this
9595 				 * case. The peer has no rwnd but is missing
9596 				 * the lowest chunk.. which is probably what
9597 				 * is holding up the rwnd.
9598 				 */
9599 				goto one_chunk_around;
9600 			}
9601 			return (1);
9602 		}
9603 one_chunk_around:
9604 		if (asoc->peers_rwnd < mtu) {
9605 			one_chunk = 1;
9606 			if ((asoc->peers_rwnd == 0) &&
9607 			    (asoc->total_flight == 0)) {
9608 				chk->window_probe = 1;
9609 				chk->whoTo->window_probe = 1;
9610 			}
9611 		}
9612 #ifdef SCTP_AUDITING_ENABLED
9613 		sctp_audit_log(0xC3, 2);
9614 #endif
9615 		bundle_at = 0;
9616 		m = NULL;
9617 		net->fast_retran_ip = 0;
9618 		if (chk->rec.data.doing_fast_retransmit == 0) {
9619 			/*
9620 			 * if no FR in progress skip destination that have
9621 			 * flight_size > cwnd.
9622 			 */
9623 			if (net->flight_size >= net->cwnd) {
9624 				continue;
9625 			}
9626 		} else {
9627 			/*
9628 			 * Mark the destination net to have FR recovery
9629 			 * limits put on it.
9630 			 */
9631 			*fr_done = 1;
9632 			net->fast_retran_ip = 1;
9633 		}
9634 
9635 		/*
9636 		 * if no AUTH is yet included and this chunk requires it,
9637 		 * make sure to account for it.  We don't apply the size
9638 		 * until the AUTH chunk is actually added below in case
9639 		 * there is no room for this chunk.
9640 		 */
9641 		if (data_auth_reqd && (auth == NULL)) {
9642 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9643 		} else
9644 			dmtu = 0;
9645 
9646 		if ((chk->send_size <= (mtu - dmtu)) ||
9647 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9648 			/* ok we will add this one */
9649 			if (data_auth_reqd) {
9650 				if (auth == NULL) {
9651 					m = sctp_add_auth_chunk(m,
9652 					    &endofchain,
9653 					    &auth,
9654 					    &auth_offset,
9655 					    stcb,
9656 					    SCTP_DATA);
9657 					auth_keyid = chk->auth_keyid;
9658 					override_ok = 0;
9659 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9660 				} else if (override_ok) {
9661 					auth_keyid = chk->auth_keyid;
9662 					override_ok = 0;
9663 				} else if (chk->auth_keyid != auth_keyid) {
9664 					/* different keyid, so done bundling */
9665 					break;
9666 				}
9667 			}
9668 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9669 			if (m == NULL) {
9670 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9671 				return (ENOMEM);
9672 			}
9673 			/* Do clear IP_DF ? */
9674 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9675 				no_fragmentflg = 0;
9676 			}
9677 			/* upate our MTU size */
9678 			if (mtu > (chk->send_size + dmtu))
9679 				mtu -= (chk->send_size + dmtu);
9680 			else
9681 				mtu = 0;
9682 			data_list[bundle_at++] = chk;
9683 			if (one_chunk && (asoc->total_flight <= 0)) {
9684 				SCTP_STAT_INCR(sctps_windowprobed);
9685 			}
9686 		}
9687 		if (one_chunk == 0) {
9688 			/*
9689 			 * now are there anymore forward from chk to pick
9690 			 * up?
9691 			 */
9692 			for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9693 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9694 					/* Nope, not for retran */
9695 					continue;
9696 				}
9697 				if (fwd->whoTo != net) {
9698 					/* Nope, not the net in question */
9699 					continue;
9700 				}
9701 				if (data_auth_reqd && (auth == NULL)) {
9702 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9703 				} else
9704 					dmtu = 0;
9705 				if (fwd->send_size <= (mtu - dmtu)) {
9706 					if (data_auth_reqd) {
9707 						if (auth == NULL) {
9708 							m = sctp_add_auth_chunk(m,
9709 							    &endofchain,
9710 							    &auth,
9711 							    &auth_offset,
9712 							    stcb,
9713 							    SCTP_DATA);
9714 							auth_keyid = fwd->auth_keyid;
9715 							override_ok = 0;
9716 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9717 						} else if (override_ok) {
9718 							auth_keyid = fwd->auth_keyid;
9719 							override_ok = 0;
9720 						} else if (fwd->auth_keyid != auth_keyid) {
9721 							/*
9722 							 * different keyid,
9723 							 * so done bundling
9724 							 */
9725 							break;
9726 						}
9727 					}
9728 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9729 					if (m == NULL) {
9730 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9731 						return (ENOMEM);
9732 					}
9733 					/* Do clear IP_DF ? */
9734 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9735 						no_fragmentflg = 0;
9736 					}
9737 					/* upate our MTU size */
9738 					if (mtu > (fwd->send_size + dmtu))
9739 						mtu -= (fwd->send_size + dmtu);
9740 					else
9741 						mtu = 0;
9742 					data_list[bundle_at++] = fwd;
9743 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9744 						break;
9745 					}
9746 				} else {
9747 					/* can't fit so we are done */
9748 					break;
9749 				}
9750 			}
9751 		}
9752 		/* Is there something to send for this destination? */
9753 		if (m) {
9754 			/*
9755 			 * No matter if we fail/or suceed we should start a
9756 			 * timer. A failure is like a lost IP packet :-)
9757 			 */
9758 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9759 				/*
9760 				 * no timer running on this destination
9761 				 * restart it.
9762 				 */
9763 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9764 				tmr_started = 1;
9765 			}
9766 			/* Now lets send it, if there is anything to send :> */
9767 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9768 			    (struct sockaddr *)&net->ro._l_addr, m,
9769 			    auth_offset, auth, auth_keyid,
9770 			    no_fragmentflg, 0, 0,
9771 			    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9772 			    net->port, NULL,
9773 			    0, 0,
9774 			    so_locked))) {
9775 				/* error, we could not output */
9776 				SCTP_STAT_INCR(sctps_lowlevelerr);
9777 				return (error);
9778 			}
9779 			endofchain = NULL;
9780 			auth = NULL;
9781 			auth_offset = 0;
9782 			/* For HB's */
9783 			/*
9784 			 * We don't want to mark the net->sent time here
9785 			 * since this we use this for HB and retrans cannot
9786 			 * measure RTT
9787 			 */
9788 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9789 
9790 			/* For auto-close */
9791 			cnt_thru++;
9792 			if (*now_filled == 0) {
9793 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9794 				*now = asoc->time_last_sent;
9795 				*now_filled = 1;
9796 			} else {
9797 				asoc->time_last_sent = *now;
9798 			}
9799 			*cnt_out += bundle_at;
9800 #ifdef SCTP_AUDITING_ENABLED
9801 			sctp_audit_log(0xC4, bundle_at);
9802 #endif
9803 			if (bundle_at) {
9804 				tsns_sent = data_list[0]->rec.data.TSN_seq;
9805 			}
9806 			for (i = 0; i < bundle_at; i++) {
9807 				SCTP_STAT_INCR(sctps_sendretransdata);
9808 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
9809 				/*
9810 				 * When we have a revoked data, and we
9811 				 * retransmit it, then we clear the revoked
9812 				 * flag since this flag dictates if we
9813 				 * subtracted from the fs
9814 				 */
9815 				if (data_list[i]->rec.data.chunk_was_revoked) {
9816 					/* Deflate the cwnd */
9817 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9818 					data_list[i]->rec.data.chunk_was_revoked = 0;
9819 				}
9820 				data_list[i]->snd_count++;
9821 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9822 				/* record the time */
9823 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
9824 				if (data_list[i]->book_size_scale) {
9825 					/*
9826 					 * need to double the book size on
9827 					 * this one
9828 					 */
9829 					data_list[i]->book_size_scale = 0;
9830 					/*
9831 					 * Since we double the booksize, we
9832 					 * must also double the output queue
9833 					 * size, since this get shrunk when
9834 					 * we free by this amount.
9835 					 */
9836 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9837 					data_list[i]->book_size *= 2;
9838 
9839 
9840 				} else {
9841 					if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9842 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9843 						    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9844 					}
9845 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9846 					    (uint32_t) (data_list[i]->send_size +
9847 					    SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9848 				}
9849 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9850 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9851 					    data_list[i]->whoTo->flight_size,
9852 					    data_list[i]->book_size,
9853 					    (uintptr_t) data_list[i]->whoTo,
9854 					    data_list[i]->rec.data.TSN_seq);
9855 				}
9856 				sctp_flight_size_increase(data_list[i]);
9857 				sctp_total_flight_increase(stcb, data_list[i]);
9858 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9859 					/* SWS sender side engages */
9860 					asoc->peers_rwnd = 0;
9861 				}
9862 				if ((i == 0) &&
9863 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
9864 					SCTP_STAT_INCR(sctps_sendfastretrans);
9865 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9866 					    (tmr_started == 0)) {
9867 						/*-
9868 						 * ok we just fast-retrans'd
9869 						 * the lowest TSN, i.e the
9870 						 * first on the list. In
9871 						 * this case we want to give
9872 						 * some more time to get a
9873 						 * SACK back without a
9874 						 * t3-expiring.
9875 						 */
9876 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9877 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
9878 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9879 					}
9880 				}
9881 			}
9882 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9883 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9884 			}
9885 #ifdef SCTP_AUDITING_ENABLED
9886 			sctp_auditing(21, inp, stcb, NULL);
9887 #endif
9888 		} else {
9889 			/* None will fit */
9890 			return (1);
9891 		}
9892 		if (asoc->sent_queue_retran_cnt <= 0) {
9893 			/* all done we have no more to retran */
9894 			asoc->sent_queue_retran_cnt = 0;
9895 			break;
9896 		}
9897 		if (one_chunk) {
9898 			/* No more room in rwnd */
9899 			return (1);
9900 		}
9901 		/* stop the for loop here. we sent out a packet */
9902 		break;
9903 	}
9904 	return (0);
9905 }
9906 
9907 static void
9908 sctp_timer_validation(struct sctp_inpcb *inp,
9909     struct sctp_tcb *stcb,
9910     struct sctp_association *asoc)
9911 {
9912 	struct sctp_nets *net;
9913 
9914 	/* Validate that a timer is running somewhere */
9915 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9916 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9917 			/* Here is a timer */
9918 			return;
9919 		}
9920 	}
9921 	SCTP_TCB_LOCK_ASSERT(stcb);
9922 	/* Gak, we did not have a timer somewhere */
9923 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
9924 	if (asoc->alternate) {
9925 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
9926 	} else {
9927 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
9928 	}
9929 	return;
9930 }
9931 
9932 void
9933 sctp_chunk_output(struct sctp_inpcb *inp,
9934     struct sctp_tcb *stcb,
9935     int from_where,
9936     int so_locked
9937 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9938     SCTP_UNUSED
9939 #endif
9940 )
9941 {
9942 	/*-
9943 	 * Ok this is the generic chunk service queue. we must do the
9944 	 * following:
9945 	 * - See if there are retransmits pending, if so we must
9946 	 *   do these first.
9947 	 * - Service the stream queue that is next, moving any
9948 	 *   message (note I must get a complete message i.e.
9949 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
9950 	 *   TSN's
9951 	 * - Check to see if the cwnd/rwnd allows any output, if so we
9952 	 *   go ahead and fomulate and send the low level chunks. Making sure
9953 	 *   to combine any control in the control chunk queue also.
9954 	 */
9955 	struct sctp_association *asoc;
9956 	struct sctp_nets *net;
9957 	int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0;
9958 	unsigned int burst_cnt = 0;
9959 	struct timeval now;
9960 	int now_filled = 0;
9961 	int nagle_on;
9962 	int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
9963 	int un_sent = 0;
9964 	int fr_done;
9965 	unsigned int tot_frs = 0;
9966 
9967 	asoc = &stcb->asoc;
9968 	/* The Nagle algorithm is only applied when handling a send call. */
9969 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
9970 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
9971 			nagle_on = 0;
9972 		} else {
9973 			nagle_on = 1;
9974 		}
9975 	} else {
9976 		nagle_on = 0;
9977 	}
9978 	SCTP_TCB_LOCK_ASSERT(stcb);
9979 
9980 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
9981 
9982 	if ((un_sent <= 0) &&
9983 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
9984 	    (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
9985 	    (asoc->sent_queue_retran_cnt == 0)) {
9986 		/* Nothing to do unless there is something to be sent left */
9987 		return;
9988 	}
9989 	/*
9990 	 * Do we have something to send, data or control AND a sack timer
9991 	 * running, if so piggy-back the sack.
9992 	 */
9993 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
9994 		sctp_send_sack(stcb, so_locked);
9995 		(void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
9996 	}
9997 	while (asoc->sent_queue_retran_cnt) {
9998 		/*-
9999 		 * Ok, it is retransmission time only, we send out only ONE
10000 		 * packet with a single call off to the retran code.
10001 		 */
10002 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
10003 			/*-
10004 			 * Special hook for handling cookiess discarded
10005 			 * by peer that carried data. Send cookie-ack only
10006 			 * and then the next call with get the retran's.
10007 			 */
10008 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10009 			    from_where,
10010 			    &now, &now_filled, frag_point, so_locked);
10011 			return;
10012 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
10013 			/* if its not from a HB then do it */
10014 			fr_done = 0;
10015 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
10016 			if (fr_done) {
10017 				tot_frs++;
10018 			}
10019 		} else {
10020 			/*
10021 			 * its from any other place, we don't allow retran
10022 			 * output (only control)
10023 			 */
10024 			ret = 1;
10025 		}
10026 		if (ret > 0) {
10027 			/* Can't send anymore */
10028 			/*-
10029 			 * now lets push out control by calling med-level
10030 			 * output once. this assures that we WILL send HB's
10031 			 * if queued too.
10032 			 */
10033 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10034 			    from_where,
10035 			    &now, &now_filled, frag_point, so_locked);
10036 #ifdef SCTP_AUDITING_ENABLED
10037 			sctp_auditing(8, inp, stcb, NULL);
10038 #endif
10039 			sctp_timer_validation(inp, stcb, asoc);
10040 			return;
10041 		}
10042 		if (ret < 0) {
10043 			/*-
10044 			 * The count was off.. retran is not happening so do
10045 			 * the normal retransmission.
10046 			 */
10047 #ifdef SCTP_AUDITING_ENABLED
10048 			sctp_auditing(9, inp, stcb, NULL);
10049 #endif
10050 			if (ret == SCTP_RETRAN_EXIT) {
10051 				return;
10052 			}
10053 			break;
10054 		}
10055 		if (from_where == SCTP_OUTPUT_FROM_T3) {
10056 			/* Only one transmission allowed out of a timeout */
10057 #ifdef SCTP_AUDITING_ENABLED
10058 			sctp_auditing(10, inp, stcb, NULL);
10059 #endif
10060 			/* Push out any control */
10061 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
10062 			    &now, &now_filled, frag_point, so_locked);
10063 			return;
10064 		}
10065 		if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
10066 			/* Hit FR burst limit */
10067 			return;
10068 		}
10069 		if ((num_out == 0) && (ret == 0)) {
10070 			/* No more retrans to send */
10071 			break;
10072 		}
10073 	}
10074 #ifdef SCTP_AUDITING_ENABLED
10075 	sctp_auditing(12, inp, stcb, NULL);
10076 #endif
10077 	/* Check for bad destinations, if they exist move chunks around. */
10078 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
10079 		if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
10080 			/*-
10081 			 * if possible move things off of this address we
10082 			 * still may send below due to the dormant state but
10083 			 * we try to find an alternate address to send to
10084 			 * and if we have one we move all queued data on the
10085 			 * out wheel to this alternate address.
10086 			 */
10087 			if (net->ref_count > 1)
10088 				sctp_move_chunks_from_net(stcb, net);
10089 		} else {
10090 			/*-
10091 			 * if ((asoc->sat_network) || (net->addr_is_local))
10092 			 * { burst_limit = asoc->max_burst *
10093 			 * SCTP_SAT_NETWORK_BURST_INCR; }
10094 			 */
10095 			if (asoc->max_burst > 0) {
10096 				if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
10097 					if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
10098 						/*
10099 						 * JRS - Use the congestion
10100 						 * control given in the
10101 						 * congestion control module
10102 						 */
10103 						asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
10104 						if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10105 							sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
10106 						}
10107 						SCTP_STAT_INCR(sctps_maxburstqueued);
10108 					}
10109 					net->fast_retran_ip = 0;
10110 				} else {
10111 					if (net->flight_size == 0) {
10112 						/*
10113 						 * Should be decaying the
10114 						 * cwnd here
10115 						 */
10116 						;
10117 					}
10118 				}
10119 			}
10120 		}
10121 
10122 	}
10123 	burst_cnt = 0;
10124 	do {
10125 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
10126 		    &reason_code, 0, from_where,
10127 		    &now, &now_filled, frag_point, so_locked);
10128 		if (error) {
10129 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
10130 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10131 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
10132 			}
10133 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10134 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
10135 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
10136 			}
10137 			break;
10138 		}
10139 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
10140 
10141 		tot_out += num_out;
10142 		burst_cnt++;
10143 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10144 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
10145 			if (num_out == 0) {
10146 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
10147 			}
10148 		}
10149 		if (nagle_on) {
10150 			/*
10151 			 * When the Nagle algorithm is used, look at how
10152 			 * much is unsent, then if its smaller than an MTU
10153 			 * and we have data in flight we stop, except if we
10154 			 * are handling a fragmented user message.
10155 			 */
10156 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
10157 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
10158 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
10159 			    (stcb->asoc.total_flight > 0) &&
10160 			    ((stcb->asoc.locked_on_sending == NULL) ||
10161 			    sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
10162 				break;
10163 			}
10164 		}
10165 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
10166 		    TAILQ_EMPTY(&asoc->send_queue) &&
10167 		    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
10168 			/* Nothing left to send */
10169 			break;
10170 		}
10171 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10172 			/* Nothing left to send */
10173 			break;
10174 		}
10175 	} while (num_out &&
10176 	    ((asoc->max_burst == 0) ||
10177 	    SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10178 	    (burst_cnt < asoc->max_burst)));
10179 
10180 	if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10181 		if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10182 			SCTP_STAT_INCR(sctps_maxburstqueued);
10183 			asoc->burst_limit_applied = 1;
10184 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10185 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10186 			}
10187 		} else {
10188 			asoc->burst_limit_applied = 0;
10189 		}
10190 	}
10191 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10192 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10193 	}
10194 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10195 	    tot_out);
10196 
10197 	/*-
10198 	 * Now we need to clean up the control chunk chain if a ECNE is on
10199 	 * it. It must be marked as UNSENT again so next call will continue
10200 	 * to send it until such time that we get a CWR, to remove it.
10201 	 */
10202 	if (stcb->asoc.ecn_echo_cnt_onq)
10203 		sctp_fix_ecn_echo(asoc);
10204 	return;
10205 }
10206 
10207 
10208 int
10209 sctp_output(
10210     struct sctp_inpcb *inp,
10211     struct mbuf *m,
10212     struct sockaddr *addr,
10213     struct mbuf *control,
10214     struct thread *p,
10215     int flags)
10216 {
10217 	if (inp == NULL) {
10218 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10219 		return (EINVAL);
10220 	}
10221 	if (inp->sctp_socket == NULL) {
10222 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10223 		return (EINVAL);
10224 	}
10225 	return (sctp_sosend(inp->sctp_socket,
10226 	    addr,
10227 	    (struct uio *)NULL,
10228 	    m,
10229 	    control,
10230 	    flags, p
10231 	    ));
10232 }
10233 
10234 void
10235 send_forward_tsn(struct sctp_tcb *stcb,
10236     struct sctp_association *asoc)
10237 {
10238 	struct sctp_tmit_chunk *chk;
10239 	struct sctp_forward_tsn_chunk *fwdtsn;
10240 	uint32_t advance_peer_ack_point;
10241 
10242 	SCTP_TCB_LOCK_ASSERT(stcb);
10243 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10244 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10245 			/* mark it to unsent */
10246 			chk->sent = SCTP_DATAGRAM_UNSENT;
10247 			chk->snd_count = 0;
10248 			/* Do we correct its output location? */
10249 			if (chk->whoTo) {
10250 				sctp_free_remote_addr(chk->whoTo);
10251 				chk->whoTo = NULL;
10252 			}
10253 			goto sctp_fill_in_rest;
10254 		}
10255 	}
10256 	/* Ok if we reach here we must build one */
10257 	sctp_alloc_a_chunk(stcb, chk);
10258 	if (chk == NULL) {
10259 		return;
10260 	}
10261 	asoc->fwd_tsn_cnt++;
10262 	chk->copy_by_ref = 0;
10263 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10264 	chk->rec.chunk_id.can_take_data = 0;
10265 	chk->asoc = asoc;
10266 	chk->whoTo = NULL;
10267 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
10268 	if (chk->data == NULL) {
10269 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10270 		return;
10271 	}
10272 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10273 	chk->sent = SCTP_DATAGRAM_UNSENT;
10274 	chk->snd_count = 0;
10275 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10276 	asoc->ctrl_queue_cnt++;
10277 sctp_fill_in_rest:
10278 	/*-
10279 	 * Here we go through and fill out the part that deals with
10280 	 * stream/seq of the ones we skip.
10281 	 */
10282 	SCTP_BUF_LEN(chk->data) = 0;
10283 	{
10284 		struct sctp_tmit_chunk *at, *tp1, *last;
10285 		struct sctp_strseq *strseq;
10286 		unsigned int cnt_of_space, i, ovh;
10287 		unsigned int space_needed;
10288 		unsigned int cnt_of_skipped = 0;
10289 
10290 		TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10291 			if ((at->sent != SCTP_FORWARD_TSN_SKIP) &&
10292 			    (at->sent != SCTP_DATAGRAM_NR_ACKED)) {
10293 				/* no more to look at */
10294 				break;
10295 			}
10296 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10297 				/* We don't report these */
10298 				continue;
10299 			}
10300 			cnt_of_skipped++;
10301 		}
10302 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10303 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
10304 
10305 		cnt_of_space = M_TRAILINGSPACE(chk->data);
10306 
10307 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10308 			ovh = SCTP_MIN_OVERHEAD;
10309 		} else {
10310 			ovh = SCTP_MIN_V4_OVERHEAD;
10311 		}
10312 		if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10313 			/* trim to a mtu size */
10314 			cnt_of_space = asoc->smallest_mtu - ovh;
10315 		}
10316 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10317 			sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10318 			    0xff, 0, cnt_of_skipped,
10319 			    asoc->advanced_peer_ack_point);
10320 
10321 		}
10322 		advance_peer_ack_point = asoc->advanced_peer_ack_point;
10323 		if (cnt_of_space < space_needed) {
10324 			/*-
10325 			 * ok we must trim down the chunk by lowering the
10326 			 * advance peer ack point.
10327 			 */
10328 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10329 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10330 				    0xff, 0xff, cnt_of_space,
10331 				    space_needed);
10332 			}
10333 			cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10334 			cnt_of_skipped /= sizeof(struct sctp_strseq);
10335 			/*-
10336 			 * Go through and find the TSN that will be the one
10337 			 * we report.
10338 			 */
10339 			at = TAILQ_FIRST(&asoc->sent_queue);
10340 			if (at != NULL) {
10341 				for (i = 0; i < cnt_of_skipped; i++) {
10342 					tp1 = TAILQ_NEXT(at, sctp_next);
10343 					if (tp1 == NULL) {
10344 						break;
10345 					}
10346 					at = tp1;
10347 				}
10348 			}
10349 			if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10350 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10351 				    0xff, cnt_of_skipped, at->rec.data.TSN_seq,
10352 				    asoc->advanced_peer_ack_point);
10353 			}
10354 			last = at;
10355 			/*-
10356 			 * last now points to last one I can report, update
10357 			 * peer ack point
10358 			 */
10359 			if (last)
10360 				advance_peer_ack_point = last->rec.data.TSN_seq;
10361 			space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10362 			    cnt_of_skipped * sizeof(struct sctp_strseq);
10363 		}
10364 		chk->send_size = space_needed;
10365 		/* Setup the chunk */
10366 		fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10367 		fwdtsn->ch.chunk_length = htons(chk->send_size);
10368 		fwdtsn->ch.chunk_flags = 0;
10369 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10370 		fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10371 		SCTP_BUF_LEN(chk->data) = chk->send_size;
10372 		fwdtsn++;
10373 		/*-
10374 		 * Move pointer to after the fwdtsn and transfer to the
10375 		 * strseq pointer.
10376 		 */
10377 		strseq = (struct sctp_strseq *)fwdtsn;
10378 		/*-
10379 		 * Now populate the strseq list. This is done blindly
10380 		 * without pulling out duplicate stream info. This is
10381 		 * inefficent but won't harm the process since the peer will
10382 		 * look at these in sequence and will thus release anything.
10383 		 * It could mean we exceed the PMTU and chop off some that
10384 		 * we could have included.. but this is unlikely (aka 1432/4
10385 		 * would mean 300+ stream seq's would have to be reported in
10386 		 * one FWD-TSN. With a bit of work we can later FIX this to
10387 		 * optimize and pull out duplcates.. but it does add more
10388 		 * overhead. So for now... not!
10389 		 */
10390 		at = TAILQ_FIRST(&asoc->sent_queue);
10391 		for (i = 0; i < cnt_of_skipped; i++) {
10392 			tp1 = TAILQ_NEXT(at, sctp_next);
10393 			if (tp1 == NULL)
10394 				break;
10395 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10396 				/* We don't report these */
10397 				i--;
10398 				at = tp1;
10399 				continue;
10400 			}
10401 			if (at->rec.data.TSN_seq == advance_peer_ack_point) {
10402 				at->rec.data.fwd_tsn_cnt = 0;
10403 			}
10404 			strseq->stream = ntohs(at->rec.data.stream_number);
10405 			strseq->sequence = ntohs(at->rec.data.stream_seq);
10406 			strseq++;
10407 			at = tp1;
10408 		}
10409 	}
10410 	return;
10411 }
10412 
10413 void
10414 sctp_send_sack(struct sctp_tcb *stcb, int so_locked
10415 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10416     SCTP_UNUSED
10417 #endif
10418 )
10419 {
10420 	/*-
10421 	 * Queue up a SACK or NR-SACK in the control queue.
10422 	 * We must first check to see if a SACK or NR-SACK is
10423 	 * somehow on the control queue.
10424 	 * If so, we will take and and remove the old one.
10425 	 */
10426 	struct sctp_association *asoc;
10427 	struct sctp_tmit_chunk *chk, *a_chk;
10428 	struct sctp_sack_chunk *sack;
10429 	struct sctp_nr_sack_chunk *nr_sack;
10430 	struct sctp_gap_ack_block *gap_descriptor;
10431 	struct sack_track *selector;
10432 	int mergeable = 0;
10433 	int offset;
10434 	caddr_t limit;
10435 	uint32_t *dup;
10436 	int limit_reached = 0;
10437 	unsigned int i, siz, j;
10438 	unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10439 	int num_dups = 0;
10440 	int space_req;
10441 	uint32_t highest_tsn;
10442 	uint8_t flags;
10443 	uint8_t type;
10444 	uint8_t tsn_map;
10445 
10446 	if ((stcb->asoc.sctp_nr_sack_on_off == 1) &&
10447 	    (stcb->asoc.peer_supports_nr_sack == 1)) {
10448 		type = SCTP_NR_SELECTIVE_ACK;
10449 	} else {
10450 		type = SCTP_SELECTIVE_ACK;
10451 	}
10452 	a_chk = NULL;
10453 	asoc = &stcb->asoc;
10454 	SCTP_TCB_LOCK_ASSERT(stcb);
10455 	if (asoc->last_data_chunk_from == NULL) {
10456 		/* Hmm we never received anything */
10457 		return;
10458 	}
10459 	sctp_slide_mapping_arrays(stcb);
10460 	sctp_set_rwnd(stcb, asoc);
10461 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10462 		if (chk->rec.chunk_id.id == type) {
10463 			/* Hmm, found a sack already on queue, remove it */
10464 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10465 			asoc->ctrl_queue_cnt--;
10466 			a_chk = chk;
10467 			if (a_chk->data) {
10468 				sctp_m_freem(a_chk->data);
10469 				a_chk->data = NULL;
10470 			}
10471 			if (a_chk->whoTo) {
10472 				sctp_free_remote_addr(a_chk->whoTo);
10473 				a_chk->whoTo = NULL;
10474 			}
10475 			break;
10476 		}
10477 	}
10478 	if (a_chk == NULL) {
10479 		sctp_alloc_a_chunk(stcb, a_chk);
10480 		if (a_chk == NULL) {
10481 			/* No memory so we drop the idea, and set a timer */
10482 			if (stcb->asoc.delayed_ack) {
10483 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10484 				    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
10485 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10486 				    stcb->sctp_ep, stcb, NULL);
10487 			} else {
10488 				stcb->asoc.send_sack = 1;
10489 			}
10490 			return;
10491 		}
10492 		a_chk->copy_by_ref = 0;
10493 		a_chk->rec.chunk_id.id = type;
10494 		a_chk->rec.chunk_id.can_take_data = 1;
10495 	}
10496 	/* Clear our pkt counts */
10497 	asoc->data_pkts_seen = 0;
10498 
10499 	a_chk->asoc = asoc;
10500 	a_chk->snd_count = 0;
10501 	a_chk->send_size = 0;	/* fill in later */
10502 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
10503 	a_chk->whoTo = NULL;
10504 
10505 	if ((asoc->numduptsns) ||
10506 	    (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) {
10507 		/*-
10508 		 * Ok, we have some duplicates or the destination for the
10509 		 * sack is unreachable, lets see if we can select an
10510 		 * alternate than asoc->last_data_chunk_from
10511 		 */
10512 		if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) &&
10513 		    (asoc->used_alt_onsack > asoc->numnets)) {
10514 			/* We used an alt last time, don't this time */
10515 			a_chk->whoTo = NULL;
10516 		} else {
10517 			asoc->used_alt_onsack++;
10518 			a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10519 		}
10520 		if (a_chk->whoTo == NULL) {
10521 			/* Nope, no alternate */
10522 			a_chk->whoTo = asoc->last_data_chunk_from;
10523 			asoc->used_alt_onsack = 0;
10524 		}
10525 	} else {
10526 		/*
10527 		 * No duplicates so we use the last place we received data
10528 		 * from.
10529 		 */
10530 		asoc->used_alt_onsack = 0;
10531 		a_chk->whoTo = asoc->last_data_chunk_from;
10532 	}
10533 	if (a_chk->whoTo) {
10534 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
10535 	}
10536 	if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10537 		highest_tsn = asoc->highest_tsn_inside_map;
10538 	} else {
10539 		highest_tsn = asoc->highest_tsn_inside_nr_map;
10540 	}
10541 	if (highest_tsn == asoc->cumulative_tsn) {
10542 		/* no gaps */
10543 		if (type == SCTP_SELECTIVE_ACK) {
10544 			space_req = sizeof(struct sctp_sack_chunk);
10545 		} else {
10546 			space_req = sizeof(struct sctp_nr_sack_chunk);
10547 		}
10548 	} else {
10549 		/* gaps get a cluster */
10550 		space_req = MCLBYTES;
10551 	}
10552 	/* Ok now lets formulate a MBUF with our sack */
10553 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA);
10554 	if ((a_chk->data == NULL) ||
10555 	    (a_chk->whoTo == NULL)) {
10556 		/* rats, no mbuf memory */
10557 		if (a_chk->data) {
10558 			/* was a problem with the destination */
10559 			sctp_m_freem(a_chk->data);
10560 			a_chk->data = NULL;
10561 		}
10562 		sctp_free_a_chunk(stcb, a_chk, so_locked);
10563 		/* sa_ignore NO_NULL_CHK */
10564 		if (stcb->asoc.delayed_ack) {
10565 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10566 			    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
10567 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10568 			    stcb->sctp_ep, stcb, NULL);
10569 		} else {
10570 			stcb->asoc.send_sack = 1;
10571 		}
10572 		return;
10573 	}
10574 	/* ok, lets go through and fill it in */
10575 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10576 	space = M_TRAILINGSPACE(a_chk->data);
10577 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10578 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10579 	}
10580 	limit = mtod(a_chk->data, caddr_t);
10581 	limit += space;
10582 
10583 	flags = 0;
10584 
10585 	if ((asoc->sctp_cmt_on_off > 0) &&
10586 	    SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10587 		/*-
10588 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10589 		 * received, then set high bit to 1, else 0. Reset
10590 		 * pkts_rcvd.
10591 		 */
10592 		flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10593 		asoc->cmt_dac_pkts_rcvd = 0;
10594 	}
10595 #ifdef SCTP_ASOCLOG_OF_TSNS
10596 	stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10597 	stcb->asoc.cumack_log_atsnt++;
10598 	if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10599 		stcb->asoc.cumack_log_atsnt = 0;
10600 	}
10601 #endif
10602 	/* reset the readers interpretation */
10603 	stcb->freed_by_sorcv_sincelast = 0;
10604 
10605 	if (type == SCTP_SELECTIVE_ACK) {
10606 		sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10607 		nr_sack = NULL;
10608 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10609 		if (highest_tsn > asoc->mapping_array_base_tsn) {
10610 			siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10611 		} else {
10612 			siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8;
10613 		}
10614 	} else {
10615 		sack = NULL;
10616 		nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10617 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10618 		if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10619 			siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10620 		} else {
10621 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10622 		}
10623 	}
10624 
10625 	if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10626 		offset = 1;
10627 	} else {
10628 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10629 	}
10630 	if (((type == SCTP_SELECTIVE_ACK) &&
10631 	    SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10632 	    ((type == SCTP_NR_SELECTIVE_ACK) &&
10633 	    SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10634 		/* we have a gap .. maybe */
10635 		for (i = 0; i < siz; i++) {
10636 			tsn_map = asoc->mapping_array[i];
10637 			if (type == SCTP_SELECTIVE_ACK) {
10638 				tsn_map |= asoc->nr_mapping_array[i];
10639 			}
10640 			if (i == 0) {
10641 				/*
10642 				 * Clear all bits corresponding to TSNs
10643 				 * smaller or equal to the cumulative TSN.
10644 				 */
10645 				tsn_map &= (~0 << (1 - offset));
10646 			}
10647 			selector = &sack_array[tsn_map];
10648 			if (mergeable && selector->right_edge) {
10649 				/*
10650 				 * Backup, left and right edges were ok to
10651 				 * merge.
10652 				 */
10653 				num_gap_blocks--;
10654 				gap_descriptor--;
10655 			}
10656 			if (selector->num_entries == 0)
10657 				mergeable = 0;
10658 			else {
10659 				for (j = 0; j < selector->num_entries; j++) {
10660 					if (mergeable && selector->right_edge) {
10661 						/*
10662 						 * do a merge by NOT setting
10663 						 * the left side
10664 						 */
10665 						mergeable = 0;
10666 					} else {
10667 						/*
10668 						 * no merge, set the left
10669 						 * side
10670 						 */
10671 						mergeable = 0;
10672 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
10673 					}
10674 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
10675 					num_gap_blocks++;
10676 					gap_descriptor++;
10677 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10678 						/* no more room */
10679 						limit_reached = 1;
10680 						break;
10681 					}
10682 				}
10683 				if (selector->left_edge) {
10684 					mergeable = 1;
10685 				}
10686 			}
10687 			if (limit_reached) {
10688 				/* Reached the limit stop */
10689 				break;
10690 			}
10691 			offset += 8;
10692 		}
10693 	}
10694 	if ((type == SCTP_NR_SELECTIVE_ACK) &&
10695 	    (limit_reached == 0)) {
10696 
10697 		mergeable = 0;
10698 
10699 		if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10700 			siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10701 		} else {
10702 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10703 		}
10704 
10705 		if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10706 			offset = 1;
10707 		} else {
10708 			offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10709 		}
10710 		if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10711 			/* we have a gap .. maybe */
10712 			for (i = 0; i < siz; i++) {
10713 				tsn_map = asoc->nr_mapping_array[i];
10714 				if (i == 0) {
10715 					/*
10716 					 * Clear all bits corresponding to
10717 					 * TSNs smaller or equal to the
10718 					 * cumulative TSN.
10719 					 */
10720 					tsn_map &= (~0 << (1 - offset));
10721 				}
10722 				selector = &sack_array[tsn_map];
10723 				if (mergeable && selector->right_edge) {
10724 					/*
10725 					 * Backup, left and right edges were
10726 					 * ok to merge.
10727 					 */
10728 					num_nr_gap_blocks--;
10729 					gap_descriptor--;
10730 				}
10731 				if (selector->num_entries == 0)
10732 					mergeable = 0;
10733 				else {
10734 					for (j = 0; j < selector->num_entries; j++) {
10735 						if (mergeable && selector->right_edge) {
10736 							/*
10737 							 * do a merge by NOT
10738 							 * setting the left
10739 							 * side
10740 							 */
10741 							mergeable = 0;
10742 						} else {
10743 							/*
10744 							 * no merge, set the
10745 							 * left side
10746 							 */
10747 							mergeable = 0;
10748 							gap_descriptor->start = htons((selector->gaps[j].start + offset));
10749 						}
10750 						gap_descriptor->end = htons((selector->gaps[j].end + offset));
10751 						num_nr_gap_blocks++;
10752 						gap_descriptor++;
10753 						if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10754 							/* no more room */
10755 							limit_reached = 1;
10756 							break;
10757 						}
10758 					}
10759 					if (selector->left_edge) {
10760 						mergeable = 1;
10761 					}
10762 				}
10763 				if (limit_reached) {
10764 					/* Reached the limit stop */
10765 					break;
10766 				}
10767 				offset += 8;
10768 			}
10769 		}
10770 	}
10771 	/* now we must add any dups we are going to report. */
10772 	if ((limit_reached == 0) && (asoc->numduptsns)) {
10773 		dup = (uint32_t *) gap_descriptor;
10774 		for (i = 0; i < asoc->numduptsns; i++) {
10775 			*dup = htonl(asoc->dup_tsns[i]);
10776 			dup++;
10777 			num_dups++;
10778 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10779 				/* no more room */
10780 				break;
10781 			}
10782 		}
10783 		asoc->numduptsns = 0;
10784 	}
10785 	/*
10786 	 * now that the chunk is prepared queue it to the control chunk
10787 	 * queue.
10788 	 */
10789 	if (type == SCTP_SELECTIVE_ACK) {
10790 		a_chk->send_size = sizeof(struct sctp_sack_chunk) +
10791 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10792 		    num_dups * sizeof(int32_t);
10793 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10794 		sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10795 		sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10796 		sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10797 		sack->sack.num_dup_tsns = htons(num_dups);
10798 		sack->ch.chunk_type = type;
10799 		sack->ch.chunk_flags = flags;
10800 		sack->ch.chunk_length = htons(a_chk->send_size);
10801 	} else {
10802 		a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) +
10803 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10804 		    num_dups * sizeof(int32_t);
10805 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10806 		nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10807 		nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10808 		nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10809 		nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10810 		nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10811 		nr_sack->nr_sack.reserved = 0;
10812 		nr_sack->ch.chunk_type = type;
10813 		nr_sack->ch.chunk_flags = flags;
10814 		nr_sack->ch.chunk_length = htons(a_chk->send_size);
10815 	}
10816 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10817 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
10818 	asoc->ctrl_queue_cnt++;
10819 	asoc->send_sack = 0;
10820 	SCTP_STAT_INCR(sctps_sendsacks);
10821 	return;
10822 }
10823 
10824 void
10825 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
10826 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10827     SCTP_UNUSED
10828 #endif
10829 )
10830 {
10831 	struct mbuf *m_abort, *m, *m_last;
10832 	struct mbuf *m_out, *m_end = NULL;
10833 	struct sctp_abort_chunk *abort;
10834 	struct sctp_auth_chunk *auth = NULL;
10835 	struct sctp_nets *net;
10836 	uint32_t vtag;
10837 	uint32_t auth_offset = 0;
10838 	uint16_t cause_len, chunk_len, padding_len;
10839 
10840 	SCTP_TCB_LOCK_ASSERT(stcb);
10841 	/*-
10842 	 * Add an AUTH chunk, if chunk requires it and save the offset into
10843 	 * the chain for AUTH
10844 	 */
10845 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10846 	    stcb->asoc.peer_auth_chunks)) {
10847 		m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10848 		    stcb, SCTP_ABORT_ASSOCIATION);
10849 		SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10850 	} else {
10851 		m_out = NULL;
10852 	}
10853 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER);
10854 	if (m_abort == NULL) {
10855 		if (m_out) {
10856 			sctp_m_freem(m_out);
10857 		}
10858 		if (operr) {
10859 			sctp_m_freem(operr);
10860 		}
10861 		return;
10862 	}
10863 	/* link in any error */
10864 	SCTP_BUF_NEXT(m_abort) = operr;
10865 	cause_len = 0;
10866 	m_last = NULL;
10867 	for (m = operr; m; m = SCTP_BUF_NEXT(m)) {
10868 		cause_len += (uint16_t) SCTP_BUF_LEN(m);
10869 		if (SCTP_BUF_NEXT(m) == NULL) {
10870 			m_last = m;
10871 		}
10872 	}
10873 	SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk);
10874 	chunk_len = (uint16_t) sizeof(struct sctp_abort_chunk) + cause_len;
10875 	padding_len = SCTP_SIZE32(chunk_len) - chunk_len;
10876 	if (m_out == NULL) {
10877 		/* NO Auth chunk prepended, so reserve space in front */
10878 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10879 		m_out = m_abort;
10880 	} else {
10881 		/* Put AUTH chunk at the front of the chain */
10882 		SCTP_BUF_NEXT(m_end) = m_abort;
10883 	}
10884 	if (stcb->asoc.alternate) {
10885 		net = stcb->asoc.alternate;
10886 	} else {
10887 		net = stcb->asoc.primary_destination;
10888 	}
10889 	/* Fill in the ABORT chunk header. */
10890 	abort = mtod(m_abort, struct sctp_abort_chunk *);
10891 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10892 	if (stcb->asoc.peer_vtag == 0) {
10893 		/* This happens iff the assoc is in COOKIE-WAIT state. */
10894 		vtag = stcb->asoc.my_vtag;
10895 		abort->ch.chunk_flags = SCTP_HAD_NO_TCB;
10896 	} else {
10897 		vtag = stcb->asoc.peer_vtag;
10898 		abort->ch.chunk_flags = 0;
10899 	}
10900 	abort->ch.chunk_length = htons(chunk_len);
10901 	/* Add padding, if necessary. */
10902 	if (padding_len > 0) {
10903 		if ((m_last == NULL) || sctp_add_pad_tombuf(m_last, padding_len)) {
10904 			sctp_m_freem(m_out);
10905 			return;
10906 		}
10907 	}
10908 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10909 	    (struct sockaddr *)&net->ro._l_addr,
10910 	    m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
10911 	    stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag),
10912 	    stcb->asoc.primary_destination->port, NULL,
10913 	    0, 0,
10914 	    so_locked);
10915 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10916 }
10917 
10918 void
10919 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
10920     struct sctp_nets *net,
10921     int reflect_vtag)
10922 {
10923 	/* formulate and SEND a SHUTDOWN-COMPLETE */
10924 	struct mbuf *m_shutdown_comp;
10925 	struct sctp_shutdown_complete_chunk *shutdown_complete;
10926 	uint32_t vtag;
10927 	uint8_t flags;
10928 
10929 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
10930 	if (m_shutdown_comp == NULL) {
10931 		/* no mbuf's */
10932 		return;
10933 	}
10934 	if (reflect_vtag) {
10935 		flags = SCTP_HAD_NO_TCB;
10936 		vtag = stcb->asoc.my_vtag;
10937 	} else {
10938 		flags = 0;
10939 		vtag = stcb->asoc.peer_vtag;
10940 	}
10941 	shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
10942 	shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
10943 	shutdown_complete->ch.chunk_flags = flags;
10944 	shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
10945 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
10946 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10947 	    (struct sockaddr *)&net->ro._l_addr,
10948 	    m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
10949 	    stcb->sctp_ep->sctp_lport, stcb->rport,
10950 	    htonl(vtag),
10951 	    net->port, NULL,
10952 	    0, 0,
10953 	    SCTP_SO_NOT_LOCKED);
10954 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10955 	return;
10956 }
10957 
10958 static void
10959 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
10960     struct sctphdr *sh, uint32_t vtag,
10961     uint8_t type, struct mbuf *cause,
10962     uint8_t use_mflowid, uint32_t mflowid,
10963     uint32_t vrf_id, uint16_t port)
10964 {
10965 	struct mbuf *o_pak;
10966 	struct mbuf *mout;
10967 	struct sctphdr *shout;
10968 	struct sctp_chunkhdr *ch;
10969 
10970 #if defined(INET) || defined(INET6)
10971 	struct udphdr *udp;
10972 	int ret;
10973 
10974 #endif
10975 	int len, cause_len, padding_len;
10976 
10977 #ifdef INET
10978 	struct sockaddr_in *src_sin, *dst_sin;
10979 	struct ip *ip;
10980 
10981 #endif
10982 #ifdef INET6
10983 	struct sockaddr_in6 *src_sin6, *dst_sin6;
10984 	struct ip6_hdr *ip6;
10985 
10986 #endif
10987 
10988 	/* Compute the length of the cause and add final padding. */
10989 	cause_len = 0;
10990 	if (cause != NULL) {
10991 		struct mbuf *m_at, *m_last = NULL;
10992 
10993 		for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
10994 			if (SCTP_BUF_NEXT(m_at) == NULL)
10995 				m_last = m_at;
10996 			cause_len += SCTP_BUF_LEN(m_at);
10997 		}
10998 		padding_len = cause_len % 4;
10999 		if (padding_len != 0) {
11000 			padding_len = 4 - padding_len;
11001 		}
11002 		if (padding_len != 0) {
11003 			if (sctp_add_pad_tombuf(m_last, padding_len)) {
11004 				sctp_m_freem(cause);
11005 				return;
11006 			}
11007 		}
11008 	} else {
11009 		padding_len = 0;
11010 	}
11011 	/* Get an mbuf for the header. */
11012 	len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
11013 	switch (dst->sa_family) {
11014 #ifdef INET
11015 	case AF_INET:
11016 		len += sizeof(struct ip);
11017 		break;
11018 #endif
11019 #ifdef INET6
11020 	case AF_INET6:
11021 		len += sizeof(struct ip6_hdr);
11022 		break;
11023 #endif
11024 	default:
11025 		break;
11026 	}
11027 #if defined(INET) || defined(INET6)
11028 	if (port) {
11029 		len += sizeof(struct udphdr);
11030 	}
11031 #endif
11032 	mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA);
11033 	if (mout == NULL) {
11034 		if (cause) {
11035 			sctp_m_freem(cause);
11036 		}
11037 		return;
11038 	}
11039 	SCTP_BUF_RESV_UF(mout, max_linkhdr);
11040 	SCTP_BUF_LEN(mout) = len;
11041 	SCTP_BUF_NEXT(mout) = cause;
11042 	if (use_mflowid != 0) {
11043 		mout->m_pkthdr.flowid = mflowid;
11044 		mout->m_flags |= M_FLOWID;
11045 	}
11046 #ifdef INET
11047 	ip = NULL;
11048 #endif
11049 #ifdef INET6
11050 	ip6 = NULL;
11051 #endif
11052 	switch (dst->sa_family) {
11053 #ifdef INET
11054 	case AF_INET:
11055 		src_sin = (struct sockaddr_in *)src;
11056 		dst_sin = (struct sockaddr_in *)dst;
11057 		ip = mtod(mout, struct ip *);
11058 		ip->ip_v = IPVERSION;
11059 		ip->ip_hl = (sizeof(struct ip) >> 2);
11060 		ip->ip_tos = 0;
11061 		ip->ip_id = ip_newid();
11062 		ip->ip_off = 0;
11063 		ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
11064 		if (port) {
11065 			ip->ip_p = IPPROTO_UDP;
11066 		} else {
11067 			ip->ip_p = IPPROTO_SCTP;
11068 		}
11069 		ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
11070 		ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
11071 		ip->ip_sum = 0;
11072 		len = sizeof(struct ip);
11073 		shout = (struct sctphdr *)((caddr_t)ip + len);
11074 		break;
11075 #endif
11076 #ifdef INET6
11077 	case AF_INET6:
11078 		src_sin6 = (struct sockaddr_in6 *)src;
11079 		dst_sin6 = (struct sockaddr_in6 *)dst;
11080 		ip6 = mtod(mout, struct ip6_hdr *);
11081 		ip6->ip6_flow = htonl(0x60000000);
11082 		if (V_ip6_auto_flowlabel) {
11083 			ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
11084 		}
11085 		ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
11086 		if (port) {
11087 			ip6->ip6_nxt = IPPROTO_UDP;
11088 		} else {
11089 			ip6->ip6_nxt = IPPROTO_SCTP;
11090 		}
11091 		ip6->ip6_src = dst_sin6->sin6_addr;
11092 		ip6->ip6_dst = src_sin6->sin6_addr;
11093 		len = sizeof(struct ip6_hdr);
11094 		shout = (struct sctphdr *)((caddr_t)ip6 + len);
11095 		break;
11096 #endif
11097 	default:
11098 		len = 0;
11099 		shout = mtod(mout, struct sctphdr *);
11100 		break;
11101 	}
11102 #if defined(INET) || defined(INET6)
11103 	if (port) {
11104 		if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
11105 			sctp_m_freem(mout);
11106 			return;
11107 		}
11108 		udp = (struct udphdr *)shout;
11109 		udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
11110 		udp->uh_dport = port;
11111 		udp->uh_sum = 0;
11112 		udp->uh_ulen = htons(sizeof(struct udphdr) +
11113 		    sizeof(struct sctphdr) +
11114 		    sizeof(struct sctp_chunkhdr) +
11115 		    cause_len + padding_len);
11116 		len += sizeof(struct udphdr);
11117 		shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
11118 	} else {
11119 		udp = NULL;
11120 	}
11121 #endif
11122 	shout->src_port = sh->dest_port;
11123 	shout->dest_port = sh->src_port;
11124 	shout->checksum = 0;
11125 	if (vtag) {
11126 		shout->v_tag = htonl(vtag);
11127 	} else {
11128 		shout->v_tag = sh->v_tag;
11129 	}
11130 	len += sizeof(struct sctphdr);
11131 	ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
11132 	ch->chunk_type = type;
11133 	if (vtag) {
11134 		ch->chunk_flags = 0;
11135 	} else {
11136 		ch->chunk_flags = SCTP_HAD_NO_TCB;
11137 	}
11138 	ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len);
11139 	len += sizeof(struct sctp_chunkhdr);
11140 	len += cause_len + padding_len;
11141 
11142 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
11143 		sctp_m_freem(mout);
11144 		return;
11145 	}
11146 	SCTP_ATTACH_CHAIN(o_pak, mout, len);
11147 	switch (dst->sa_family) {
11148 #ifdef INET
11149 	case AF_INET:
11150 		if (port) {
11151 			if (V_udp_cksum) {
11152 				udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
11153 			} else {
11154 				udp->uh_sum = 0;
11155 			}
11156 		}
11157 		ip->ip_len = htons(len);
11158 		if (port) {
11159 #if defined(SCTP_WITH_NO_CSUM)
11160 			SCTP_STAT_INCR(sctps_sendnocrc);
11161 #else
11162 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
11163 			SCTP_STAT_INCR(sctps_sendswcrc);
11164 #endif
11165 			if (V_udp_cksum) {
11166 				SCTP_ENABLE_UDP_CSUM(o_pak);
11167 			}
11168 		} else {
11169 #if defined(SCTP_WITH_NO_CSUM)
11170 			SCTP_STAT_INCR(sctps_sendnocrc);
11171 #else
11172 			mout->m_pkthdr.csum_flags = CSUM_SCTP;
11173 			mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11174 			SCTP_STAT_INCR(sctps_sendhwcrc);
11175 #endif
11176 		}
11177 #ifdef SCTP_PACKET_LOGGING
11178 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11179 			sctp_packet_log(o_pak);
11180 		}
11181 #endif
11182 		SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11183 		break;
11184 #endif
11185 #ifdef INET6
11186 	case AF_INET6:
11187 		ip6->ip6_plen = len - sizeof(struct ip6_hdr);
11188 		if (port) {
11189 #if defined(SCTP_WITH_NO_CSUM)
11190 			SCTP_STAT_INCR(sctps_sendnocrc);
11191 #else
11192 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11193 			SCTP_STAT_INCR(sctps_sendswcrc);
11194 #endif
11195 			if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11196 				udp->uh_sum = 0xffff;
11197 			}
11198 		} else {
11199 #if defined(SCTP_WITH_NO_CSUM)
11200 			SCTP_STAT_INCR(sctps_sendnocrc);
11201 #else
11202 			mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11203 			mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11204 			SCTP_STAT_INCR(sctps_sendhwcrc);
11205 #endif
11206 		}
11207 #ifdef SCTP_PACKET_LOGGING
11208 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11209 			sctp_packet_log(o_pak);
11210 		}
11211 #endif
11212 		SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11213 		break;
11214 #endif
11215 	default:
11216 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11217 		    dst->sa_family);
11218 		sctp_m_freem(mout);
11219 		SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11220 		return;
11221 	}
11222 	SCTP_STAT_INCR(sctps_sendpackets);
11223 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11224 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11225 	return;
11226 }
11227 
11228 void
11229 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11230     struct sctphdr *sh,
11231     uint8_t use_mflowid, uint32_t mflowid,
11232     uint32_t vrf_id, uint16_t port)
11233 {
11234 	sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11235 	    use_mflowid, mflowid,
11236 	    vrf_id, port);
11237 }
11238 
11239 void
11240 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
11241 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
11242     SCTP_UNUSED
11243 #endif
11244 )
11245 {
11246 	struct sctp_tmit_chunk *chk;
11247 	struct sctp_heartbeat_chunk *hb;
11248 	struct timeval now;
11249 
11250 	SCTP_TCB_LOCK_ASSERT(stcb);
11251 	if (net == NULL) {
11252 		return;
11253 	}
11254 	(void)SCTP_GETTIME_TIMEVAL(&now);
11255 	switch (net->ro._l_addr.sa.sa_family) {
11256 #ifdef INET
11257 	case AF_INET:
11258 		break;
11259 #endif
11260 #ifdef INET6
11261 	case AF_INET6:
11262 		break;
11263 #endif
11264 	default:
11265 		return;
11266 	}
11267 	sctp_alloc_a_chunk(stcb, chk);
11268 	if (chk == NULL) {
11269 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11270 		return;
11271 	}
11272 	chk->copy_by_ref = 0;
11273 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11274 	chk->rec.chunk_id.can_take_data = 1;
11275 	chk->asoc = &stcb->asoc;
11276 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11277 
11278 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11279 	if (chk->data == NULL) {
11280 		sctp_free_a_chunk(stcb, chk, so_locked);
11281 		return;
11282 	}
11283 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11284 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11285 	chk->sent = SCTP_DATAGRAM_UNSENT;
11286 	chk->snd_count = 0;
11287 	chk->whoTo = net;
11288 	atomic_add_int(&chk->whoTo->ref_count, 1);
11289 	/* Now we have a mbuf that we can fill in with the details */
11290 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11291 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11292 	/* fill out chunk header */
11293 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11294 	hb->ch.chunk_flags = 0;
11295 	hb->ch.chunk_length = htons(chk->send_size);
11296 	/* Fill out hb parameter */
11297 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11298 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11299 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
11300 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11301 	/* Did our user request this one, put it in */
11302 	hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family;
11303 	hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11304 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11305 		/*
11306 		 * we only take from the entropy pool if the address is not
11307 		 * confirmed.
11308 		 */
11309 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11310 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11311 	} else {
11312 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11313 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11314 	}
11315 	switch (net->ro._l_addr.sa.sa_family) {
11316 #ifdef INET
11317 	case AF_INET:
11318 		memcpy(hb->heartbeat.hb_info.address,
11319 		    &net->ro._l_addr.sin.sin_addr,
11320 		    sizeof(net->ro._l_addr.sin.sin_addr));
11321 		break;
11322 #endif
11323 #ifdef INET6
11324 	case AF_INET6:
11325 		memcpy(hb->heartbeat.hb_info.address,
11326 		    &net->ro._l_addr.sin6.sin6_addr,
11327 		    sizeof(net->ro._l_addr.sin6.sin6_addr));
11328 		break;
11329 #endif
11330 	default:
11331 		return;
11332 		break;
11333 	}
11334 	net->hb_responded = 0;
11335 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11336 	stcb->asoc.ctrl_queue_cnt++;
11337 	SCTP_STAT_INCR(sctps_sendheartbeat);
11338 	return;
11339 }
11340 
11341 void
11342 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11343     uint32_t high_tsn)
11344 {
11345 	struct sctp_association *asoc;
11346 	struct sctp_ecne_chunk *ecne;
11347 	struct sctp_tmit_chunk *chk;
11348 
11349 	if (net == NULL) {
11350 		return;
11351 	}
11352 	asoc = &stcb->asoc;
11353 	SCTP_TCB_LOCK_ASSERT(stcb);
11354 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11355 		if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11356 			/* found a previous ECN_ECHO update it if needed */
11357 			uint32_t cnt, ctsn;
11358 
11359 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11360 			ctsn = ntohl(ecne->tsn);
11361 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11362 				ecne->tsn = htonl(high_tsn);
11363 				SCTP_STAT_INCR(sctps_queue_upd_ecne);
11364 			}
11365 			cnt = ntohl(ecne->num_pkts_since_cwr);
11366 			cnt++;
11367 			ecne->num_pkts_since_cwr = htonl(cnt);
11368 			return;
11369 		}
11370 	}
11371 	/* nope could not find one to update so we must build one */
11372 	sctp_alloc_a_chunk(stcb, chk);
11373 	if (chk == NULL) {
11374 		return;
11375 	}
11376 	chk->copy_by_ref = 0;
11377 	SCTP_STAT_INCR(sctps_queue_upd_ecne);
11378 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11379 	chk->rec.chunk_id.can_take_data = 0;
11380 	chk->asoc = &stcb->asoc;
11381 	chk->send_size = sizeof(struct sctp_ecne_chunk);
11382 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11383 	if (chk->data == NULL) {
11384 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11385 		return;
11386 	}
11387 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11388 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11389 	chk->sent = SCTP_DATAGRAM_UNSENT;
11390 	chk->snd_count = 0;
11391 	chk->whoTo = net;
11392 	atomic_add_int(&chk->whoTo->ref_count, 1);
11393 
11394 	stcb->asoc.ecn_echo_cnt_onq++;
11395 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11396 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
11397 	ecne->ch.chunk_flags = 0;
11398 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11399 	ecne->tsn = htonl(high_tsn);
11400 	ecne->num_pkts_since_cwr = htonl(1);
11401 	TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11402 	asoc->ctrl_queue_cnt++;
11403 }
11404 
11405 void
11406 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11407     struct mbuf *m, int len, int iphlen, int bad_crc)
11408 {
11409 	struct sctp_association *asoc;
11410 	struct sctp_pktdrop_chunk *drp;
11411 	struct sctp_tmit_chunk *chk;
11412 	uint8_t *datap;
11413 	int was_trunc = 0;
11414 	int fullsz = 0;
11415 	long spc;
11416 	int offset;
11417 	struct sctp_chunkhdr *ch, chunk_buf;
11418 	unsigned int chk_length;
11419 
11420 	if (!stcb) {
11421 		return;
11422 	}
11423 	asoc = &stcb->asoc;
11424 	SCTP_TCB_LOCK_ASSERT(stcb);
11425 	if (asoc->peer_supports_pktdrop == 0) {
11426 		/*-
11427 		 * peer must declare support before I send one.
11428 		 */
11429 		return;
11430 	}
11431 	if (stcb->sctp_socket == NULL) {
11432 		return;
11433 	}
11434 	sctp_alloc_a_chunk(stcb, chk);
11435 	if (chk == NULL) {
11436 		return;
11437 	}
11438 	chk->copy_by_ref = 0;
11439 	len -= iphlen;
11440 	chk->send_size = len;
11441 	/* Validate that we do not have an ABORT in here. */
11442 	offset = iphlen + sizeof(struct sctphdr);
11443 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11444 	    sizeof(*ch), (uint8_t *) & chunk_buf);
11445 	while (ch != NULL) {
11446 		chk_length = ntohs(ch->chunk_length);
11447 		if (chk_length < sizeof(*ch)) {
11448 			/* break to abort land */
11449 			break;
11450 		}
11451 		switch (ch->chunk_type) {
11452 		case SCTP_PACKET_DROPPED:
11453 		case SCTP_ABORT_ASSOCIATION:
11454 		case SCTP_INITIATION_ACK:
11455 			/**
11456 			 * We don't respond with an PKT-DROP to an ABORT
11457 			 * or PKT-DROP. We also do not respond to an
11458 			 * INIT-ACK, because we can't know if the initiation
11459 			 * tag is correct or not.
11460 			 */
11461 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11462 			return;
11463 		default:
11464 			break;
11465 		}
11466 		offset += SCTP_SIZE32(chk_length);
11467 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11468 		    sizeof(*ch), (uint8_t *) & chunk_buf);
11469 	}
11470 
11471 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11472 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11473 		/*
11474 		 * only send 1 mtu worth, trim off the excess on the end.
11475 		 */
11476 		fullsz = len;
11477 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11478 		was_trunc = 1;
11479 	}
11480 	chk->asoc = &stcb->asoc;
11481 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11482 	if (chk->data == NULL) {
11483 jump_out:
11484 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11485 		return;
11486 	}
11487 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11488 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11489 	if (drp == NULL) {
11490 		sctp_m_freem(chk->data);
11491 		chk->data = NULL;
11492 		goto jump_out;
11493 	}
11494 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11495 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11496 	chk->book_size_scale = 0;
11497 	if (was_trunc) {
11498 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11499 		drp->trunc_len = htons(fullsz);
11500 		/*
11501 		 * Len is already adjusted to size minus overhead above take
11502 		 * out the pkt_drop chunk itself from it.
11503 		 */
11504 		chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
11505 		len = chk->send_size;
11506 	} else {
11507 		/* no truncation needed */
11508 		drp->ch.chunk_flags = 0;
11509 		drp->trunc_len = htons(0);
11510 	}
11511 	if (bad_crc) {
11512 		drp->ch.chunk_flags |= SCTP_BADCRC;
11513 	}
11514 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11515 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11516 	chk->sent = SCTP_DATAGRAM_UNSENT;
11517 	chk->snd_count = 0;
11518 	if (net) {
11519 		/* we should hit here */
11520 		chk->whoTo = net;
11521 		atomic_add_int(&chk->whoTo->ref_count, 1);
11522 	} else {
11523 		chk->whoTo = NULL;
11524 	}
11525 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11526 	chk->rec.chunk_id.can_take_data = 1;
11527 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11528 	drp->ch.chunk_length = htons(chk->send_size);
11529 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11530 	if (spc < 0) {
11531 		spc = 0;
11532 	}
11533 	drp->bottle_bw = htonl(spc);
11534 	if (asoc->my_rwnd) {
11535 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
11536 		    asoc->size_on_all_streams +
11537 		    asoc->my_rwnd_control_len +
11538 		    stcb->sctp_socket->so_rcv.sb_cc);
11539 	} else {
11540 		/*-
11541 		 * If my rwnd is 0, possibly from mbuf depletion as well as
11542 		 * space used, tell the peer there is NO space aka onq == bw
11543 		 */
11544 		drp->current_onq = htonl(spc);
11545 	}
11546 	drp->reserved = 0;
11547 	datap = drp->data;
11548 	m_copydata(m, iphlen, len, (caddr_t)datap);
11549 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11550 	asoc->ctrl_queue_cnt++;
11551 }
11552 
11553 void
11554 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11555 {
11556 	struct sctp_association *asoc;
11557 	struct sctp_cwr_chunk *cwr;
11558 	struct sctp_tmit_chunk *chk;
11559 
11560 	SCTP_TCB_LOCK_ASSERT(stcb);
11561 	if (net == NULL) {
11562 		return;
11563 	}
11564 	asoc = &stcb->asoc;
11565 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11566 		if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11567 			/*
11568 			 * found a previous CWR queued to same destination
11569 			 * update it if needed
11570 			 */
11571 			uint32_t ctsn;
11572 
11573 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11574 			ctsn = ntohl(cwr->tsn);
11575 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11576 				cwr->tsn = htonl(high_tsn);
11577 			}
11578 			if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11579 				/* Make sure override is carried */
11580 				cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11581 			}
11582 			return;
11583 		}
11584 	}
11585 	sctp_alloc_a_chunk(stcb, chk);
11586 	if (chk == NULL) {
11587 		return;
11588 	}
11589 	chk->copy_by_ref = 0;
11590 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
11591 	chk->rec.chunk_id.can_take_data = 1;
11592 	chk->asoc = &stcb->asoc;
11593 	chk->send_size = sizeof(struct sctp_cwr_chunk);
11594 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11595 	if (chk->data == NULL) {
11596 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11597 		return;
11598 	}
11599 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11600 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11601 	chk->sent = SCTP_DATAGRAM_UNSENT;
11602 	chk->snd_count = 0;
11603 	chk->whoTo = net;
11604 	atomic_add_int(&chk->whoTo->ref_count, 1);
11605 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11606 	cwr->ch.chunk_type = SCTP_ECN_CWR;
11607 	cwr->ch.chunk_flags = override;
11608 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11609 	cwr->tsn = htonl(high_tsn);
11610 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11611 	asoc->ctrl_queue_cnt++;
11612 }
11613 
11614 void
11615 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
11616     int number_entries, uint16_t * list,
11617     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11618 {
11619 	uint16_t len, old_len, i;
11620 	struct sctp_stream_reset_out_request *req_out;
11621 	struct sctp_chunkhdr *ch;
11622 
11623 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11624 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11625 
11626 	/* get to new offset for the param. */
11627 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11628 	/* now how long will this param be? */
11629 	len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11630 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11631 	req_out->ph.param_length = htons(len);
11632 	req_out->request_seq = htonl(seq);
11633 	req_out->response_seq = htonl(resp_seq);
11634 	req_out->send_reset_at_tsn = htonl(last_sent);
11635 	if (number_entries) {
11636 		for (i = 0; i < number_entries; i++) {
11637 			req_out->list_of_streams[i] = htons(list[i]);
11638 		}
11639 	}
11640 	if (SCTP_SIZE32(len) > len) {
11641 		/*-
11642 		 * Need to worry about the pad we may end up adding to the
11643 		 * end. This is easy since the struct is either aligned to 4
11644 		 * bytes or 2 bytes off.
11645 		 */
11646 		req_out->list_of_streams[number_entries] = 0;
11647 	}
11648 	/* now fix the chunk length */
11649 	ch->chunk_length = htons(len + old_len);
11650 	chk->book_size = len + old_len;
11651 	chk->book_size_scale = 0;
11652 	chk->send_size = SCTP_SIZE32(chk->book_size);
11653 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11654 	return;
11655 }
11656 
11657 static void
11658 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11659     int number_entries, uint16_t * list,
11660     uint32_t seq)
11661 {
11662 	uint16_t len, old_len, i;
11663 	struct sctp_stream_reset_in_request *req_in;
11664 	struct sctp_chunkhdr *ch;
11665 
11666 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11667 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11668 
11669 	/* get to new offset for the param. */
11670 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11671 	/* now how long will this param be? */
11672 	len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11673 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11674 	req_in->ph.param_length = htons(len);
11675 	req_in->request_seq = htonl(seq);
11676 	if (number_entries) {
11677 		for (i = 0; i < number_entries; i++) {
11678 			req_in->list_of_streams[i] = htons(list[i]);
11679 		}
11680 	}
11681 	if (SCTP_SIZE32(len) > len) {
11682 		/*-
11683 		 * Need to worry about the pad we may end up adding to the
11684 		 * end. This is easy since the struct is either aligned to 4
11685 		 * bytes or 2 bytes off.
11686 		 */
11687 		req_in->list_of_streams[number_entries] = 0;
11688 	}
11689 	/* now fix the chunk length */
11690 	ch->chunk_length = htons(len + old_len);
11691 	chk->book_size = len + old_len;
11692 	chk->book_size_scale = 0;
11693 	chk->send_size = SCTP_SIZE32(chk->book_size);
11694 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11695 	return;
11696 }
11697 
11698 static void
11699 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11700     uint32_t seq)
11701 {
11702 	uint16_t len, old_len;
11703 	struct sctp_stream_reset_tsn_request *req_tsn;
11704 	struct sctp_chunkhdr *ch;
11705 
11706 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11707 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11708 
11709 	/* get to new offset for the param. */
11710 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11711 	/* now how long will this param be? */
11712 	len = sizeof(struct sctp_stream_reset_tsn_request);
11713 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11714 	req_tsn->ph.param_length = htons(len);
11715 	req_tsn->request_seq = htonl(seq);
11716 
11717 	/* now fix the chunk length */
11718 	ch->chunk_length = htons(len + old_len);
11719 	chk->send_size = len + old_len;
11720 	chk->book_size = SCTP_SIZE32(chk->send_size);
11721 	chk->book_size_scale = 0;
11722 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11723 	return;
11724 }
11725 
11726 void
11727 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11728     uint32_t resp_seq, uint32_t result)
11729 {
11730 	uint16_t len, old_len;
11731 	struct sctp_stream_reset_response *resp;
11732 	struct sctp_chunkhdr *ch;
11733 
11734 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11735 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11736 
11737 	/* get to new offset for the param. */
11738 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11739 	/* now how long will this param be? */
11740 	len = sizeof(struct sctp_stream_reset_response);
11741 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11742 	resp->ph.param_length = htons(len);
11743 	resp->response_seq = htonl(resp_seq);
11744 	resp->result = ntohl(result);
11745 
11746 	/* now fix the chunk length */
11747 	ch->chunk_length = htons(len + old_len);
11748 	chk->book_size = len + old_len;
11749 	chk->book_size_scale = 0;
11750 	chk->send_size = SCTP_SIZE32(chk->book_size);
11751 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11752 	return;
11753 }
11754 
11755 void
11756 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11757     uint32_t resp_seq, uint32_t result,
11758     uint32_t send_una, uint32_t recv_next)
11759 {
11760 	uint16_t len, old_len;
11761 	struct sctp_stream_reset_response_tsn *resp;
11762 	struct sctp_chunkhdr *ch;
11763 
11764 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11765 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11766 
11767 	/* get to new offset for the param. */
11768 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11769 	/* now how long will this param be? */
11770 	len = sizeof(struct sctp_stream_reset_response_tsn);
11771 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11772 	resp->ph.param_length = htons(len);
11773 	resp->response_seq = htonl(resp_seq);
11774 	resp->result = htonl(result);
11775 	resp->senders_next_tsn = htonl(send_una);
11776 	resp->receivers_next_tsn = htonl(recv_next);
11777 
11778 	/* now fix the chunk length */
11779 	ch->chunk_length = htons(len + old_len);
11780 	chk->book_size = len + old_len;
11781 	chk->send_size = SCTP_SIZE32(chk->book_size);
11782 	chk->book_size_scale = 0;
11783 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11784 	return;
11785 }
11786 
11787 static void
11788 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
11789     uint32_t seq,
11790     uint16_t adding)
11791 {
11792 	uint16_t len, old_len;
11793 	struct sctp_chunkhdr *ch;
11794 	struct sctp_stream_reset_add_strm *addstr;
11795 
11796 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11797 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11798 
11799 	/* get to new offset for the param. */
11800 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11801 	/* now how long will this param be? */
11802 	len = sizeof(struct sctp_stream_reset_add_strm);
11803 
11804 	/* Fill it out. */
11805 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
11806 	addstr->ph.param_length = htons(len);
11807 	addstr->request_seq = htonl(seq);
11808 	addstr->number_of_streams = htons(adding);
11809 	addstr->reserved = 0;
11810 
11811 	/* now fix the chunk length */
11812 	ch->chunk_length = htons(len + old_len);
11813 	chk->send_size = len + old_len;
11814 	chk->book_size = SCTP_SIZE32(chk->send_size);
11815 	chk->book_size_scale = 0;
11816 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11817 	return;
11818 }
11819 
11820 static void
11821 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
11822     uint32_t seq,
11823     uint16_t adding)
11824 {
11825 	uint16_t len, old_len;
11826 	struct sctp_chunkhdr *ch;
11827 	struct sctp_stream_reset_add_strm *addstr;
11828 
11829 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11830 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11831 
11832 	/* get to new offset for the param. */
11833 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11834 	/* now how long will this param be? */
11835 	len = sizeof(struct sctp_stream_reset_add_strm);
11836 	/* Fill it out. */
11837 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
11838 	addstr->ph.param_length = htons(len);
11839 	addstr->request_seq = htonl(seq);
11840 	addstr->number_of_streams = htons(adding);
11841 	addstr->reserved = 0;
11842 
11843 	/* now fix the chunk length */
11844 	ch->chunk_length = htons(len + old_len);
11845 	chk->send_size = len + old_len;
11846 	chk->book_size = SCTP_SIZE32(chk->send_size);
11847 	chk->book_size_scale = 0;
11848 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11849 	return;
11850 }
11851 
11852 int
11853 sctp_send_str_reset_req(struct sctp_tcb *stcb,
11854     int number_entries, uint16_t * list,
11855     uint8_t send_out_req,
11856     uint8_t send_in_req,
11857     uint8_t send_tsn_req,
11858     uint8_t add_stream,
11859     uint16_t adding_o,
11860     uint16_t adding_i, uint8_t peer_asked)
11861 {
11862 
11863 	struct sctp_association *asoc;
11864 	struct sctp_tmit_chunk *chk;
11865 	struct sctp_chunkhdr *ch;
11866 	uint32_t seq;
11867 
11868 	asoc = &stcb->asoc;
11869 	if (asoc->stream_reset_outstanding) {
11870 		/*-
11871 		 * Already one pending, must get ACK back to clear the flag.
11872 		 */
11873 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
11874 		return (EBUSY);
11875 	}
11876 	if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) &&
11877 	    (add_stream == 0)) {
11878 		/* nothing to do */
11879 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11880 		return (EINVAL);
11881 	}
11882 	if (send_tsn_req && (send_out_req || send_in_req)) {
11883 		/* error, can't do that */
11884 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11885 		return (EINVAL);
11886 	}
11887 	sctp_alloc_a_chunk(stcb, chk);
11888 	if (chk == NULL) {
11889 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11890 		return (ENOMEM);
11891 	}
11892 	chk->copy_by_ref = 0;
11893 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11894 	chk->rec.chunk_id.can_take_data = 0;
11895 	chk->asoc = &stcb->asoc;
11896 	chk->book_size = sizeof(struct sctp_chunkhdr);
11897 	chk->send_size = SCTP_SIZE32(chk->book_size);
11898 	chk->book_size_scale = 0;
11899 
11900 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11901 	if (chk->data == NULL) {
11902 		sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11903 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11904 		return (ENOMEM);
11905 	}
11906 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11907 
11908 	/* setup chunk parameters */
11909 	chk->sent = SCTP_DATAGRAM_UNSENT;
11910 	chk->snd_count = 0;
11911 	if (stcb->asoc.alternate) {
11912 		chk->whoTo = stcb->asoc.alternate;
11913 	} else {
11914 		chk->whoTo = stcb->asoc.primary_destination;
11915 	}
11916 	atomic_add_int(&chk->whoTo->ref_count, 1);
11917 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11918 	ch->chunk_type = SCTP_STREAM_RESET;
11919 	ch->chunk_flags = 0;
11920 	ch->chunk_length = htons(chk->book_size);
11921 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11922 
11923 	seq = stcb->asoc.str_reset_seq_out;
11924 	if (send_out_req) {
11925 		sctp_add_stream_reset_out(chk, number_entries, list,
11926 		    seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
11927 		asoc->stream_reset_out_is_outstanding = 1;
11928 		seq++;
11929 		asoc->stream_reset_outstanding++;
11930 	}
11931 	if ((add_stream & 1) &&
11932 	    ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
11933 		/* Need to allocate more */
11934 		struct sctp_stream_out *oldstream;
11935 		struct sctp_stream_queue_pending *sp, *nsp;
11936 		int i;
11937 
11938 		oldstream = stcb->asoc.strmout;
11939 		/* get some more */
11940 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
11941 		    ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
11942 		    SCTP_M_STRMO);
11943 		if (stcb->asoc.strmout == NULL) {
11944 			uint8_t x;
11945 
11946 			stcb->asoc.strmout = oldstream;
11947 			/* Turn off the bit */
11948 			x = add_stream & 0xfe;
11949 			add_stream = x;
11950 			goto skip_stuff;
11951 		}
11952 		/*
11953 		 * Ok now we proceed with copying the old out stuff and
11954 		 * initializing the new stuff.
11955 		 */
11956 		SCTP_TCB_SEND_LOCK(stcb);
11957 		stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1);
11958 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11959 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11960 			stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
11961 			stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send;
11962 			stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
11963 			stcb->asoc.strmout[i].stream_no = i;
11964 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]);
11965 			/* now anything on those queues? */
11966 			TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
11967 				TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
11968 				TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
11969 			}
11970 			/* Now move assoc pointers too */
11971 			if (stcb->asoc.last_out_stream == &oldstream[i]) {
11972 				stcb->asoc.last_out_stream = &stcb->asoc.strmout[i];
11973 			}
11974 			if (stcb->asoc.locked_on_sending == &oldstream[i]) {
11975 				stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i];
11976 			}
11977 		}
11978 		/* now the new streams */
11979 		stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1);
11980 		for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
11981 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11982 			stcb->asoc.strmout[i].chunks_on_queues = 0;
11983 			stcb->asoc.strmout[i].next_sequence_send = 0x0;
11984 			stcb->asoc.strmout[i].stream_no = i;
11985 			stcb->asoc.strmout[i].last_msg_incomplete = 0;
11986 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
11987 		}
11988 		stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
11989 		SCTP_FREE(oldstream, SCTP_M_STRMO);
11990 		SCTP_TCB_SEND_UNLOCK(stcb);
11991 	}
11992 skip_stuff:
11993 	if ((add_stream & 1) && (adding_o > 0)) {
11994 		asoc->strm_pending_add_size = adding_o;
11995 		asoc->peer_req_out = peer_asked;
11996 		sctp_add_an_out_stream(chk, seq, adding_o);
11997 		seq++;
11998 		asoc->stream_reset_outstanding++;
11999 	}
12000 	if ((add_stream & 2) && (adding_i > 0)) {
12001 		sctp_add_an_in_stream(chk, seq, adding_i);
12002 		seq++;
12003 		asoc->stream_reset_outstanding++;
12004 	}
12005 	if (send_in_req) {
12006 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
12007 		seq++;
12008 		asoc->stream_reset_outstanding++;
12009 	}
12010 	if (send_tsn_req) {
12011 		sctp_add_stream_reset_tsn(chk, seq);
12012 		asoc->stream_reset_outstanding++;
12013 	}
12014 	asoc->str_reset = chk;
12015 	/* insert the chunk for sending */
12016 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
12017 	    chk,
12018 	    sctp_next);
12019 	asoc->ctrl_queue_cnt++;
12020 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
12021 	return (0);
12022 }
12023 
12024 void
12025 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
12026     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12027     uint8_t use_mflowid, uint32_t mflowid,
12028     uint32_t vrf_id, uint16_t port)
12029 {
12030 	/* Don't respond to an ABORT with an ABORT. */
12031 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
12032 		if (cause)
12033 			sctp_m_freem(cause);
12034 		return;
12035 	}
12036 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
12037 	    use_mflowid, mflowid,
12038 	    vrf_id, port);
12039 	return;
12040 }
12041 
12042 void
12043 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
12044     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12045     uint8_t use_mflowid, uint32_t mflowid,
12046     uint32_t vrf_id, uint16_t port)
12047 {
12048 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
12049 	    use_mflowid, mflowid,
12050 	    vrf_id, port);
12051 	return;
12052 }
12053 
12054 static struct mbuf *
12055 sctp_copy_resume(struct uio *uio,
12056     int max_send_len,
12057     int user_marks_eor,
12058     int *error,
12059     uint32_t * sndout,
12060     struct mbuf **new_tail)
12061 {
12062 	struct mbuf *m;
12063 
12064 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
12065 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
12066 	if (m == NULL) {
12067 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
12068 		*error = ENOBUFS;
12069 	} else {
12070 		*sndout = m_length(m, NULL);
12071 		*new_tail = m_last(m);
12072 	}
12073 	return (m);
12074 }
12075 
12076 static int
12077 sctp_copy_one(struct sctp_stream_queue_pending *sp,
12078     struct uio *uio,
12079     int resv_upfront)
12080 {
12081 	int left;
12082 
12083 	left = sp->length;
12084 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
12085 	    resv_upfront, 0);
12086 	if (sp->data == NULL) {
12087 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
12088 		return (ENOBUFS);
12089 	}
12090 	sp->tail_mbuf = m_last(sp->data);
12091 	return (0);
12092 }
12093 
12094 
12095 
12096 static struct sctp_stream_queue_pending *
12097 sctp_copy_it_in(struct sctp_tcb *stcb,
12098     struct sctp_association *asoc,
12099     struct sctp_sndrcvinfo *srcv,
12100     struct uio *uio,
12101     struct sctp_nets *net,
12102     int max_send_len,
12103     int user_marks_eor,
12104     int *error)
12105 {
12106 	/*-
12107 	 * This routine must be very careful in its work. Protocol
12108 	 * processing is up and running so care must be taken to spl...()
12109 	 * when you need to do something that may effect the stcb/asoc. The
12110 	 * sb is locked however. When data is copied the protocol processing
12111 	 * should be enabled since this is a slower operation...
12112 	 */
12113 	struct sctp_stream_queue_pending *sp = NULL;
12114 	int resv_in_first;
12115 
12116 	*error = 0;
12117 	/* Now can we send this? */
12118 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12119 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12120 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12121 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12122 		/* got data while shutting down */
12123 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12124 		*error = ECONNRESET;
12125 		goto out_now;
12126 	}
12127 	sctp_alloc_a_strmoq(stcb, sp);
12128 	if (sp == NULL) {
12129 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12130 		*error = ENOMEM;
12131 		goto out_now;
12132 	}
12133 	sp->act_flags = 0;
12134 	sp->sender_all_done = 0;
12135 	sp->sinfo_flags = srcv->sinfo_flags;
12136 	sp->timetolive = srcv->sinfo_timetolive;
12137 	sp->ppid = srcv->sinfo_ppid;
12138 	sp->context = srcv->sinfo_context;
12139 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
12140 
12141 	sp->stream = srcv->sinfo_stream;
12142 	sp->length = min(uio->uio_resid, max_send_len);
12143 	if ((sp->length == (uint32_t) uio->uio_resid) &&
12144 	    ((user_marks_eor == 0) ||
12145 	    (srcv->sinfo_flags & SCTP_EOF) ||
12146 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12147 		sp->msg_is_complete = 1;
12148 	} else {
12149 		sp->msg_is_complete = 0;
12150 	}
12151 	sp->sender_all_done = 0;
12152 	sp->some_taken = 0;
12153 	sp->put_last_out = 0;
12154 	resv_in_first = sizeof(struct sctp_data_chunk);
12155 	sp->data = sp->tail_mbuf = NULL;
12156 	if (sp->length == 0) {
12157 		*error = 0;
12158 		goto skip_copy;
12159 	}
12160 	if (srcv->sinfo_keynumber_valid) {
12161 		sp->auth_keyid = srcv->sinfo_keynumber;
12162 	} else {
12163 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
12164 	}
12165 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
12166 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
12167 		sp->holds_key_ref = 1;
12168 	}
12169 	*error = sctp_copy_one(sp, uio, resv_in_first);
12170 skip_copy:
12171 	if (*error) {
12172 		sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
12173 		sp = NULL;
12174 	} else {
12175 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12176 			sp->net = net;
12177 			atomic_add_int(&sp->net->ref_count, 1);
12178 		} else {
12179 			sp->net = NULL;
12180 		}
12181 		sctp_set_prsctp_policy(sp);
12182 	}
12183 out_now:
12184 	return (sp);
12185 }
12186 
12187 
12188 int
12189 sctp_sosend(struct socket *so,
12190     struct sockaddr *addr,
12191     struct uio *uio,
12192     struct mbuf *top,
12193     struct mbuf *control,
12194     int flags,
12195     struct thread *p
12196 )
12197 {
12198 	int error, use_sndinfo = 0;
12199 	struct sctp_sndrcvinfo sndrcvninfo;
12200 	struct sockaddr *addr_to_use;
12201 
12202 #if defined(INET) && defined(INET6)
12203 	struct sockaddr_in sin;
12204 
12205 #endif
12206 
12207 	if (control) {
12208 		/* process cmsg snd/rcv info (maybe a assoc-id) */
12209 		if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control,
12210 		    sizeof(sndrcvninfo))) {
12211 			/* got one */
12212 			use_sndinfo = 1;
12213 		}
12214 	}
12215 	addr_to_use = addr;
12216 #if defined(INET) && defined(INET6)
12217 	if ((addr) && (addr->sa_family == AF_INET6)) {
12218 		struct sockaddr_in6 *sin6;
12219 
12220 		sin6 = (struct sockaddr_in6 *)addr;
12221 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12222 			in6_sin6_2_sin(&sin, sin6);
12223 			addr_to_use = (struct sockaddr *)&sin;
12224 		}
12225 	}
12226 #endif
12227 	error = sctp_lower_sosend(so, addr_to_use, uio, top,
12228 	    control,
12229 	    flags,
12230 	    use_sndinfo ? &sndrcvninfo : NULL
12231 	    ,p
12232 	    );
12233 	return (error);
12234 }
12235 
12236 
12237 int
12238 sctp_lower_sosend(struct socket *so,
12239     struct sockaddr *addr,
12240     struct uio *uio,
12241     struct mbuf *i_pak,
12242     struct mbuf *control,
12243     int flags,
12244     struct sctp_sndrcvinfo *srcv
12245     ,
12246     struct thread *p
12247 )
12248 {
12249 	unsigned int sndlen = 0, max_len;
12250 	int error, len;
12251 	struct mbuf *top = NULL;
12252 	int queue_only = 0, queue_only_for_init = 0;
12253 	int free_cnt_applied = 0;
12254 	int un_sent;
12255 	int now_filled = 0;
12256 	unsigned int inqueue_bytes = 0;
12257 	struct sctp_block_entry be;
12258 	struct sctp_inpcb *inp;
12259 	struct sctp_tcb *stcb = NULL;
12260 	struct timeval now;
12261 	struct sctp_nets *net;
12262 	struct sctp_association *asoc;
12263 	struct sctp_inpcb *t_inp;
12264 	int user_marks_eor;
12265 	int create_lock_applied = 0;
12266 	int nagle_applies = 0;
12267 	int some_on_control = 0;
12268 	int got_all_of_the_send = 0;
12269 	int hold_tcblock = 0;
12270 	int non_blocking = 0;
12271 	uint32_t local_add_more, local_soresv = 0;
12272 	uint16_t port;
12273 	uint16_t sinfo_flags;
12274 	sctp_assoc_t sinfo_assoc_id;
12275 
12276 	error = 0;
12277 	net = NULL;
12278 	stcb = NULL;
12279 	asoc = NULL;
12280 
12281 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12282 	if (inp == NULL) {
12283 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12284 		error = EINVAL;
12285 		if (i_pak) {
12286 			SCTP_RELEASE_PKT(i_pak);
12287 		}
12288 		return (error);
12289 	}
12290 	if ((uio == NULL) && (i_pak == NULL)) {
12291 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12292 		return (EINVAL);
12293 	}
12294 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12295 	atomic_add_int(&inp->total_sends, 1);
12296 	if (uio) {
12297 		if (uio->uio_resid < 0) {
12298 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12299 			return (EINVAL);
12300 		}
12301 		sndlen = uio->uio_resid;
12302 	} else {
12303 		top = SCTP_HEADER_TO_CHAIN(i_pak);
12304 		sndlen = SCTP_HEADER_LEN(i_pak);
12305 	}
12306 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
12307 	    (void *)addr,
12308 	    sndlen);
12309 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12310 	    (inp->sctp_socket->so_qlimit)) {
12311 		/* The listener can NOT send */
12312 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12313 		error = ENOTCONN;
12314 		goto out_unlocked;
12315 	}
12316 	/**
12317 	 * Pre-screen address, if one is given the sin-len
12318 	 * must be set correctly!
12319 	 */
12320 	if (addr) {
12321 		union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12322 
12323 		switch (raddr->sa.sa_family) {
12324 #ifdef INET
12325 		case AF_INET:
12326 			if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12327 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12328 				error = EINVAL;
12329 				goto out_unlocked;
12330 			}
12331 			port = raddr->sin.sin_port;
12332 			break;
12333 #endif
12334 #ifdef INET6
12335 		case AF_INET6:
12336 			if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12337 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12338 				error = EINVAL;
12339 				goto out_unlocked;
12340 			}
12341 			port = raddr->sin6.sin6_port;
12342 			break;
12343 #endif
12344 		default:
12345 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT);
12346 			error = EAFNOSUPPORT;
12347 			goto out_unlocked;
12348 		}
12349 	} else
12350 		port = 0;
12351 
12352 	if (srcv) {
12353 		sinfo_flags = srcv->sinfo_flags;
12354 		sinfo_assoc_id = srcv->sinfo_assoc_id;
12355 		if (INVALID_SINFO_FLAG(sinfo_flags) ||
12356 		    PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12357 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12358 			error = EINVAL;
12359 			goto out_unlocked;
12360 		}
12361 		if (srcv->sinfo_flags)
12362 			SCTP_STAT_INCR(sctps_sends_with_flags);
12363 	} else {
12364 		sinfo_flags = inp->def_send.sinfo_flags;
12365 		sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12366 	}
12367 	if (sinfo_flags & SCTP_SENDALL) {
12368 		/* its a sendall */
12369 		error = sctp_sendall(inp, uio, top, srcv);
12370 		top = NULL;
12371 		goto out_unlocked;
12372 	}
12373 	if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12374 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12375 		error = EINVAL;
12376 		goto out_unlocked;
12377 	}
12378 	/* now we must find the assoc */
12379 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12380 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12381 		SCTP_INP_RLOCK(inp);
12382 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
12383 		if (stcb) {
12384 			SCTP_TCB_LOCK(stcb);
12385 			hold_tcblock = 1;
12386 		}
12387 		SCTP_INP_RUNLOCK(inp);
12388 	} else if (sinfo_assoc_id) {
12389 		stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0);
12390 	} else if (addr) {
12391 		/*-
12392 		 * Since we did not use findep we must
12393 		 * increment it, and if we don't find a tcb
12394 		 * decrement it.
12395 		 */
12396 		SCTP_INP_WLOCK(inp);
12397 		SCTP_INP_INCR_REF(inp);
12398 		SCTP_INP_WUNLOCK(inp);
12399 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12400 		if (stcb == NULL) {
12401 			SCTP_INP_WLOCK(inp);
12402 			SCTP_INP_DECR_REF(inp);
12403 			SCTP_INP_WUNLOCK(inp);
12404 		} else {
12405 			hold_tcblock = 1;
12406 		}
12407 	}
12408 	if ((stcb == NULL) && (addr)) {
12409 		/* Possible implicit send? */
12410 		SCTP_ASOC_CREATE_LOCK(inp);
12411 		create_lock_applied = 1;
12412 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12413 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12414 			/* Should I really unlock ? */
12415 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12416 			error = EINVAL;
12417 			goto out_unlocked;
12418 
12419 		}
12420 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12421 		    (addr->sa_family == AF_INET6)) {
12422 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12423 			error = EINVAL;
12424 			goto out_unlocked;
12425 		}
12426 		SCTP_INP_WLOCK(inp);
12427 		SCTP_INP_INCR_REF(inp);
12428 		SCTP_INP_WUNLOCK(inp);
12429 		/* With the lock applied look again */
12430 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12431 		if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12432 			stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12433 		}
12434 		if (stcb == NULL) {
12435 			SCTP_INP_WLOCK(inp);
12436 			SCTP_INP_DECR_REF(inp);
12437 			SCTP_INP_WUNLOCK(inp);
12438 		} else {
12439 			hold_tcblock = 1;
12440 		}
12441 		if (error) {
12442 			goto out_unlocked;
12443 		}
12444 		if (t_inp != inp) {
12445 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12446 			error = ENOTCONN;
12447 			goto out_unlocked;
12448 		}
12449 	}
12450 	if (stcb == NULL) {
12451 		if (addr == NULL) {
12452 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12453 			error = ENOENT;
12454 			goto out_unlocked;
12455 		} else {
12456 			/* We must go ahead and start the INIT process */
12457 			uint32_t vrf_id;
12458 
12459 			if ((sinfo_flags & SCTP_ABORT) ||
12460 			    ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12461 				/*-
12462 				 * User asks to abort a non-existant assoc,
12463 				 * or EOF a non-existant assoc with no data
12464 				 */
12465 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12466 				error = ENOENT;
12467 				goto out_unlocked;
12468 			}
12469 			/* get an asoc/stcb struct */
12470 			vrf_id = inp->def_vrf_id;
12471 #ifdef INVARIANTS
12472 			if (create_lock_applied == 0) {
12473 				panic("Error, should hold create lock and I don't?");
12474 			}
12475 #endif
12476 			stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
12477 			    p
12478 			    );
12479 			if (stcb == NULL) {
12480 				/* Error is setup for us in the call */
12481 				goto out_unlocked;
12482 			}
12483 			if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
12484 				stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
12485 				/*
12486 				 * Set the connected flag so we can queue
12487 				 * data
12488 				 */
12489 				soisconnecting(so);
12490 			}
12491 			hold_tcblock = 1;
12492 			if (create_lock_applied) {
12493 				SCTP_ASOC_CREATE_UNLOCK(inp);
12494 				create_lock_applied = 0;
12495 			} else {
12496 				SCTP_PRINTF("Huh-3? create lock should have been on??\n");
12497 			}
12498 			/*
12499 			 * Turn on queue only flag to prevent data from
12500 			 * being sent
12501 			 */
12502 			queue_only = 1;
12503 			asoc = &stcb->asoc;
12504 			SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12505 			(void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
12506 
12507 			/* initialize authentication params for the assoc */
12508 			sctp_initialize_auth_params(inp, stcb);
12509 
12510 			if (control) {
12511 				if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12512 					sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7);
12513 					hold_tcblock = 0;
12514 					stcb = NULL;
12515 					goto out_unlocked;
12516 				}
12517 			}
12518 			/* out with the INIT */
12519 			queue_only_for_init = 1;
12520 			/*-
12521 			 * we may want to dig in after this call and adjust the MTU
12522 			 * value. It defaulted to 1500 (constant) but the ro
12523 			 * structure may now have an update and thus we may need to
12524 			 * change it BEFORE we append the message.
12525 			 */
12526 		}
12527 	} else
12528 		asoc = &stcb->asoc;
12529 	if (srcv == NULL)
12530 		srcv = (struct sctp_sndrcvinfo *)&asoc->def_send;
12531 	if (srcv->sinfo_flags & SCTP_ADDR_OVER) {
12532 		if (addr)
12533 			net = sctp_findnet(stcb, addr);
12534 		else
12535 			net = NULL;
12536 		if ((net == NULL) ||
12537 		    ((port != 0) && (port != stcb->rport))) {
12538 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12539 			error = EINVAL;
12540 			goto out_unlocked;
12541 		}
12542 	} else {
12543 		if (stcb->asoc.alternate) {
12544 			net = stcb->asoc.alternate;
12545 		} else {
12546 			net = stcb->asoc.primary_destination;
12547 		}
12548 	}
12549 	atomic_add_int(&stcb->total_sends, 1);
12550 	/* Keep the stcb from being freed under our feet */
12551 	atomic_add_int(&asoc->refcnt, 1);
12552 	free_cnt_applied = 1;
12553 
12554 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
12555 		if (sndlen > asoc->smallest_mtu) {
12556 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12557 			error = EMSGSIZE;
12558 			goto out_unlocked;
12559 		}
12560 	}
12561 	if (SCTP_SO_IS_NBIO(so)
12562 	    || (flags & MSG_NBIO)
12563 	    ) {
12564 		non_blocking = 1;
12565 	}
12566 	/* would we block? */
12567 	if (non_blocking) {
12568 		if (hold_tcblock == 0) {
12569 			SCTP_TCB_LOCK(stcb);
12570 			hold_tcblock = 1;
12571 		}
12572 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12573 		if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) ||
12574 		    (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12575 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
12576 			if (sndlen > SCTP_SB_LIMIT_SND(so))
12577 				error = EMSGSIZE;
12578 			else
12579 				error = EWOULDBLOCK;
12580 			goto out_unlocked;
12581 		}
12582 		stcb->asoc.sb_send_resv += sndlen;
12583 		SCTP_TCB_UNLOCK(stcb);
12584 		hold_tcblock = 0;
12585 	} else {
12586 		atomic_add_int(&stcb->asoc.sb_send_resv, sndlen);
12587 	}
12588 	local_soresv = sndlen;
12589 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12590 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12591 		error = ECONNRESET;
12592 		goto out_unlocked;
12593 	}
12594 	if (create_lock_applied) {
12595 		SCTP_ASOC_CREATE_UNLOCK(inp);
12596 		create_lock_applied = 0;
12597 	}
12598 	if (asoc->stream_reset_outstanding) {
12599 		/*
12600 		 * Can't queue any data while stream reset is underway.
12601 		 */
12602 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
12603 		error = EAGAIN;
12604 		goto out_unlocked;
12605 	}
12606 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12607 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12608 		queue_only = 1;
12609 	}
12610 	/* we are now done with all control */
12611 	if (control) {
12612 		sctp_m_freem(control);
12613 		control = NULL;
12614 	}
12615 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12616 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12617 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12618 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12619 		if (srcv->sinfo_flags & SCTP_ABORT) {
12620 			;
12621 		} else {
12622 			SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12623 			error = ECONNRESET;
12624 			goto out_unlocked;
12625 		}
12626 	}
12627 	/* Ok, we will attempt a msgsnd :> */
12628 	if (p) {
12629 		p->td_ru.ru_msgsnd++;
12630 	}
12631 	/* Are we aborting? */
12632 	if (srcv->sinfo_flags & SCTP_ABORT) {
12633 		struct mbuf *mm;
12634 		int tot_demand, tot_out = 0, max_out;
12635 
12636 		SCTP_STAT_INCR(sctps_sends_with_abort);
12637 		if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12638 		    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12639 			/* It has to be up before we abort */
12640 			/* how big is the user initiated abort? */
12641 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12642 			error = EINVAL;
12643 			goto out;
12644 		}
12645 		if (hold_tcblock) {
12646 			SCTP_TCB_UNLOCK(stcb);
12647 			hold_tcblock = 0;
12648 		}
12649 		if (top) {
12650 			struct mbuf *cntm = NULL;
12651 
12652 			mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA);
12653 			if (sndlen != 0) {
12654 				for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12655 					tot_out += SCTP_BUF_LEN(cntm);
12656 				}
12657 			}
12658 		} else {
12659 			/* Must fit in a MTU */
12660 			tot_out = sndlen;
12661 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12662 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12663 				/* To big */
12664 				SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12665 				error = EMSGSIZE;
12666 				goto out;
12667 			}
12668 			mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA);
12669 		}
12670 		if (mm == NULL) {
12671 			SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12672 			error = ENOMEM;
12673 			goto out;
12674 		}
12675 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12676 		max_out -= sizeof(struct sctp_abort_msg);
12677 		if (tot_out > max_out) {
12678 			tot_out = max_out;
12679 		}
12680 		if (mm) {
12681 			struct sctp_paramhdr *ph;
12682 
12683 			/* now move forward the data pointer */
12684 			ph = mtod(mm, struct sctp_paramhdr *);
12685 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12686 			ph->param_length = htons(sizeof(struct sctp_paramhdr) + tot_out);
12687 			ph++;
12688 			SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
12689 			if (top == NULL) {
12690 				error = uiomove((caddr_t)ph, (int)tot_out, uio);
12691 				if (error) {
12692 					/*-
12693 					 * Here if we can't get his data we
12694 					 * still abort we just don't get to
12695 					 * send the users note :-0
12696 					 */
12697 					sctp_m_freem(mm);
12698 					mm = NULL;
12699 				}
12700 			} else {
12701 				if (sndlen != 0) {
12702 					SCTP_BUF_NEXT(mm) = top;
12703 				}
12704 			}
12705 		}
12706 		if (hold_tcblock == 0) {
12707 			SCTP_TCB_LOCK(stcb);
12708 		}
12709 		atomic_add_int(&stcb->asoc.refcnt, -1);
12710 		free_cnt_applied = 0;
12711 		/* release this lock, otherwise we hang on ourselves */
12712 		sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED);
12713 		/* now relock the stcb so everything is sane */
12714 		hold_tcblock = 0;
12715 		stcb = NULL;
12716 		/*
12717 		 * In this case top is already chained to mm avoid double
12718 		 * free, since we free it below if top != NULL and driver
12719 		 * would free it after sending the packet out
12720 		 */
12721 		if (sndlen != 0) {
12722 			top = NULL;
12723 		}
12724 		goto out_unlocked;
12725 	}
12726 	/* Calculate the maximum we can send */
12727 	inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12728 	if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12729 		if (non_blocking) {
12730 			/* we already checked for non-blocking above. */
12731 			max_len = sndlen;
12732 		} else {
12733 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12734 		}
12735 	} else {
12736 		max_len = 0;
12737 	}
12738 	if (hold_tcblock) {
12739 		SCTP_TCB_UNLOCK(stcb);
12740 		hold_tcblock = 0;
12741 	}
12742 	/* Is the stream no. valid? */
12743 	if (srcv->sinfo_stream >= asoc->streamoutcnt) {
12744 		/* Invalid stream number */
12745 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12746 		error = EINVAL;
12747 		goto out_unlocked;
12748 	}
12749 	if (asoc->strmout == NULL) {
12750 		/* huh? software error */
12751 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12752 		error = EFAULT;
12753 		goto out_unlocked;
12754 	}
12755 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
12756 	if ((user_marks_eor == 0) &&
12757 	    (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
12758 		/* It will NEVER fit */
12759 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12760 		error = EMSGSIZE;
12761 		goto out_unlocked;
12762 	}
12763 	if ((uio == NULL) && user_marks_eor) {
12764 		/*-
12765 		 * We do not support eeor mode for
12766 		 * sending with mbuf chains (like sendfile).
12767 		 */
12768 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12769 		error = EINVAL;
12770 		goto out_unlocked;
12771 	}
12772 	if (user_marks_eor) {
12773 		local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
12774 	} else {
12775 		/*-
12776 		 * For non-eeor the whole message must fit in
12777 		 * the socket send buffer.
12778 		 */
12779 		local_add_more = sndlen;
12780 	}
12781 	len = 0;
12782 	if (non_blocking) {
12783 		goto skip_preblock;
12784 	}
12785 	if (((max_len <= local_add_more) &&
12786 	    (SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
12787 	    (max_len == 0) ||
12788 	    ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12789 		/* No room right now ! */
12790 		SOCKBUF_LOCK(&so->so_snd);
12791 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12792 		while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
12793 		    ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12794 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n",
12795 			    (unsigned int)SCTP_SB_LIMIT_SND(so),
12796 			    inqueue_bytes,
12797 			    local_add_more,
12798 			    stcb->asoc.stream_queue_cnt,
12799 			    stcb->asoc.chunks_on_out_queue,
12800 			    SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
12801 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12802 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
12803 			}
12804 			be.error = 0;
12805 			stcb->block_entry = &be;
12806 			error = sbwait(&so->so_snd);
12807 			stcb->block_entry = NULL;
12808 			if (error || so->so_error || be.error) {
12809 				if (error == 0) {
12810 					if (so->so_error)
12811 						error = so->so_error;
12812 					if (be.error) {
12813 						error = be.error;
12814 					}
12815 				}
12816 				SOCKBUF_UNLOCK(&so->so_snd);
12817 				goto out_unlocked;
12818 			}
12819 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12820 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12821 				    asoc, stcb->asoc.total_output_queue_size);
12822 			}
12823 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12824 				goto out_unlocked;
12825 			}
12826 			inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12827 		}
12828 		if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12829 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12830 		} else {
12831 			max_len = 0;
12832 		}
12833 		SOCKBUF_UNLOCK(&so->so_snd);
12834 	}
12835 skip_preblock:
12836 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12837 		goto out_unlocked;
12838 	}
12839 	/*
12840 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
12841 	 * case NOTE: uio will be null when top/mbuf is passed
12842 	 */
12843 	if (sndlen == 0) {
12844 		if (srcv->sinfo_flags & SCTP_EOF) {
12845 			got_all_of_the_send = 1;
12846 			goto dataless_eof;
12847 		} else {
12848 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12849 			error = EINVAL;
12850 			goto out;
12851 		}
12852 	}
12853 	if (top == NULL) {
12854 		struct sctp_stream_queue_pending *sp;
12855 		struct sctp_stream_out *strm;
12856 		uint32_t sndout;
12857 
12858 		SCTP_TCB_SEND_LOCK(stcb);
12859 		if ((asoc->stream_locked) &&
12860 		    (asoc->stream_locked_on != srcv->sinfo_stream)) {
12861 			SCTP_TCB_SEND_UNLOCK(stcb);
12862 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12863 			error = EINVAL;
12864 			goto out;
12865 		}
12866 		SCTP_TCB_SEND_UNLOCK(stcb);
12867 
12868 		strm = &stcb->asoc.strmout[srcv->sinfo_stream];
12869 		if (strm->last_msg_incomplete == 0) {
12870 	do_a_copy_in:
12871 			sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error);
12872 			if ((sp == NULL) || (error)) {
12873 				goto out;
12874 			}
12875 			SCTP_TCB_SEND_LOCK(stcb);
12876 			if (sp->msg_is_complete) {
12877 				strm->last_msg_incomplete = 0;
12878 				asoc->stream_locked = 0;
12879 			} else {
12880 				/*
12881 				 * Just got locked to this guy in case of an
12882 				 * interrupt.
12883 				 */
12884 				strm->last_msg_incomplete = 1;
12885 				asoc->stream_locked = 1;
12886 				asoc->stream_locked_on = srcv->sinfo_stream;
12887 				sp->sender_all_done = 0;
12888 			}
12889 			sctp_snd_sb_alloc(stcb, sp->length);
12890 			atomic_add_int(&asoc->stream_queue_cnt, 1);
12891 			if (srcv->sinfo_flags & SCTP_UNORDERED) {
12892 				SCTP_STAT_INCR(sctps_sends_with_unord);
12893 			}
12894 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
12895 			stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1);
12896 			SCTP_TCB_SEND_UNLOCK(stcb);
12897 		} else {
12898 			SCTP_TCB_SEND_LOCK(stcb);
12899 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
12900 			SCTP_TCB_SEND_UNLOCK(stcb);
12901 			if (sp == NULL) {
12902 				/* ???? Huh ??? last msg is gone */
12903 #ifdef INVARIANTS
12904 				panic("Warning: Last msg marked incomplete, yet nothing left?");
12905 #else
12906 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
12907 				strm->last_msg_incomplete = 0;
12908 #endif
12909 				goto do_a_copy_in;
12910 
12911 			}
12912 		}
12913 		while (uio->uio_resid > 0) {
12914 			/* How much room do we have? */
12915 			struct mbuf *new_tail, *mm;
12916 
12917 			if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12918 				max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
12919 			else
12920 				max_len = 0;
12921 
12922 			if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
12923 			    (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
12924 			    (uio->uio_resid && (uio->uio_resid <= (int)max_len))) {
12925 				sndout = 0;
12926 				new_tail = NULL;
12927 				if (hold_tcblock) {
12928 					SCTP_TCB_UNLOCK(stcb);
12929 					hold_tcblock = 0;
12930 				}
12931 				mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail);
12932 				if ((mm == NULL) || error) {
12933 					if (mm) {
12934 						sctp_m_freem(mm);
12935 					}
12936 					goto out;
12937 				}
12938 				/* Update the mbuf and count */
12939 				SCTP_TCB_SEND_LOCK(stcb);
12940 				if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12941 					/*
12942 					 * we need to get out. Peer probably
12943 					 * aborted.
12944 					 */
12945 					sctp_m_freem(mm);
12946 					if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
12947 						SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12948 						error = ECONNRESET;
12949 					}
12950 					SCTP_TCB_SEND_UNLOCK(stcb);
12951 					goto out;
12952 				}
12953 				if (sp->tail_mbuf) {
12954 					/* tack it to the end */
12955 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
12956 					sp->tail_mbuf = new_tail;
12957 				} else {
12958 					/* A stolen mbuf */
12959 					sp->data = mm;
12960 					sp->tail_mbuf = new_tail;
12961 				}
12962 				sctp_snd_sb_alloc(stcb, sndout);
12963 				atomic_add_int(&sp->length, sndout);
12964 				len += sndout;
12965 
12966 				/* Did we reach EOR? */
12967 				if ((uio->uio_resid == 0) &&
12968 				    ((user_marks_eor == 0) ||
12969 				    (srcv->sinfo_flags & SCTP_EOF) ||
12970 				    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12971 					sp->msg_is_complete = 1;
12972 				} else {
12973 					sp->msg_is_complete = 0;
12974 				}
12975 				SCTP_TCB_SEND_UNLOCK(stcb);
12976 			}
12977 			if (uio->uio_resid == 0) {
12978 				/* got it all? */
12979 				continue;
12980 			}
12981 			/* PR-SCTP? */
12982 			if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
12983 				/*
12984 				 * This is ugly but we must assure locking
12985 				 * order
12986 				 */
12987 				if (hold_tcblock == 0) {
12988 					SCTP_TCB_LOCK(stcb);
12989 					hold_tcblock = 1;
12990 				}
12991 				sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
12992 				inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12993 				if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12994 					max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12995 				else
12996 					max_len = 0;
12997 				if (max_len > 0) {
12998 					continue;
12999 				}
13000 				SCTP_TCB_UNLOCK(stcb);
13001 				hold_tcblock = 0;
13002 			}
13003 			/* wait for space now */
13004 			if (non_blocking) {
13005 				/* Non-blocking io in place out */
13006 				goto skip_out_eof;
13007 			}
13008 			/* What about the INIT, send it maybe */
13009 			if (queue_only_for_init) {
13010 				if (hold_tcblock == 0) {
13011 					SCTP_TCB_LOCK(stcb);
13012 					hold_tcblock = 1;
13013 				}
13014 				if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13015 					/* a collision took us forward? */
13016 					queue_only = 0;
13017 				} else {
13018 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13019 					SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
13020 					queue_only = 1;
13021 				}
13022 			}
13023 			if ((net->flight_size > net->cwnd) &&
13024 			    (asoc->sctp_cmt_on_off == 0)) {
13025 				SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13026 				queue_only = 1;
13027 			} else if (asoc->ifp_had_enobuf) {
13028 				SCTP_STAT_INCR(sctps_ifnomemqueued);
13029 				if (net->flight_size > (2 * net->mtu)) {
13030 					queue_only = 1;
13031 				}
13032 				asoc->ifp_had_enobuf = 0;
13033 			}
13034 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13035 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13036 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13037 			    (stcb->asoc.total_flight > 0) &&
13038 			    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13039 			    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13040 
13041 				/*-
13042 				 * Ok, Nagle is set on and we have data outstanding.
13043 				 * Don't send anything and let SACKs drive out the
13044 				 * data unless wen have a "full" segment to send.
13045 				 */
13046 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13047 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13048 				}
13049 				SCTP_STAT_INCR(sctps_naglequeued);
13050 				nagle_applies = 1;
13051 			} else {
13052 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13053 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13054 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13055 				}
13056 				SCTP_STAT_INCR(sctps_naglesent);
13057 				nagle_applies = 0;
13058 			}
13059 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13060 
13061 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13062 				    nagle_applies, un_sent);
13063 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13064 				    stcb->asoc.total_flight,
13065 				    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13066 			}
13067 			if (queue_only_for_init)
13068 				queue_only_for_init = 0;
13069 			if ((queue_only == 0) && (nagle_applies == 0)) {
13070 				/*-
13071 				 * need to start chunk output
13072 				 * before blocking.. note that if
13073 				 * a lock is already applied, then
13074 				 * the input via the net is happening
13075 				 * and I don't need to start output :-D
13076 				 */
13077 				if (hold_tcblock == 0) {
13078 					if (SCTP_TCB_TRYLOCK(stcb)) {
13079 						hold_tcblock = 1;
13080 						sctp_chunk_output(inp,
13081 						    stcb,
13082 						    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13083 					}
13084 				} else {
13085 					sctp_chunk_output(inp,
13086 					    stcb,
13087 					    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13088 				}
13089 				if (hold_tcblock == 1) {
13090 					SCTP_TCB_UNLOCK(stcb);
13091 					hold_tcblock = 0;
13092 				}
13093 			}
13094 			SOCKBUF_LOCK(&so->so_snd);
13095 			/*-
13096 			 * This is a bit strange, but I think it will
13097 			 * work. The total_output_queue_size is locked and
13098 			 * protected by the TCB_LOCK, which we just released.
13099 			 * There is a race that can occur between releasing it
13100 			 * above, and me getting the socket lock, where sacks
13101 			 * come in but we have not put the SB_WAIT on the
13102 			 * so_snd buffer to get the wakeup. After the LOCK
13103 			 * is applied the sack_processing will also need to
13104 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
13105 			 * once we have the socket buffer lock if we recheck the
13106 			 * size we KNOW we will get to sleep safely with the
13107 			 * wakeup flag in place.
13108 			 */
13109 			if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
13110 			    min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
13111 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13112 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
13113 					    asoc, uio->uio_resid);
13114 				}
13115 				be.error = 0;
13116 				stcb->block_entry = &be;
13117 				error = sbwait(&so->so_snd);
13118 				stcb->block_entry = NULL;
13119 
13120 				if (error || so->so_error || be.error) {
13121 					if (error == 0) {
13122 						if (so->so_error)
13123 							error = so->so_error;
13124 						if (be.error) {
13125 							error = be.error;
13126 						}
13127 					}
13128 					SOCKBUF_UNLOCK(&so->so_snd);
13129 					goto out_unlocked;
13130 				}
13131 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13132 					sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
13133 					    asoc, stcb->asoc.total_output_queue_size);
13134 				}
13135 			}
13136 			SOCKBUF_UNLOCK(&so->so_snd);
13137 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13138 				goto out_unlocked;
13139 			}
13140 		}
13141 		SCTP_TCB_SEND_LOCK(stcb);
13142 		if (sp) {
13143 			if (sp->msg_is_complete == 0) {
13144 				strm->last_msg_incomplete = 1;
13145 				asoc->stream_locked = 1;
13146 				asoc->stream_locked_on = srcv->sinfo_stream;
13147 			} else {
13148 				sp->sender_all_done = 1;
13149 				strm->last_msg_incomplete = 0;
13150 				asoc->stream_locked = 0;
13151 			}
13152 		} else {
13153 			SCTP_PRINTF("Huh no sp TSNH?\n");
13154 			strm->last_msg_incomplete = 0;
13155 			asoc->stream_locked = 0;
13156 		}
13157 		SCTP_TCB_SEND_UNLOCK(stcb);
13158 		if (uio->uio_resid == 0) {
13159 			got_all_of_the_send = 1;
13160 		}
13161 	} else {
13162 		/* We send in a 0, since we do NOT have any locks */
13163 		error = sctp_msg_append(stcb, net, top, srcv, 0);
13164 		top = NULL;
13165 		if (srcv->sinfo_flags & SCTP_EOF) {
13166 			/*
13167 			 * This should only happen for Panda for the mbuf
13168 			 * send case, which does NOT yet support EEOR mode.
13169 			 * Thus, we can just set this flag to do the proper
13170 			 * EOF handling.
13171 			 */
13172 			got_all_of_the_send = 1;
13173 		}
13174 	}
13175 	if (error) {
13176 		goto out;
13177 	}
13178 dataless_eof:
13179 	/* EOF thing ? */
13180 	if ((srcv->sinfo_flags & SCTP_EOF) &&
13181 	    (got_all_of_the_send == 1)) {
13182 		int cnt;
13183 
13184 		SCTP_STAT_INCR(sctps_sends_with_eof);
13185 		error = 0;
13186 		if (hold_tcblock == 0) {
13187 			SCTP_TCB_LOCK(stcb);
13188 			hold_tcblock = 1;
13189 		}
13190 		cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED);
13191 		if (TAILQ_EMPTY(&asoc->send_queue) &&
13192 		    TAILQ_EMPTY(&asoc->sent_queue) &&
13193 		    (cnt == 0)) {
13194 			if (asoc->locked_on_sending) {
13195 				goto abort_anyway;
13196 			}
13197 			/* there is nothing queued to send, so I'm done... */
13198 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13199 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13200 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13201 				struct sctp_nets *netp;
13202 
13203 				/* only send SHUTDOWN the first time through */
13204 				if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
13205 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13206 				}
13207 				SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
13208 				SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
13209 				sctp_stop_timers_for_shutdown(stcb);
13210 				if (stcb->asoc.alternate) {
13211 					netp = stcb->asoc.alternate;
13212 				} else {
13213 					netp = stcb->asoc.primary_destination;
13214 				}
13215 				sctp_send_shutdown(stcb, netp);
13216 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13217 				    netp);
13218 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13219 				    asoc->primary_destination);
13220 			}
13221 		} else {
13222 			/*-
13223 			 * we still got (or just got) data to send, so set
13224 			 * SHUTDOWN_PENDING
13225 			 */
13226 			/*-
13227 			 * XXX sockets draft says that SCTP_EOF should be
13228 			 * sent with no data.  currently, we will allow user
13229 			 * data to be sent first and move to
13230 			 * SHUTDOWN-PENDING
13231 			 */
13232 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13233 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13234 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13235 				if (hold_tcblock == 0) {
13236 					SCTP_TCB_LOCK(stcb);
13237 					hold_tcblock = 1;
13238 				}
13239 				if (asoc->locked_on_sending) {
13240 					/* Locked to send out the data */
13241 					struct sctp_stream_queue_pending *sp;
13242 
13243 					sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
13244 					if (sp) {
13245 						if ((sp->length == 0) && (sp->msg_is_complete == 0))
13246 							asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
13247 					}
13248 				}
13249 				asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
13250 				if (TAILQ_EMPTY(&asoc->send_queue) &&
13251 				    TAILQ_EMPTY(&asoc->sent_queue) &&
13252 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13253 			abort_anyway:
13254 					if (free_cnt_applied) {
13255 						atomic_add_int(&stcb->asoc.refcnt, -1);
13256 						free_cnt_applied = 0;
13257 					}
13258 					sctp_abort_an_association(stcb->sctp_ep, stcb,
13259 					    NULL, SCTP_SO_LOCKED);
13260 					/*
13261 					 * now relock the stcb so everything
13262 					 * is sane
13263 					 */
13264 					hold_tcblock = 0;
13265 					stcb = NULL;
13266 					goto out;
13267 				}
13268 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13269 				    asoc->primary_destination);
13270 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13271 			}
13272 		}
13273 	}
13274 skip_out_eof:
13275 	if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
13276 		some_on_control = 1;
13277 	}
13278 	if (queue_only_for_init) {
13279 		if (hold_tcblock == 0) {
13280 			SCTP_TCB_LOCK(stcb);
13281 			hold_tcblock = 1;
13282 		}
13283 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13284 			/* a collision took us forward? */
13285 			queue_only = 0;
13286 		} else {
13287 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13288 			SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
13289 			queue_only = 1;
13290 		}
13291 	}
13292 	if ((net->flight_size > net->cwnd) &&
13293 	    (stcb->asoc.sctp_cmt_on_off == 0)) {
13294 		SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13295 		queue_only = 1;
13296 	} else if (asoc->ifp_had_enobuf) {
13297 		SCTP_STAT_INCR(sctps_ifnomemqueued);
13298 		if (net->flight_size > (2 * net->mtu)) {
13299 			queue_only = 1;
13300 		}
13301 		asoc->ifp_had_enobuf = 0;
13302 	}
13303 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13304 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13305 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13306 	    (stcb->asoc.total_flight > 0) &&
13307 	    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13308 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13309 		/*-
13310 		 * Ok, Nagle is set on and we have data outstanding.
13311 		 * Don't send anything and let SACKs drive out the
13312 		 * data unless wen have a "full" segment to send.
13313 		 */
13314 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13315 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13316 		}
13317 		SCTP_STAT_INCR(sctps_naglequeued);
13318 		nagle_applies = 1;
13319 	} else {
13320 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13321 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13322 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13323 		}
13324 		SCTP_STAT_INCR(sctps_naglesent);
13325 		nagle_applies = 0;
13326 	}
13327 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13328 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13329 		    nagle_applies, un_sent);
13330 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13331 		    stcb->asoc.total_flight,
13332 		    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13333 	}
13334 	if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
13335 		/* we can attempt to send too. */
13336 		if (hold_tcblock == 0) {
13337 			/*
13338 			 * If there is activity recv'ing sacks no need to
13339 			 * send
13340 			 */
13341 			if (SCTP_TCB_TRYLOCK(stcb)) {
13342 				sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13343 				hold_tcblock = 1;
13344 			}
13345 		} else {
13346 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13347 		}
13348 	} else if ((queue_only == 0) &&
13349 		    (stcb->asoc.peers_rwnd == 0) &&
13350 	    (stcb->asoc.total_flight == 0)) {
13351 		/* We get to have a probe outstanding */
13352 		if (hold_tcblock == 0) {
13353 			hold_tcblock = 1;
13354 			SCTP_TCB_LOCK(stcb);
13355 		}
13356 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13357 	} else if (some_on_control) {
13358 		int num_out, reason, frag_point;
13359 
13360 		/* Here we do control only */
13361 		if (hold_tcblock == 0) {
13362 			hold_tcblock = 1;
13363 			SCTP_TCB_LOCK(stcb);
13364 		}
13365 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
13366 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
13367 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
13368 	}
13369 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13370 	    queue_only, stcb->asoc.peers_rwnd, un_sent,
13371 	    stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
13372 	    stcb->asoc.total_output_queue_size, error);
13373 
13374 out:
13375 out_unlocked:
13376 
13377 	if (local_soresv && stcb) {
13378 		atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen);
13379 	}
13380 	if (create_lock_applied) {
13381 		SCTP_ASOC_CREATE_UNLOCK(inp);
13382 	}
13383 	if ((stcb) && hold_tcblock) {
13384 		SCTP_TCB_UNLOCK(stcb);
13385 	}
13386 	if (stcb && free_cnt_applied) {
13387 		atomic_add_int(&stcb->asoc.refcnt, -1);
13388 	}
13389 #ifdef INVARIANTS
13390 	if (stcb) {
13391 		if (mtx_owned(&stcb->tcb_mtx)) {
13392 			panic("Leaving with tcb mtx owned?");
13393 		}
13394 		if (mtx_owned(&stcb->tcb_send_mtx)) {
13395 			panic("Leaving with tcb send mtx owned?");
13396 		}
13397 	}
13398 #endif
13399 #ifdef INVARIANTS
13400 	if (inp) {
13401 		sctp_validate_no_locks(inp);
13402 	} else {
13403 		SCTP_PRINTF("Warning - inp is NULL so cant validate locks\n");
13404 	}
13405 #endif
13406 	if (top) {
13407 		sctp_m_freem(top);
13408 	}
13409 	if (control) {
13410 		sctp_m_freem(control);
13411 	}
13412 	return (error);
13413 }
13414 
13415 
13416 /*
13417  * generate an AUTHentication chunk, if required
13418  */
13419 struct mbuf *
13420 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13421     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
13422     struct sctp_tcb *stcb, uint8_t chunk)
13423 {
13424 	struct mbuf *m_auth;
13425 	struct sctp_auth_chunk *auth;
13426 	int chunk_len;
13427 	struct mbuf *cn;
13428 
13429 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13430 	    (stcb == NULL))
13431 		return (m);
13432 
13433 	/* sysctl disabled auth? */
13434 	if (SCTP_BASE_SYSCTL(sctp_auth_disable))
13435 		return (m);
13436 
13437 	/* peer doesn't do auth... */
13438 	if (!stcb->asoc.peer_supports_auth) {
13439 		return (m);
13440 	}
13441 	/* does the requested chunk require auth? */
13442 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13443 		return (m);
13444 	}
13445 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER);
13446 	if (m_auth == NULL) {
13447 		/* no mbuf's */
13448 		return (m);
13449 	}
13450 	/* reserve some space if this will be the first mbuf */
13451 	if (m == NULL)
13452 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13453 	/* fill in the AUTH chunk details */
13454 	auth = mtod(m_auth, struct sctp_auth_chunk *);
13455 	bzero(auth, sizeof(*auth));
13456 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
13457 	auth->ch.chunk_flags = 0;
13458 	chunk_len = sizeof(*auth) +
13459 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13460 	auth->ch.chunk_length = htons(chunk_len);
13461 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13462 	/* key id and hmac digest will be computed and filled in upon send */
13463 
13464 	/* save the offset where the auth was inserted into the chain */
13465 	*offset = 0;
13466 	for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13467 		*offset += SCTP_BUF_LEN(cn);
13468 	}
13469 
13470 	/* update length and return pointer to the auth chunk */
13471 	SCTP_BUF_LEN(m_auth) = chunk_len;
13472 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13473 	if (auth_ret != NULL)
13474 		*auth_ret = auth;
13475 
13476 	return (m);
13477 }
13478 
13479 #ifdef INET6
13480 int
13481 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
13482 {
13483 	struct nd_prefix *pfx = NULL;
13484 	struct nd_pfxrouter *pfxrtr = NULL;
13485 	struct sockaddr_in6 gw6;
13486 
13487 	if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
13488 		return (0);
13489 
13490 	/* get prefix entry of address */
13491 	LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13492 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13493 			continue;
13494 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13495 		    &src6->sin6_addr, &pfx->ndpr_mask))
13496 			break;
13497 	}
13498 	/* no prefix entry in the prefix list */
13499 	if (pfx == NULL) {
13500 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13501 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13502 		return (0);
13503 	}
13504 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13505 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13506 
13507 	/* search installed gateway from prefix entry */
13508 	LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13509 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
13510 		gw6.sin6_family = AF_INET6;
13511 		gw6.sin6_len = sizeof(struct sockaddr_in6);
13512 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13513 		    sizeof(struct in6_addr));
13514 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13515 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13516 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13517 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13518 		if (sctp_cmpaddr((struct sockaddr *)&gw6,
13519 		    ro->ro_rt->rt_gateway)) {
13520 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13521 			return (1);
13522 		}
13523 	}
13524 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13525 	return (0);
13526 }
13527 
13528 #endif
13529 
13530 int
13531 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
13532 {
13533 #ifdef INET
13534 	struct sockaddr_in *sin, *mask;
13535 	struct ifaddr *ifa;
13536 	struct in_addr srcnetaddr, gwnetaddr;
13537 
13538 	if (ro == NULL || ro->ro_rt == NULL ||
13539 	    sifa->address.sa.sa_family != AF_INET) {
13540 		return (0);
13541 	}
13542 	ifa = (struct ifaddr *)sifa->ifa;
13543 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13544 	sin = (struct sockaddr_in *)&sifa->address.sin;
13545 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13546 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13547 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13548 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13549 
13550 	sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
13551 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13552 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13553 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13554 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13555 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13556 		return (1);
13557 	}
13558 #endif
13559 	return (0);
13560 }
13561