xref: /freebsd/sys/netinet/sctp_output.c (revision 3fc9e2c36555140de248a0b4def91bbfa44d7c2c)
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 #include <netinet/udp.h>
54 #include <netinet/udp_var.h>
55 #include <machine/in_cksum.h>
56 
57 
58 
59 #define SCTP_MAX_GAPS_INARRAY 4
60 struct sack_track {
61 	uint8_t right_edge;	/* mergable on the right edge */
62 	uint8_t left_edge;	/* mergable on the left edge */
63 	uint8_t num_entries;
64 	uint8_t spare;
65 	struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
66 };
67 
68 struct sack_track sack_array[256] = {
69 	{0, 0, 0, 0,		/* 0x00 */
70 		{{0, 0},
71 		{0, 0},
72 		{0, 0},
73 		{0, 0}
74 		}
75 	},
76 	{1, 0, 1, 0,		/* 0x01 */
77 		{{0, 0},
78 		{0, 0},
79 		{0, 0},
80 		{0, 0}
81 		}
82 	},
83 	{0, 0, 1, 0,		/* 0x02 */
84 		{{1, 1},
85 		{0, 0},
86 		{0, 0},
87 		{0, 0}
88 		}
89 	},
90 	{1, 0, 1, 0,		/* 0x03 */
91 		{{0, 1},
92 		{0, 0},
93 		{0, 0},
94 		{0, 0}
95 		}
96 	},
97 	{0, 0, 1, 0,		/* 0x04 */
98 		{{2, 2},
99 		{0, 0},
100 		{0, 0},
101 		{0, 0}
102 		}
103 	},
104 	{1, 0, 2, 0,		/* 0x05 */
105 		{{0, 0},
106 		{2, 2},
107 		{0, 0},
108 		{0, 0}
109 		}
110 	},
111 	{0, 0, 1, 0,		/* 0x06 */
112 		{{1, 2},
113 		{0, 0},
114 		{0, 0},
115 		{0, 0}
116 		}
117 	},
118 	{1, 0, 1, 0,		/* 0x07 */
119 		{{0, 2},
120 		{0, 0},
121 		{0, 0},
122 		{0, 0}
123 		}
124 	},
125 	{0, 0, 1, 0,		/* 0x08 */
126 		{{3, 3},
127 		{0, 0},
128 		{0, 0},
129 		{0, 0}
130 		}
131 	},
132 	{1, 0, 2, 0,		/* 0x09 */
133 		{{0, 0},
134 		{3, 3},
135 		{0, 0},
136 		{0, 0}
137 		}
138 	},
139 	{0, 0, 2, 0,		/* 0x0a */
140 		{{1, 1},
141 		{3, 3},
142 		{0, 0},
143 		{0, 0}
144 		}
145 	},
146 	{1, 0, 2, 0,		/* 0x0b */
147 		{{0, 1},
148 		{3, 3},
149 		{0, 0},
150 		{0, 0}
151 		}
152 	},
153 	{0, 0, 1, 0,		/* 0x0c */
154 		{{2, 3},
155 		{0, 0},
156 		{0, 0},
157 		{0, 0}
158 		}
159 	},
160 	{1, 0, 2, 0,		/* 0x0d */
161 		{{0, 0},
162 		{2, 3},
163 		{0, 0},
164 		{0, 0}
165 		}
166 	},
167 	{0, 0, 1, 0,		/* 0x0e */
168 		{{1, 3},
169 		{0, 0},
170 		{0, 0},
171 		{0, 0}
172 		}
173 	},
174 	{1, 0, 1, 0,		/* 0x0f */
175 		{{0, 3},
176 		{0, 0},
177 		{0, 0},
178 		{0, 0}
179 		}
180 	},
181 	{0, 0, 1, 0,		/* 0x10 */
182 		{{4, 4},
183 		{0, 0},
184 		{0, 0},
185 		{0, 0}
186 		}
187 	},
188 	{1, 0, 2, 0,		/* 0x11 */
189 		{{0, 0},
190 		{4, 4},
191 		{0, 0},
192 		{0, 0}
193 		}
194 	},
195 	{0, 0, 2, 0,		/* 0x12 */
196 		{{1, 1},
197 		{4, 4},
198 		{0, 0},
199 		{0, 0}
200 		}
201 	},
202 	{1, 0, 2, 0,		/* 0x13 */
203 		{{0, 1},
204 		{4, 4},
205 		{0, 0},
206 		{0, 0}
207 		}
208 	},
209 	{0, 0, 2, 0,		/* 0x14 */
210 		{{2, 2},
211 		{4, 4},
212 		{0, 0},
213 		{0, 0}
214 		}
215 	},
216 	{1, 0, 3, 0,		/* 0x15 */
217 		{{0, 0},
218 		{2, 2},
219 		{4, 4},
220 		{0, 0}
221 		}
222 	},
223 	{0, 0, 2, 0,		/* 0x16 */
224 		{{1, 2},
225 		{4, 4},
226 		{0, 0},
227 		{0, 0}
228 		}
229 	},
230 	{1, 0, 2, 0,		/* 0x17 */
231 		{{0, 2},
232 		{4, 4},
233 		{0, 0},
234 		{0, 0}
235 		}
236 	},
237 	{0, 0, 1, 0,		/* 0x18 */
238 		{{3, 4},
239 		{0, 0},
240 		{0, 0},
241 		{0, 0}
242 		}
243 	},
244 	{1, 0, 2, 0,		/* 0x19 */
245 		{{0, 0},
246 		{3, 4},
247 		{0, 0},
248 		{0, 0}
249 		}
250 	},
251 	{0, 0, 2, 0,		/* 0x1a */
252 		{{1, 1},
253 		{3, 4},
254 		{0, 0},
255 		{0, 0}
256 		}
257 	},
258 	{1, 0, 2, 0,		/* 0x1b */
259 		{{0, 1},
260 		{3, 4},
261 		{0, 0},
262 		{0, 0}
263 		}
264 	},
265 	{0, 0, 1, 0,		/* 0x1c */
266 		{{2, 4},
267 		{0, 0},
268 		{0, 0},
269 		{0, 0}
270 		}
271 	},
272 	{1, 0, 2, 0,		/* 0x1d */
273 		{{0, 0},
274 		{2, 4},
275 		{0, 0},
276 		{0, 0}
277 		}
278 	},
279 	{0, 0, 1, 0,		/* 0x1e */
280 		{{1, 4},
281 		{0, 0},
282 		{0, 0},
283 		{0, 0}
284 		}
285 	},
286 	{1, 0, 1, 0,		/* 0x1f */
287 		{{0, 4},
288 		{0, 0},
289 		{0, 0},
290 		{0, 0}
291 		}
292 	},
293 	{0, 0, 1, 0,		/* 0x20 */
294 		{{5, 5},
295 		{0, 0},
296 		{0, 0},
297 		{0, 0}
298 		}
299 	},
300 	{1, 0, 2, 0,		/* 0x21 */
301 		{{0, 0},
302 		{5, 5},
303 		{0, 0},
304 		{0, 0}
305 		}
306 	},
307 	{0, 0, 2, 0,		/* 0x22 */
308 		{{1, 1},
309 		{5, 5},
310 		{0, 0},
311 		{0, 0}
312 		}
313 	},
314 	{1, 0, 2, 0,		/* 0x23 */
315 		{{0, 1},
316 		{5, 5},
317 		{0, 0},
318 		{0, 0}
319 		}
320 	},
321 	{0, 0, 2, 0,		/* 0x24 */
322 		{{2, 2},
323 		{5, 5},
324 		{0, 0},
325 		{0, 0}
326 		}
327 	},
328 	{1, 0, 3, 0,		/* 0x25 */
329 		{{0, 0},
330 		{2, 2},
331 		{5, 5},
332 		{0, 0}
333 		}
334 	},
335 	{0, 0, 2, 0,		/* 0x26 */
336 		{{1, 2},
337 		{5, 5},
338 		{0, 0},
339 		{0, 0}
340 		}
341 	},
342 	{1, 0, 2, 0,		/* 0x27 */
343 		{{0, 2},
344 		{5, 5},
345 		{0, 0},
346 		{0, 0}
347 		}
348 	},
349 	{0, 0, 2, 0,		/* 0x28 */
350 		{{3, 3},
351 		{5, 5},
352 		{0, 0},
353 		{0, 0}
354 		}
355 	},
356 	{1, 0, 3, 0,		/* 0x29 */
357 		{{0, 0},
358 		{3, 3},
359 		{5, 5},
360 		{0, 0}
361 		}
362 	},
363 	{0, 0, 3, 0,		/* 0x2a */
364 		{{1, 1},
365 		{3, 3},
366 		{5, 5},
367 		{0, 0}
368 		}
369 	},
370 	{1, 0, 3, 0,		/* 0x2b */
371 		{{0, 1},
372 		{3, 3},
373 		{5, 5},
374 		{0, 0}
375 		}
376 	},
377 	{0, 0, 2, 0,		/* 0x2c */
378 		{{2, 3},
379 		{5, 5},
380 		{0, 0},
381 		{0, 0}
382 		}
383 	},
384 	{1, 0, 3, 0,		/* 0x2d */
385 		{{0, 0},
386 		{2, 3},
387 		{5, 5},
388 		{0, 0}
389 		}
390 	},
391 	{0, 0, 2, 0,		/* 0x2e */
392 		{{1, 3},
393 		{5, 5},
394 		{0, 0},
395 		{0, 0}
396 		}
397 	},
398 	{1, 0, 2, 0,		/* 0x2f */
399 		{{0, 3},
400 		{5, 5},
401 		{0, 0},
402 		{0, 0}
403 		}
404 	},
405 	{0, 0, 1, 0,		/* 0x30 */
406 		{{4, 5},
407 		{0, 0},
408 		{0, 0},
409 		{0, 0}
410 		}
411 	},
412 	{1, 0, 2, 0,		/* 0x31 */
413 		{{0, 0},
414 		{4, 5},
415 		{0, 0},
416 		{0, 0}
417 		}
418 	},
419 	{0, 0, 2, 0,		/* 0x32 */
420 		{{1, 1},
421 		{4, 5},
422 		{0, 0},
423 		{0, 0}
424 		}
425 	},
426 	{1, 0, 2, 0,		/* 0x33 */
427 		{{0, 1},
428 		{4, 5},
429 		{0, 0},
430 		{0, 0}
431 		}
432 	},
433 	{0, 0, 2, 0,		/* 0x34 */
434 		{{2, 2},
435 		{4, 5},
436 		{0, 0},
437 		{0, 0}
438 		}
439 	},
440 	{1, 0, 3, 0,		/* 0x35 */
441 		{{0, 0},
442 		{2, 2},
443 		{4, 5},
444 		{0, 0}
445 		}
446 	},
447 	{0, 0, 2, 0,		/* 0x36 */
448 		{{1, 2},
449 		{4, 5},
450 		{0, 0},
451 		{0, 0}
452 		}
453 	},
454 	{1, 0, 2, 0,		/* 0x37 */
455 		{{0, 2},
456 		{4, 5},
457 		{0, 0},
458 		{0, 0}
459 		}
460 	},
461 	{0, 0, 1, 0,		/* 0x38 */
462 		{{3, 5},
463 		{0, 0},
464 		{0, 0},
465 		{0, 0}
466 		}
467 	},
468 	{1, 0, 2, 0,		/* 0x39 */
469 		{{0, 0},
470 		{3, 5},
471 		{0, 0},
472 		{0, 0}
473 		}
474 	},
475 	{0, 0, 2, 0,		/* 0x3a */
476 		{{1, 1},
477 		{3, 5},
478 		{0, 0},
479 		{0, 0}
480 		}
481 	},
482 	{1, 0, 2, 0,		/* 0x3b */
483 		{{0, 1},
484 		{3, 5},
485 		{0, 0},
486 		{0, 0}
487 		}
488 	},
489 	{0, 0, 1, 0,		/* 0x3c */
490 		{{2, 5},
491 		{0, 0},
492 		{0, 0},
493 		{0, 0}
494 		}
495 	},
496 	{1, 0, 2, 0,		/* 0x3d */
497 		{{0, 0},
498 		{2, 5},
499 		{0, 0},
500 		{0, 0}
501 		}
502 	},
503 	{0, 0, 1, 0,		/* 0x3e */
504 		{{1, 5},
505 		{0, 0},
506 		{0, 0},
507 		{0, 0}
508 		}
509 	},
510 	{1, 0, 1, 0,		/* 0x3f */
511 		{{0, 5},
512 		{0, 0},
513 		{0, 0},
514 		{0, 0}
515 		}
516 	},
517 	{0, 0, 1, 0,		/* 0x40 */
518 		{{6, 6},
519 		{0, 0},
520 		{0, 0},
521 		{0, 0}
522 		}
523 	},
524 	{1, 0, 2, 0,		/* 0x41 */
525 		{{0, 0},
526 		{6, 6},
527 		{0, 0},
528 		{0, 0}
529 		}
530 	},
531 	{0, 0, 2, 0,		/* 0x42 */
532 		{{1, 1},
533 		{6, 6},
534 		{0, 0},
535 		{0, 0}
536 		}
537 	},
538 	{1, 0, 2, 0,		/* 0x43 */
539 		{{0, 1},
540 		{6, 6},
541 		{0, 0},
542 		{0, 0}
543 		}
544 	},
545 	{0, 0, 2, 0,		/* 0x44 */
546 		{{2, 2},
547 		{6, 6},
548 		{0, 0},
549 		{0, 0}
550 		}
551 	},
552 	{1, 0, 3, 0,		/* 0x45 */
553 		{{0, 0},
554 		{2, 2},
555 		{6, 6},
556 		{0, 0}
557 		}
558 	},
559 	{0, 0, 2, 0,		/* 0x46 */
560 		{{1, 2},
561 		{6, 6},
562 		{0, 0},
563 		{0, 0}
564 		}
565 	},
566 	{1, 0, 2, 0,		/* 0x47 */
567 		{{0, 2},
568 		{6, 6},
569 		{0, 0},
570 		{0, 0}
571 		}
572 	},
573 	{0, 0, 2, 0,		/* 0x48 */
574 		{{3, 3},
575 		{6, 6},
576 		{0, 0},
577 		{0, 0}
578 		}
579 	},
580 	{1, 0, 3, 0,		/* 0x49 */
581 		{{0, 0},
582 		{3, 3},
583 		{6, 6},
584 		{0, 0}
585 		}
586 	},
587 	{0, 0, 3, 0,		/* 0x4a */
588 		{{1, 1},
589 		{3, 3},
590 		{6, 6},
591 		{0, 0}
592 		}
593 	},
594 	{1, 0, 3, 0,		/* 0x4b */
595 		{{0, 1},
596 		{3, 3},
597 		{6, 6},
598 		{0, 0}
599 		}
600 	},
601 	{0, 0, 2, 0,		/* 0x4c */
602 		{{2, 3},
603 		{6, 6},
604 		{0, 0},
605 		{0, 0}
606 		}
607 	},
608 	{1, 0, 3, 0,		/* 0x4d */
609 		{{0, 0},
610 		{2, 3},
611 		{6, 6},
612 		{0, 0}
613 		}
614 	},
615 	{0, 0, 2, 0,		/* 0x4e */
616 		{{1, 3},
617 		{6, 6},
618 		{0, 0},
619 		{0, 0}
620 		}
621 	},
622 	{1, 0, 2, 0,		/* 0x4f */
623 		{{0, 3},
624 		{6, 6},
625 		{0, 0},
626 		{0, 0}
627 		}
628 	},
629 	{0, 0, 2, 0,		/* 0x50 */
630 		{{4, 4},
631 		{6, 6},
632 		{0, 0},
633 		{0, 0}
634 		}
635 	},
636 	{1, 0, 3, 0,		/* 0x51 */
637 		{{0, 0},
638 		{4, 4},
639 		{6, 6},
640 		{0, 0}
641 		}
642 	},
643 	{0, 0, 3, 0,		/* 0x52 */
644 		{{1, 1},
645 		{4, 4},
646 		{6, 6},
647 		{0, 0}
648 		}
649 	},
650 	{1, 0, 3, 0,		/* 0x53 */
651 		{{0, 1},
652 		{4, 4},
653 		{6, 6},
654 		{0, 0}
655 		}
656 	},
657 	{0, 0, 3, 0,		/* 0x54 */
658 		{{2, 2},
659 		{4, 4},
660 		{6, 6},
661 		{0, 0}
662 		}
663 	},
664 	{1, 0, 4, 0,		/* 0x55 */
665 		{{0, 0},
666 		{2, 2},
667 		{4, 4},
668 		{6, 6}
669 		}
670 	},
671 	{0, 0, 3, 0,		/* 0x56 */
672 		{{1, 2},
673 		{4, 4},
674 		{6, 6},
675 		{0, 0}
676 		}
677 	},
678 	{1, 0, 3, 0,		/* 0x57 */
679 		{{0, 2},
680 		{4, 4},
681 		{6, 6},
682 		{0, 0}
683 		}
684 	},
685 	{0, 0, 2, 0,		/* 0x58 */
686 		{{3, 4},
687 		{6, 6},
688 		{0, 0},
689 		{0, 0}
690 		}
691 	},
692 	{1, 0, 3, 0,		/* 0x59 */
693 		{{0, 0},
694 		{3, 4},
695 		{6, 6},
696 		{0, 0}
697 		}
698 	},
699 	{0, 0, 3, 0,		/* 0x5a */
700 		{{1, 1},
701 		{3, 4},
702 		{6, 6},
703 		{0, 0}
704 		}
705 	},
706 	{1, 0, 3, 0,		/* 0x5b */
707 		{{0, 1},
708 		{3, 4},
709 		{6, 6},
710 		{0, 0}
711 		}
712 	},
713 	{0, 0, 2, 0,		/* 0x5c */
714 		{{2, 4},
715 		{6, 6},
716 		{0, 0},
717 		{0, 0}
718 		}
719 	},
720 	{1, 0, 3, 0,		/* 0x5d */
721 		{{0, 0},
722 		{2, 4},
723 		{6, 6},
724 		{0, 0}
725 		}
726 	},
727 	{0, 0, 2, 0,		/* 0x5e */
728 		{{1, 4},
729 		{6, 6},
730 		{0, 0},
731 		{0, 0}
732 		}
733 	},
734 	{1, 0, 2, 0,		/* 0x5f */
735 		{{0, 4},
736 		{6, 6},
737 		{0, 0},
738 		{0, 0}
739 		}
740 	},
741 	{0, 0, 1, 0,		/* 0x60 */
742 		{{5, 6},
743 		{0, 0},
744 		{0, 0},
745 		{0, 0}
746 		}
747 	},
748 	{1, 0, 2, 0,		/* 0x61 */
749 		{{0, 0},
750 		{5, 6},
751 		{0, 0},
752 		{0, 0}
753 		}
754 	},
755 	{0, 0, 2, 0,		/* 0x62 */
756 		{{1, 1},
757 		{5, 6},
758 		{0, 0},
759 		{0, 0}
760 		}
761 	},
762 	{1, 0, 2, 0,		/* 0x63 */
763 		{{0, 1},
764 		{5, 6},
765 		{0, 0},
766 		{0, 0}
767 		}
768 	},
769 	{0, 0, 2, 0,		/* 0x64 */
770 		{{2, 2},
771 		{5, 6},
772 		{0, 0},
773 		{0, 0}
774 		}
775 	},
776 	{1, 0, 3, 0,		/* 0x65 */
777 		{{0, 0},
778 		{2, 2},
779 		{5, 6},
780 		{0, 0}
781 		}
782 	},
783 	{0, 0, 2, 0,		/* 0x66 */
784 		{{1, 2},
785 		{5, 6},
786 		{0, 0},
787 		{0, 0}
788 		}
789 	},
790 	{1, 0, 2, 0,		/* 0x67 */
791 		{{0, 2},
792 		{5, 6},
793 		{0, 0},
794 		{0, 0}
795 		}
796 	},
797 	{0, 0, 2, 0,		/* 0x68 */
798 		{{3, 3},
799 		{5, 6},
800 		{0, 0},
801 		{0, 0}
802 		}
803 	},
804 	{1, 0, 3, 0,		/* 0x69 */
805 		{{0, 0},
806 		{3, 3},
807 		{5, 6},
808 		{0, 0}
809 		}
810 	},
811 	{0, 0, 3, 0,		/* 0x6a */
812 		{{1, 1},
813 		{3, 3},
814 		{5, 6},
815 		{0, 0}
816 		}
817 	},
818 	{1, 0, 3, 0,		/* 0x6b */
819 		{{0, 1},
820 		{3, 3},
821 		{5, 6},
822 		{0, 0}
823 		}
824 	},
825 	{0, 0, 2, 0,		/* 0x6c */
826 		{{2, 3},
827 		{5, 6},
828 		{0, 0},
829 		{0, 0}
830 		}
831 	},
832 	{1, 0, 3, 0,		/* 0x6d */
833 		{{0, 0},
834 		{2, 3},
835 		{5, 6},
836 		{0, 0}
837 		}
838 	},
839 	{0, 0, 2, 0,		/* 0x6e */
840 		{{1, 3},
841 		{5, 6},
842 		{0, 0},
843 		{0, 0}
844 		}
845 	},
846 	{1, 0, 2, 0,		/* 0x6f */
847 		{{0, 3},
848 		{5, 6},
849 		{0, 0},
850 		{0, 0}
851 		}
852 	},
853 	{0, 0, 1, 0,		/* 0x70 */
854 		{{4, 6},
855 		{0, 0},
856 		{0, 0},
857 		{0, 0}
858 		}
859 	},
860 	{1, 0, 2, 0,		/* 0x71 */
861 		{{0, 0},
862 		{4, 6},
863 		{0, 0},
864 		{0, 0}
865 		}
866 	},
867 	{0, 0, 2, 0,		/* 0x72 */
868 		{{1, 1},
869 		{4, 6},
870 		{0, 0},
871 		{0, 0}
872 		}
873 	},
874 	{1, 0, 2, 0,		/* 0x73 */
875 		{{0, 1},
876 		{4, 6},
877 		{0, 0},
878 		{0, 0}
879 		}
880 	},
881 	{0, 0, 2, 0,		/* 0x74 */
882 		{{2, 2},
883 		{4, 6},
884 		{0, 0},
885 		{0, 0}
886 		}
887 	},
888 	{1, 0, 3, 0,		/* 0x75 */
889 		{{0, 0},
890 		{2, 2},
891 		{4, 6},
892 		{0, 0}
893 		}
894 	},
895 	{0, 0, 2, 0,		/* 0x76 */
896 		{{1, 2},
897 		{4, 6},
898 		{0, 0},
899 		{0, 0}
900 		}
901 	},
902 	{1, 0, 2, 0,		/* 0x77 */
903 		{{0, 2},
904 		{4, 6},
905 		{0, 0},
906 		{0, 0}
907 		}
908 	},
909 	{0, 0, 1, 0,		/* 0x78 */
910 		{{3, 6},
911 		{0, 0},
912 		{0, 0},
913 		{0, 0}
914 		}
915 	},
916 	{1, 0, 2, 0,		/* 0x79 */
917 		{{0, 0},
918 		{3, 6},
919 		{0, 0},
920 		{0, 0}
921 		}
922 	},
923 	{0, 0, 2, 0,		/* 0x7a */
924 		{{1, 1},
925 		{3, 6},
926 		{0, 0},
927 		{0, 0}
928 		}
929 	},
930 	{1, 0, 2, 0,		/* 0x7b */
931 		{{0, 1},
932 		{3, 6},
933 		{0, 0},
934 		{0, 0}
935 		}
936 	},
937 	{0, 0, 1, 0,		/* 0x7c */
938 		{{2, 6},
939 		{0, 0},
940 		{0, 0},
941 		{0, 0}
942 		}
943 	},
944 	{1, 0, 2, 0,		/* 0x7d */
945 		{{0, 0},
946 		{2, 6},
947 		{0, 0},
948 		{0, 0}
949 		}
950 	},
951 	{0, 0, 1, 0,		/* 0x7e */
952 		{{1, 6},
953 		{0, 0},
954 		{0, 0},
955 		{0, 0}
956 		}
957 	},
958 	{1, 0, 1, 0,		/* 0x7f */
959 		{{0, 6},
960 		{0, 0},
961 		{0, 0},
962 		{0, 0}
963 		}
964 	},
965 	{0, 1, 1, 0,		/* 0x80 */
966 		{{7, 7},
967 		{0, 0},
968 		{0, 0},
969 		{0, 0}
970 		}
971 	},
972 	{1, 1, 2, 0,		/* 0x81 */
973 		{{0, 0},
974 		{7, 7},
975 		{0, 0},
976 		{0, 0}
977 		}
978 	},
979 	{0, 1, 2, 0,		/* 0x82 */
980 		{{1, 1},
981 		{7, 7},
982 		{0, 0},
983 		{0, 0}
984 		}
985 	},
986 	{1, 1, 2, 0,		/* 0x83 */
987 		{{0, 1},
988 		{7, 7},
989 		{0, 0},
990 		{0, 0}
991 		}
992 	},
993 	{0, 1, 2, 0,		/* 0x84 */
994 		{{2, 2},
995 		{7, 7},
996 		{0, 0},
997 		{0, 0}
998 		}
999 	},
1000 	{1, 1, 3, 0,		/* 0x85 */
1001 		{{0, 0},
1002 		{2, 2},
1003 		{7, 7},
1004 		{0, 0}
1005 		}
1006 	},
1007 	{0, 1, 2, 0,		/* 0x86 */
1008 		{{1, 2},
1009 		{7, 7},
1010 		{0, 0},
1011 		{0, 0}
1012 		}
1013 	},
1014 	{1, 1, 2, 0,		/* 0x87 */
1015 		{{0, 2},
1016 		{7, 7},
1017 		{0, 0},
1018 		{0, 0}
1019 		}
1020 	},
1021 	{0, 1, 2, 0,		/* 0x88 */
1022 		{{3, 3},
1023 		{7, 7},
1024 		{0, 0},
1025 		{0, 0}
1026 		}
1027 	},
1028 	{1, 1, 3, 0,		/* 0x89 */
1029 		{{0, 0},
1030 		{3, 3},
1031 		{7, 7},
1032 		{0, 0}
1033 		}
1034 	},
1035 	{0, 1, 3, 0,		/* 0x8a */
1036 		{{1, 1},
1037 		{3, 3},
1038 		{7, 7},
1039 		{0, 0}
1040 		}
1041 	},
1042 	{1, 1, 3, 0,		/* 0x8b */
1043 		{{0, 1},
1044 		{3, 3},
1045 		{7, 7},
1046 		{0, 0}
1047 		}
1048 	},
1049 	{0, 1, 2, 0,		/* 0x8c */
1050 		{{2, 3},
1051 		{7, 7},
1052 		{0, 0},
1053 		{0, 0}
1054 		}
1055 	},
1056 	{1, 1, 3, 0,		/* 0x8d */
1057 		{{0, 0},
1058 		{2, 3},
1059 		{7, 7},
1060 		{0, 0}
1061 		}
1062 	},
1063 	{0, 1, 2, 0,		/* 0x8e */
1064 		{{1, 3},
1065 		{7, 7},
1066 		{0, 0},
1067 		{0, 0}
1068 		}
1069 	},
1070 	{1, 1, 2, 0,		/* 0x8f */
1071 		{{0, 3},
1072 		{7, 7},
1073 		{0, 0},
1074 		{0, 0}
1075 		}
1076 	},
1077 	{0, 1, 2, 0,		/* 0x90 */
1078 		{{4, 4},
1079 		{7, 7},
1080 		{0, 0},
1081 		{0, 0}
1082 		}
1083 	},
1084 	{1, 1, 3, 0,		/* 0x91 */
1085 		{{0, 0},
1086 		{4, 4},
1087 		{7, 7},
1088 		{0, 0}
1089 		}
1090 	},
1091 	{0, 1, 3, 0,		/* 0x92 */
1092 		{{1, 1},
1093 		{4, 4},
1094 		{7, 7},
1095 		{0, 0}
1096 		}
1097 	},
1098 	{1, 1, 3, 0,		/* 0x93 */
1099 		{{0, 1},
1100 		{4, 4},
1101 		{7, 7},
1102 		{0, 0}
1103 		}
1104 	},
1105 	{0, 1, 3, 0,		/* 0x94 */
1106 		{{2, 2},
1107 		{4, 4},
1108 		{7, 7},
1109 		{0, 0}
1110 		}
1111 	},
1112 	{1, 1, 4, 0,		/* 0x95 */
1113 		{{0, 0},
1114 		{2, 2},
1115 		{4, 4},
1116 		{7, 7}
1117 		}
1118 	},
1119 	{0, 1, 3, 0,		/* 0x96 */
1120 		{{1, 2},
1121 		{4, 4},
1122 		{7, 7},
1123 		{0, 0}
1124 		}
1125 	},
1126 	{1, 1, 3, 0,		/* 0x97 */
1127 		{{0, 2},
1128 		{4, 4},
1129 		{7, 7},
1130 		{0, 0}
1131 		}
1132 	},
1133 	{0, 1, 2, 0,		/* 0x98 */
1134 		{{3, 4},
1135 		{7, 7},
1136 		{0, 0},
1137 		{0, 0}
1138 		}
1139 	},
1140 	{1, 1, 3, 0,		/* 0x99 */
1141 		{{0, 0},
1142 		{3, 4},
1143 		{7, 7},
1144 		{0, 0}
1145 		}
1146 	},
1147 	{0, 1, 3, 0,		/* 0x9a */
1148 		{{1, 1},
1149 		{3, 4},
1150 		{7, 7},
1151 		{0, 0}
1152 		}
1153 	},
1154 	{1, 1, 3, 0,		/* 0x9b */
1155 		{{0, 1},
1156 		{3, 4},
1157 		{7, 7},
1158 		{0, 0}
1159 		}
1160 	},
1161 	{0, 1, 2, 0,		/* 0x9c */
1162 		{{2, 4},
1163 		{7, 7},
1164 		{0, 0},
1165 		{0, 0}
1166 		}
1167 	},
1168 	{1, 1, 3, 0,		/* 0x9d */
1169 		{{0, 0},
1170 		{2, 4},
1171 		{7, 7},
1172 		{0, 0}
1173 		}
1174 	},
1175 	{0, 1, 2, 0,		/* 0x9e */
1176 		{{1, 4},
1177 		{7, 7},
1178 		{0, 0},
1179 		{0, 0}
1180 		}
1181 	},
1182 	{1, 1, 2, 0,		/* 0x9f */
1183 		{{0, 4},
1184 		{7, 7},
1185 		{0, 0},
1186 		{0, 0}
1187 		}
1188 	},
1189 	{0, 1, 2, 0,		/* 0xa0 */
1190 		{{5, 5},
1191 		{7, 7},
1192 		{0, 0},
1193 		{0, 0}
1194 		}
1195 	},
1196 	{1, 1, 3, 0,		/* 0xa1 */
1197 		{{0, 0},
1198 		{5, 5},
1199 		{7, 7},
1200 		{0, 0}
1201 		}
1202 	},
1203 	{0, 1, 3, 0,		/* 0xa2 */
1204 		{{1, 1},
1205 		{5, 5},
1206 		{7, 7},
1207 		{0, 0}
1208 		}
1209 	},
1210 	{1, 1, 3, 0,		/* 0xa3 */
1211 		{{0, 1},
1212 		{5, 5},
1213 		{7, 7},
1214 		{0, 0}
1215 		}
1216 	},
1217 	{0, 1, 3, 0,		/* 0xa4 */
1218 		{{2, 2},
1219 		{5, 5},
1220 		{7, 7},
1221 		{0, 0}
1222 		}
1223 	},
1224 	{1, 1, 4, 0,		/* 0xa5 */
1225 		{{0, 0},
1226 		{2, 2},
1227 		{5, 5},
1228 		{7, 7}
1229 		}
1230 	},
1231 	{0, 1, 3, 0,		/* 0xa6 */
1232 		{{1, 2},
1233 		{5, 5},
1234 		{7, 7},
1235 		{0, 0}
1236 		}
1237 	},
1238 	{1, 1, 3, 0,		/* 0xa7 */
1239 		{{0, 2},
1240 		{5, 5},
1241 		{7, 7},
1242 		{0, 0}
1243 		}
1244 	},
1245 	{0, 1, 3, 0,		/* 0xa8 */
1246 		{{3, 3},
1247 		{5, 5},
1248 		{7, 7},
1249 		{0, 0}
1250 		}
1251 	},
1252 	{1, 1, 4, 0,		/* 0xa9 */
1253 		{{0, 0},
1254 		{3, 3},
1255 		{5, 5},
1256 		{7, 7}
1257 		}
1258 	},
1259 	{0, 1, 4, 0,		/* 0xaa */
1260 		{{1, 1},
1261 		{3, 3},
1262 		{5, 5},
1263 		{7, 7}
1264 		}
1265 	},
1266 	{1, 1, 4, 0,		/* 0xab */
1267 		{{0, 1},
1268 		{3, 3},
1269 		{5, 5},
1270 		{7, 7}
1271 		}
1272 	},
1273 	{0, 1, 3, 0,		/* 0xac */
1274 		{{2, 3},
1275 		{5, 5},
1276 		{7, 7},
1277 		{0, 0}
1278 		}
1279 	},
1280 	{1, 1, 4, 0,		/* 0xad */
1281 		{{0, 0},
1282 		{2, 3},
1283 		{5, 5},
1284 		{7, 7}
1285 		}
1286 	},
1287 	{0, 1, 3, 0,		/* 0xae */
1288 		{{1, 3},
1289 		{5, 5},
1290 		{7, 7},
1291 		{0, 0}
1292 		}
1293 	},
1294 	{1, 1, 3, 0,		/* 0xaf */
1295 		{{0, 3},
1296 		{5, 5},
1297 		{7, 7},
1298 		{0, 0}
1299 		}
1300 	},
1301 	{0, 1, 2, 0,		/* 0xb0 */
1302 		{{4, 5},
1303 		{7, 7},
1304 		{0, 0},
1305 		{0, 0}
1306 		}
1307 	},
1308 	{1, 1, 3, 0,		/* 0xb1 */
1309 		{{0, 0},
1310 		{4, 5},
1311 		{7, 7},
1312 		{0, 0}
1313 		}
1314 	},
1315 	{0, 1, 3, 0,		/* 0xb2 */
1316 		{{1, 1},
1317 		{4, 5},
1318 		{7, 7},
1319 		{0, 0}
1320 		}
1321 	},
1322 	{1, 1, 3, 0,		/* 0xb3 */
1323 		{{0, 1},
1324 		{4, 5},
1325 		{7, 7},
1326 		{0, 0}
1327 		}
1328 	},
1329 	{0, 1, 3, 0,		/* 0xb4 */
1330 		{{2, 2},
1331 		{4, 5},
1332 		{7, 7},
1333 		{0, 0}
1334 		}
1335 	},
1336 	{1, 1, 4, 0,		/* 0xb5 */
1337 		{{0, 0},
1338 		{2, 2},
1339 		{4, 5},
1340 		{7, 7}
1341 		}
1342 	},
1343 	{0, 1, 3, 0,		/* 0xb6 */
1344 		{{1, 2},
1345 		{4, 5},
1346 		{7, 7},
1347 		{0, 0}
1348 		}
1349 	},
1350 	{1, 1, 3, 0,		/* 0xb7 */
1351 		{{0, 2},
1352 		{4, 5},
1353 		{7, 7},
1354 		{0, 0}
1355 		}
1356 	},
1357 	{0, 1, 2, 0,		/* 0xb8 */
1358 		{{3, 5},
1359 		{7, 7},
1360 		{0, 0},
1361 		{0, 0}
1362 		}
1363 	},
1364 	{1, 1, 3, 0,		/* 0xb9 */
1365 		{{0, 0},
1366 		{3, 5},
1367 		{7, 7},
1368 		{0, 0}
1369 		}
1370 	},
1371 	{0, 1, 3, 0,		/* 0xba */
1372 		{{1, 1},
1373 		{3, 5},
1374 		{7, 7},
1375 		{0, 0}
1376 		}
1377 	},
1378 	{1, 1, 3, 0,		/* 0xbb */
1379 		{{0, 1},
1380 		{3, 5},
1381 		{7, 7},
1382 		{0, 0}
1383 		}
1384 	},
1385 	{0, 1, 2, 0,		/* 0xbc */
1386 		{{2, 5},
1387 		{7, 7},
1388 		{0, 0},
1389 		{0, 0}
1390 		}
1391 	},
1392 	{1, 1, 3, 0,		/* 0xbd */
1393 		{{0, 0},
1394 		{2, 5},
1395 		{7, 7},
1396 		{0, 0}
1397 		}
1398 	},
1399 	{0, 1, 2, 0,		/* 0xbe */
1400 		{{1, 5},
1401 		{7, 7},
1402 		{0, 0},
1403 		{0, 0}
1404 		}
1405 	},
1406 	{1, 1, 2, 0,		/* 0xbf */
1407 		{{0, 5},
1408 		{7, 7},
1409 		{0, 0},
1410 		{0, 0}
1411 		}
1412 	},
1413 	{0, 1, 1, 0,		/* 0xc0 */
1414 		{{6, 7},
1415 		{0, 0},
1416 		{0, 0},
1417 		{0, 0}
1418 		}
1419 	},
1420 	{1, 1, 2, 0,		/* 0xc1 */
1421 		{{0, 0},
1422 		{6, 7},
1423 		{0, 0},
1424 		{0, 0}
1425 		}
1426 	},
1427 	{0, 1, 2, 0,		/* 0xc2 */
1428 		{{1, 1},
1429 		{6, 7},
1430 		{0, 0},
1431 		{0, 0}
1432 		}
1433 	},
1434 	{1, 1, 2, 0,		/* 0xc3 */
1435 		{{0, 1},
1436 		{6, 7},
1437 		{0, 0},
1438 		{0, 0}
1439 		}
1440 	},
1441 	{0, 1, 2, 0,		/* 0xc4 */
1442 		{{2, 2},
1443 		{6, 7},
1444 		{0, 0},
1445 		{0, 0}
1446 		}
1447 	},
1448 	{1, 1, 3, 0,		/* 0xc5 */
1449 		{{0, 0},
1450 		{2, 2},
1451 		{6, 7},
1452 		{0, 0}
1453 		}
1454 	},
1455 	{0, 1, 2, 0,		/* 0xc6 */
1456 		{{1, 2},
1457 		{6, 7},
1458 		{0, 0},
1459 		{0, 0}
1460 		}
1461 	},
1462 	{1, 1, 2, 0,		/* 0xc7 */
1463 		{{0, 2},
1464 		{6, 7},
1465 		{0, 0},
1466 		{0, 0}
1467 		}
1468 	},
1469 	{0, 1, 2, 0,		/* 0xc8 */
1470 		{{3, 3},
1471 		{6, 7},
1472 		{0, 0},
1473 		{0, 0}
1474 		}
1475 	},
1476 	{1, 1, 3, 0,		/* 0xc9 */
1477 		{{0, 0},
1478 		{3, 3},
1479 		{6, 7},
1480 		{0, 0}
1481 		}
1482 	},
1483 	{0, 1, 3, 0,		/* 0xca */
1484 		{{1, 1},
1485 		{3, 3},
1486 		{6, 7},
1487 		{0, 0}
1488 		}
1489 	},
1490 	{1, 1, 3, 0,		/* 0xcb */
1491 		{{0, 1},
1492 		{3, 3},
1493 		{6, 7},
1494 		{0, 0}
1495 		}
1496 	},
1497 	{0, 1, 2, 0,		/* 0xcc */
1498 		{{2, 3},
1499 		{6, 7},
1500 		{0, 0},
1501 		{0, 0}
1502 		}
1503 	},
1504 	{1, 1, 3, 0,		/* 0xcd */
1505 		{{0, 0},
1506 		{2, 3},
1507 		{6, 7},
1508 		{0, 0}
1509 		}
1510 	},
1511 	{0, 1, 2, 0,		/* 0xce */
1512 		{{1, 3},
1513 		{6, 7},
1514 		{0, 0},
1515 		{0, 0}
1516 		}
1517 	},
1518 	{1, 1, 2, 0,		/* 0xcf */
1519 		{{0, 3},
1520 		{6, 7},
1521 		{0, 0},
1522 		{0, 0}
1523 		}
1524 	},
1525 	{0, 1, 2, 0,		/* 0xd0 */
1526 		{{4, 4},
1527 		{6, 7},
1528 		{0, 0},
1529 		{0, 0}
1530 		}
1531 	},
1532 	{1, 1, 3, 0,		/* 0xd1 */
1533 		{{0, 0},
1534 		{4, 4},
1535 		{6, 7},
1536 		{0, 0}
1537 		}
1538 	},
1539 	{0, 1, 3, 0,		/* 0xd2 */
1540 		{{1, 1},
1541 		{4, 4},
1542 		{6, 7},
1543 		{0, 0}
1544 		}
1545 	},
1546 	{1, 1, 3, 0,		/* 0xd3 */
1547 		{{0, 1},
1548 		{4, 4},
1549 		{6, 7},
1550 		{0, 0}
1551 		}
1552 	},
1553 	{0, 1, 3, 0,		/* 0xd4 */
1554 		{{2, 2},
1555 		{4, 4},
1556 		{6, 7},
1557 		{0, 0}
1558 		}
1559 	},
1560 	{1, 1, 4, 0,		/* 0xd5 */
1561 		{{0, 0},
1562 		{2, 2},
1563 		{4, 4},
1564 		{6, 7}
1565 		}
1566 	},
1567 	{0, 1, 3, 0,		/* 0xd6 */
1568 		{{1, 2},
1569 		{4, 4},
1570 		{6, 7},
1571 		{0, 0}
1572 		}
1573 	},
1574 	{1, 1, 3, 0,		/* 0xd7 */
1575 		{{0, 2},
1576 		{4, 4},
1577 		{6, 7},
1578 		{0, 0}
1579 		}
1580 	},
1581 	{0, 1, 2, 0,		/* 0xd8 */
1582 		{{3, 4},
1583 		{6, 7},
1584 		{0, 0},
1585 		{0, 0}
1586 		}
1587 	},
1588 	{1, 1, 3, 0,		/* 0xd9 */
1589 		{{0, 0},
1590 		{3, 4},
1591 		{6, 7},
1592 		{0, 0}
1593 		}
1594 	},
1595 	{0, 1, 3, 0,		/* 0xda */
1596 		{{1, 1},
1597 		{3, 4},
1598 		{6, 7},
1599 		{0, 0}
1600 		}
1601 	},
1602 	{1, 1, 3, 0,		/* 0xdb */
1603 		{{0, 1},
1604 		{3, 4},
1605 		{6, 7},
1606 		{0, 0}
1607 		}
1608 	},
1609 	{0, 1, 2, 0,		/* 0xdc */
1610 		{{2, 4},
1611 		{6, 7},
1612 		{0, 0},
1613 		{0, 0}
1614 		}
1615 	},
1616 	{1, 1, 3, 0,		/* 0xdd */
1617 		{{0, 0},
1618 		{2, 4},
1619 		{6, 7},
1620 		{0, 0}
1621 		}
1622 	},
1623 	{0, 1, 2, 0,		/* 0xde */
1624 		{{1, 4},
1625 		{6, 7},
1626 		{0, 0},
1627 		{0, 0}
1628 		}
1629 	},
1630 	{1, 1, 2, 0,		/* 0xdf */
1631 		{{0, 4},
1632 		{6, 7},
1633 		{0, 0},
1634 		{0, 0}
1635 		}
1636 	},
1637 	{0, 1, 1, 0,		/* 0xe0 */
1638 		{{5, 7},
1639 		{0, 0},
1640 		{0, 0},
1641 		{0, 0}
1642 		}
1643 	},
1644 	{1, 1, 2, 0,		/* 0xe1 */
1645 		{{0, 0},
1646 		{5, 7},
1647 		{0, 0},
1648 		{0, 0}
1649 		}
1650 	},
1651 	{0, 1, 2, 0,		/* 0xe2 */
1652 		{{1, 1},
1653 		{5, 7},
1654 		{0, 0},
1655 		{0, 0}
1656 		}
1657 	},
1658 	{1, 1, 2, 0,		/* 0xe3 */
1659 		{{0, 1},
1660 		{5, 7},
1661 		{0, 0},
1662 		{0, 0}
1663 		}
1664 	},
1665 	{0, 1, 2, 0,		/* 0xe4 */
1666 		{{2, 2},
1667 		{5, 7},
1668 		{0, 0},
1669 		{0, 0}
1670 		}
1671 	},
1672 	{1, 1, 3, 0,		/* 0xe5 */
1673 		{{0, 0},
1674 		{2, 2},
1675 		{5, 7},
1676 		{0, 0}
1677 		}
1678 	},
1679 	{0, 1, 2, 0,		/* 0xe6 */
1680 		{{1, 2},
1681 		{5, 7},
1682 		{0, 0},
1683 		{0, 0}
1684 		}
1685 	},
1686 	{1, 1, 2, 0,		/* 0xe7 */
1687 		{{0, 2},
1688 		{5, 7},
1689 		{0, 0},
1690 		{0, 0}
1691 		}
1692 	},
1693 	{0, 1, 2, 0,		/* 0xe8 */
1694 		{{3, 3},
1695 		{5, 7},
1696 		{0, 0},
1697 		{0, 0}
1698 		}
1699 	},
1700 	{1, 1, 3, 0,		/* 0xe9 */
1701 		{{0, 0},
1702 		{3, 3},
1703 		{5, 7},
1704 		{0, 0}
1705 		}
1706 	},
1707 	{0, 1, 3, 0,		/* 0xea */
1708 		{{1, 1},
1709 		{3, 3},
1710 		{5, 7},
1711 		{0, 0}
1712 		}
1713 	},
1714 	{1, 1, 3, 0,		/* 0xeb */
1715 		{{0, 1},
1716 		{3, 3},
1717 		{5, 7},
1718 		{0, 0}
1719 		}
1720 	},
1721 	{0, 1, 2, 0,		/* 0xec */
1722 		{{2, 3},
1723 		{5, 7},
1724 		{0, 0},
1725 		{0, 0}
1726 		}
1727 	},
1728 	{1, 1, 3, 0,		/* 0xed */
1729 		{{0, 0},
1730 		{2, 3},
1731 		{5, 7},
1732 		{0, 0}
1733 		}
1734 	},
1735 	{0, 1, 2, 0,		/* 0xee */
1736 		{{1, 3},
1737 		{5, 7},
1738 		{0, 0},
1739 		{0, 0}
1740 		}
1741 	},
1742 	{1, 1, 2, 0,		/* 0xef */
1743 		{{0, 3},
1744 		{5, 7},
1745 		{0, 0},
1746 		{0, 0}
1747 		}
1748 	},
1749 	{0, 1, 1, 0,		/* 0xf0 */
1750 		{{4, 7},
1751 		{0, 0},
1752 		{0, 0},
1753 		{0, 0}
1754 		}
1755 	},
1756 	{1, 1, 2, 0,		/* 0xf1 */
1757 		{{0, 0},
1758 		{4, 7},
1759 		{0, 0},
1760 		{0, 0}
1761 		}
1762 	},
1763 	{0, 1, 2, 0,		/* 0xf2 */
1764 		{{1, 1},
1765 		{4, 7},
1766 		{0, 0},
1767 		{0, 0}
1768 		}
1769 	},
1770 	{1, 1, 2, 0,		/* 0xf3 */
1771 		{{0, 1},
1772 		{4, 7},
1773 		{0, 0},
1774 		{0, 0}
1775 		}
1776 	},
1777 	{0, 1, 2, 0,		/* 0xf4 */
1778 		{{2, 2},
1779 		{4, 7},
1780 		{0, 0},
1781 		{0, 0}
1782 		}
1783 	},
1784 	{1, 1, 3, 0,		/* 0xf5 */
1785 		{{0, 0},
1786 		{2, 2},
1787 		{4, 7},
1788 		{0, 0}
1789 		}
1790 	},
1791 	{0, 1, 2, 0,		/* 0xf6 */
1792 		{{1, 2},
1793 		{4, 7},
1794 		{0, 0},
1795 		{0, 0}
1796 		}
1797 	},
1798 	{1, 1, 2, 0,		/* 0xf7 */
1799 		{{0, 2},
1800 		{4, 7},
1801 		{0, 0},
1802 		{0, 0}
1803 		}
1804 	},
1805 	{0, 1, 1, 0,		/* 0xf8 */
1806 		{{3, 7},
1807 		{0, 0},
1808 		{0, 0},
1809 		{0, 0}
1810 		}
1811 	},
1812 	{1, 1, 2, 0,		/* 0xf9 */
1813 		{{0, 0},
1814 		{3, 7},
1815 		{0, 0},
1816 		{0, 0}
1817 		}
1818 	},
1819 	{0, 1, 2, 0,		/* 0xfa */
1820 		{{1, 1},
1821 		{3, 7},
1822 		{0, 0},
1823 		{0, 0}
1824 		}
1825 	},
1826 	{1, 1, 2, 0,		/* 0xfb */
1827 		{{0, 1},
1828 		{3, 7},
1829 		{0, 0},
1830 		{0, 0}
1831 		}
1832 	},
1833 	{0, 1, 1, 0,		/* 0xfc */
1834 		{{2, 7},
1835 		{0, 0},
1836 		{0, 0},
1837 		{0, 0}
1838 		}
1839 	},
1840 	{1, 1, 2, 0,		/* 0xfd */
1841 		{{0, 0},
1842 		{2, 7},
1843 		{0, 0},
1844 		{0, 0}
1845 		}
1846 	},
1847 	{0, 1, 1, 0,		/* 0xfe */
1848 		{{1, 7},
1849 		{0, 0},
1850 		{0, 0},
1851 		{0, 0}
1852 		}
1853 	},
1854 	{1, 1, 1, 0,		/* 0xff */
1855 		{{0, 7},
1856 		{0, 0},
1857 		{0, 0},
1858 		{0, 0}
1859 		}
1860 	}
1861 };
1862 
1863 
1864 int
1865 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1866     struct sctp_scoping *scope,
1867     int do_update)
1868 {
1869 	if ((scope->loopback_scope == 0) &&
1870 	    (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1871 		/*
1872 		 * skip loopback if not in scope *
1873 		 */
1874 		return (0);
1875 	}
1876 	switch (ifa->address.sa.sa_family) {
1877 #ifdef INET
1878 	case AF_INET:
1879 		if (scope->ipv4_addr_legal) {
1880 			struct sockaddr_in *sin;
1881 
1882 			sin = (struct sockaddr_in *)&ifa->address.sin;
1883 			if (sin->sin_addr.s_addr == 0) {
1884 				/* not in scope , unspecified */
1885 				return (0);
1886 			}
1887 			if ((scope->ipv4_local_scope == 0) &&
1888 			    (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1889 				/* private address not in scope */
1890 				return (0);
1891 			}
1892 		} else {
1893 			return (0);
1894 		}
1895 		break;
1896 #endif
1897 #ifdef INET6
1898 	case AF_INET6:
1899 		if (scope->ipv6_addr_legal) {
1900 			struct sockaddr_in6 *sin6;
1901 
1902 			/*
1903 			 * Must update the flags,  bummer, which means any
1904 			 * IFA locks must now be applied HERE <->
1905 			 */
1906 			if (do_update) {
1907 				sctp_gather_internal_ifa_flags(ifa);
1908 			}
1909 			if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1910 				return (0);
1911 			}
1912 			/* ok to use deprecated addresses? */
1913 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1914 			if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1915 				/* skip unspecifed addresses */
1916 				return (0);
1917 			}
1918 			if (	/* (local_scope == 0) && */
1919 			    (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1920 				return (0);
1921 			}
1922 			if ((scope->site_scope == 0) &&
1923 			    (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1924 				return (0);
1925 			}
1926 		} else {
1927 			return (0);
1928 		}
1929 		break;
1930 #endif
1931 	default:
1932 		return (0);
1933 	}
1934 	return (1);
1935 }
1936 
1937 static struct mbuf *
1938 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t * len)
1939 {
1940 	struct sctp_paramhdr *parmh;
1941 	struct mbuf *mret;
1942 	uint16_t plen;
1943 
1944 	switch (ifa->address.sa.sa_family) {
1945 #ifdef INET
1946 	case AF_INET:
1947 		plen = (uint16_t) sizeof(struct sctp_ipv4addr_param);
1948 		break;
1949 #endif
1950 #ifdef INET6
1951 	case AF_INET6:
1952 		plen = (uint16_t) sizeof(struct sctp_ipv6addr_param);
1953 		break;
1954 #endif
1955 	default:
1956 		return (m);
1957 	}
1958 	if (M_TRAILINGSPACE(m) >= plen) {
1959 		/* easy side we just drop it on the end */
1960 		parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1961 		mret = m;
1962 	} else {
1963 		/* Need more space */
1964 		mret = m;
1965 		while (SCTP_BUF_NEXT(mret) != NULL) {
1966 			mret = SCTP_BUF_NEXT(mret);
1967 		}
1968 		SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA);
1969 		if (SCTP_BUF_NEXT(mret) == NULL) {
1970 			/* We are hosed, can't add more addresses */
1971 			return (m);
1972 		}
1973 		mret = SCTP_BUF_NEXT(mret);
1974 		parmh = mtod(mret, struct sctp_paramhdr *);
1975 	}
1976 	/* now add the parameter */
1977 	switch (ifa->address.sa.sa_family) {
1978 #ifdef INET
1979 	case AF_INET:
1980 		{
1981 			struct sctp_ipv4addr_param *ipv4p;
1982 			struct sockaddr_in *sin;
1983 
1984 			sin = (struct sockaddr_in *)&ifa->address.sin;
1985 			ipv4p = (struct sctp_ipv4addr_param *)parmh;
1986 			parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1987 			parmh->param_length = htons(plen);
1988 			ipv4p->addr = sin->sin_addr.s_addr;
1989 			SCTP_BUF_LEN(mret) += plen;
1990 			break;
1991 		}
1992 #endif
1993 #ifdef INET6
1994 	case AF_INET6:
1995 		{
1996 			struct sctp_ipv6addr_param *ipv6p;
1997 			struct sockaddr_in6 *sin6;
1998 
1999 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
2000 			ipv6p = (struct sctp_ipv6addr_param *)parmh;
2001 			parmh->param_type = htons(SCTP_IPV6_ADDRESS);
2002 			parmh->param_length = htons(plen);
2003 			memcpy(ipv6p->addr, &sin6->sin6_addr,
2004 			    sizeof(ipv6p->addr));
2005 			/* clear embedded scope in the address */
2006 			in6_clearscope((struct in6_addr *)ipv6p->addr);
2007 			SCTP_BUF_LEN(mret) += plen;
2008 			break;
2009 		}
2010 #endif
2011 	default:
2012 		return (m);
2013 	}
2014 	if (len != NULL) {
2015 		*len += plen;
2016 	}
2017 	return (mret);
2018 }
2019 
2020 
2021 struct mbuf *
2022 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2023     struct sctp_scoping *scope,
2024     struct mbuf *m_at, int cnt_inits_to,
2025     uint16_t * padding_len, uint16_t * chunk_len)
2026 {
2027 	struct sctp_vrf *vrf = NULL;
2028 	int cnt, limit_out = 0, total_count;
2029 	uint32_t vrf_id;
2030 
2031 	vrf_id = inp->def_vrf_id;
2032 	SCTP_IPI_ADDR_RLOCK();
2033 	vrf = sctp_find_vrf(vrf_id);
2034 	if (vrf == NULL) {
2035 		SCTP_IPI_ADDR_RUNLOCK();
2036 		return (m_at);
2037 	}
2038 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2039 		struct sctp_ifa *sctp_ifap;
2040 		struct sctp_ifn *sctp_ifnp;
2041 
2042 		cnt = cnt_inits_to;
2043 		if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2044 			limit_out = 1;
2045 			cnt = SCTP_ADDRESS_LIMIT;
2046 			goto skip_count;
2047 		}
2048 		LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2049 			if ((scope->loopback_scope == 0) &&
2050 			    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2051 				/*
2052 				 * Skip loopback devices if loopback_scope
2053 				 * not set
2054 				 */
2055 				continue;
2056 			}
2057 			LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2058 				if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2059 					continue;
2060 				}
2061 				if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) {
2062 					continue;
2063 				}
2064 				cnt++;
2065 				if (cnt > SCTP_ADDRESS_LIMIT) {
2066 					break;
2067 				}
2068 			}
2069 			if (cnt > SCTP_ADDRESS_LIMIT) {
2070 				break;
2071 			}
2072 		}
2073 skip_count:
2074 		if (cnt > 1) {
2075 			total_count = 0;
2076 			LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2077 				cnt = 0;
2078 				if ((scope->loopback_scope == 0) &&
2079 				    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2080 					/*
2081 					 * Skip loopback devices if
2082 					 * loopback_scope not set
2083 					 */
2084 					continue;
2085 				}
2086 				LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2087 					if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2088 						continue;
2089 					}
2090 					if (sctp_is_address_in_scope(sctp_ifap,
2091 					    scope, 0) == 0) {
2092 						continue;
2093 					}
2094 					if ((chunk_len != NULL) &&
2095 					    (padding_len != NULL) &&
2096 					    (*padding_len > 0)) {
2097 						memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2098 						SCTP_BUF_LEN(m_at) += *padding_len;
2099 						*chunk_len += *padding_len;
2100 						*padding_len = 0;
2101 					}
2102 					m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len);
2103 					if (limit_out) {
2104 						cnt++;
2105 						total_count++;
2106 						if (cnt >= 2) {
2107 							/*
2108 							 * two from each
2109 							 * address
2110 							 */
2111 							break;
2112 						}
2113 						if (total_count > SCTP_ADDRESS_LIMIT) {
2114 							/* No more addresses */
2115 							break;
2116 						}
2117 					}
2118 				}
2119 			}
2120 		}
2121 	} else {
2122 		struct sctp_laddr *laddr;
2123 
2124 		cnt = cnt_inits_to;
2125 		/* First, how many ? */
2126 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2127 			if (laddr->ifa == NULL) {
2128 				continue;
2129 			}
2130 			if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2131 				/*
2132 				 * Address being deleted by the system, dont
2133 				 * list.
2134 				 */
2135 				continue;
2136 			if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2137 				/*
2138 				 * Address being deleted on this ep don't
2139 				 * list.
2140 				 */
2141 				continue;
2142 			}
2143 			if (sctp_is_address_in_scope(laddr->ifa,
2144 			    scope, 1) == 0) {
2145 				continue;
2146 			}
2147 			cnt++;
2148 		}
2149 		/*
2150 		 * To get through a NAT we only list addresses if we have
2151 		 * more than one. That way if you just bind a single address
2152 		 * we let the source of the init dictate our address.
2153 		 */
2154 		if (cnt > 1) {
2155 			cnt = cnt_inits_to;
2156 			LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2157 				if (laddr->ifa == NULL) {
2158 					continue;
2159 				}
2160 				if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) {
2161 					continue;
2162 				}
2163 				if (sctp_is_address_in_scope(laddr->ifa,
2164 				    scope, 0) == 0) {
2165 					continue;
2166 				}
2167 				if ((chunk_len != NULL) &&
2168 				    (padding_len != NULL) &&
2169 				    (*padding_len > 0)) {
2170 					memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2171 					SCTP_BUF_LEN(m_at) += *padding_len;
2172 					*chunk_len += *padding_len;
2173 					*padding_len = 0;
2174 				}
2175 				m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len);
2176 				cnt++;
2177 				if (cnt >= SCTP_ADDRESS_LIMIT) {
2178 					break;
2179 				}
2180 			}
2181 		}
2182 	}
2183 	SCTP_IPI_ADDR_RUNLOCK();
2184 	return (m_at);
2185 }
2186 
2187 static struct sctp_ifa *
2188 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2189     uint8_t dest_is_loop,
2190     uint8_t dest_is_priv,
2191     sa_family_t fam)
2192 {
2193 	uint8_t dest_is_global = 0;
2194 
2195 	/* dest_is_priv is true if destination is a private address */
2196 	/* dest_is_loop is true if destination is a loopback addresses */
2197 
2198 	/**
2199 	 * Here we determine if its a preferred address. A preferred address
2200 	 * means it is the same scope or higher scope then the destination.
2201 	 * L = loopback, P = private, G = global
2202 	 * -----------------------------------------
2203 	 *    src    |  dest | result
2204 	 *  ----------------------------------------
2205 	 *     L     |    L  |    yes
2206 	 *  -----------------------------------------
2207 	 *     P     |    L  |    yes-v4 no-v6
2208 	 *  -----------------------------------------
2209 	 *     G     |    L  |    yes-v4 no-v6
2210 	 *  -----------------------------------------
2211 	 *     L     |    P  |    no
2212 	 *  -----------------------------------------
2213 	 *     P     |    P  |    yes
2214 	 *  -----------------------------------------
2215 	 *     G     |    P  |    no
2216 	 *   -----------------------------------------
2217 	 *     L     |    G  |    no
2218 	 *   -----------------------------------------
2219 	 *     P     |    G  |    no
2220 	 *    -----------------------------------------
2221 	 *     G     |    G  |    yes
2222 	 *    -----------------------------------------
2223 	 */
2224 
2225 	if (ifa->address.sa.sa_family != fam) {
2226 		/* forget mis-matched family */
2227 		return (NULL);
2228 	}
2229 	if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2230 		dest_is_global = 1;
2231 	}
2232 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2233 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2234 	/* Ok the address may be ok */
2235 #ifdef INET6
2236 	if (fam == AF_INET6) {
2237 		/* ok to use deprecated addresses? no lets not! */
2238 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2239 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2240 			return (NULL);
2241 		}
2242 		if (ifa->src_is_priv && !ifa->src_is_loop) {
2243 			if (dest_is_loop) {
2244 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2245 				return (NULL);
2246 			}
2247 		}
2248 		if (ifa->src_is_glob) {
2249 			if (dest_is_loop) {
2250 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2251 				return (NULL);
2252 			}
2253 		}
2254 	}
2255 #endif
2256 	/*
2257 	 * Now that we know what is what, implement or table this could in
2258 	 * theory be done slicker (it used to be), but this is
2259 	 * straightforward and easier to validate :-)
2260 	 */
2261 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2262 	    ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2263 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2264 	    dest_is_loop, dest_is_priv, dest_is_global);
2265 
2266 	if ((ifa->src_is_loop) && (dest_is_priv)) {
2267 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2268 		return (NULL);
2269 	}
2270 	if ((ifa->src_is_glob) && (dest_is_priv)) {
2271 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2272 		return (NULL);
2273 	}
2274 	if ((ifa->src_is_loop) && (dest_is_global)) {
2275 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2276 		return (NULL);
2277 	}
2278 	if ((ifa->src_is_priv) && (dest_is_global)) {
2279 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2280 		return (NULL);
2281 	}
2282 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2283 	/* its a preferred address */
2284 	return (ifa);
2285 }
2286 
2287 static struct sctp_ifa *
2288 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2289     uint8_t dest_is_loop,
2290     uint8_t dest_is_priv,
2291     sa_family_t fam)
2292 {
2293 	uint8_t dest_is_global = 0;
2294 
2295 	/**
2296 	 * Here we determine if its a acceptable address. A acceptable
2297 	 * address means it is the same scope or higher scope but we can
2298 	 * allow for NAT which means its ok to have a global dest and a
2299 	 * private src.
2300 	 *
2301 	 * L = loopback, P = private, G = global
2302 	 * -----------------------------------------
2303 	 *  src    |  dest | result
2304 	 * -----------------------------------------
2305 	 *   L     |   L   |    yes
2306 	 *  -----------------------------------------
2307 	 *   P     |   L   |    yes-v4 no-v6
2308 	 *  -----------------------------------------
2309 	 *   G     |   L   |    yes
2310 	 * -----------------------------------------
2311 	 *   L     |   P   |    no
2312 	 * -----------------------------------------
2313 	 *   P     |   P   |    yes
2314 	 * -----------------------------------------
2315 	 *   G     |   P   |    yes - May not work
2316 	 * -----------------------------------------
2317 	 *   L     |   G   |    no
2318 	 * -----------------------------------------
2319 	 *   P     |   G   |    yes - May not work
2320 	 * -----------------------------------------
2321 	 *   G     |   G   |    yes
2322 	 * -----------------------------------------
2323 	 */
2324 
2325 	if (ifa->address.sa.sa_family != fam) {
2326 		/* forget non matching family */
2327 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2328 		    ifa->address.sa.sa_family, fam);
2329 		return (NULL);
2330 	}
2331 	/* Ok the address may be ok */
2332 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2333 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2334 	    dest_is_loop, dest_is_priv);
2335 	if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2336 		dest_is_global = 1;
2337 	}
2338 #ifdef INET6
2339 	if (fam == AF_INET6) {
2340 		/* ok to use deprecated addresses? */
2341 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2342 			return (NULL);
2343 		}
2344 		if (ifa->src_is_priv) {
2345 			/* Special case, linklocal to loop */
2346 			if (dest_is_loop)
2347 				return (NULL);
2348 		}
2349 	}
2350 #endif
2351 	/*
2352 	 * Now that we know what is what, implement our table. This could in
2353 	 * theory be done slicker (it used to be), but this is
2354 	 * straightforward and easier to validate :-)
2355 	 */
2356 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2357 	    ifa->src_is_loop,
2358 	    dest_is_priv);
2359 	if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2360 		return (NULL);
2361 	}
2362 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2363 	    ifa->src_is_loop,
2364 	    dest_is_global);
2365 	if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2366 		return (NULL);
2367 	}
2368 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2369 	/* its an acceptable address */
2370 	return (ifa);
2371 }
2372 
2373 int
2374 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2375 {
2376 	struct sctp_laddr *laddr;
2377 
2378 	if (stcb == NULL) {
2379 		/* There are no restrictions, no TCB :-) */
2380 		return (0);
2381 	}
2382 	LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2383 		if (laddr->ifa == NULL) {
2384 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2385 			    __FUNCTION__);
2386 			continue;
2387 		}
2388 		if (laddr->ifa == ifa) {
2389 			/* Yes it is on the list */
2390 			return (1);
2391 		}
2392 	}
2393 	return (0);
2394 }
2395 
2396 
2397 int
2398 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2399 {
2400 	struct sctp_laddr *laddr;
2401 
2402 	if (ifa == NULL)
2403 		return (0);
2404 	LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2405 		if (laddr->ifa == NULL) {
2406 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2407 			    __FUNCTION__);
2408 			continue;
2409 		}
2410 		if ((laddr->ifa == ifa) && laddr->action == 0)
2411 			/* same pointer */
2412 			return (1);
2413 	}
2414 	return (0);
2415 }
2416 
2417 
2418 
2419 static struct sctp_ifa *
2420 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2421     sctp_route_t * ro,
2422     uint32_t vrf_id,
2423     int non_asoc_addr_ok,
2424     uint8_t dest_is_priv,
2425     uint8_t dest_is_loop,
2426     sa_family_t fam)
2427 {
2428 	struct sctp_laddr *laddr, *starting_point;
2429 	void *ifn;
2430 	int resettotop = 0;
2431 	struct sctp_ifn *sctp_ifn;
2432 	struct sctp_ifa *sctp_ifa, *sifa;
2433 	struct sctp_vrf *vrf;
2434 	uint32_t ifn_index;
2435 
2436 	vrf = sctp_find_vrf(vrf_id);
2437 	if (vrf == NULL)
2438 		return (NULL);
2439 
2440 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2441 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2442 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2443 	/*
2444 	 * first question, is the ifn we will emit on in our list, if so, we
2445 	 * want such an address. Note that we first looked for a preferred
2446 	 * address.
2447 	 */
2448 	if (sctp_ifn) {
2449 		/* is a preferred one on the interface we route out? */
2450 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2451 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2452 			    (non_asoc_addr_ok == 0))
2453 				continue;
2454 			sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2455 			    dest_is_loop,
2456 			    dest_is_priv, fam);
2457 			if (sifa == NULL)
2458 				continue;
2459 			if (sctp_is_addr_in_ep(inp, sifa)) {
2460 				atomic_add_int(&sifa->refcount, 1);
2461 				return (sifa);
2462 			}
2463 		}
2464 	}
2465 	/*
2466 	 * ok, now we now need to find one on the list of the addresses. We
2467 	 * can't get one on the emitting interface so let's find first a
2468 	 * preferred one. If not that an acceptable one otherwise... we
2469 	 * return NULL.
2470 	 */
2471 	starting_point = inp->next_addr_touse;
2472 once_again:
2473 	if (inp->next_addr_touse == NULL) {
2474 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2475 		resettotop = 1;
2476 	}
2477 	for (laddr = inp->next_addr_touse; laddr;
2478 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2479 		if (laddr->ifa == NULL) {
2480 			/* address has been removed */
2481 			continue;
2482 		}
2483 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2484 			/* address is being deleted */
2485 			continue;
2486 		}
2487 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2488 		    dest_is_priv, fam);
2489 		if (sifa == NULL)
2490 			continue;
2491 		atomic_add_int(&sifa->refcount, 1);
2492 		return (sifa);
2493 	}
2494 	if (resettotop == 0) {
2495 		inp->next_addr_touse = NULL;
2496 		goto once_again;
2497 	}
2498 	inp->next_addr_touse = starting_point;
2499 	resettotop = 0;
2500 once_again_too:
2501 	if (inp->next_addr_touse == NULL) {
2502 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2503 		resettotop = 1;
2504 	}
2505 	/* ok, what about an acceptable address in the inp */
2506 	for (laddr = inp->next_addr_touse; laddr;
2507 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2508 		if (laddr->ifa == NULL) {
2509 			/* address has been removed */
2510 			continue;
2511 		}
2512 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2513 			/* address is being deleted */
2514 			continue;
2515 		}
2516 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2517 		    dest_is_priv, fam);
2518 		if (sifa == NULL)
2519 			continue;
2520 		atomic_add_int(&sifa->refcount, 1);
2521 		return (sifa);
2522 	}
2523 	if (resettotop == 0) {
2524 		inp->next_addr_touse = NULL;
2525 		goto once_again_too;
2526 	}
2527 	/*
2528 	 * no address bound can be a source for the destination we are in
2529 	 * trouble
2530 	 */
2531 	return (NULL);
2532 }
2533 
2534 
2535 
2536 static struct sctp_ifa *
2537 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2538     struct sctp_tcb *stcb,
2539     sctp_route_t * ro,
2540     uint32_t vrf_id,
2541     uint8_t dest_is_priv,
2542     uint8_t dest_is_loop,
2543     int non_asoc_addr_ok,
2544     sa_family_t fam)
2545 {
2546 	struct sctp_laddr *laddr, *starting_point;
2547 	void *ifn;
2548 	struct sctp_ifn *sctp_ifn;
2549 	struct sctp_ifa *sctp_ifa, *sifa;
2550 	uint8_t start_at_beginning = 0;
2551 	struct sctp_vrf *vrf;
2552 	uint32_t ifn_index;
2553 
2554 	/*
2555 	 * first question, is the ifn we will emit on in our list, if so, we
2556 	 * want that one.
2557 	 */
2558 	vrf = sctp_find_vrf(vrf_id);
2559 	if (vrf == NULL)
2560 		return (NULL);
2561 
2562 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2563 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2564 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2565 
2566 	/*
2567 	 * first question, is the ifn we will emit on in our list?  If so,
2568 	 * we want that one. First we look for a preferred. Second, we go
2569 	 * for an acceptable.
2570 	 */
2571 	if (sctp_ifn) {
2572 		/* first try for a preferred address on the ep */
2573 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2574 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2575 				continue;
2576 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2577 				sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2578 				if (sifa == NULL)
2579 					continue;
2580 				if (((non_asoc_addr_ok == 0) &&
2581 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2582 				    (non_asoc_addr_ok &&
2583 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2584 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2585 					/* on the no-no list */
2586 					continue;
2587 				}
2588 				atomic_add_int(&sifa->refcount, 1);
2589 				return (sifa);
2590 			}
2591 		}
2592 		/* next try for an acceptable address on the ep */
2593 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2594 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2595 				continue;
2596 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2597 				sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2598 				if (sifa == NULL)
2599 					continue;
2600 				if (((non_asoc_addr_ok == 0) &&
2601 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2602 				    (non_asoc_addr_ok &&
2603 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2604 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2605 					/* on the no-no list */
2606 					continue;
2607 				}
2608 				atomic_add_int(&sifa->refcount, 1);
2609 				return (sifa);
2610 			}
2611 		}
2612 
2613 	}
2614 	/*
2615 	 * if we can't find one like that then we must look at all addresses
2616 	 * bound to pick one at first preferable then secondly acceptable.
2617 	 */
2618 	starting_point = stcb->asoc.last_used_address;
2619 sctp_from_the_top:
2620 	if (stcb->asoc.last_used_address == NULL) {
2621 		start_at_beginning = 1;
2622 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2623 	}
2624 	/* search beginning with the last used address */
2625 	for (laddr = stcb->asoc.last_used_address; laddr;
2626 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2627 		if (laddr->ifa == NULL) {
2628 			/* address has been removed */
2629 			continue;
2630 		}
2631 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2632 			/* address is being deleted */
2633 			continue;
2634 		}
2635 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2636 		if (sifa == NULL)
2637 			continue;
2638 		if (((non_asoc_addr_ok == 0) &&
2639 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2640 		    (non_asoc_addr_ok &&
2641 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2642 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2643 			/* on the no-no list */
2644 			continue;
2645 		}
2646 		stcb->asoc.last_used_address = laddr;
2647 		atomic_add_int(&sifa->refcount, 1);
2648 		return (sifa);
2649 	}
2650 	if (start_at_beginning == 0) {
2651 		stcb->asoc.last_used_address = NULL;
2652 		goto sctp_from_the_top;
2653 	}
2654 	/* now try for any higher scope than the destination */
2655 	stcb->asoc.last_used_address = starting_point;
2656 	start_at_beginning = 0;
2657 sctp_from_the_top2:
2658 	if (stcb->asoc.last_used_address == NULL) {
2659 		start_at_beginning = 1;
2660 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2661 	}
2662 	/* search beginning with the last used address */
2663 	for (laddr = stcb->asoc.last_used_address; laddr;
2664 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2665 		if (laddr->ifa == NULL) {
2666 			/* address has been removed */
2667 			continue;
2668 		}
2669 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2670 			/* address is being deleted */
2671 			continue;
2672 		}
2673 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2674 		    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 		stcb->asoc.last_used_address = laddr;
2686 		atomic_add_int(&sifa->refcount, 1);
2687 		return (sifa);
2688 	}
2689 	if (start_at_beginning == 0) {
2690 		stcb->asoc.last_used_address = NULL;
2691 		goto sctp_from_the_top2;
2692 	}
2693 	return (NULL);
2694 }
2695 
2696 static struct sctp_ifa *
2697 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2698     struct sctp_tcb *stcb,
2699     int non_asoc_addr_ok,
2700     uint8_t dest_is_loop,
2701     uint8_t dest_is_priv,
2702     int addr_wanted,
2703     sa_family_t fam,
2704     sctp_route_t * ro
2705 )
2706 {
2707 	struct sctp_ifa *ifa, *sifa;
2708 	int num_eligible_addr = 0;
2709 
2710 #ifdef INET6
2711 	struct sockaddr_in6 sin6, lsa6;
2712 
2713 	if (fam == AF_INET6) {
2714 		memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2715 		(void)sa6_recoverscope(&sin6);
2716 	}
2717 #endif				/* INET6 */
2718 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2719 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2720 		    (non_asoc_addr_ok == 0))
2721 			continue;
2722 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2723 		    dest_is_priv, fam);
2724 		if (sifa == NULL)
2725 			continue;
2726 #ifdef INET6
2727 		if (fam == AF_INET6 &&
2728 		    dest_is_loop &&
2729 		    sifa->src_is_loop && sifa->src_is_priv) {
2730 			/*
2731 			 * don't allow fe80::1 to be a src on loop ::1, we
2732 			 * don't list it to the peer so we will get an
2733 			 * abort.
2734 			 */
2735 			continue;
2736 		}
2737 		if (fam == AF_INET6 &&
2738 		    IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2739 		    IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2740 			/*
2741 			 * link-local <-> link-local must belong to the same
2742 			 * scope.
2743 			 */
2744 			memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2745 			(void)sa6_recoverscope(&lsa6);
2746 			if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2747 				continue;
2748 			}
2749 		}
2750 #endif				/* INET6 */
2751 
2752 		/*
2753 		 * Check if the IPv6 address matches to next-hop. In the
2754 		 * mobile case, old IPv6 address may be not deleted from the
2755 		 * interface. Then, the interface has previous and new
2756 		 * addresses.  We should use one corresponding to the
2757 		 * next-hop.  (by micchie)
2758 		 */
2759 #ifdef INET6
2760 		if (stcb && fam == AF_INET6 &&
2761 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2762 			if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2763 			    == 0) {
2764 				continue;
2765 			}
2766 		}
2767 #endif
2768 #ifdef INET
2769 		/* Avoid topologically incorrect IPv4 address */
2770 		if (stcb && fam == AF_INET &&
2771 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2772 			if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2773 				continue;
2774 			}
2775 		}
2776 #endif
2777 		if (stcb) {
2778 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2779 				continue;
2780 			}
2781 			if (((non_asoc_addr_ok == 0) &&
2782 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2783 			    (non_asoc_addr_ok &&
2784 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2785 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2786 				/*
2787 				 * It is restricted for some reason..
2788 				 * probably not yet added.
2789 				 */
2790 				continue;
2791 			}
2792 		}
2793 		if (num_eligible_addr >= addr_wanted) {
2794 			return (sifa);
2795 		}
2796 		num_eligible_addr++;
2797 	}
2798 	return (NULL);
2799 }
2800 
2801 
2802 static int
2803 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2804     struct sctp_tcb *stcb,
2805     int non_asoc_addr_ok,
2806     uint8_t dest_is_loop,
2807     uint8_t dest_is_priv,
2808     sa_family_t fam)
2809 {
2810 	struct sctp_ifa *ifa, *sifa;
2811 	int num_eligible_addr = 0;
2812 
2813 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2814 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2815 		    (non_asoc_addr_ok == 0)) {
2816 			continue;
2817 		}
2818 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2819 		    dest_is_priv, fam);
2820 		if (sifa == NULL) {
2821 			continue;
2822 		}
2823 		if (stcb) {
2824 			if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2825 				continue;
2826 			}
2827 			if (((non_asoc_addr_ok == 0) &&
2828 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2829 			    (non_asoc_addr_ok &&
2830 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2831 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2832 				/*
2833 				 * It is restricted for some reason..
2834 				 * probably not yet added.
2835 				 */
2836 				continue;
2837 			}
2838 		}
2839 		num_eligible_addr++;
2840 	}
2841 	return (num_eligible_addr);
2842 }
2843 
2844 static struct sctp_ifa *
2845 sctp_choose_boundall(struct sctp_tcb *stcb,
2846     struct sctp_nets *net,
2847     sctp_route_t * ro,
2848     uint32_t vrf_id,
2849     uint8_t dest_is_priv,
2850     uint8_t dest_is_loop,
2851     int non_asoc_addr_ok,
2852     sa_family_t fam)
2853 {
2854 	int cur_addr_num = 0, num_preferred = 0;
2855 	void *ifn;
2856 	struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2857 	struct sctp_ifa *sctp_ifa, *sifa;
2858 	uint32_t ifn_index;
2859 	struct sctp_vrf *vrf;
2860 
2861 #ifdef INET
2862 	int retried = 0;
2863 
2864 #endif
2865 
2866 	/*-
2867 	 * For boundall we can use any address in the association.
2868 	 * If non_asoc_addr_ok is set we can use any address (at least in
2869 	 * theory). So we look for preferred addresses first. If we find one,
2870 	 * we use it. Otherwise we next try to get an address on the
2871 	 * interface, which we should be able to do (unless non_asoc_addr_ok
2872 	 * is false and we are routed out that way). In these cases where we
2873 	 * can't use the address of the interface we go through all the
2874 	 * ifn's looking for an address we can use and fill that in. Punting
2875 	 * means we send back address 0, which will probably cause problems
2876 	 * actually since then IP will fill in the address of the route ifn,
2877 	 * which means we probably already rejected it.. i.e. here comes an
2878 	 * abort :-<.
2879 	 */
2880 	vrf = sctp_find_vrf(vrf_id);
2881 	if (vrf == NULL)
2882 		return (NULL);
2883 
2884 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2885 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2886 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2887 	emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2888 	if (sctp_ifn == NULL) {
2889 		/* ?? We don't have this guy ?? */
2890 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
2891 		goto bound_all_plan_b;
2892 	}
2893 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
2894 	    ifn_index, sctp_ifn->ifn_name);
2895 
2896 	if (net) {
2897 		cur_addr_num = net->indx_of_eligible_next_to_use;
2898 	}
2899 	num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
2900 	    stcb,
2901 	    non_asoc_addr_ok,
2902 	    dest_is_loop,
2903 	    dest_is_priv, fam);
2904 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
2905 	    num_preferred, sctp_ifn->ifn_name);
2906 	if (num_preferred == 0) {
2907 		/*
2908 		 * no eligible addresses, we must use some other interface
2909 		 * address if we can find one.
2910 		 */
2911 		goto bound_all_plan_b;
2912 	}
2913 	/*
2914 	 * Ok we have num_eligible_addr set with how many we can use, this
2915 	 * may vary from call to call due to addresses being deprecated
2916 	 * etc..
2917 	 */
2918 	if (cur_addr_num >= num_preferred) {
2919 		cur_addr_num = 0;
2920 	}
2921 	/*
2922 	 * select the nth address from the list (where cur_addr_num is the
2923 	 * nth) and 0 is the first one, 1 is the second one etc...
2924 	 */
2925 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
2926 
2927 	sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2928 	    dest_is_priv, cur_addr_num, fam, ro);
2929 
2930 	/* if sctp_ifa is NULL something changed??, fall to plan b. */
2931 	if (sctp_ifa) {
2932 		atomic_add_int(&sctp_ifa->refcount, 1);
2933 		if (net) {
2934 			/* save off where the next one we will want */
2935 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2936 		}
2937 		return (sctp_ifa);
2938 	}
2939 	/*
2940 	 * plan_b: Look at all interfaces and find a preferred address. If
2941 	 * no preferred fall through to plan_c.
2942 	 */
2943 bound_all_plan_b:
2944 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
2945 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
2946 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
2947 		    sctp_ifn->ifn_name);
2948 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
2949 			/* wrong base scope */
2950 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
2951 			continue;
2952 		}
2953 		if ((sctp_ifn == looked_at) && looked_at) {
2954 			/* already looked at this guy */
2955 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
2956 			continue;
2957 		}
2958 		num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok,
2959 		    dest_is_loop, dest_is_priv, fam);
2960 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2961 		    "Found ifn:%p %d preferred source addresses\n",
2962 		    ifn, num_preferred);
2963 		if (num_preferred == 0) {
2964 			/* None on this interface. */
2965 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n");
2966 			continue;
2967 		}
2968 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2969 		    "num preferred:%d on interface:%p cur_addr_num:%d\n",
2970 		    num_preferred, (void *)sctp_ifn, cur_addr_num);
2971 
2972 		/*
2973 		 * Ok we have num_eligible_addr set with how many we can
2974 		 * use, this may vary from call to call due to addresses
2975 		 * being deprecated etc..
2976 		 */
2977 		if (cur_addr_num >= num_preferred) {
2978 			cur_addr_num = 0;
2979 		}
2980 		sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2981 		    dest_is_priv, cur_addr_num, fam, ro);
2982 		if (sifa == NULL)
2983 			continue;
2984 		if (net) {
2985 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2986 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
2987 			    cur_addr_num);
2988 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
2989 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
2990 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
2991 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
2992 		}
2993 		atomic_add_int(&sifa->refcount, 1);
2994 		return (sifa);
2995 	}
2996 #ifdef INET
2997 again_with_private_addresses_allowed:
2998 #endif
2999 	/* plan_c: do we have an acceptable address on the emit interface */
3000 	sifa = NULL;
3001 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3002 	if (emit_ifn == NULL) {
3003 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3004 		goto plan_d;
3005 	}
3006 	LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3007 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3008 		if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3009 		    (non_asoc_addr_ok == 0)) {
3010 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3011 			continue;
3012 		}
3013 		sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3014 		    dest_is_priv, fam);
3015 		if (sifa == NULL) {
3016 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3017 			continue;
3018 		}
3019 		if (stcb) {
3020 			if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3021 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3022 				sifa = NULL;
3023 				continue;
3024 			}
3025 			if (((non_asoc_addr_ok == 0) &&
3026 			    (sctp_is_addr_restricted(stcb, sifa))) ||
3027 			    (non_asoc_addr_ok &&
3028 			    (sctp_is_addr_restricted(stcb, sifa)) &&
3029 			    (!sctp_is_addr_pending(stcb, sifa)))) {
3030 				/*
3031 				 * It is restricted for some reason..
3032 				 * probably not yet added.
3033 				 */
3034 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n");
3035 				sifa = NULL;
3036 				continue;
3037 			}
3038 		} else {
3039 			SCTP_PRINTF("Stcb is null - no print\n");
3040 		}
3041 		atomic_add_int(&sifa->refcount, 1);
3042 		goto out;
3043 	}
3044 plan_d:
3045 	/*
3046 	 * plan_d: We are in trouble. No preferred address on the emit
3047 	 * interface. And not even a preferred address on all interfaces. Go
3048 	 * out and see if we can find an acceptable address somewhere
3049 	 * amongst all interfaces.
3050 	 */
3051 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3052 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3053 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3054 			/* wrong base scope */
3055 			continue;
3056 		}
3057 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3058 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3059 			    (non_asoc_addr_ok == 0))
3060 				continue;
3061 			sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3062 			    dest_is_loop,
3063 			    dest_is_priv, fam);
3064 			if (sifa == NULL)
3065 				continue;
3066 			if (stcb) {
3067 				if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3068 					sifa = NULL;
3069 					continue;
3070 				}
3071 				if (((non_asoc_addr_ok == 0) &&
3072 				    (sctp_is_addr_restricted(stcb, sifa))) ||
3073 				    (non_asoc_addr_ok &&
3074 				    (sctp_is_addr_restricted(stcb, sifa)) &&
3075 				    (!sctp_is_addr_pending(stcb, sifa)))) {
3076 					/*
3077 					 * It is restricted for some
3078 					 * reason.. probably not yet added.
3079 					 */
3080 					sifa = NULL;
3081 					continue;
3082 				}
3083 			}
3084 			goto out;
3085 		}
3086 	}
3087 #ifdef INET
3088 	if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) {
3089 		stcb->asoc.scope.ipv4_local_scope = 1;
3090 		retried = 1;
3091 		goto again_with_private_addresses_allowed;
3092 	} else if (retried == 1) {
3093 		stcb->asoc.scope.ipv4_local_scope = 0;
3094 	}
3095 #endif
3096 out:
3097 #ifdef INET
3098 	if (sifa) {
3099 		if (retried == 1) {
3100 			LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3101 				if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3102 					/* wrong base scope */
3103 					continue;
3104 				}
3105 				LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3106 					struct sctp_ifa *tmp_sifa;
3107 
3108 					if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3109 					    (non_asoc_addr_ok == 0))
3110 						continue;
3111 					tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3112 					    dest_is_loop,
3113 					    dest_is_priv, fam);
3114 					if (tmp_sifa == NULL) {
3115 						continue;
3116 					}
3117 					if (tmp_sifa == sifa) {
3118 						continue;
3119 					}
3120 					if (stcb) {
3121 						if (sctp_is_address_in_scope(tmp_sifa,
3122 						    &stcb->asoc.scope, 0) == 0) {
3123 							continue;
3124 						}
3125 						if (((non_asoc_addr_ok == 0) &&
3126 						    (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3127 						    (non_asoc_addr_ok &&
3128 						    (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3129 						    (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3130 							/*
3131 							 * It is restricted
3132 							 * for some reason..
3133 							 * probably not yet
3134 							 * added.
3135 							 */
3136 							continue;
3137 						}
3138 					}
3139 					if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3140 					    (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3141 						sctp_add_local_addr_restricted(stcb, tmp_sifa);
3142 					}
3143 				}
3144 			}
3145 		}
3146 		atomic_add_int(&sifa->refcount, 1);
3147 	}
3148 #endif
3149 	return (sifa);
3150 }
3151 
3152 
3153 
3154 /* tcb may be NULL */
3155 struct sctp_ifa *
3156 sctp_source_address_selection(struct sctp_inpcb *inp,
3157     struct sctp_tcb *stcb,
3158     sctp_route_t * ro,
3159     struct sctp_nets *net,
3160     int non_asoc_addr_ok, uint32_t vrf_id)
3161 {
3162 	struct sctp_ifa *answer;
3163 	uint8_t dest_is_priv, dest_is_loop;
3164 	sa_family_t fam;
3165 
3166 #ifdef INET
3167 	struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3168 
3169 #endif
3170 #ifdef INET6
3171 	struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3172 
3173 #endif
3174 
3175 	/**
3176 	 * Rules: - Find the route if needed, cache if I can. - Look at
3177 	 * interface address in route, Is it in the bound list. If so we
3178 	 * have the best source. - If not we must rotate amongst the
3179 	 * addresses.
3180 	 *
3181 	 * Cavets and issues
3182 	 *
3183 	 * Do we need to pay attention to scope. We can have a private address
3184 	 * or a global address we are sourcing or sending to. So if we draw
3185 	 * it out
3186 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3187 	 * For V4
3188 	 * ------------------------------------------
3189 	 *      source     *      dest  *  result
3190 	 * -----------------------------------------
3191 	 * <a>  Private    *    Global  *  NAT
3192 	 * -----------------------------------------
3193 	 * <b>  Private    *    Private *  No problem
3194 	 * -----------------------------------------
3195 	 * <c>  Global     *    Private *  Huh, How will this work?
3196 	 * -----------------------------------------
3197 	 * <d>  Global     *    Global  *  No Problem
3198 	 *------------------------------------------
3199 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3200 	 * For V6
3201 	 *------------------------------------------
3202 	 *      source     *      dest  *  result
3203 	 * -----------------------------------------
3204 	 * <a>  Linklocal  *    Global  *
3205 	 * -----------------------------------------
3206 	 * <b>  Linklocal  * Linklocal  *  No problem
3207 	 * -----------------------------------------
3208 	 * <c>  Global     * Linklocal  *  Huh, How will this work?
3209 	 * -----------------------------------------
3210 	 * <d>  Global     *    Global  *  No Problem
3211 	 *------------------------------------------
3212 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3213 	 *
3214 	 * And then we add to that what happens if there are multiple addresses
3215 	 * assigned to an interface. Remember the ifa on a ifn is a linked
3216 	 * list of addresses. So one interface can have more than one IP
3217 	 * address. What happens if we have both a private and a global
3218 	 * address? Do we then use context of destination to sort out which
3219 	 * one is best? And what about NAT's sending P->G may get you a NAT
3220 	 * translation, or should you select the G thats on the interface in
3221 	 * preference.
3222 	 *
3223 	 * Decisions:
3224 	 *
3225 	 * - count the number of addresses on the interface.
3226 	 * - if it is one, no problem except case <c>.
3227 	 *   For <a> we will assume a NAT out there.
3228 	 * - if there are more than one, then we need to worry about scope P
3229 	 *   or G. We should prefer G -> G and P -> P if possible.
3230 	 *   Then as a secondary fall back to mixed types G->P being a last
3231 	 *   ditch one.
3232 	 * - The above all works for bound all, but bound specific we need to
3233 	 *   use the same concept but instead only consider the bound
3234 	 *   addresses. If the bound set is NOT assigned to the interface then
3235 	 *   we must use rotation amongst the bound addresses..
3236 	 */
3237 	if (ro->ro_rt == NULL) {
3238 		/*
3239 		 * Need a route to cache.
3240 		 */
3241 		SCTP_RTALLOC(ro, vrf_id);
3242 	}
3243 	if (ro->ro_rt == NULL) {
3244 		return (NULL);
3245 	}
3246 	fam = ro->ro_dst.sa_family;
3247 	dest_is_priv = dest_is_loop = 0;
3248 	/* Setup our scopes for the destination */
3249 	switch (fam) {
3250 #ifdef INET
3251 	case AF_INET:
3252 		/* Scope based on outbound address */
3253 		if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3254 			dest_is_loop = 1;
3255 			if (net != NULL) {
3256 				/* mark it as local */
3257 				net->addr_is_local = 1;
3258 			}
3259 		} else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3260 			dest_is_priv = 1;
3261 		}
3262 		break;
3263 #endif
3264 #ifdef INET6
3265 	case AF_INET6:
3266 		/* Scope based on outbound address */
3267 		if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3268 		    SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3269 			/*
3270 			 * If the address is a loopback address, which
3271 			 * consists of "::1" OR "fe80::1%lo0", we are
3272 			 * loopback scope. But we don't use dest_is_priv
3273 			 * (link local addresses).
3274 			 */
3275 			dest_is_loop = 1;
3276 			if (net != NULL) {
3277 				/* mark it as local */
3278 				net->addr_is_local = 1;
3279 			}
3280 		} else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3281 			dest_is_priv = 1;
3282 		}
3283 		break;
3284 #endif
3285 	}
3286 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3287 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3288 	SCTP_IPI_ADDR_RLOCK();
3289 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3290 		/*
3291 		 * Bound all case
3292 		 */
3293 		answer = sctp_choose_boundall(stcb, net, ro, vrf_id,
3294 		    dest_is_priv, dest_is_loop,
3295 		    non_asoc_addr_ok, fam);
3296 		SCTP_IPI_ADDR_RUNLOCK();
3297 		return (answer);
3298 	}
3299 	/*
3300 	 * Subset bound case
3301 	 */
3302 	if (stcb) {
3303 		answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3304 		    vrf_id, dest_is_priv,
3305 		    dest_is_loop,
3306 		    non_asoc_addr_ok, fam);
3307 	} else {
3308 		answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3309 		    non_asoc_addr_ok,
3310 		    dest_is_priv,
3311 		    dest_is_loop, fam);
3312 	}
3313 	SCTP_IPI_ADDR_RUNLOCK();
3314 	return (answer);
3315 }
3316 
3317 static int
3318 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3319 {
3320 	struct cmsghdr cmh;
3321 	int tlen, at, found;
3322 	struct sctp_sndinfo sndinfo;
3323 	struct sctp_prinfo prinfo;
3324 	struct sctp_authinfo authinfo;
3325 
3326 	tlen = SCTP_BUF_LEN(control);
3327 	at = 0;
3328 	found = 0;
3329 	/*
3330 	 * Independent of how many mbufs, find the c_type inside the control
3331 	 * structure and copy out the data.
3332 	 */
3333 	while (at < tlen) {
3334 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3335 			/* There is not enough room for one more. */
3336 			return (found);
3337 		}
3338 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3339 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3340 			/* We dont't have a complete CMSG header. */
3341 			return (found);
3342 		}
3343 		if (((int)cmh.cmsg_len + at) > tlen) {
3344 			/* We don't have the complete CMSG. */
3345 			return (found);
3346 		}
3347 		if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3348 		    ((c_type == cmh.cmsg_type) ||
3349 		    ((c_type == SCTP_SNDRCV) &&
3350 		    ((cmh.cmsg_type == SCTP_SNDINFO) ||
3351 		    (cmh.cmsg_type == SCTP_PRINFO) ||
3352 		    (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3353 			if (c_type == cmh.cmsg_type) {
3354 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) {
3355 					return (found);
3356 				}
3357 				/* It is exactly what we want. Copy it out. */
3358 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data);
3359 				return (1);
3360 			} else {
3361 				struct sctp_sndrcvinfo *sndrcvinfo;
3362 
3363 				sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3364 				if (found == 0) {
3365 					if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3366 						return (found);
3367 					}
3368 					memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3369 				}
3370 				switch (cmh.cmsg_type) {
3371 				case SCTP_SNDINFO:
3372 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) {
3373 						return (found);
3374 					}
3375 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3376 					sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3377 					sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3378 					sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3379 					sndrcvinfo->sinfo_context = sndinfo.snd_context;
3380 					sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3381 					break;
3382 				case SCTP_PRINFO:
3383 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) {
3384 						return (found);
3385 					}
3386 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3387 					sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3388 					sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3389 					break;
3390 				case SCTP_AUTHINFO:
3391 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) {
3392 						return (found);
3393 					}
3394 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3395 					sndrcvinfo->sinfo_keynumber_valid = 1;
3396 					sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3397 					break;
3398 				default:
3399 					return (found);
3400 				}
3401 				found = 1;
3402 			}
3403 		}
3404 		at += CMSG_ALIGN(cmh.cmsg_len);
3405 	}
3406 	return (found);
3407 }
3408 
3409 static int
3410 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3411 {
3412 	struct cmsghdr cmh;
3413 	int tlen, at;
3414 	struct sctp_initmsg initmsg;
3415 
3416 #ifdef INET
3417 	struct sockaddr_in sin;
3418 
3419 #endif
3420 #ifdef INET6
3421 	struct sockaddr_in6 sin6;
3422 
3423 #endif
3424 
3425 	tlen = SCTP_BUF_LEN(control);
3426 	at = 0;
3427 	while (at < tlen) {
3428 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3429 			/* There is not enough room for one more. */
3430 			*error = EINVAL;
3431 			return (1);
3432 		}
3433 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3434 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3435 			/* We dont't have a complete CMSG header. */
3436 			*error = EINVAL;
3437 			return (1);
3438 		}
3439 		if (((int)cmh.cmsg_len + at) > tlen) {
3440 			/* We don't have the complete CMSG. */
3441 			*error = EINVAL;
3442 			return (1);
3443 		}
3444 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3445 			switch (cmh.cmsg_type) {
3446 			case SCTP_INIT:
3447 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) {
3448 					*error = EINVAL;
3449 					return (1);
3450 				}
3451 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3452 				if (initmsg.sinit_max_attempts)
3453 					stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3454 				if (initmsg.sinit_num_ostreams)
3455 					stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3456 				if (initmsg.sinit_max_instreams)
3457 					stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3458 				if (initmsg.sinit_max_init_timeo)
3459 					stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3460 				if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3461 					struct sctp_stream_out *tmp_str;
3462 					unsigned int i;
3463 
3464 					/* Default is NOT correct */
3465 					SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3466 					    stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3467 					SCTP_TCB_UNLOCK(stcb);
3468 					SCTP_MALLOC(tmp_str,
3469 					    struct sctp_stream_out *,
3470 					    (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3471 					    SCTP_M_STRMO);
3472 					SCTP_TCB_LOCK(stcb);
3473 					if (tmp_str != NULL) {
3474 						SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3475 						stcb->asoc.strmout = tmp_str;
3476 						stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3477 					} else {
3478 						stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3479 					}
3480 					for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3481 						TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3482 						stcb->asoc.strmout[i].chunks_on_queues = 0;
3483 						stcb->asoc.strmout[i].next_sequence_send = 0;
3484 						stcb->asoc.strmout[i].stream_no = i;
3485 						stcb->asoc.strmout[i].last_msg_incomplete = 0;
3486 						stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
3487 					}
3488 				}
3489 				break;
3490 #ifdef INET
3491 			case SCTP_DSTADDRV4:
3492 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3493 					*error = EINVAL;
3494 					return (1);
3495 				}
3496 				memset(&sin, 0, sizeof(struct sockaddr_in));
3497 				sin.sin_family = AF_INET;
3498 				sin.sin_len = sizeof(struct sockaddr_in);
3499 				sin.sin_port = stcb->rport;
3500 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3501 				if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3502 				    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3503 				    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3504 					*error = EINVAL;
3505 					return (1);
3506 				}
3507 				if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3508 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3509 					*error = ENOBUFS;
3510 					return (1);
3511 				}
3512 				break;
3513 #endif
3514 #ifdef INET6
3515 			case SCTP_DSTADDRV6:
3516 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3517 					*error = EINVAL;
3518 					return (1);
3519 				}
3520 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3521 				sin6.sin6_family = AF_INET6;
3522 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3523 				sin6.sin6_port = stcb->rport;
3524 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3525 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) ||
3526 				    IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) {
3527 					*error = EINVAL;
3528 					return (1);
3529 				}
3530 #ifdef INET
3531 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3532 					in6_sin6_2_sin(&sin, &sin6);
3533 					if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3534 					    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3535 					    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3536 						*error = EINVAL;
3537 						return (1);
3538 					}
3539 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3540 					    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3541 						*error = ENOBUFS;
3542 						return (1);
3543 					}
3544 				} else
3545 #endif
3546 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL,
3547 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3548 					*error = ENOBUFS;
3549 					return (1);
3550 				}
3551 				break;
3552 #endif
3553 			default:
3554 				break;
3555 			}
3556 		}
3557 		at += CMSG_ALIGN(cmh.cmsg_len);
3558 	}
3559 	return (0);
3560 }
3561 
3562 static struct sctp_tcb *
3563 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p,
3564     uint16_t port,
3565     struct mbuf *control,
3566     struct sctp_nets **net_p,
3567     int *error)
3568 {
3569 	struct cmsghdr cmh;
3570 	int tlen, at;
3571 	struct sctp_tcb *stcb;
3572 	struct sockaddr *addr;
3573 
3574 #ifdef INET
3575 	struct sockaddr_in sin;
3576 
3577 #endif
3578 #ifdef INET6
3579 	struct sockaddr_in6 sin6;
3580 
3581 #endif
3582 
3583 	tlen = SCTP_BUF_LEN(control);
3584 	at = 0;
3585 	while (at < tlen) {
3586 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3587 			/* There is not enough room for one more. */
3588 			*error = EINVAL;
3589 			return (NULL);
3590 		}
3591 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3592 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3593 			/* We dont't have a complete CMSG header. */
3594 			*error = EINVAL;
3595 			return (NULL);
3596 		}
3597 		if (((int)cmh.cmsg_len + at) > tlen) {
3598 			/* We don't have the complete CMSG. */
3599 			*error = EINVAL;
3600 			return (NULL);
3601 		}
3602 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3603 			switch (cmh.cmsg_type) {
3604 #ifdef INET
3605 			case SCTP_DSTADDRV4:
3606 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3607 					*error = EINVAL;
3608 					return (NULL);
3609 				}
3610 				memset(&sin, 0, sizeof(struct sockaddr_in));
3611 				sin.sin_family = AF_INET;
3612 				sin.sin_len = sizeof(struct sockaddr_in);
3613 				sin.sin_port = port;
3614 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3615 				addr = (struct sockaddr *)&sin;
3616 				break;
3617 #endif
3618 #ifdef INET6
3619 			case SCTP_DSTADDRV6:
3620 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3621 					*error = EINVAL;
3622 					return (NULL);
3623 				}
3624 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3625 				sin6.sin6_family = AF_INET6;
3626 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3627 				sin6.sin6_port = port;
3628 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3629 #ifdef INET
3630 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3631 					in6_sin6_2_sin(&sin, &sin6);
3632 					addr = (struct sockaddr *)&sin;
3633 				} else
3634 #endif
3635 					addr = (struct sockaddr *)&sin6;
3636 				break;
3637 #endif
3638 			default:
3639 				addr = NULL;
3640 				break;
3641 			}
3642 			if (addr) {
3643 				stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3644 				if (stcb != NULL) {
3645 					return (stcb);
3646 				}
3647 			}
3648 		}
3649 		at += CMSG_ALIGN(cmh.cmsg_len);
3650 	}
3651 	return (NULL);
3652 }
3653 
3654 static struct mbuf *
3655 sctp_add_cookie(struct mbuf *init, int init_offset,
3656     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3657 {
3658 	struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3659 	struct sctp_state_cookie *stc;
3660 	struct sctp_paramhdr *ph;
3661 	uint8_t *foo;
3662 	int sig_offset;
3663 	uint16_t cookie_sz;
3664 
3665 	mret = NULL;
3666 	mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3667 	    sizeof(struct sctp_paramhdr)), 0,
3668 	    M_NOWAIT, 1, MT_DATA);
3669 	if (mret == NULL) {
3670 		return (NULL);
3671 	}
3672 	copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT);
3673 	if (copy_init == NULL) {
3674 		sctp_m_freem(mret);
3675 		return (NULL);
3676 	}
3677 #ifdef SCTP_MBUF_LOGGING
3678 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3679 		struct mbuf *mat;
3680 
3681 		for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) {
3682 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3683 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3684 			}
3685 		}
3686 	}
3687 #endif
3688 	copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3689 	    M_NOWAIT);
3690 	if (copy_initack == NULL) {
3691 		sctp_m_freem(mret);
3692 		sctp_m_freem(copy_init);
3693 		return (NULL);
3694 	}
3695 #ifdef SCTP_MBUF_LOGGING
3696 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3697 		struct mbuf *mat;
3698 
3699 		for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) {
3700 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3701 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3702 			}
3703 		}
3704 	}
3705 #endif
3706 	/* easy side we just drop it on the end */
3707 	ph = mtod(mret, struct sctp_paramhdr *);
3708 	SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3709 	    sizeof(struct sctp_paramhdr);
3710 	stc = (struct sctp_state_cookie *)((caddr_t)ph +
3711 	    sizeof(struct sctp_paramhdr));
3712 	ph->param_type = htons(SCTP_STATE_COOKIE);
3713 	ph->param_length = 0;	/* fill in at the end */
3714 	/* Fill in the stc cookie data */
3715 	memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3716 
3717 	/* tack the INIT and then the INIT-ACK onto the chain */
3718 	cookie_sz = 0;
3719 	for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3720 		cookie_sz += SCTP_BUF_LEN(m_at);
3721 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3722 			SCTP_BUF_NEXT(m_at) = copy_init;
3723 			break;
3724 		}
3725 	}
3726 	for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3727 		cookie_sz += SCTP_BUF_LEN(m_at);
3728 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3729 			SCTP_BUF_NEXT(m_at) = copy_initack;
3730 			break;
3731 		}
3732 	}
3733 	for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3734 		cookie_sz += SCTP_BUF_LEN(m_at);
3735 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3736 			break;
3737 		}
3738 	}
3739 	sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA);
3740 	if (sig == NULL) {
3741 		/* no space, so free the entire chain */
3742 		sctp_m_freem(mret);
3743 		return (NULL);
3744 	}
3745 	SCTP_BUF_LEN(sig) = 0;
3746 	SCTP_BUF_NEXT(m_at) = sig;
3747 	sig_offset = 0;
3748 	foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3749 	memset(foo, 0, SCTP_SIGNATURE_SIZE);
3750 	*signature = foo;
3751 	SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3752 	cookie_sz += SCTP_SIGNATURE_SIZE;
3753 	ph->param_length = htons(cookie_sz);
3754 	return (mret);
3755 }
3756 
3757 
3758 static uint8_t
3759 sctp_get_ect(struct sctp_tcb *stcb)
3760 {
3761 	if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) {
3762 		return (SCTP_ECT0_BIT);
3763 	} else {
3764 		return (0);
3765 	}
3766 }
3767 
3768 #if defined(INET) || defined(INET6)
3769 static void
3770 sctp_handle_no_route(struct sctp_tcb *stcb,
3771     struct sctp_nets *net,
3772     int so_locked)
3773 {
3774 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3775 
3776 	if (net) {
3777 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3778 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3779 		if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3780 			if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3781 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3782 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3783 				    stcb, 0,
3784 				    (void *)net,
3785 				    so_locked);
3786 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
3787 				net->dest_state &= ~SCTP_ADDR_PF;
3788 			}
3789 		}
3790 		if (stcb) {
3791 			if (net == stcb->asoc.primary_destination) {
3792 				/* need a new primary */
3793 				struct sctp_nets *alt;
3794 
3795 				alt = sctp_find_alternate_net(stcb, net, 0);
3796 				if (alt != net) {
3797 					if (stcb->asoc.alternate) {
3798 						sctp_free_remote_addr(stcb->asoc.alternate);
3799 					}
3800 					stcb->asoc.alternate = alt;
3801 					atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3802 					if (net->ro._s_addr) {
3803 						sctp_free_ifa(net->ro._s_addr);
3804 						net->ro._s_addr = NULL;
3805 					}
3806 					net->src_addr_selected = 0;
3807 				}
3808 			}
3809 		}
3810 	}
3811 }
3812 
3813 #endif
3814 
3815 static int
3816 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3817     struct sctp_tcb *stcb,	/* may be NULL */
3818     struct sctp_nets *net,
3819     struct sockaddr *to,
3820     struct mbuf *m,
3821     uint32_t auth_offset,
3822     struct sctp_auth_chunk *auth,
3823     uint16_t auth_keyid,
3824     int nofragment_flag,
3825     int ecn_ok,
3826     int out_of_asoc_ok,
3827     uint16_t src_port,
3828     uint16_t dest_port,
3829     uint32_t v_tag,
3830     uint16_t port,
3831     union sctp_sockstore *over_addr,
3832     uint8_t use_mflowid, uint32_t mflowid,
3833 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3834     int so_locked SCTP_UNUSED
3835 #else
3836     int so_locked
3837 #endif
3838 )
3839 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3840 {
3841 	/**
3842 	 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
3843 	 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
3844 	 * - fill in the HMAC digest of any AUTH chunk in the packet.
3845 	 * - calculate and fill in the SCTP checksum.
3846 	 * - prepend an IP address header.
3847 	 * - if boundall use INADDR_ANY.
3848 	 * - if boundspecific do source address selection.
3849 	 * - set fragmentation option for ipV4.
3850 	 * - On return from IP output, check/adjust mtu size of output
3851 	 *   interface and smallest_mtu size as well.
3852 	 */
3853 	/* Will need ifdefs around this */
3854 	struct mbuf *newm;
3855 	struct sctphdr *sctphdr;
3856 	int packet_length;
3857 	int ret;
3858 	uint32_t vrf_id;
3859 
3860 #if defined(INET) || defined(INET6)
3861 	struct mbuf *o_pak;
3862 	sctp_route_t *ro = NULL;
3863 	struct udphdr *udp = NULL;
3864 
3865 #endif
3866 	uint8_t tos_value;
3867 
3868 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
3869 	struct socket *so = NULL;
3870 
3871 #endif
3872 
3873 	if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
3874 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
3875 		sctp_m_freem(m);
3876 		return (EFAULT);
3877 	}
3878 	if (stcb) {
3879 		vrf_id = stcb->asoc.vrf_id;
3880 	} else {
3881 		vrf_id = inp->def_vrf_id;
3882 	}
3883 
3884 	/* fill in the HMAC digest for any AUTH chunk in the packet */
3885 	if ((auth != NULL) && (stcb != NULL)) {
3886 		sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
3887 	}
3888 	if (net) {
3889 		tos_value = net->dscp;
3890 	} else if (stcb) {
3891 		tos_value = stcb->asoc.default_dscp;
3892 	} else {
3893 		tos_value = inp->sctp_ep.default_dscp;
3894 	}
3895 
3896 	switch (to->sa_family) {
3897 #ifdef INET
3898 	case AF_INET:
3899 		{
3900 			struct ip *ip = NULL;
3901 			sctp_route_t iproute;
3902 			int len;
3903 
3904 			len = sizeof(struct ip) + sizeof(struct sctphdr);
3905 			if (port) {
3906 				len += sizeof(struct udphdr);
3907 			}
3908 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
3909 			if (newm == NULL) {
3910 				sctp_m_freem(m);
3911 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3912 				return (ENOMEM);
3913 			}
3914 			SCTP_ALIGN_TO_END(newm, len);
3915 			SCTP_BUF_LEN(newm) = len;
3916 			SCTP_BUF_NEXT(newm) = m;
3917 			m = newm;
3918 			if (net != NULL) {
3919 #ifdef INVARIANTS
3920 				if (net->flowidset == 0) {
3921 					panic("Flow ID not set");
3922 				}
3923 #endif
3924 				m->m_pkthdr.flowid = net->flowid;
3925 				m->m_flags |= M_FLOWID;
3926 			} else {
3927 				if (use_mflowid != 0) {
3928 					m->m_pkthdr.flowid = mflowid;
3929 					m->m_flags |= M_FLOWID;
3930 				}
3931 			}
3932 			packet_length = sctp_calculate_len(m);
3933 			ip = mtod(m, struct ip *);
3934 			ip->ip_v = IPVERSION;
3935 			ip->ip_hl = (sizeof(struct ip) >> 2);
3936 			if (tos_value == 0) {
3937 				/*
3938 				 * This means especially, that it is not set
3939 				 * at the SCTP layer. So use the value from
3940 				 * the IP layer.
3941 				 */
3942 				tos_value = inp->ip_inp.inp.inp_ip_tos;
3943 			}
3944 			tos_value &= 0xfc;
3945 			if (ecn_ok) {
3946 				tos_value |= sctp_get_ect(stcb);
3947 			}
3948 			if ((nofragment_flag) && (port == 0)) {
3949 				ip->ip_off = htons(IP_DF);
3950 			} else {
3951 				ip->ip_off = htons(0);
3952 			}
3953 			/* FreeBSD has a function for ip_id's */
3954 			ip->ip_id = ip_newid();
3955 
3956 			ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
3957 			ip->ip_len = htons(packet_length);
3958 			ip->ip_tos = tos_value;
3959 			if (port) {
3960 				ip->ip_p = IPPROTO_UDP;
3961 			} else {
3962 				ip->ip_p = IPPROTO_SCTP;
3963 			}
3964 			ip->ip_sum = 0;
3965 			if (net == NULL) {
3966 				ro = &iproute;
3967 				memset(&iproute, 0, sizeof(iproute));
3968 				memcpy(&ro->ro_dst, to, to->sa_len);
3969 			} else {
3970 				ro = (sctp_route_t *) & net->ro;
3971 			}
3972 			/* Now the address selection part */
3973 			ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
3974 
3975 			/* call the routine to select the src address */
3976 			if (net && out_of_asoc_ok == 0) {
3977 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
3978 					sctp_free_ifa(net->ro._s_addr);
3979 					net->ro._s_addr = NULL;
3980 					net->src_addr_selected = 0;
3981 					if (ro->ro_rt) {
3982 						RTFREE(ro->ro_rt);
3983 						ro->ro_rt = NULL;
3984 					}
3985 				}
3986 				if (net->src_addr_selected == 0) {
3987 					/* Cache the source address */
3988 					net->ro._s_addr = sctp_source_address_selection(inp, stcb,
3989 					    ro, net, 0,
3990 					    vrf_id);
3991 					net->src_addr_selected = 1;
3992 				}
3993 				if (net->ro._s_addr == NULL) {
3994 					/* No route to host */
3995 					net->src_addr_selected = 0;
3996 					sctp_handle_no_route(stcb, net, so_locked);
3997 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
3998 					sctp_m_freem(m);
3999 					return (EHOSTUNREACH);
4000 				}
4001 				ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4002 			} else {
4003 				if (over_addr == NULL) {
4004 					struct sctp_ifa *_lsrc;
4005 
4006 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4007 					    net,
4008 					    out_of_asoc_ok,
4009 					    vrf_id);
4010 					if (_lsrc == NULL) {
4011 						sctp_handle_no_route(stcb, net, so_locked);
4012 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4013 						sctp_m_freem(m);
4014 						return (EHOSTUNREACH);
4015 					}
4016 					ip->ip_src = _lsrc->address.sin.sin_addr;
4017 					sctp_free_ifa(_lsrc);
4018 				} else {
4019 					ip->ip_src = over_addr->sin.sin_addr;
4020 					SCTP_RTALLOC(ro, vrf_id);
4021 				}
4022 			}
4023 			if (port) {
4024 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4025 					sctp_handle_no_route(stcb, net, so_locked);
4026 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4027 					sctp_m_freem(m);
4028 					return (EHOSTUNREACH);
4029 				}
4030 				udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4031 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4032 				udp->uh_dport = port;
4033 				udp->uh_ulen = htons(packet_length - sizeof(struct ip));
4034 				if (V_udp_cksum) {
4035 					udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4036 				} else {
4037 					udp->uh_sum = 0;
4038 				}
4039 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4040 			} else {
4041 				sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4042 			}
4043 
4044 			sctphdr->src_port = src_port;
4045 			sctphdr->dest_port = dest_port;
4046 			sctphdr->v_tag = v_tag;
4047 			sctphdr->checksum = 0;
4048 
4049 			/*
4050 			 * If source address selection fails and we find no
4051 			 * route then the ip_output should fail as well with
4052 			 * a NO_ROUTE_TO_HOST type error. We probably should
4053 			 * catch that somewhere and abort the association
4054 			 * right away (assuming this is an INIT being sent).
4055 			 */
4056 			if (ro->ro_rt == NULL) {
4057 				/*
4058 				 * src addr selection failed to find a route
4059 				 * (or valid source addr), so we can't get
4060 				 * there from here (yet)!
4061 				 */
4062 				sctp_handle_no_route(stcb, net, so_locked);
4063 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4064 				sctp_m_freem(m);
4065 				return (EHOSTUNREACH);
4066 			}
4067 			if (ro != &iproute) {
4068 				memcpy(&iproute, ro, sizeof(*ro));
4069 			}
4070 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4071 			    (uint32_t) (ntohl(ip->ip_src.s_addr)));
4072 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4073 			    (uint32_t) (ntohl(ip->ip_dst.s_addr)));
4074 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4075 			    (void *)ro->ro_rt);
4076 
4077 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4078 				/* failed to prepend data, give up */
4079 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4080 				sctp_m_freem(m);
4081 				return (ENOMEM);
4082 			}
4083 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4084 			if (port) {
4085 #if defined(SCTP_WITH_NO_CSUM)
4086 				SCTP_STAT_INCR(sctps_sendnocrc);
4087 #else
4088 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4089 				SCTP_STAT_INCR(sctps_sendswcrc);
4090 #endif
4091 				if (V_udp_cksum) {
4092 					SCTP_ENABLE_UDP_CSUM(o_pak);
4093 				}
4094 			} else {
4095 #if defined(SCTP_WITH_NO_CSUM)
4096 				SCTP_STAT_INCR(sctps_sendnocrc);
4097 #else
4098 				m->m_pkthdr.csum_flags = CSUM_SCTP;
4099 				m->m_pkthdr.csum_data = 0;
4100 				SCTP_STAT_INCR(sctps_sendhwcrc);
4101 #endif
4102 			}
4103 #ifdef SCTP_PACKET_LOGGING
4104 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4105 				sctp_packet_log(o_pak);
4106 #endif
4107 			/* send it out.  table id is taken from stcb */
4108 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4109 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4110 				so = SCTP_INP_SO(inp);
4111 				SCTP_SOCKET_UNLOCK(so, 0);
4112 			}
4113 #endif
4114 			SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
4115 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4116 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4117 				atomic_add_int(&stcb->asoc.refcnt, 1);
4118 				SCTP_TCB_UNLOCK(stcb);
4119 				SCTP_SOCKET_LOCK(so, 0);
4120 				SCTP_TCB_LOCK(stcb);
4121 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4122 			}
4123 #endif
4124 			SCTP_STAT_INCR(sctps_sendpackets);
4125 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4126 			if (ret)
4127 				SCTP_STAT_INCR(sctps_senderrors);
4128 
4129 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4130 			if (net == NULL) {
4131 				/* free tempy routes */
4132 				RO_RTFREE(ro);
4133 			} else {
4134 				/*
4135 				 * PMTU check versus smallest asoc MTU goes
4136 				 * here
4137 				 */
4138 				if ((ro->ro_rt != NULL) &&
4139 				    (net->ro._s_addr)) {
4140 					uint32_t mtu;
4141 
4142 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4143 					if (net->port) {
4144 						mtu -= sizeof(struct udphdr);
4145 					}
4146 					if (mtu && (stcb->asoc.smallest_mtu > mtu)) {
4147 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4148 						net->mtu = mtu;
4149 					}
4150 				} else if (ro->ro_rt == NULL) {
4151 					/* route was freed */
4152 					if (net->ro._s_addr &&
4153 					    net->src_addr_selected) {
4154 						sctp_free_ifa(net->ro._s_addr);
4155 						net->ro._s_addr = NULL;
4156 					}
4157 					net->src_addr_selected = 0;
4158 				}
4159 			}
4160 			return (ret);
4161 		}
4162 #endif
4163 #ifdef INET6
4164 	case AF_INET6:
4165 		{
4166 			uint32_t flowlabel, flowinfo;
4167 			struct ip6_hdr *ip6h;
4168 			struct route_in6 ip6route;
4169 			struct ifnet *ifp;
4170 			struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4171 			int prev_scope = 0;
4172 			struct sockaddr_in6 lsa6_storage;
4173 			int error;
4174 			u_short prev_port = 0;
4175 			int len;
4176 
4177 			if (net) {
4178 				flowlabel = net->flowlabel;
4179 			} else if (stcb) {
4180 				flowlabel = stcb->asoc.default_flowlabel;
4181 			} else {
4182 				flowlabel = inp->sctp_ep.default_flowlabel;
4183 			}
4184 			if (flowlabel == 0) {
4185 				/*
4186 				 * This means especially, that it is not set
4187 				 * at the SCTP layer. So use the value from
4188 				 * the IP layer.
4189 				 */
4190 				flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo);
4191 			}
4192 			flowlabel &= 0x000fffff;
4193 			len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr);
4194 			if (port) {
4195 				len += sizeof(struct udphdr);
4196 			}
4197 			newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4198 			if (newm == NULL) {
4199 				sctp_m_freem(m);
4200 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4201 				return (ENOMEM);
4202 			}
4203 			SCTP_ALIGN_TO_END(newm, len);
4204 			SCTP_BUF_LEN(newm) = len;
4205 			SCTP_BUF_NEXT(newm) = m;
4206 			m = newm;
4207 			if (net != NULL) {
4208 #ifdef INVARIANTS
4209 				if (net->flowidset == 0) {
4210 					panic("Flow ID not set");
4211 				}
4212 #endif
4213 				m->m_pkthdr.flowid = net->flowid;
4214 				m->m_flags |= M_FLOWID;
4215 			} else {
4216 				if (use_mflowid != 0) {
4217 					m->m_pkthdr.flowid = mflowid;
4218 					m->m_flags |= M_FLOWID;
4219 				}
4220 			}
4221 			packet_length = sctp_calculate_len(m);
4222 
4223 			ip6h = mtod(m, struct ip6_hdr *);
4224 			/* protect *sin6 from overwrite */
4225 			sin6 = (struct sockaddr_in6 *)to;
4226 			tmp = *sin6;
4227 			sin6 = &tmp;
4228 
4229 			/* KAME hack: embed scopeid */
4230 			if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4231 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4232 				return (EINVAL);
4233 			}
4234 			if (net == NULL) {
4235 				memset(&ip6route, 0, sizeof(ip6route));
4236 				ro = (sctp_route_t *) & ip6route;
4237 				memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4238 			} else {
4239 				ro = (sctp_route_t *) & net->ro;
4240 			}
4241 			/*
4242 			 * We assume here that inp_flow is in host byte
4243 			 * order within the TCB!
4244 			 */
4245 			if (tos_value == 0) {
4246 				/*
4247 				 * This means especially, that it is not set
4248 				 * at the SCTP layer. So use the value from
4249 				 * the IP layer.
4250 				 */
4251 				tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff;
4252 			}
4253 			tos_value &= 0xfc;
4254 			if (ecn_ok) {
4255 				tos_value |= sctp_get_ect(stcb);
4256 			}
4257 			flowinfo = 0x06;
4258 			flowinfo <<= 8;
4259 			flowinfo |= tos_value;
4260 			flowinfo <<= 20;
4261 			flowinfo |= flowlabel;
4262 			ip6h->ip6_flow = htonl(flowinfo);
4263 			if (port) {
4264 				ip6h->ip6_nxt = IPPROTO_UDP;
4265 			} else {
4266 				ip6h->ip6_nxt = IPPROTO_SCTP;
4267 			}
4268 			ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr));
4269 			ip6h->ip6_dst = sin6->sin6_addr;
4270 
4271 			/*
4272 			 * Add SRC address selection here: we can only reuse
4273 			 * to a limited degree the kame src-addr-sel, since
4274 			 * we can try their selection but it may not be
4275 			 * bound.
4276 			 */
4277 			bzero(&lsa6_tmp, sizeof(lsa6_tmp));
4278 			lsa6_tmp.sin6_family = AF_INET6;
4279 			lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4280 			lsa6 = &lsa6_tmp;
4281 			if (net && out_of_asoc_ok == 0) {
4282 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4283 					sctp_free_ifa(net->ro._s_addr);
4284 					net->ro._s_addr = NULL;
4285 					net->src_addr_selected = 0;
4286 					if (ro->ro_rt) {
4287 						RTFREE(ro->ro_rt);
4288 						ro->ro_rt = NULL;
4289 					}
4290 				}
4291 				if (net->src_addr_selected == 0) {
4292 					sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4293 					/* KAME hack: embed scopeid */
4294 					if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4295 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4296 						return (EINVAL);
4297 					}
4298 					/* Cache the source address */
4299 					net->ro._s_addr = sctp_source_address_selection(inp,
4300 					    stcb,
4301 					    ro,
4302 					    net,
4303 					    0,
4304 					    vrf_id);
4305 					(void)sa6_recoverscope(sin6);
4306 					net->src_addr_selected = 1;
4307 				}
4308 				if (net->ro._s_addr == NULL) {
4309 					SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4310 					net->src_addr_selected = 0;
4311 					sctp_handle_no_route(stcb, net, so_locked);
4312 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4313 					sctp_m_freem(m);
4314 					return (EHOSTUNREACH);
4315 				}
4316 				lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4317 			} else {
4318 				sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4319 				/* KAME hack: embed scopeid */
4320 				if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4321 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4322 					return (EINVAL);
4323 				}
4324 				if (over_addr == NULL) {
4325 					struct sctp_ifa *_lsrc;
4326 
4327 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4328 					    net,
4329 					    out_of_asoc_ok,
4330 					    vrf_id);
4331 					if (_lsrc == NULL) {
4332 						sctp_handle_no_route(stcb, net, so_locked);
4333 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4334 						sctp_m_freem(m);
4335 						return (EHOSTUNREACH);
4336 					}
4337 					lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4338 					sctp_free_ifa(_lsrc);
4339 				} else {
4340 					lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4341 					SCTP_RTALLOC(ro, vrf_id);
4342 				}
4343 				(void)sa6_recoverscope(sin6);
4344 			}
4345 			lsa6->sin6_port = inp->sctp_lport;
4346 
4347 			if (ro->ro_rt == NULL) {
4348 				/*
4349 				 * src addr selection failed to find a route
4350 				 * (or valid source addr), so we can't get
4351 				 * there from here!
4352 				 */
4353 				sctp_handle_no_route(stcb, net, so_locked);
4354 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4355 				sctp_m_freem(m);
4356 				return (EHOSTUNREACH);
4357 			}
4358 			/*
4359 			 * XXX: sa6 may not have a valid sin6_scope_id in
4360 			 * the non-SCOPEDROUTING case.
4361 			 */
4362 			bzero(&lsa6_storage, sizeof(lsa6_storage));
4363 			lsa6_storage.sin6_family = AF_INET6;
4364 			lsa6_storage.sin6_len = sizeof(lsa6_storage);
4365 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4366 			if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4367 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4368 				sctp_m_freem(m);
4369 				return (error);
4370 			}
4371 			/* XXX */
4372 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4373 			lsa6_storage.sin6_port = inp->sctp_lport;
4374 			lsa6 = &lsa6_storage;
4375 			ip6h->ip6_src = lsa6->sin6_addr;
4376 
4377 			if (port) {
4378 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4379 					sctp_handle_no_route(stcb, net, so_locked);
4380 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4381 					sctp_m_freem(m);
4382 					return (EHOSTUNREACH);
4383 				}
4384 				udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4385 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4386 				udp->uh_dport = port;
4387 				udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr));
4388 				udp->uh_sum = 0;
4389 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4390 			} else {
4391 				sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4392 			}
4393 
4394 			sctphdr->src_port = src_port;
4395 			sctphdr->dest_port = dest_port;
4396 			sctphdr->v_tag = v_tag;
4397 			sctphdr->checksum = 0;
4398 
4399 			/*
4400 			 * We set the hop limit now since there is a good
4401 			 * chance that our ro pointer is now filled
4402 			 */
4403 			ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4404 			ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4405 
4406 #ifdef SCTP_DEBUG
4407 			/* Copy to be sure something bad is not happening */
4408 			sin6->sin6_addr = ip6h->ip6_dst;
4409 			lsa6->sin6_addr = ip6h->ip6_src;
4410 #endif
4411 
4412 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4413 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4414 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4415 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4416 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4417 			if (net) {
4418 				sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4419 				/*
4420 				 * preserve the port and scope for link
4421 				 * local send
4422 				 */
4423 				prev_scope = sin6->sin6_scope_id;
4424 				prev_port = sin6->sin6_port;
4425 			}
4426 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4427 				/* failed to prepend data, give up */
4428 				sctp_m_freem(m);
4429 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4430 				return (ENOMEM);
4431 			}
4432 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4433 			if (port) {
4434 #if defined(SCTP_WITH_NO_CSUM)
4435 				SCTP_STAT_INCR(sctps_sendnocrc);
4436 #else
4437 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4438 				SCTP_STAT_INCR(sctps_sendswcrc);
4439 #endif
4440 				if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4441 					udp->uh_sum = 0xffff;
4442 				}
4443 			} else {
4444 #if defined(SCTP_WITH_NO_CSUM)
4445 				SCTP_STAT_INCR(sctps_sendnocrc);
4446 #else
4447 				m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4448 				m->m_pkthdr.csum_data = 0;
4449 				SCTP_STAT_INCR(sctps_sendhwcrc);
4450 #endif
4451 			}
4452 			/* send it out. table id is taken from stcb */
4453 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4454 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4455 				so = SCTP_INP_SO(inp);
4456 				SCTP_SOCKET_UNLOCK(so, 0);
4457 			}
4458 #endif
4459 #ifdef SCTP_PACKET_LOGGING
4460 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4461 				sctp_packet_log(o_pak);
4462 #endif
4463 			SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id);
4464 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4465 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4466 				atomic_add_int(&stcb->asoc.refcnt, 1);
4467 				SCTP_TCB_UNLOCK(stcb);
4468 				SCTP_SOCKET_LOCK(so, 0);
4469 				SCTP_TCB_LOCK(stcb);
4470 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4471 			}
4472 #endif
4473 			if (net) {
4474 				/* for link local this must be done */
4475 				sin6->sin6_scope_id = prev_scope;
4476 				sin6->sin6_port = prev_port;
4477 			}
4478 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4479 			SCTP_STAT_INCR(sctps_sendpackets);
4480 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4481 			if (ret) {
4482 				SCTP_STAT_INCR(sctps_senderrors);
4483 			}
4484 			if (net == NULL) {
4485 				/* Now if we had a temp route free it */
4486 				RO_RTFREE(ro);
4487 			} else {
4488 				/*
4489 				 * PMTU check versus smallest asoc MTU goes
4490 				 * here
4491 				 */
4492 				if (ro->ro_rt == NULL) {
4493 					/* Route was freed */
4494 					if (net->ro._s_addr &&
4495 					    net->src_addr_selected) {
4496 						sctp_free_ifa(net->ro._s_addr);
4497 						net->ro._s_addr = NULL;
4498 					}
4499 					net->src_addr_selected = 0;
4500 				}
4501 				if ((ro->ro_rt != NULL) &&
4502 				    (net->ro._s_addr)) {
4503 					uint32_t mtu;
4504 
4505 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4506 					if (mtu &&
4507 					    (stcb->asoc.smallest_mtu > mtu)) {
4508 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4509 						net->mtu = mtu;
4510 						if (net->port) {
4511 							net->mtu -= sizeof(struct udphdr);
4512 						}
4513 					}
4514 				} else if (ifp) {
4515 					if (ND_IFINFO(ifp)->linkmtu &&
4516 					    (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4517 						sctp_mtu_size_reset(inp,
4518 						    &stcb->asoc,
4519 						    ND_IFINFO(ifp)->linkmtu);
4520 					}
4521 				}
4522 			}
4523 			return (ret);
4524 		}
4525 #endif
4526 	default:
4527 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4528 		    ((struct sockaddr *)to)->sa_family);
4529 		sctp_m_freem(m);
4530 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4531 		return (EFAULT);
4532 	}
4533 }
4534 
4535 
4536 void
4537 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
4538 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
4539     SCTP_UNUSED
4540 #endif
4541 )
4542 {
4543 	struct mbuf *m;
4544 	struct sctp_nets *net;
4545 	struct sctp_init_chunk *init;
4546 	struct sctp_supported_addr_param *sup_addr;
4547 	struct sctp_adaptation_layer_indication *ali;
4548 	struct sctp_supported_chunk_types_param *pr_supported;
4549 	struct sctp_paramhdr *ph;
4550 	int cnt_inits_to = 0;
4551 	int ret;
4552 	uint16_t num_ext, chunk_len, padding_len, parameter_len;
4553 
4554 	/* INIT's always go to the primary (and usually ONLY address) */
4555 	net = stcb->asoc.primary_destination;
4556 	if (net == NULL) {
4557 		net = TAILQ_FIRST(&stcb->asoc.nets);
4558 		if (net == NULL) {
4559 			/* TSNH */
4560 			return;
4561 		}
4562 		/* we confirm any address we send an INIT to */
4563 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4564 		(void)sctp_set_primary_addr(stcb, NULL, net);
4565 	} else {
4566 		/* we confirm any address we send an INIT to */
4567 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4568 	}
4569 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4570 #ifdef INET6
4571 	if (net->ro._l_addr.sa.sa_family == AF_INET6) {
4572 		/*
4573 		 * special hook, if we are sending to link local it will not
4574 		 * show up in our private address count.
4575 		 */
4576 		if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr))
4577 			cnt_inits_to = 1;
4578 	}
4579 #endif
4580 	if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4581 		/* This case should not happen */
4582 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4583 		return;
4584 	}
4585 	/* start the INIT timer */
4586 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4587 
4588 	m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA);
4589 	if (m == NULL) {
4590 		/* No memory, INIT timer will re-attempt. */
4591 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4592 		return;
4593 	}
4594 	chunk_len = (uint16_t) sizeof(struct sctp_init_chunk);
4595 	padding_len = 0;
4596 	/*
4597 	 * assume peer supports asconf in order to be able to queue local
4598 	 * address changes while an INIT is in flight and before the assoc
4599 	 * is established.
4600 	 */
4601 	stcb->asoc.peer_supports_asconf = 1;
4602 	/* Now lets put the chunk header in place */
4603 	init = mtod(m, struct sctp_init_chunk *);
4604 	/* now the chunk header */
4605 	init->ch.chunk_type = SCTP_INITIATION;
4606 	init->ch.chunk_flags = 0;
4607 	/* fill in later from mbuf we build */
4608 	init->ch.chunk_length = 0;
4609 	/* place in my tag */
4610 	init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4611 	/* set up some of the credits. */
4612 	init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4613 	    SCTP_MINIMAL_RWND));
4614 	init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4615 	init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4616 	init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4617 
4618 	if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) {
4619 		uint8_t i;
4620 
4621 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4622 		if (stcb->asoc.scope.ipv4_addr_legal) {
4623 			parameter_len += (uint16_t) sizeof(uint16_t);
4624 		}
4625 		if (stcb->asoc.scope.ipv6_addr_legal) {
4626 			parameter_len += (uint16_t) sizeof(uint16_t);
4627 		}
4628 		sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len);
4629 		sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4630 		sup_addr->ph.param_length = htons(parameter_len);
4631 		i = 0;
4632 		if (stcb->asoc.scope.ipv4_addr_legal) {
4633 			sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS);
4634 		}
4635 		if (stcb->asoc.scope.ipv6_addr_legal) {
4636 			sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS);
4637 		}
4638 		padding_len = 4 - 2 * i;
4639 		chunk_len += parameter_len;
4640 	}
4641 	/* Adaptation layer indication parameter */
4642 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
4643 		if (padding_len > 0) {
4644 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4645 			chunk_len += padding_len;
4646 			padding_len = 0;
4647 		}
4648 		parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication);
4649 		ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
4650 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4651 		ali->ph.param_length = htons(parameter_len);
4652 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
4653 		chunk_len += parameter_len;
4654 	}
4655 	if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4656 		/* Add NAT friendly parameter. */
4657 		if (padding_len > 0) {
4658 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4659 			chunk_len += padding_len;
4660 			padding_len = 0;
4661 		}
4662 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4663 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4664 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4665 		ph->param_length = htons(parameter_len);
4666 		chunk_len += parameter_len;
4667 	}
4668 	/* now any cookie time extensions */
4669 	if (stcb->asoc.cookie_preserve_req) {
4670 		struct sctp_cookie_perserve_param *cookie_preserve;
4671 
4672 		if (padding_len > 0) {
4673 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4674 			chunk_len += padding_len;
4675 			padding_len = 0;
4676 		}
4677 		parameter_len = (uint16_t) sizeof(struct sctp_cookie_perserve_param);
4678 		cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len);
4679 		cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4680 		cookie_preserve->ph.param_length = htons(parameter_len);
4681 		cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4682 		stcb->asoc.cookie_preserve_req = 0;
4683 		chunk_len += parameter_len;
4684 	}
4685 	/* ECN parameter */
4686 	if (stcb->asoc.ecn_allowed == 1) {
4687 		if (padding_len > 0) {
4688 			memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4689 			chunk_len += padding_len;
4690 			padding_len = 0;
4691 		}
4692 		parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4693 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4694 		ph->param_type = htons(SCTP_ECN_CAPABLE);
4695 		ph->param_length = htons(parameter_len);
4696 		chunk_len += parameter_len;
4697 	}
4698 	/* And now tell the peer we do support PR-SCTP. */
4699 	if (padding_len > 0) {
4700 		memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4701 		chunk_len += padding_len;
4702 		padding_len = 0;
4703 	}
4704 	parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4705 	ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4706 	ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
4707 	ph->param_length = htons(parameter_len);
4708 	chunk_len += parameter_len;
4709 
4710 	/* And now tell the peer we do all the extensions */
4711 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
4712 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4713 	num_ext = 0;
4714 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4715 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4716 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4717 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4718 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4719 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4720 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4721 	}
4722 	if (stcb->asoc.sctp_nr_sack_on_off == 1) {
4723 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4724 	}
4725 	parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext;
4726 	pr_supported->ph.param_length = htons(parameter_len);
4727 	padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4728 	chunk_len += parameter_len;
4729 
4730 	/* add authentication parameters */
4731 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4732 		/* attach RANDOM parameter, if available */
4733 		if (stcb->asoc.authinfo.random != NULL) {
4734 			struct sctp_auth_random *randp;
4735 
4736 			if (padding_len > 0) {
4737 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4738 				chunk_len += padding_len;
4739 				padding_len = 0;
4740 			}
4741 			randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
4742 			parameter_len = (uint16_t) sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
4743 			/* random key already contains the header */
4744 			memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
4745 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4746 			chunk_len += parameter_len;
4747 		}
4748 		/* add HMAC_ALGO parameter */
4749 		if ((stcb->asoc.local_hmacs != NULL) &&
4750 		    (stcb->asoc.local_hmacs->num_algo > 0)) {
4751 			struct sctp_auth_hmac_algo *hmacs;
4752 
4753 			if (padding_len > 0) {
4754 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4755 				chunk_len += padding_len;
4756 				padding_len = 0;
4757 			}
4758 			hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
4759 			parameter_len = (uint16_t) (sizeof(struct sctp_auth_hmac_algo) +
4760 			    stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t));
4761 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4762 			hmacs->ph.param_length = htons(parameter_len);
4763 			sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *) hmacs->hmac_ids);
4764 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4765 			chunk_len += parameter_len;
4766 		}
4767 		/* add CHUNKS parameter */
4768 		if (sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks) > 0) {
4769 			struct sctp_auth_chunk_list *chunks;
4770 
4771 			if (padding_len > 0) {
4772 				memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4773 				chunk_len += padding_len;
4774 				padding_len = 0;
4775 			}
4776 			chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
4777 			parameter_len = (uint16_t) (sizeof(struct sctp_auth_chunk_list) +
4778 			    sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks));
4779 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4780 			chunks->ph.param_length = htons(parameter_len);
4781 			sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types);
4782 			padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4783 			chunk_len += parameter_len;
4784 		}
4785 	}
4786 	SCTP_BUF_LEN(m) = chunk_len;
4787 
4788 	/* now the addresses */
4789 	/*
4790 	 * To optimize this we could put the scoping stuff into a structure
4791 	 * and remove the individual uint8's from the assoc structure. Then
4792 	 * we could just sifa in the address within the stcb. But for now
4793 	 * this is a quick hack to get the address stuff teased apart.
4794 	 */
4795 	sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, m, cnt_inits_to, &padding_len, &chunk_len);
4796 
4797 	init->ch.chunk_length = htons(chunk_len);
4798 	if (padding_len > 0) {
4799 		struct mbuf *m_at, *mp_last;
4800 
4801 		mp_last = NULL;
4802 		for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
4803 			if (SCTP_BUF_NEXT(m_at) == NULL)
4804 				mp_last = m_at;
4805 		}
4806 		if ((mp_last == NULL) || sctp_add_pad_tombuf(mp_last, padding_len)) {
4807 			sctp_m_freem(m);
4808 			return;
4809 		}
4810 	}
4811 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4812 	ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4813 	    (struct sockaddr *)&net->ro._l_addr,
4814 	    m, 0, NULL, 0, 0, 0, 0,
4815 	    inp->sctp_lport, stcb->rport, htonl(0),
4816 	    net->port, NULL,
4817 	    0, 0,
4818 	    so_locked);
4819 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4820 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4821 	(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4822 }
4823 
4824 struct mbuf *
4825 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4826     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly)
4827 {
4828 	/*
4829 	 * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4830 	 * being equal to the beginning of the params i.e. (iphlen +
4831 	 * sizeof(struct sctp_init_msg) parse through the parameters to the
4832 	 * end of the mbuf verifying that all parameters are known.
4833 	 *
4834 	 * For unknown parameters build and return a mbuf with
4835 	 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4836 	 * processing this chunk stop, and set *abort_processing to 1.
4837 	 *
4838 	 * By having param_offset be pre-set to where parameters begin it is
4839 	 * hoped that this routine may be reused in the future by new
4840 	 * features.
4841 	 */
4842 	struct sctp_paramhdr *phdr, params;
4843 
4844 	struct mbuf *mat, *op_err;
4845 	char tempbuf[SCTP_PARAM_BUFFER_SIZE];
4846 	int at, limit, pad_needed;
4847 	uint16_t ptype, plen, padded_size;
4848 	int err_at;
4849 
4850 	*abort_processing = 0;
4851 	mat = in_initpkt;
4852 	err_at = 0;
4853 	limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4854 	at = param_offset;
4855 	op_err = NULL;
4856 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4857 	phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4858 	while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4859 		ptype = ntohs(phdr->param_type);
4860 		plen = ntohs(phdr->param_length);
4861 		if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
4862 			/* wacked parameter */
4863 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
4864 			goto invalid_size;
4865 		}
4866 		limit -= SCTP_SIZE32(plen);
4867 		/*-
4868 		 * All parameters for all chunks that we know/understand are
4869 		 * listed here. We process them other places and make
4870 		 * appropriate stop actions per the upper bits. However this
4871 		 * is the generic routine processor's can call to get back
4872 		 * an operr.. to either incorporate (init-ack) or send.
4873 		 */
4874 		padded_size = SCTP_SIZE32(plen);
4875 		switch (ptype) {
4876 			/* Param's with variable size */
4877 		case SCTP_HEARTBEAT_INFO:
4878 		case SCTP_STATE_COOKIE:
4879 		case SCTP_UNRECOG_PARAM:
4880 		case SCTP_ERROR_CAUSE_IND:
4881 			/* ok skip fwd */
4882 			at += padded_size;
4883 			break;
4884 			/* Param's with variable size within a range */
4885 		case SCTP_CHUNK_LIST:
4886 		case SCTP_SUPPORTED_CHUNK_EXT:
4887 			if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
4888 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
4889 				goto invalid_size;
4890 			}
4891 			at += padded_size;
4892 			break;
4893 		case SCTP_SUPPORTED_ADDRTYPE:
4894 			if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
4895 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
4896 				goto invalid_size;
4897 			}
4898 			at += padded_size;
4899 			break;
4900 		case SCTP_RANDOM:
4901 			if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
4902 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
4903 				goto invalid_size;
4904 			}
4905 			at += padded_size;
4906 			break;
4907 		case SCTP_SET_PRIM_ADDR:
4908 		case SCTP_DEL_IP_ADDRESS:
4909 		case SCTP_ADD_IP_ADDRESS:
4910 			if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
4911 			    (padded_size != sizeof(struct sctp_asconf_addr_param))) {
4912 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
4913 				goto invalid_size;
4914 			}
4915 			at += padded_size;
4916 			break;
4917 			/* Param's with a fixed size */
4918 		case SCTP_IPV4_ADDRESS:
4919 			if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
4920 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
4921 				goto invalid_size;
4922 			}
4923 			at += padded_size;
4924 			break;
4925 		case SCTP_IPV6_ADDRESS:
4926 			if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
4927 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
4928 				goto invalid_size;
4929 			}
4930 			at += padded_size;
4931 			break;
4932 		case SCTP_COOKIE_PRESERVE:
4933 			if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
4934 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
4935 				goto invalid_size;
4936 			}
4937 			at += padded_size;
4938 			break;
4939 		case SCTP_HAS_NAT_SUPPORT:
4940 			*nat_friendly = 1;
4941 			/* fall through */
4942 		case SCTP_PRSCTP_SUPPORTED:
4943 
4944 			if (padded_size != sizeof(struct sctp_paramhdr)) {
4945 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen);
4946 				goto invalid_size;
4947 			}
4948 			at += padded_size;
4949 			break;
4950 		case SCTP_ECN_CAPABLE:
4951 			if (padded_size != sizeof(struct sctp_ecn_supported_param)) {
4952 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
4953 				goto invalid_size;
4954 			}
4955 			at += padded_size;
4956 			break;
4957 		case SCTP_ULP_ADAPTATION:
4958 			if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
4959 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
4960 				goto invalid_size;
4961 			}
4962 			at += padded_size;
4963 			break;
4964 		case SCTP_SUCCESS_REPORT:
4965 			if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
4966 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
4967 				goto invalid_size;
4968 			}
4969 			at += padded_size;
4970 			break;
4971 		case SCTP_HOSTNAME_ADDRESS:
4972 			{
4973 				/* We can NOT handle HOST NAME addresses!! */
4974 				int l_len;
4975 
4976 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
4977 				*abort_processing = 1;
4978 				if (op_err == NULL) {
4979 					/* Ok need to try to get a mbuf */
4980 #ifdef INET6
4981 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4982 #else
4983 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4984 #endif
4985 					l_len += plen;
4986 					l_len += sizeof(struct sctp_paramhdr);
4987 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
4988 					if (op_err) {
4989 						SCTP_BUF_LEN(op_err) = 0;
4990 						/*
4991 						 * pre-reserve space for ip
4992 						 * and sctp header  and
4993 						 * chunk hdr
4994 						 */
4995 #ifdef INET6
4996 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
4997 #else
4998 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
4999 #endif
5000 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5001 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5002 					}
5003 				}
5004 				if (op_err) {
5005 					/* If we have space */
5006 					struct sctp_paramhdr s;
5007 
5008 					if (err_at % 4) {
5009 						uint32_t cpthis = 0;
5010 
5011 						pad_needed = 4 - (err_at % 4);
5012 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5013 						err_at += pad_needed;
5014 					}
5015 					s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5016 					s.param_length = htons(sizeof(s) + plen);
5017 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5018 					err_at += sizeof(s);
5019 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5020 					if (phdr == NULL) {
5021 						sctp_m_freem(op_err);
5022 						/*
5023 						 * we are out of memory but
5024 						 * we still need to have a
5025 						 * look at what to do (the
5026 						 * system is in trouble
5027 						 * though).
5028 						 */
5029 						return (NULL);
5030 					}
5031 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5032 				}
5033 				return (op_err);
5034 				break;
5035 			}
5036 		default:
5037 			/*
5038 			 * we do not recognize the parameter figure out what
5039 			 * we do.
5040 			 */
5041 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5042 			if ((ptype & 0x4000) == 0x4000) {
5043 				/* Report bit is set?? */
5044 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5045 				if (op_err == NULL) {
5046 					int l_len;
5047 
5048 					/* Ok need to try to get an mbuf */
5049 #ifdef INET6
5050 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5051 #else
5052 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5053 #endif
5054 					l_len += plen;
5055 					l_len += sizeof(struct sctp_paramhdr);
5056 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5057 					if (op_err) {
5058 						SCTP_BUF_LEN(op_err) = 0;
5059 #ifdef INET6
5060 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5061 #else
5062 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5063 #endif
5064 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5065 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5066 					}
5067 				}
5068 				if (op_err) {
5069 					/* If we have space */
5070 					struct sctp_paramhdr s;
5071 
5072 					if (err_at % 4) {
5073 						uint32_t cpthis = 0;
5074 
5075 						pad_needed = 4 - (err_at % 4);
5076 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5077 						err_at += pad_needed;
5078 					}
5079 					s.param_type = htons(SCTP_UNRECOG_PARAM);
5080 					s.param_length = htons(sizeof(s) + plen);
5081 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5082 					err_at += sizeof(s);
5083 					if (plen > sizeof(tempbuf)) {
5084 						plen = sizeof(tempbuf);
5085 					}
5086 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5087 					if (phdr == NULL) {
5088 						sctp_m_freem(op_err);
5089 						/*
5090 						 * we are out of memory but
5091 						 * we still need to have a
5092 						 * look at what to do (the
5093 						 * system is in trouble
5094 						 * though).
5095 						 */
5096 						op_err = NULL;
5097 						goto more_processing;
5098 					}
5099 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5100 					err_at += plen;
5101 				}
5102 			}
5103 	more_processing:
5104 			if ((ptype & 0x8000) == 0x0000) {
5105 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5106 				return (op_err);
5107 			} else {
5108 				/* skip this chunk and continue processing */
5109 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5110 				at += SCTP_SIZE32(plen);
5111 			}
5112 			break;
5113 
5114 		}
5115 		phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5116 	}
5117 	return (op_err);
5118 invalid_size:
5119 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5120 	*abort_processing = 1;
5121 	if ((op_err == NULL) && phdr) {
5122 		int l_len;
5123 
5124 #ifdef INET6
5125 		l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5126 #else
5127 		l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5128 #endif
5129 		l_len += (2 * sizeof(struct sctp_paramhdr));
5130 		op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5131 		if (op_err) {
5132 			SCTP_BUF_LEN(op_err) = 0;
5133 #ifdef INET6
5134 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5135 #else
5136 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5137 #endif
5138 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5139 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5140 		}
5141 	}
5142 	if ((op_err) && phdr) {
5143 		struct sctp_paramhdr s;
5144 
5145 		if (err_at % 4) {
5146 			uint32_t cpthis = 0;
5147 
5148 			pad_needed = 4 - (err_at % 4);
5149 			m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5150 			err_at += pad_needed;
5151 		}
5152 		s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5153 		s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
5154 		m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5155 		err_at += sizeof(s);
5156 		/* Only copy back the p-hdr that caused the issue */
5157 		m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
5158 	}
5159 	return (op_err);
5160 }
5161 
5162 static int
5163 sctp_are_there_new_addresses(struct sctp_association *asoc,
5164     struct mbuf *in_initpkt, int offset, struct sockaddr *src)
5165 {
5166 	/*
5167 	 * Given a INIT packet, look through the packet to verify that there
5168 	 * are NO new addresses. As we go through the parameters add reports
5169 	 * of any un-understood parameters that require an error.  Also we
5170 	 * must return (1) to drop the packet if we see a un-understood
5171 	 * parameter that tells us to drop the chunk.
5172 	 */
5173 	struct sockaddr *sa_touse;
5174 	struct sockaddr *sa;
5175 	struct sctp_paramhdr *phdr, params;
5176 	uint16_t ptype, plen;
5177 	uint8_t fnd;
5178 	struct sctp_nets *net;
5179 
5180 #ifdef INET
5181 	struct sockaddr_in sin4, *sa4;
5182 
5183 #endif
5184 #ifdef INET6
5185 	struct sockaddr_in6 sin6, *sa6;
5186 
5187 #endif
5188 
5189 #ifdef INET
5190 	memset(&sin4, 0, sizeof(sin4));
5191 	sin4.sin_family = AF_INET;
5192 	sin4.sin_len = sizeof(sin4);
5193 #endif
5194 #ifdef INET6
5195 	memset(&sin6, 0, sizeof(sin6));
5196 	sin6.sin6_family = AF_INET6;
5197 	sin6.sin6_len = sizeof(sin6);
5198 #endif
5199 	/* First what about the src address of the pkt ? */
5200 	fnd = 0;
5201 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5202 		sa = (struct sockaddr *)&net->ro._l_addr;
5203 		if (sa->sa_family == src->sa_family) {
5204 #ifdef INET
5205 			if (sa->sa_family == AF_INET) {
5206 				struct sockaddr_in *src4;
5207 
5208 				sa4 = (struct sockaddr_in *)sa;
5209 				src4 = (struct sockaddr_in *)src;
5210 				if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5211 					fnd = 1;
5212 					break;
5213 				}
5214 			}
5215 #endif
5216 #ifdef INET6
5217 			if (sa->sa_family == AF_INET6) {
5218 				struct sockaddr_in6 *src6;
5219 
5220 				sa6 = (struct sockaddr_in6 *)sa;
5221 				src6 = (struct sockaddr_in6 *)src;
5222 				if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5223 					fnd = 1;
5224 					break;
5225 				}
5226 			}
5227 #endif
5228 		}
5229 	}
5230 	if (fnd == 0) {
5231 		/* New address added! no need to look futher. */
5232 		return (1);
5233 	}
5234 	/* Ok so far lets munge through the rest of the packet */
5235 	offset += sizeof(struct sctp_init_chunk);
5236 	phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5237 	while (phdr) {
5238 		sa_touse = NULL;
5239 		ptype = ntohs(phdr->param_type);
5240 		plen = ntohs(phdr->param_length);
5241 		switch (ptype) {
5242 #ifdef INET
5243 		case SCTP_IPV4_ADDRESS:
5244 			{
5245 				struct sctp_ipv4addr_param *p4, p4_buf;
5246 
5247 				phdr = sctp_get_next_param(in_initpkt, offset,
5248 				    (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5249 				if (plen != sizeof(struct sctp_ipv4addr_param) ||
5250 				    phdr == NULL) {
5251 					return (1);
5252 				}
5253 				p4 = (struct sctp_ipv4addr_param *)phdr;
5254 				sin4.sin_addr.s_addr = p4->addr;
5255 				sa_touse = (struct sockaddr *)&sin4;
5256 				break;
5257 			}
5258 #endif
5259 #ifdef INET6
5260 		case SCTP_IPV6_ADDRESS:
5261 			{
5262 				struct sctp_ipv6addr_param *p6, p6_buf;
5263 
5264 				phdr = sctp_get_next_param(in_initpkt, offset,
5265 				    (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5266 				if (plen != sizeof(struct sctp_ipv6addr_param) ||
5267 				    phdr == NULL) {
5268 					return (1);
5269 				}
5270 				p6 = (struct sctp_ipv6addr_param *)phdr;
5271 				memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5272 				    sizeof(p6->addr));
5273 				sa_touse = (struct sockaddr *)&sin6;
5274 				break;
5275 			}
5276 #endif
5277 		default:
5278 			sa_touse = NULL;
5279 			break;
5280 		}
5281 		if (sa_touse) {
5282 			/* ok, sa_touse points to one to check */
5283 			fnd = 0;
5284 			TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5285 				sa = (struct sockaddr *)&net->ro._l_addr;
5286 				if (sa->sa_family != sa_touse->sa_family) {
5287 					continue;
5288 				}
5289 #ifdef INET
5290 				if (sa->sa_family == AF_INET) {
5291 					sa4 = (struct sockaddr_in *)sa;
5292 					if (sa4->sin_addr.s_addr ==
5293 					    sin4.sin_addr.s_addr) {
5294 						fnd = 1;
5295 						break;
5296 					}
5297 				}
5298 #endif
5299 #ifdef INET6
5300 				if (sa->sa_family == AF_INET6) {
5301 					sa6 = (struct sockaddr_in6 *)sa;
5302 					if (SCTP6_ARE_ADDR_EQUAL(
5303 					    sa6, &sin6)) {
5304 						fnd = 1;
5305 						break;
5306 					}
5307 				}
5308 #endif
5309 			}
5310 			if (!fnd) {
5311 				/* New addr added! no need to look further */
5312 				return (1);
5313 			}
5314 		}
5315 		offset += SCTP_SIZE32(plen);
5316 		phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5317 	}
5318 	return (0);
5319 }
5320 
5321 /*
5322  * Given a MBUF chain that was sent into us containing an INIT. Build a
5323  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5324  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5325  * message (i.e. the struct sctp_init_msg).
5326  */
5327 void
5328 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5329     struct mbuf *init_pkt, int iphlen, int offset,
5330     struct sockaddr *src, struct sockaddr *dst,
5331     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5332     uint8_t use_mflowid, uint32_t mflowid,
5333     uint32_t vrf_id, uint16_t port, int hold_inp_lock)
5334 {
5335 	struct sctp_association *asoc;
5336 	struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last;
5337 	struct sctp_init_ack_chunk *initack;
5338 	struct sctp_adaptation_layer_indication *ali;
5339 	struct sctp_ecn_supported_param *ecn;
5340 	struct sctp_prsctp_supported_param *prsctp;
5341 	struct sctp_supported_chunk_types_param *pr_supported;
5342 	union sctp_sockstore *over_addr;
5343 
5344 #ifdef INET
5345 	struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5346 	struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5347 	struct sockaddr_in *sin;
5348 
5349 #endif
5350 #ifdef INET6
5351 	struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5352 	struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5353 	struct sockaddr_in6 *sin6;
5354 
5355 #endif
5356 	struct sockaddr *to;
5357 	struct sctp_state_cookie stc;
5358 	struct sctp_nets *net = NULL;
5359 	uint8_t *signature = NULL;
5360 	int cnt_inits_to = 0;
5361 	uint16_t his_limit, i_want;
5362 	int abort_flag, padval;
5363 	int num_ext;
5364 	int p_len;
5365 	int nat_friendly = 0;
5366 	struct socket *so;
5367 
5368 	if (stcb) {
5369 		asoc = &stcb->asoc;
5370 	} else {
5371 		asoc = NULL;
5372 	}
5373 	mp_last = NULL;
5374 	if ((asoc != NULL) &&
5375 	    (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
5376 	    (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) {
5377 		/* new addresses, out of here in non-cookie-wait states */
5378 		/*
5379 		 * Send a ABORT, we don't add the new address error clause
5380 		 * though we even set the T bit and copy in the 0 tag.. this
5381 		 * looks no different than if no listener was present.
5382 		 */
5383 		sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, NULL,
5384 		    use_mflowid, mflowid,
5385 		    vrf_id, port);
5386 		return;
5387 	}
5388 	abort_flag = 0;
5389 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5390 	    (offset + sizeof(struct sctp_init_chunk)),
5391 	    &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly);
5392 	if (abort_flag) {
5393 do_a_abort:
5394 		sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5395 		    init_chk->init.initiate_tag, op_err,
5396 		    use_mflowid, mflowid,
5397 		    vrf_id, port);
5398 		return;
5399 	}
5400 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
5401 	if (m == NULL) {
5402 		/* No memory, INIT timer will re-attempt. */
5403 		if (op_err)
5404 			sctp_m_freem(op_err);
5405 		return;
5406 	}
5407 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk);
5408 
5409 	/*
5410 	 * We might not overwrite the identification[] completely and on
5411 	 * some platforms time_entered will contain some padding. Therefore
5412 	 * zero out the cookie to avoid putting uninitialized memory on the
5413 	 * wire.
5414 	 */
5415 	memset(&stc, 0, sizeof(struct sctp_state_cookie));
5416 
5417 	/* the time I built cookie */
5418 	(void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
5419 
5420 	/* populate any tie tags */
5421 	if (asoc != NULL) {
5422 		/* unlock before tag selections */
5423 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5424 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5425 		stc.cookie_life = asoc->cookie_life;
5426 		net = asoc->primary_destination;
5427 	} else {
5428 		stc.tie_tag_my_vtag = 0;
5429 		stc.tie_tag_peer_vtag = 0;
5430 		/* life I will award this cookie */
5431 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
5432 	}
5433 
5434 	/* copy in the ports for later check */
5435 	stc.myport = sh->dest_port;
5436 	stc.peerport = sh->src_port;
5437 
5438 	/*
5439 	 * If we wanted to honor cookie life extentions, we would add to
5440 	 * stc.cookie_life. For now we should NOT honor any extension
5441 	 */
5442 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5443 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5444 		stc.ipv6_addr_legal = 1;
5445 		if (SCTP_IPV6_V6ONLY(inp)) {
5446 			stc.ipv4_addr_legal = 0;
5447 		} else {
5448 			stc.ipv4_addr_legal = 1;
5449 		}
5450 	} else {
5451 		stc.ipv6_addr_legal = 0;
5452 		stc.ipv4_addr_legal = 1;
5453 	}
5454 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
5455 	stc.ipv4_scope = 1;
5456 #else
5457 	stc.ipv4_scope = 0;
5458 #endif
5459 	if (net == NULL) {
5460 		to = src;
5461 		switch (dst->sa_family) {
5462 #ifdef INET
5463 		case AF_INET:
5464 			{
5465 				/* lookup address */
5466 				stc.address[0] = src4->sin_addr.s_addr;
5467 				stc.address[1] = 0;
5468 				stc.address[2] = 0;
5469 				stc.address[3] = 0;
5470 				stc.addr_type = SCTP_IPV4_ADDRESS;
5471 				/* local from address */
5472 				stc.laddress[0] = dst4->sin_addr.s_addr;
5473 				stc.laddress[1] = 0;
5474 				stc.laddress[2] = 0;
5475 				stc.laddress[3] = 0;
5476 				stc.laddr_type = SCTP_IPV4_ADDRESS;
5477 				/* scope_id is only for v6 */
5478 				stc.scope_id = 0;
5479 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
5480 				if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) {
5481 					stc.ipv4_scope = 1;
5482 				}
5483 #else
5484 				stc.ipv4_scope = 1;
5485 #endif				/* SCTP_DONT_DO_PRIVADDR_SCOPE */
5486 				/* Must use the address in this case */
5487 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5488 					stc.loopback_scope = 1;
5489 					stc.ipv4_scope = 1;
5490 					stc.site_scope = 1;
5491 					stc.local_scope = 0;
5492 				}
5493 				break;
5494 			}
5495 #endif
5496 #ifdef INET6
5497 		case AF_INET6:
5498 			{
5499 				stc.addr_type = SCTP_IPV6_ADDRESS;
5500 				memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5501 				stc.scope_id = in6_getscope(&src6->sin6_addr);
5502 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5503 					stc.loopback_scope = 1;
5504 					stc.local_scope = 0;
5505 					stc.site_scope = 1;
5506 					stc.ipv4_scope = 1;
5507 				} else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) {
5508 					/*
5509 					 * If the new destination is a
5510 					 * LINK_LOCAL we must have common
5511 					 * both site and local scope. Don't
5512 					 * set local scope though since we
5513 					 * must depend on the source to be
5514 					 * added implicitly. We cannot
5515 					 * assure just because we share one
5516 					 * link that all links are common.
5517 					 */
5518 					stc.local_scope = 0;
5519 					stc.site_scope = 1;
5520 					stc.ipv4_scope = 1;
5521 					/*
5522 					 * we start counting for the private
5523 					 * address stuff at 1. since the
5524 					 * link local we source from won't
5525 					 * show up in our scoped count.
5526 					 */
5527 					cnt_inits_to = 1;
5528 					/*
5529 					 * pull out the scope_id from
5530 					 * incoming pkt
5531 					 */
5532 				} else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) {
5533 					/*
5534 					 * If the new destination is
5535 					 * SITE_LOCAL then we must have site
5536 					 * scope in common.
5537 					 */
5538 					stc.site_scope = 1;
5539 				}
5540 				memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5541 				stc.laddr_type = SCTP_IPV6_ADDRESS;
5542 				break;
5543 			}
5544 #endif
5545 		default:
5546 			/* TSNH */
5547 			goto do_a_abort;
5548 			break;
5549 		}
5550 	} else {
5551 		/* set the scope per the existing tcb */
5552 
5553 #ifdef INET6
5554 		struct sctp_nets *lnet;
5555 
5556 #endif
5557 
5558 		stc.loopback_scope = asoc->scope.loopback_scope;
5559 		stc.ipv4_scope = asoc->scope.ipv4_local_scope;
5560 		stc.site_scope = asoc->scope.site_scope;
5561 		stc.local_scope = asoc->scope.local_scope;
5562 #ifdef INET6
5563 		/* Why do we not consider IPv4 LL addresses? */
5564 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5565 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5566 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5567 					/*
5568 					 * if we have a LL address, start
5569 					 * counting at 1.
5570 					 */
5571 					cnt_inits_to = 1;
5572 				}
5573 			}
5574 		}
5575 #endif
5576 		/* use the net pointer */
5577 		to = (struct sockaddr *)&net->ro._l_addr;
5578 		switch (to->sa_family) {
5579 #ifdef INET
5580 		case AF_INET:
5581 			sin = (struct sockaddr_in *)to;
5582 			stc.address[0] = sin->sin_addr.s_addr;
5583 			stc.address[1] = 0;
5584 			stc.address[2] = 0;
5585 			stc.address[3] = 0;
5586 			stc.addr_type = SCTP_IPV4_ADDRESS;
5587 			if (net->src_addr_selected == 0) {
5588 				/*
5589 				 * strange case here, the INIT should have
5590 				 * did the selection.
5591 				 */
5592 				net->ro._s_addr = sctp_source_address_selection(inp,
5593 				    stcb, (sctp_route_t *) & net->ro,
5594 				    net, 0, vrf_id);
5595 				if (net->ro._s_addr == NULL)
5596 					return;
5597 
5598 				net->src_addr_selected = 1;
5599 
5600 			}
5601 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5602 			stc.laddress[1] = 0;
5603 			stc.laddress[2] = 0;
5604 			stc.laddress[3] = 0;
5605 			stc.laddr_type = SCTP_IPV4_ADDRESS;
5606 			/* scope_id is only for v6 */
5607 			stc.scope_id = 0;
5608 			break;
5609 #endif
5610 #ifdef INET6
5611 		case AF_INET6:
5612 			sin6 = (struct sockaddr_in6 *)to;
5613 			memcpy(&stc.address, &sin6->sin6_addr,
5614 			    sizeof(struct in6_addr));
5615 			stc.addr_type = SCTP_IPV6_ADDRESS;
5616 			stc.scope_id = sin6->sin6_scope_id;
5617 			if (net->src_addr_selected == 0) {
5618 				/*
5619 				 * strange case here, the INIT should have
5620 				 * done the selection.
5621 				 */
5622 				net->ro._s_addr = sctp_source_address_selection(inp,
5623 				    stcb, (sctp_route_t *) & net->ro,
5624 				    net, 0, vrf_id);
5625 				if (net->ro._s_addr == NULL)
5626 					return;
5627 
5628 				net->src_addr_selected = 1;
5629 			}
5630 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5631 			    sizeof(struct in6_addr));
5632 			stc.laddr_type = SCTP_IPV6_ADDRESS;
5633 			break;
5634 #endif
5635 		}
5636 	}
5637 	/* Now lets put the SCTP header in place */
5638 	initack = mtod(m, struct sctp_init_ack_chunk *);
5639 	/* Save it off for quick ref */
5640 	stc.peers_vtag = init_chk->init.initiate_tag;
5641 	/* who are we */
5642 	memcpy(stc.identification, SCTP_VERSION_STRING,
5643 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5644 	memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5645 	/* now the chunk header */
5646 	initack->ch.chunk_type = SCTP_INITIATION_ACK;
5647 	initack->ch.chunk_flags = 0;
5648 	/* fill in later from mbuf we build */
5649 	initack->ch.chunk_length = 0;
5650 	/* place in my tag */
5651 	if ((asoc != NULL) &&
5652 	    ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
5653 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
5654 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
5655 		/* re-use the v-tags and init-seq here */
5656 		initack->init.initiate_tag = htonl(asoc->my_vtag);
5657 		initack->init.initial_tsn = htonl(asoc->init_seq_number);
5658 	} else {
5659 		uint32_t vtag, itsn;
5660 
5661 		if (hold_inp_lock) {
5662 			SCTP_INP_INCR_REF(inp);
5663 			SCTP_INP_RUNLOCK(inp);
5664 		}
5665 		if (asoc) {
5666 			atomic_add_int(&asoc->refcnt, 1);
5667 			SCTP_TCB_UNLOCK(stcb);
5668 	new_tag:
5669 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5670 			if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5671 				/*
5672 				 * Got a duplicate vtag on some guy behind a
5673 				 * nat make sure we don't use it.
5674 				 */
5675 				goto new_tag;
5676 			}
5677 			initack->init.initiate_tag = htonl(vtag);
5678 			/* get a TSN to use too */
5679 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5680 			initack->init.initial_tsn = htonl(itsn);
5681 			SCTP_TCB_LOCK(stcb);
5682 			atomic_add_int(&asoc->refcnt, -1);
5683 		} else {
5684 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5685 			initack->init.initiate_tag = htonl(vtag);
5686 			/* get a TSN to use too */
5687 			initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5688 		}
5689 		if (hold_inp_lock) {
5690 			SCTP_INP_RLOCK(inp);
5691 			SCTP_INP_DECR_REF(inp);
5692 		}
5693 	}
5694 	/* save away my tag to */
5695 	stc.my_vtag = initack->init.initiate_tag;
5696 
5697 	/* set up some of the credits. */
5698 	so = inp->sctp_socket;
5699 	if (so == NULL) {
5700 		/* memory problem */
5701 		sctp_m_freem(m);
5702 		return;
5703 	} else {
5704 		initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5705 	}
5706 	/* set what I want */
5707 	his_limit = ntohs(init_chk->init.num_inbound_streams);
5708 	/* choose what I want */
5709 	if (asoc != NULL) {
5710 		if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
5711 			i_want = asoc->streamoutcnt;
5712 		} else {
5713 			i_want = inp->sctp_ep.pre_open_stream_count;
5714 		}
5715 	} else {
5716 		i_want = inp->sctp_ep.pre_open_stream_count;
5717 	}
5718 	if (his_limit < i_want) {
5719 		/* I Want more :< */
5720 		initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5721 	} else {
5722 		/* I can have what I want :> */
5723 		initack->init.num_outbound_streams = htons(i_want);
5724 	}
5725 	/* tell him his limit. */
5726 	initack->init.num_inbound_streams =
5727 	    htons(inp->sctp_ep.max_open_streams_intome);
5728 
5729 	/* adaptation layer indication parameter */
5730 	if (inp->sctp_ep.adaptation_layer_indicator_provided) {
5731 		ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack));
5732 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5733 		ali->ph.param_length = htons(sizeof(*ali));
5734 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5735 		SCTP_BUF_LEN(m) += sizeof(*ali);
5736 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali));
5737 	} else {
5738 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)initack + sizeof(*initack));
5739 	}
5740 
5741 	/* ECN parameter */
5742 	if (((asoc != NULL) && (asoc->ecn_allowed == 1)) ||
5743 	    (inp->sctp_ecn_enable == 1)) {
5744 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5745 		ecn->ph.param_length = htons(sizeof(*ecn));
5746 		SCTP_BUF_LEN(m) += sizeof(*ecn);
5747 
5748 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5749 		    sizeof(*ecn));
5750 	} else {
5751 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5752 	}
5753 	/* And now tell the peer we do  pr-sctp */
5754 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5755 	prsctp->ph.param_length = htons(sizeof(*prsctp));
5756 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
5757 	if (nat_friendly) {
5758 		/* Add NAT friendly parameter */
5759 		struct sctp_paramhdr *ph;
5760 
5761 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5762 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5763 		ph->param_length = htons(sizeof(struct sctp_paramhdr));
5764 		SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr);
5765 	}
5766 	/* And now tell the peer we do all the extensions */
5767 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5768 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5769 	num_ext = 0;
5770 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5771 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5772 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5773 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5774 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5775 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable))
5776 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5777 	if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off))
5778 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
5779 	p_len = sizeof(*pr_supported) + num_ext;
5780 	pr_supported->ph.param_length = htons(p_len);
5781 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5782 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5783 
5784 	/* add authentication parameters */
5785 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
5786 		struct sctp_auth_random *randp;
5787 		struct sctp_auth_hmac_algo *hmacs;
5788 		struct sctp_auth_chunk_list *chunks;
5789 		uint16_t random_len;
5790 
5791 		/* generate and add RANDOM parameter */
5792 		random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5793 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5794 		randp->ph.param_type = htons(SCTP_RANDOM);
5795 		p_len = sizeof(*randp) + random_len;
5796 		randp->ph.param_length = htons(p_len);
5797 		SCTP_READ_RANDOM(randp->random_data, random_len);
5798 		/* zero out any padding required */
5799 		bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5800 		SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5801 
5802 		/* add HMAC_ALGO parameter */
5803 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5804 		p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5805 		    (uint8_t *) hmacs->hmac_ids);
5806 		if (p_len > 0) {
5807 			p_len += sizeof(*hmacs);
5808 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5809 			hmacs->ph.param_length = htons(p_len);
5810 			/* zero out any padding required */
5811 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5812 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5813 		}
5814 		/* add CHUNKS parameter */
5815 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5816 		p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5817 		    chunks->chunk_types);
5818 		if (p_len > 0) {
5819 			p_len += sizeof(*chunks);
5820 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5821 			chunks->ph.param_length = htons(p_len);
5822 			/* zero out any padding required */
5823 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5824 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5825 		}
5826 	}
5827 	m_at = m;
5828 	/* now the addresses */
5829 	{
5830 		struct sctp_scoping scp;
5831 
5832 		/*
5833 		 * To optimize this we could put the scoping stuff into a
5834 		 * structure and remove the individual uint8's from the stc
5835 		 * structure. Then we could just sifa in the address within
5836 		 * the stc.. but for now this is a quick hack to get the
5837 		 * address stuff teased apart.
5838 		 */
5839 		scp.ipv4_addr_legal = stc.ipv4_addr_legal;
5840 		scp.ipv6_addr_legal = stc.ipv6_addr_legal;
5841 		scp.loopback_scope = stc.loopback_scope;
5842 		scp.ipv4_local_scope = stc.ipv4_scope;
5843 		scp.local_scope = stc.local_scope;
5844 		scp.site_scope = stc.site_scope;
5845 		m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to, NULL, NULL);
5846 	}
5847 
5848 	/* tack on the operational error if present */
5849 	if (op_err) {
5850 		struct mbuf *ol;
5851 		int llen;
5852 
5853 		llen = 0;
5854 		ol = op_err;
5855 
5856 		while (ol) {
5857 			llen += SCTP_BUF_LEN(ol);
5858 			ol = SCTP_BUF_NEXT(ol);
5859 		}
5860 		if (llen % 4) {
5861 			/* must add a pad to the param */
5862 			uint32_t cpthis = 0;
5863 			int padlen;
5864 
5865 			padlen = 4 - (llen % 4);
5866 			m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
5867 		}
5868 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5869 			m_at = SCTP_BUF_NEXT(m_at);
5870 		}
5871 		SCTP_BUF_NEXT(m_at) = op_err;
5872 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5873 			m_at = SCTP_BUF_NEXT(m_at);
5874 		}
5875 	}
5876 	/* pre-calulate the size and update pkt header and chunk header */
5877 	p_len = 0;
5878 	for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5879 		p_len += SCTP_BUF_LEN(m_tmp);
5880 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5881 			/* m_tmp should now point to last one */
5882 			break;
5883 		}
5884 	}
5885 
5886 	/* Now we must build a cookie */
5887 	m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
5888 	if (m_cookie == NULL) {
5889 		/* memory problem */
5890 		sctp_m_freem(m);
5891 		return;
5892 	}
5893 	/* Now append the cookie to the end and update the space/size */
5894 	SCTP_BUF_NEXT(m_tmp) = m_cookie;
5895 
5896 	for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5897 		p_len += SCTP_BUF_LEN(m_tmp);
5898 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5899 			/* m_tmp should now point to last one */
5900 			mp_last = m_tmp;
5901 			break;
5902 		}
5903 	}
5904 	/*
5905 	 * Place in the size, but we don't include the last pad (if any) in
5906 	 * the INIT-ACK.
5907 	 */
5908 	initack->ch.chunk_length = htons(p_len);
5909 
5910 	/*
5911 	 * Time to sign the cookie, we don't sign over the cookie signature
5912 	 * though thus we set trailer.
5913 	 */
5914 	(void)sctp_hmac_m(SCTP_HMAC,
5915 	    (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
5916 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
5917 	    (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
5918 	/*
5919 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
5920 	 * here since the timer will drive a retranmission.
5921 	 */
5922 	padval = p_len % 4;
5923 	if ((padval) && (mp_last)) {
5924 		/* see my previous comments on mp_last */
5925 		if (sctp_add_pad_tombuf(mp_last, (4 - padval))) {
5926 			/* Houston we have a problem, no space */
5927 			sctp_m_freem(m);
5928 			return;
5929 		}
5930 	}
5931 	if (stc.loopback_scope) {
5932 		over_addr = (union sctp_sockstore *)dst;
5933 	} else {
5934 		over_addr = NULL;
5935 	}
5936 
5937 	(void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
5938 	    0, 0,
5939 	    inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
5940 	    port, over_addr,
5941 	    use_mflowid, mflowid,
5942 	    SCTP_SO_NOT_LOCKED);
5943 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
5944 }
5945 
5946 
5947 static void
5948 sctp_prune_prsctp(struct sctp_tcb *stcb,
5949     struct sctp_association *asoc,
5950     struct sctp_sndrcvinfo *srcv,
5951     int dataout)
5952 {
5953 	int freed_spc = 0;
5954 	struct sctp_tmit_chunk *chk, *nchk;
5955 
5956 	SCTP_TCB_LOCK_ASSERT(stcb);
5957 	if ((asoc->peer_supports_prsctp) &&
5958 	    (asoc->sent_queue_cnt_removeable > 0)) {
5959 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
5960 			/*
5961 			 * Look for chunks marked with the PR_SCTP flag AND
5962 			 * the buffer space flag. If the one being sent is
5963 			 * equal or greater priority then purge the old one
5964 			 * and free some space.
5965 			 */
5966 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
5967 				/*
5968 				 * This one is PR-SCTP AND buffer space
5969 				 * limited type
5970 				 */
5971 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5972 					/*
5973 					 * Lower numbers equates to higher
5974 					 * priority so if the one we are
5975 					 * looking at has a larger or equal
5976 					 * priority we want to drop the data
5977 					 * and NOT retransmit it.
5978 					 */
5979 					if (chk->data) {
5980 						/*
5981 						 * We release the book_size
5982 						 * if the mbuf is here
5983 						 */
5984 						int ret_spc;
5985 						uint8_t sent;
5986 
5987 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
5988 							sent = 1;
5989 						else
5990 							sent = 0;
5991 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
5992 						    sent,
5993 						    SCTP_SO_LOCKED);
5994 						freed_spc += ret_spc;
5995 						if (freed_spc >= dataout) {
5996 							return;
5997 						}
5998 					}	/* if chunk was present */
5999 				}	/* if of sufficent priority */
6000 			}	/* if chunk has enabled */
6001 		}		/* tailqforeach */
6002 
6003 		TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6004 			/* Here we must move to the sent queue and mark */
6005 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6006 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6007 					if (chk->data) {
6008 						/*
6009 						 * We release the book_size
6010 						 * if the mbuf is here
6011 						 */
6012 						int ret_spc;
6013 
6014 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6015 						    0, SCTP_SO_LOCKED);
6016 
6017 						freed_spc += ret_spc;
6018 						if (freed_spc >= dataout) {
6019 							return;
6020 						}
6021 					}	/* end if chk->data */
6022 				}	/* end if right class */
6023 			}	/* end if chk pr-sctp */
6024 		}		/* tailqforeachsafe (chk) */
6025 	}			/* if enabled in asoc */
6026 }
6027 
6028 int
6029 sctp_get_frag_point(struct sctp_tcb *stcb,
6030     struct sctp_association *asoc)
6031 {
6032 	int siz, ovh;
6033 
6034 	/*
6035 	 * For endpoints that have both v6 and v4 addresses we must reserve
6036 	 * room for the ipv6 header, for those that are only dealing with V4
6037 	 * we use a larger frag point.
6038 	 */
6039 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6040 		ovh = SCTP_MED_OVERHEAD;
6041 	} else {
6042 		ovh = SCTP_MED_V4_OVERHEAD;
6043 	}
6044 
6045 	if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
6046 		siz = asoc->smallest_mtu - ovh;
6047 	else
6048 		siz = (stcb->asoc.sctp_frag_point - ovh);
6049 	/*
6050 	 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
6051 	 */
6052 	/* A data chunk MUST fit in a cluster */
6053 	/* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
6054 	/* } */
6055 
6056 	/* adjust for an AUTH chunk if DATA requires auth */
6057 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
6058 		siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
6059 
6060 	if (siz % 4) {
6061 		/* make it an even word boundary please */
6062 		siz -= (siz % 4);
6063 	}
6064 	return (siz);
6065 }
6066 
6067 static void
6068 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6069 {
6070 	/*
6071 	 * We assume that the user wants PR_SCTP_TTL if the user provides a
6072 	 * positive lifetime but does not specify any PR_SCTP policy. This
6073 	 * is a BAD assumption and causes problems at least with the
6074 	 * U-Vancovers MPI folks. I will change this to be no policy means
6075 	 * NO PR-SCTP.
6076 	 */
6077 	if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6078 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6079 	} else {
6080 		return;
6081 	}
6082 	switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6083 	case CHUNK_FLAGS_PR_SCTP_BUF:
6084 		/*
6085 		 * Time to live is a priority stored in tv_sec when doing
6086 		 * the buffer drop thing.
6087 		 */
6088 		sp->ts.tv_sec = sp->timetolive;
6089 		sp->ts.tv_usec = 0;
6090 		break;
6091 	case CHUNK_FLAGS_PR_SCTP_TTL:
6092 		{
6093 			struct timeval tv;
6094 
6095 			(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6096 			tv.tv_sec = sp->timetolive / 1000;
6097 			tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6098 			/*
6099 			 * TODO sctp_constants.h needs alternative time
6100 			 * macros when _KERNEL is undefined.
6101 			 */
6102 			timevaladd(&sp->ts, &tv);
6103 		}
6104 		break;
6105 	case CHUNK_FLAGS_PR_SCTP_RTX:
6106 		/*
6107 		 * Time to live is a the number or retransmissions stored in
6108 		 * tv_sec.
6109 		 */
6110 		sp->ts.tv_sec = sp->timetolive;
6111 		sp->ts.tv_usec = 0;
6112 		break;
6113 	default:
6114 		SCTPDBG(SCTP_DEBUG_USRREQ1,
6115 		    "Unknown PR_SCTP policy %u.\n",
6116 		    PR_SCTP_POLICY(sp->sinfo_flags));
6117 		break;
6118 	}
6119 }
6120 
6121 static int
6122 sctp_msg_append(struct sctp_tcb *stcb,
6123     struct sctp_nets *net,
6124     struct mbuf *m,
6125     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
6126 {
6127 	int error = 0;
6128 	struct mbuf *at;
6129 	struct sctp_stream_queue_pending *sp = NULL;
6130 	struct sctp_stream_out *strm;
6131 
6132 	/*
6133 	 * Given an mbuf chain, put it into the association send queue and
6134 	 * place it on the wheel
6135 	 */
6136 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6137 		/* Invalid stream number */
6138 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6139 		error = EINVAL;
6140 		goto out_now;
6141 	}
6142 	if ((stcb->asoc.stream_locked) &&
6143 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6144 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6145 		error = EINVAL;
6146 		goto out_now;
6147 	}
6148 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6149 	/* Now can we send this? */
6150 	if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
6151 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6152 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6153 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6154 		/* got data while shutting down */
6155 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
6156 		error = ECONNRESET;
6157 		goto out_now;
6158 	}
6159 	sctp_alloc_a_strmoq(stcb, sp);
6160 	if (sp == NULL) {
6161 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6162 		error = ENOMEM;
6163 		goto out_now;
6164 	}
6165 	sp->sinfo_flags = srcv->sinfo_flags;
6166 	sp->timetolive = srcv->sinfo_timetolive;
6167 	sp->ppid = srcv->sinfo_ppid;
6168 	sp->context = srcv->sinfo_context;
6169 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6170 		sp->net = net;
6171 		atomic_add_int(&sp->net->ref_count, 1);
6172 	} else {
6173 		sp->net = NULL;
6174 	}
6175 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6176 	sp->stream = srcv->sinfo_stream;
6177 	sp->msg_is_complete = 1;
6178 	sp->sender_all_done = 1;
6179 	sp->some_taken = 0;
6180 	sp->data = m;
6181 	sp->tail_mbuf = NULL;
6182 	sctp_set_prsctp_policy(sp);
6183 	/*
6184 	 * We could in theory (for sendall) sifa the length in, but we would
6185 	 * still have to hunt through the chain since we need to setup the
6186 	 * tail_mbuf
6187 	 */
6188 	sp->length = 0;
6189 	for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6190 		if (SCTP_BUF_NEXT(at) == NULL)
6191 			sp->tail_mbuf = at;
6192 		sp->length += SCTP_BUF_LEN(at);
6193 	}
6194 	if (srcv->sinfo_keynumber_valid) {
6195 		sp->auth_keyid = srcv->sinfo_keynumber;
6196 	} else {
6197 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6198 	}
6199 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6200 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
6201 		sp->holds_key_ref = 1;
6202 	}
6203 	if (hold_stcb_lock == 0) {
6204 		SCTP_TCB_SEND_LOCK(stcb);
6205 	}
6206 	sctp_snd_sb_alloc(stcb, sp->length);
6207 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6208 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6209 	stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1);
6210 	m = NULL;
6211 	if (hold_stcb_lock == 0) {
6212 		SCTP_TCB_SEND_UNLOCK(stcb);
6213 	}
6214 out_now:
6215 	if (m) {
6216 		sctp_m_freem(m);
6217 	}
6218 	return (error);
6219 }
6220 
6221 
6222 static struct mbuf *
6223 sctp_copy_mbufchain(struct mbuf *clonechain,
6224     struct mbuf *outchain,
6225     struct mbuf **endofchain,
6226     int can_take_mbuf,
6227     int sizeofcpy,
6228     uint8_t copy_by_ref)
6229 {
6230 	struct mbuf *m;
6231 	struct mbuf *appendchain;
6232 	caddr_t cp;
6233 	int len;
6234 
6235 	if (endofchain == NULL) {
6236 		/* error */
6237 error_out:
6238 		if (outchain)
6239 			sctp_m_freem(outchain);
6240 		return (NULL);
6241 	}
6242 	if (can_take_mbuf) {
6243 		appendchain = clonechain;
6244 	} else {
6245 		if (!copy_by_ref &&
6246 		    (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))
6247 		    ) {
6248 			/* Its not in a cluster */
6249 			if (*endofchain == NULL) {
6250 				/* lets get a mbuf cluster */
6251 				if (outchain == NULL) {
6252 					/* This is the general case */
6253 			new_mbuf:
6254 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6255 					if (outchain == NULL) {
6256 						goto error_out;
6257 					}
6258 					SCTP_BUF_LEN(outchain) = 0;
6259 					*endofchain = outchain;
6260 					/* get the prepend space */
6261 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6262 				} else {
6263 					/*
6264 					 * We really should not get a NULL
6265 					 * in endofchain
6266 					 */
6267 					/* find end */
6268 					m = outchain;
6269 					while (m) {
6270 						if (SCTP_BUF_NEXT(m) == NULL) {
6271 							*endofchain = m;
6272 							break;
6273 						}
6274 						m = SCTP_BUF_NEXT(m);
6275 					}
6276 					/* sanity */
6277 					if (*endofchain == NULL) {
6278 						/*
6279 						 * huh, TSNH XXX maybe we
6280 						 * should panic
6281 						 */
6282 						sctp_m_freem(outchain);
6283 						goto new_mbuf;
6284 					}
6285 				}
6286 				/* get the new end of length */
6287 				len = M_TRAILINGSPACE(*endofchain);
6288 			} else {
6289 				/* how much is left at the end? */
6290 				len = M_TRAILINGSPACE(*endofchain);
6291 			}
6292 			/* Find the end of the data, for appending */
6293 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6294 
6295 			/* Now lets copy it out */
6296 			if (len >= sizeofcpy) {
6297 				/* It all fits, copy it in */
6298 				m_copydata(clonechain, 0, sizeofcpy, cp);
6299 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6300 			} else {
6301 				/* fill up the end of the chain */
6302 				if (len > 0) {
6303 					m_copydata(clonechain, 0, len, cp);
6304 					SCTP_BUF_LEN((*endofchain)) += len;
6305 					/* now we need another one */
6306 					sizeofcpy -= len;
6307 				}
6308 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6309 				if (m == NULL) {
6310 					/* We failed */
6311 					goto error_out;
6312 				}
6313 				SCTP_BUF_NEXT((*endofchain)) = m;
6314 				*endofchain = m;
6315 				cp = mtod((*endofchain), caddr_t);
6316 				m_copydata(clonechain, len, sizeofcpy, cp);
6317 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6318 			}
6319 			return (outchain);
6320 		} else {
6321 			/* copy the old fashion way */
6322 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT);
6323 #ifdef SCTP_MBUF_LOGGING
6324 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6325 				struct mbuf *mat;
6326 
6327 				for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) {
6328 					if (SCTP_BUF_IS_EXTENDED(mat)) {
6329 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6330 					}
6331 				}
6332 			}
6333 #endif
6334 		}
6335 	}
6336 	if (appendchain == NULL) {
6337 		/* error */
6338 		if (outchain)
6339 			sctp_m_freem(outchain);
6340 		return (NULL);
6341 	}
6342 	if (outchain) {
6343 		/* tack on to the end */
6344 		if (*endofchain != NULL) {
6345 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6346 		} else {
6347 			m = outchain;
6348 			while (m) {
6349 				if (SCTP_BUF_NEXT(m) == NULL) {
6350 					SCTP_BUF_NEXT(m) = appendchain;
6351 					break;
6352 				}
6353 				m = SCTP_BUF_NEXT(m);
6354 			}
6355 		}
6356 		/*
6357 		 * save off the end and update the end-chain postion
6358 		 */
6359 		m = appendchain;
6360 		while (m) {
6361 			if (SCTP_BUF_NEXT(m) == NULL) {
6362 				*endofchain = m;
6363 				break;
6364 			}
6365 			m = SCTP_BUF_NEXT(m);
6366 		}
6367 		return (outchain);
6368 	} else {
6369 		/* save off the end and update the end-chain postion */
6370 		m = appendchain;
6371 		while (m) {
6372 			if (SCTP_BUF_NEXT(m) == NULL) {
6373 				*endofchain = m;
6374 				break;
6375 			}
6376 			m = SCTP_BUF_NEXT(m);
6377 		}
6378 		return (appendchain);
6379 	}
6380 }
6381 
6382 static int
6383 sctp_med_chunk_output(struct sctp_inpcb *inp,
6384     struct sctp_tcb *stcb,
6385     struct sctp_association *asoc,
6386     int *num_out,
6387     int *reason_code,
6388     int control_only, int from_where,
6389     struct timeval *now, int *now_filled, int frag_point, int so_locked
6390 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6391     SCTP_UNUSED
6392 #endif
6393 );
6394 
6395 static void
6396 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6397     uint32_t val SCTP_UNUSED)
6398 {
6399 	struct sctp_copy_all *ca;
6400 	struct mbuf *m;
6401 	int ret = 0;
6402 	int added_control = 0;
6403 	int un_sent, do_chunk_output = 1;
6404 	struct sctp_association *asoc;
6405 	struct sctp_nets *net;
6406 
6407 	ca = (struct sctp_copy_all *)ptr;
6408 	if (ca->m == NULL) {
6409 		return;
6410 	}
6411 	if (ca->inp != inp) {
6412 		/* TSNH */
6413 		return;
6414 	}
6415 	if ((ca->m) && ca->sndlen) {
6416 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT);
6417 		if (m == NULL) {
6418 			/* can't copy so we are done */
6419 			ca->cnt_failed++;
6420 			return;
6421 		}
6422 #ifdef SCTP_MBUF_LOGGING
6423 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6424 			struct mbuf *mat;
6425 
6426 			for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6427 				if (SCTP_BUF_IS_EXTENDED(mat)) {
6428 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6429 				}
6430 			}
6431 		}
6432 #endif
6433 	} else {
6434 		m = NULL;
6435 	}
6436 	SCTP_TCB_LOCK_ASSERT(stcb);
6437 	if (stcb->asoc.alternate) {
6438 		net = stcb->asoc.alternate;
6439 	} else {
6440 		net = stcb->asoc.primary_destination;
6441 	}
6442 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6443 		/* Abort this assoc with m as the user defined reason */
6444 		if (m) {
6445 			struct sctp_paramhdr *ph;
6446 
6447 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT);
6448 			if (m) {
6449 				ph = mtod(m, struct sctp_paramhdr *);
6450 				ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6451 				ph->param_length = htons(sizeof(struct sctp_paramhdr) + ca->sndlen);
6452 			}
6453 			/*
6454 			 * We add one here to keep the assoc from
6455 			 * dis-appearing on us.
6456 			 */
6457 			atomic_add_int(&stcb->asoc.refcnt, 1);
6458 			sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED);
6459 			/*
6460 			 * sctp_abort_an_association calls sctp_free_asoc()
6461 			 * free association will NOT free it since we
6462 			 * incremented the refcnt .. we do this to prevent
6463 			 * it being freed and things getting tricky since we
6464 			 * could end up (from free_asoc) calling inpcb_free
6465 			 * which would get a recursive lock call to the
6466 			 * iterator lock.. But as a consequence of that the
6467 			 * stcb will return to us un-locked.. since
6468 			 * free_asoc returns with either no TCB or the TCB
6469 			 * unlocked, we must relock.. to unlock in the
6470 			 * iterator timer :-0
6471 			 */
6472 			SCTP_TCB_LOCK(stcb);
6473 			atomic_add_int(&stcb->asoc.refcnt, -1);
6474 			goto no_chunk_output;
6475 		}
6476 	} else {
6477 		if (m) {
6478 			ret = sctp_msg_append(stcb, net, m,
6479 			    &ca->sndrcv, 1);
6480 		}
6481 		asoc = &stcb->asoc;
6482 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6483 			/* shutdown this assoc */
6484 			int cnt;
6485 
6486 			cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED);
6487 
6488 			if (TAILQ_EMPTY(&asoc->send_queue) &&
6489 			    TAILQ_EMPTY(&asoc->sent_queue) &&
6490 			    (cnt == 0)) {
6491 				if (asoc->locked_on_sending) {
6492 					goto abort_anyway;
6493 				}
6494 				/*
6495 				 * there is nothing queued to send, so I'm
6496 				 * done...
6497 				 */
6498 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6499 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6500 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6501 					/*
6502 					 * only send SHUTDOWN the first time
6503 					 * through
6504 					 */
6505 					if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
6506 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6507 					}
6508 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
6509 					SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
6510 					sctp_stop_timers_for_shutdown(stcb);
6511 					sctp_send_shutdown(stcb, net);
6512 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6513 					    net);
6514 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6515 					    asoc->primary_destination);
6516 					added_control = 1;
6517 					do_chunk_output = 0;
6518 				}
6519 			} else {
6520 				/*
6521 				 * we still got (or just got) data to send,
6522 				 * so set SHUTDOWN_PENDING
6523 				 */
6524 				/*
6525 				 * XXX sockets draft says that SCTP_EOF
6526 				 * should be sent with no data.  currently,
6527 				 * we will allow user data to be sent first
6528 				 * and move to SHUTDOWN-PENDING
6529 				 */
6530 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6531 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6532 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6533 					if (asoc->locked_on_sending) {
6534 						/*
6535 						 * Locked to send out the
6536 						 * data
6537 						 */
6538 						struct sctp_stream_queue_pending *sp;
6539 
6540 						sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
6541 						if (sp) {
6542 							if ((sp->length == 0) && (sp->msg_is_complete == 0))
6543 								asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
6544 						}
6545 					}
6546 					asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
6547 					if (TAILQ_EMPTY(&asoc->send_queue) &&
6548 					    TAILQ_EMPTY(&asoc->sent_queue) &&
6549 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6550 				abort_anyway:
6551 						atomic_add_int(&stcb->asoc.refcnt, 1);
6552 						sctp_abort_an_association(stcb->sctp_ep, stcb,
6553 						    NULL, SCTP_SO_NOT_LOCKED);
6554 						atomic_add_int(&stcb->asoc.refcnt, -1);
6555 						goto no_chunk_output;
6556 					}
6557 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6558 					    asoc->primary_destination);
6559 				}
6560 			}
6561 
6562 		}
6563 	}
6564 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6565 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
6566 
6567 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6568 	    (stcb->asoc.total_flight > 0) &&
6569 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
6570 	    ) {
6571 		do_chunk_output = 0;
6572 	}
6573 	if (do_chunk_output)
6574 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6575 	else if (added_control) {
6576 		int num_out = 0, reason = 0, now_filled = 0;
6577 		struct timeval now;
6578 		int frag_point;
6579 
6580 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
6581 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6582 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
6583 	}
6584 no_chunk_output:
6585 	if (ret) {
6586 		ca->cnt_failed++;
6587 	} else {
6588 		ca->cnt_sent++;
6589 	}
6590 }
6591 
6592 static void
6593 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6594 {
6595 	struct sctp_copy_all *ca;
6596 
6597 	ca = (struct sctp_copy_all *)ptr;
6598 	/*
6599 	 * Do a notify here? Kacheong suggests that the notify be done at
6600 	 * the send time.. so you would push up a notification if any send
6601 	 * failed. Don't know if this is feasable since the only failures we
6602 	 * have is "memory" related and if you cannot get an mbuf to send
6603 	 * the data you surely can't get an mbuf to send up to notify the
6604 	 * user you can't send the data :->
6605 	 */
6606 
6607 	/* now free everything */
6608 	sctp_m_freem(ca->m);
6609 	SCTP_FREE(ca, SCTP_M_COPYAL);
6610 }
6611 
6612 
6613 #define	MC_ALIGN(m, len) do {						\
6614 	SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1));	\
6615 } while (0)
6616 
6617 
6618 
6619 static struct mbuf *
6620 sctp_copy_out_all(struct uio *uio, int len)
6621 {
6622 	struct mbuf *ret, *at;
6623 	int left, willcpy, cancpy, error;
6624 
6625 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA);
6626 	if (ret == NULL) {
6627 		/* TSNH */
6628 		return (NULL);
6629 	}
6630 	left = len;
6631 	SCTP_BUF_LEN(ret) = 0;
6632 	/* save space for the data chunk header */
6633 	cancpy = M_TRAILINGSPACE(ret);
6634 	willcpy = min(cancpy, left);
6635 	at = ret;
6636 	while (left > 0) {
6637 		/* Align data to the end */
6638 		error = uiomove(mtod(at, caddr_t), willcpy, uio);
6639 		if (error) {
6640 	err_out_now:
6641 			sctp_m_freem(at);
6642 			return (NULL);
6643 		}
6644 		SCTP_BUF_LEN(at) = willcpy;
6645 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6646 		left -= willcpy;
6647 		if (left > 0) {
6648 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA);
6649 			if (SCTP_BUF_NEXT(at) == NULL) {
6650 				goto err_out_now;
6651 			}
6652 			at = SCTP_BUF_NEXT(at);
6653 			SCTP_BUF_LEN(at) = 0;
6654 			cancpy = M_TRAILINGSPACE(at);
6655 			willcpy = min(cancpy, left);
6656 		}
6657 	}
6658 	return (ret);
6659 }
6660 
6661 static int
6662 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6663     struct sctp_sndrcvinfo *srcv)
6664 {
6665 	int ret;
6666 	struct sctp_copy_all *ca;
6667 
6668 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6669 	    SCTP_M_COPYAL);
6670 	if (ca == NULL) {
6671 		sctp_m_freem(m);
6672 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6673 		return (ENOMEM);
6674 	}
6675 	memset(ca, 0, sizeof(struct sctp_copy_all));
6676 
6677 	ca->inp = inp;
6678 	if (srcv) {
6679 		memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6680 	}
6681 	/*
6682 	 * take off the sendall flag, it would be bad if we failed to do
6683 	 * this :-0
6684 	 */
6685 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6686 	/* get length and mbuf chain */
6687 	if (uio) {
6688 		ca->sndlen = uio->uio_resid;
6689 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
6690 		if (ca->m == NULL) {
6691 			SCTP_FREE(ca, SCTP_M_COPYAL);
6692 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6693 			return (ENOMEM);
6694 		}
6695 	} else {
6696 		/* Gather the length of the send */
6697 		struct mbuf *mat;
6698 
6699 		mat = m;
6700 		ca->sndlen = 0;
6701 		while (m) {
6702 			ca->sndlen += SCTP_BUF_LEN(m);
6703 			m = SCTP_BUF_NEXT(m);
6704 		}
6705 		ca->m = mat;
6706 	}
6707 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6708 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6709 	    SCTP_ASOC_ANY_STATE,
6710 	    (void *)ca, 0,
6711 	    sctp_sendall_completes, inp, 1);
6712 	if (ret) {
6713 		SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6714 		SCTP_FREE(ca, SCTP_M_COPYAL);
6715 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6716 		return (EFAULT);
6717 	}
6718 	return (0);
6719 }
6720 
6721 
6722 void
6723 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6724 {
6725 	struct sctp_tmit_chunk *chk, *nchk;
6726 
6727 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6728 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6729 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6730 			if (chk->data) {
6731 				sctp_m_freem(chk->data);
6732 				chk->data = NULL;
6733 			}
6734 			asoc->ctrl_queue_cnt--;
6735 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6736 		}
6737 	}
6738 }
6739 
6740 void
6741 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6742 {
6743 	struct sctp_association *asoc;
6744 	struct sctp_tmit_chunk *chk, *nchk;
6745 	struct sctp_asconf_chunk *acp;
6746 
6747 	asoc = &stcb->asoc;
6748 	TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
6749 		/* find SCTP_ASCONF chunk in queue */
6750 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6751 			if (chk->data) {
6752 				acp = mtod(chk->data, struct sctp_asconf_chunk *);
6753 				if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
6754 					/* Not Acked yet */
6755 					break;
6756 				}
6757 			}
6758 			TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
6759 			if (chk->data) {
6760 				sctp_m_freem(chk->data);
6761 				chk->data = NULL;
6762 			}
6763 			asoc->ctrl_queue_cnt--;
6764 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6765 		}
6766 	}
6767 }
6768 
6769 
6770 static void
6771 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6772     struct sctp_association *asoc,
6773     struct sctp_tmit_chunk **data_list,
6774     int bundle_at,
6775     struct sctp_nets *net)
6776 {
6777 	int i;
6778 	struct sctp_tmit_chunk *tp1;
6779 
6780 	for (i = 0; i < bundle_at; i++) {
6781 		/* off of the send queue */
6782 		TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
6783 		asoc->send_queue_cnt--;
6784 		if (i > 0) {
6785 			/*
6786 			 * Any chunk NOT 0 you zap the time chunk 0 gets
6787 			 * zapped or set based on if a RTO measurment is
6788 			 * needed.
6789 			 */
6790 			data_list[i]->do_rtt = 0;
6791 		}
6792 		/* record time */
6793 		data_list[i]->sent_rcv_time = net->last_sent_time;
6794 		data_list[i]->rec.data.cwnd_at_send = net->cwnd;
6795 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6796 		if (data_list[i]->whoTo == NULL) {
6797 			data_list[i]->whoTo = net;
6798 			atomic_add_int(&net->ref_count, 1);
6799 		}
6800 		/* on to the sent queue */
6801 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6802 		if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6803 			struct sctp_tmit_chunk *tpp;
6804 
6805 			/* need to move back */
6806 	back_up_more:
6807 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6808 			if (tpp == NULL) {
6809 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6810 				goto all_done;
6811 			}
6812 			tp1 = tpp;
6813 			if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6814 				goto back_up_more;
6815 			}
6816 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6817 		} else {
6818 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
6819 			    data_list[i],
6820 			    sctp_next);
6821 		}
6822 all_done:
6823 		/* This does not lower until the cum-ack passes it */
6824 		asoc->sent_queue_cnt++;
6825 		if ((asoc->peers_rwnd <= 0) &&
6826 		    (asoc->total_flight == 0) &&
6827 		    (bundle_at == 1)) {
6828 			/* Mark the chunk as being a window probe */
6829 			SCTP_STAT_INCR(sctps_windowprobed);
6830 		}
6831 #ifdef SCTP_AUDITING_ENABLED
6832 		sctp_audit_log(0xC2, 3);
6833 #endif
6834 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
6835 		data_list[i]->snd_count = 1;
6836 		data_list[i]->rec.data.chunk_was_revoked = 0;
6837 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
6838 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
6839 			    data_list[i]->whoTo->flight_size,
6840 			    data_list[i]->book_size,
6841 			    (uintptr_t) data_list[i]->whoTo,
6842 			    data_list[i]->rec.data.TSN_seq);
6843 		}
6844 		sctp_flight_size_increase(data_list[i]);
6845 		sctp_total_flight_increase(stcb, data_list[i]);
6846 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
6847 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
6848 			    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
6849 		}
6850 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
6851 		    (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
6852 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
6853 			/* SWS sender side engages */
6854 			asoc->peers_rwnd = 0;
6855 		}
6856 	}
6857 	if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
6858 		(*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
6859 	}
6860 }
6861 
6862 static void
6863 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked
6864 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6865     SCTP_UNUSED
6866 #endif
6867 )
6868 {
6869 	struct sctp_tmit_chunk *chk, *nchk;
6870 
6871 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6872 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
6873 		    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
6874 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
6875 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
6876 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
6877 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
6878 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
6879 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
6880 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
6881 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
6882 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
6883 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
6884 			/* Stray chunks must be cleaned up */
6885 	clean_up_anyway:
6886 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6887 			if (chk->data) {
6888 				sctp_m_freem(chk->data);
6889 				chk->data = NULL;
6890 			}
6891 			asoc->ctrl_queue_cnt--;
6892 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)
6893 				asoc->fwd_tsn_cnt--;
6894 			sctp_free_a_chunk(stcb, chk, so_locked);
6895 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
6896 			/* special handling, we must look into the param */
6897 			if (chk != asoc->str_reset) {
6898 				goto clean_up_anyway;
6899 			}
6900 		}
6901 	}
6902 }
6903 
6904 
6905 static int
6906 sctp_can_we_split_this(struct sctp_tcb *stcb,
6907     uint32_t length,
6908     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
6909 {
6910 	/*
6911 	 * Make a decision on if I should split a msg into multiple parts.
6912 	 * This is only asked of incomplete messages.
6913 	 */
6914 	if (eeor_on) {
6915 		/*
6916 		 * If we are doing EEOR we need to always send it if its the
6917 		 * entire thing, since it might be all the guy is putting in
6918 		 * the hopper.
6919 		 */
6920 		if (goal_mtu >= length) {
6921 			/*-
6922 			 * If we have data outstanding,
6923 			 * we get another chance when the sack
6924 			 * arrives to transmit - wait for more data
6925 			 */
6926 			if (stcb->asoc.total_flight == 0) {
6927 				/*
6928 				 * If nothing is in flight, we zero the
6929 				 * packet counter.
6930 				 */
6931 				return (length);
6932 			}
6933 			return (0);
6934 
6935 		} else {
6936 			/* You can fill the rest */
6937 			return (goal_mtu);
6938 		}
6939 	}
6940 	/*-
6941 	 * For those strange folk that make the send buffer
6942 	 * smaller than our fragmentation point, we can't
6943 	 * get a full msg in so we have to allow splitting.
6944 	 */
6945 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
6946 		return (length);
6947 	}
6948 	if ((length <= goal_mtu) ||
6949 	    ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
6950 		/* Sub-optimial residual don't split in non-eeor mode. */
6951 		return (0);
6952 	}
6953 	/*
6954 	 * If we reach here length is larger than the goal_mtu. Do we wish
6955 	 * to split it for the sake of packet putting together?
6956 	 */
6957 	if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
6958 		/* Its ok to split it */
6959 		return (min(goal_mtu, frag_point));
6960 	}
6961 	/* Nope, can't split */
6962 	return (0);
6963 
6964 }
6965 
6966 static uint32_t
6967 sctp_move_to_outqueue(struct sctp_tcb *stcb,
6968     struct sctp_stream_out *strq,
6969     uint32_t goal_mtu,
6970     uint32_t frag_point,
6971     int *locked,
6972     int *giveup,
6973     int eeor_mode,
6974     int *bail,
6975     int so_locked
6976 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6977     SCTP_UNUSED
6978 #endif
6979 )
6980 {
6981 	/* Move from the stream to the send_queue keeping track of the total */
6982 	struct sctp_association *asoc;
6983 	struct sctp_stream_queue_pending *sp;
6984 	struct sctp_tmit_chunk *chk;
6985 	struct sctp_data_chunk *dchkh;
6986 	uint32_t to_move, length;
6987 	uint8_t rcv_flags = 0;
6988 	uint8_t some_taken;
6989 	uint8_t send_lock_up = 0;
6990 
6991 	SCTP_TCB_LOCK_ASSERT(stcb);
6992 	asoc = &stcb->asoc;
6993 one_more_time:
6994 	/* sa_ignore FREED_MEMORY */
6995 	sp = TAILQ_FIRST(&strq->outqueue);
6996 	if (sp == NULL) {
6997 		*locked = 0;
6998 		if (send_lock_up == 0) {
6999 			SCTP_TCB_SEND_LOCK(stcb);
7000 			send_lock_up = 1;
7001 		}
7002 		sp = TAILQ_FIRST(&strq->outqueue);
7003 		if (sp) {
7004 			goto one_more_time;
7005 		}
7006 		if (strq->last_msg_incomplete) {
7007 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7008 			    strq->stream_no,
7009 			    strq->last_msg_incomplete);
7010 			strq->last_msg_incomplete = 0;
7011 		}
7012 		to_move = 0;
7013 		if (send_lock_up) {
7014 			SCTP_TCB_SEND_UNLOCK(stcb);
7015 			send_lock_up = 0;
7016 		}
7017 		goto out_of;
7018 	}
7019 	if ((sp->msg_is_complete) && (sp->length == 0)) {
7020 		if (sp->sender_all_done) {
7021 			/*
7022 			 * We are doing differed cleanup. Last time through
7023 			 * when we took all the data the sender_all_done was
7024 			 * not set.
7025 			 */
7026 			if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7027 				SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7028 				SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7029 				    sp->sender_all_done,
7030 				    sp->length,
7031 				    sp->msg_is_complete,
7032 				    sp->put_last_out,
7033 				    send_lock_up);
7034 			}
7035 			if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) {
7036 				SCTP_TCB_SEND_LOCK(stcb);
7037 				send_lock_up = 1;
7038 			}
7039 			atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7040 			TAILQ_REMOVE(&strq->outqueue, sp, next);
7041 			stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7042 			if (sp->net) {
7043 				sctp_free_remote_addr(sp->net);
7044 				sp->net = NULL;
7045 			}
7046 			if (sp->data) {
7047 				sctp_m_freem(sp->data);
7048 				sp->data = NULL;
7049 			}
7050 			sctp_free_a_strmoq(stcb, sp, so_locked);
7051 			/* we can't be locked to it */
7052 			*locked = 0;
7053 			stcb->asoc.locked_on_sending = NULL;
7054 			if (send_lock_up) {
7055 				SCTP_TCB_SEND_UNLOCK(stcb);
7056 				send_lock_up = 0;
7057 			}
7058 			/* back to get the next msg */
7059 			goto one_more_time;
7060 		} else {
7061 			/*
7062 			 * sender just finished this but still holds a
7063 			 * reference
7064 			 */
7065 			*locked = 1;
7066 			*giveup = 1;
7067 			to_move = 0;
7068 			goto out_of;
7069 		}
7070 	} else {
7071 		/* is there some to get */
7072 		if (sp->length == 0) {
7073 			/* no */
7074 			*locked = 1;
7075 			*giveup = 1;
7076 			to_move = 0;
7077 			goto out_of;
7078 		} else if (sp->discard_rest) {
7079 			if (send_lock_up == 0) {
7080 				SCTP_TCB_SEND_LOCK(stcb);
7081 				send_lock_up = 1;
7082 			}
7083 			/* Whack down the size */
7084 			atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7085 			if ((stcb->sctp_socket != NULL) && \
7086 			    ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7087 			    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7088 				atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length);
7089 			}
7090 			if (sp->data) {
7091 				sctp_m_freem(sp->data);
7092 				sp->data = NULL;
7093 				sp->tail_mbuf = NULL;
7094 			}
7095 			sp->length = 0;
7096 			sp->some_taken = 1;
7097 			*locked = 1;
7098 			*giveup = 1;
7099 			to_move = 0;
7100 			goto out_of;
7101 		}
7102 	}
7103 	some_taken = sp->some_taken;
7104 	if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
7105 		sp->msg_is_complete = 1;
7106 	}
7107 re_look:
7108 	length = sp->length;
7109 	if (sp->msg_is_complete) {
7110 		/* The message is complete */
7111 		to_move = min(length, frag_point);
7112 		if (to_move == length) {
7113 			/* All of it fits in the MTU */
7114 			if (sp->some_taken) {
7115 				rcv_flags |= SCTP_DATA_LAST_FRAG;
7116 				sp->put_last_out = 1;
7117 			} else {
7118 				rcv_flags |= SCTP_DATA_NOT_FRAG;
7119 				sp->put_last_out = 1;
7120 			}
7121 		} else {
7122 			/* Not all of it fits, we fragment */
7123 			if (sp->some_taken == 0) {
7124 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7125 			}
7126 			sp->some_taken = 1;
7127 		}
7128 	} else {
7129 		to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode);
7130 		if (to_move) {
7131 			/*-
7132 			 * We use a snapshot of length in case it
7133 			 * is expanding during the compare.
7134 			 */
7135 			uint32_t llen;
7136 
7137 			llen = length;
7138 			if (to_move >= llen) {
7139 				to_move = llen;
7140 				if (send_lock_up == 0) {
7141 					/*-
7142 					 * We are taking all of an incomplete msg
7143 					 * thus we need a send lock.
7144 					 */
7145 					SCTP_TCB_SEND_LOCK(stcb);
7146 					send_lock_up = 1;
7147 					if (sp->msg_is_complete) {
7148 						/*
7149 						 * the sender finished the
7150 						 * msg
7151 						 */
7152 						goto re_look;
7153 					}
7154 				}
7155 			}
7156 			if (sp->some_taken == 0) {
7157 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7158 				sp->some_taken = 1;
7159 			}
7160 		} else {
7161 			/* Nothing to take. */
7162 			if (sp->some_taken) {
7163 				*locked = 1;
7164 			}
7165 			*giveup = 1;
7166 			to_move = 0;
7167 			goto out_of;
7168 		}
7169 	}
7170 
7171 	/* If we reach here, we can copy out a chunk */
7172 	sctp_alloc_a_chunk(stcb, chk);
7173 	if (chk == NULL) {
7174 		/* No chunk memory */
7175 		*giveup = 1;
7176 		to_move = 0;
7177 		goto out_of;
7178 	}
7179 	/*
7180 	 * Setup for unordered if needed by looking at the user sent info
7181 	 * flags.
7182 	 */
7183 	if (sp->sinfo_flags & SCTP_UNORDERED) {
7184 		rcv_flags |= SCTP_DATA_UNORDERED;
7185 	}
7186 	if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) ||
7187 	    ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) {
7188 		rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7189 	}
7190 	/* clear out the chunk before setting up */
7191 	memset(chk, 0, sizeof(*chk));
7192 	chk->rec.data.rcv_flags = rcv_flags;
7193 
7194 	if (to_move >= length) {
7195 		/* we think we can steal the whole thing */
7196 		if ((sp->sender_all_done == 0) && (send_lock_up == 0)) {
7197 			SCTP_TCB_SEND_LOCK(stcb);
7198 			send_lock_up = 1;
7199 		}
7200 		if (to_move < sp->length) {
7201 			/* bail, it changed */
7202 			goto dont_do_it;
7203 		}
7204 		chk->data = sp->data;
7205 		chk->last_mbuf = sp->tail_mbuf;
7206 		/* register the stealing */
7207 		sp->data = sp->tail_mbuf = NULL;
7208 	} else {
7209 		struct mbuf *m;
7210 
7211 dont_do_it:
7212 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT);
7213 		chk->last_mbuf = NULL;
7214 		if (chk->data == NULL) {
7215 			sp->some_taken = some_taken;
7216 			sctp_free_a_chunk(stcb, chk, so_locked);
7217 			*bail = 1;
7218 			to_move = 0;
7219 			goto out_of;
7220 		}
7221 #ifdef SCTP_MBUF_LOGGING
7222 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7223 			struct mbuf *mat;
7224 
7225 			for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) {
7226 				if (SCTP_BUF_IS_EXTENDED(mat)) {
7227 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
7228 				}
7229 			}
7230 		}
7231 #endif
7232 		/* Pull off the data */
7233 		m_adj(sp->data, to_move);
7234 		/* Now lets work our way down and compact it */
7235 		m = sp->data;
7236 		while (m && (SCTP_BUF_LEN(m) == 0)) {
7237 			sp->data = SCTP_BUF_NEXT(m);
7238 			SCTP_BUF_NEXT(m) = NULL;
7239 			if (sp->tail_mbuf == m) {
7240 				/*-
7241 				 * Freeing tail? TSNH since
7242 				 * we supposedly were taking less
7243 				 * than the sp->length.
7244 				 */
7245 #ifdef INVARIANTS
7246 				panic("Huh, freing tail? - TSNH");
7247 #else
7248 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7249 				sp->tail_mbuf = sp->data = NULL;
7250 				sp->length = 0;
7251 #endif
7252 
7253 			}
7254 			sctp_m_free(m);
7255 			m = sp->data;
7256 		}
7257 	}
7258 	if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7259 		chk->copy_by_ref = 1;
7260 	} else {
7261 		chk->copy_by_ref = 0;
7262 	}
7263 	/*
7264 	 * get last_mbuf and counts of mb useage This is ugly but hopefully
7265 	 * its only one mbuf.
7266 	 */
7267 	if (chk->last_mbuf == NULL) {
7268 		chk->last_mbuf = chk->data;
7269 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7270 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7271 		}
7272 	}
7273 	if (to_move > length) {
7274 		/*- This should not happen either
7275 		 * since we always lower to_move to the size
7276 		 * of sp->length if its larger.
7277 		 */
7278 #ifdef INVARIANTS
7279 		panic("Huh, how can to_move be larger?");
7280 #else
7281 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
7282 		sp->length = 0;
7283 #endif
7284 	} else {
7285 		atomic_subtract_int(&sp->length, to_move);
7286 	}
7287 	if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
7288 		/* Not enough room for a chunk header, get some */
7289 		struct mbuf *m;
7290 
7291 		m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA);
7292 		if (m == NULL) {
7293 			/*
7294 			 * we're in trouble here. _PREPEND below will free
7295 			 * all the data if there is no leading space, so we
7296 			 * must put the data back and restore.
7297 			 */
7298 			if (send_lock_up == 0) {
7299 				SCTP_TCB_SEND_LOCK(stcb);
7300 				send_lock_up = 1;
7301 			}
7302 			if (chk->data == NULL) {
7303 				/* unsteal the data */
7304 				sp->data = chk->data;
7305 				sp->tail_mbuf = chk->last_mbuf;
7306 			} else {
7307 				struct mbuf *m_tmp;
7308 
7309 				/* reassemble the data */
7310 				m_tmp = sp->data;
7311 				sp->data = chk->data;
7312 				SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7313 			}
7314 			sp->some_taken = some_taken;
7315 			atomic_add_int(&sp->length, to_move);
7316 			chk->data = NULL;
7317 			*bail = 1;
7318 			sctp_free_a_chunk(stcb, chk, so_locked);
7319 			to_move = 0;
7320 			goto out_of;
7321 		} else {
7322 			SCTP_BUF_LEN(m) = 0;
7323 			SCTP_BUF_NEXT(m) = chk->data;
7324 			chk->data = m;
7325 			M_ALIGN(chk->data, 4);
7326 		}
7327 	}
7328 	SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT);
7329 	if (chk->data == NULL) {
7330 		/* HELP, TSNH since we assured it would not above? */
7331 #ifdef INVARIANTS
7332 		panic("prepend failes HELP?");
7333 #else
7334 		SCTP_PRINTF("prepend fails HELP?\n");
7335 		sctp_free_a_chunk(stcb, chk, so_locked);
7336 #endif
7337 		*bail = 1;
7338 		to_move = 0;
7339 		goto out_of;
7340 	}
7341 	sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
7342 	chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk));
7343 	chk->book_size_scale = 0;
7344 	chk->sent = SCTP_DATAGRAM_UNSENT;
7345 
7346 	chk->flags = 0;
7347 	chk->asoc = &stcb->asoc;
7348 	chk->pad_inplace = 0;
7349 	chk->no_fr_allowed = 0;
7350 	chk->rec.data.stream_seq = strq->next_sequence_send;
7351 	if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7352 		strq->next_sequence_send++;
7353 	}
7354 	chk->rec.data.stream_number = sp->stream;
7355 	chk->rec.data.payloadtype = sp->ppid;
7356 	chk->rec.data.context = sp->context;
7357 	chk->rec.data.doing_fast_retransmit = 0;
7358 
7359 	chk->rec.data.timetodrop = sp->ts;
7360 	chk->flags = sp->act_flags;
7361 
7362 	if (sp->net) {
7363 		chk->whoTo = sp->net;
7364 		atomic_add_int(&chk->whoTo->ref_count, 1);
7365 	} else
7366 		chk->whoTo = NULL;
7367 
7368 	if (sp->holds_key_ref) {
7369 		chk->auth_keyid = sp->auth_keyid;
7370 		sctp_auth_key_acquire(stcb, chk->auth_keyid);
7371 		chk->holds_key_ref = 1;
7372 	}
7373 	chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
7374 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7375 		sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7376 		    (uintptr_t) stcb, sp->length,
7377 		    (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
7378 		    chk->rec.data.TSN_seq);
7379 	}
7380 	dchkh = mtod(chk->data, struct sctp_data_chunk *);
7381 	/*
7382 	 * Put the rest of the things in place now. Size was done earlier in
7383 	 * previous loop prior to padding.
7384 	 */
7385 
7386 #ifdef SCTP_ASOCLOG_OF_TSNS
7387 	SCTP_TCB_LOCK_ASSERT(stcb);
7388 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7389 		asoc->tsn_out_at = 0;
7390 		asoc->tsn_out_wrapped = 1;
7391 	}
7392 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
7393 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
7394 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
7395 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7396 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7397 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7398 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7399 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7400 	asoc->tsn_out_at++;
7401 #endif
7402 
7403 	dchkh->ch.chunk_type = SCTP_DATA;
7404 	dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7405 	dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7406 	dchkh->dp.stream_id = htons(strq->stream_no);
7407 	dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
7408 	dchkh->dp.protocol_id = chk->rec.data.payloadtype;
7409 	dchkh->ch.chunk_length = htons(chk->send_size);
7410 	/* Now advance the chk->send_size by the actual pad needed. */
7411 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7412 		/* need a pad */
7413 		struct mbuf *lm;
7414 		int pads;
7415 
7416 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7417 		if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
7418 			chk->pad_inplace = 1;
7419 		}
7420 		if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
7421 			/* pad added an mbuf */
7422 			chk->last_mbuf = lm;
7423 		}
7424 		chk->send_size += pads;
7425 	}
7426 	if (PR_SCTP_ENABLED(chk->flags)) {
7427 		asoc->pr_sctp_cnt++;
7428 	}
7429 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7430 		/* All done pull and kill the message */
7431 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7432 		if (sp->put_last_out == 0) {
7433 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7434 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7435 			    sp->sender_all_done,
7436 			    sp->length,
7437 			    sp->msg_is_complete,
7438 			    sp->put_last_out,
7439 			    send_lock_up);
7440 		}
7441 		if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
7442 			SCTP_TCB_SEND_LOCK(stcb);
7443 			send_lock_up = 1;
7444 		}
7445 		TAILQ_REMOVE(&strq->outqueue, sp, next);
7446 		stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7447 		if (sp->net) {
7448 			sctp_free_remote_addr(sp->net);
7449 			sp->net = NULL;
7450 		}
7451 		if (sp->data) {
7452 			sctp_m_freem(sp->data);
7453 			sp->data = NULL;
7454 		}
7455 		sctp_free_a_strmoq(stcb, sp, so_locked);
7456 
7457 		/* we can't be locked to it */
7458 		*locked = 0;
7459 		stcb->asoc.locked_on_sending = NULL;
7460 	} else {
7461 		/* more to go, we are locked */
7462 		*locked = 1;
7463 	}
7464 	asoc->chunks_on_out_queue++;
7465 	strq->chunks_on_queues++;
7466 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7467 	asoc->send_queue_cnt++;
7468 out_of:
7469 	if (send_lock_up) {
7470 		SCTP_TCB_SEND_UNLOCK(stcb);
7471 	}
7472 	return (to_move);
7473 }
7474 
7475 
7476 static void
7477 sctp_fill_outqueue(struct sctp_tcb *stcb,
7478     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked
7479 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7480     SCTP_UNUSED
7481 #endif
7482 )
7483 {
7484 	struct sctp_association *asoc;
7485 	struct sctp_stream_out *strq;
7486 	int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
7487 	int locked, giveup;
7488 
7489 	SCTP_TCB_LOCK_ASSERT(stcb);
7490 	asoc = &stcb->asoc;
7491 	switch (net->ro._l_addr.sa.sa_family) {
7492 #ifdef INET
7493 	case AF_INET:
7494 		goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
7495 		break;
7496 #endif
7497 #ifdef INET6
7498 	case AF_INET6:
7499 		goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
7500 		break;
7501 #endif
7502 	default:
7503 		/* TSNH */
7504 		goal_mtu = net->mtu;
7505 		break;
7506 	}
7507 	/* Need an allowance for the data chunk header too */
7508 	goal_mtu -= sizeof(struct sctp_data_chunk);
7509 
7510 	/* must make even word boundary */
7511 	goal_mtu &= 0xfffffffc;
7512 	if (asoc->locked_on_sending) {
7513 		/* We are stuck on one stream until the message completes. */
7514 		strq = asoc->locked_on_sending;
7515 		locked = 1;
7516 	} else {
7517 		strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7518 		locked = 0;
7519 	}
7520 	while ((goal_mtu > 0) && strq) {
7521 		giveup = 0;
7522 		bail = 0;
7523 		moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked,
7524 		    &giveup, eeor_mode, &bail, so_locked);
7525 		if (moved_how_much)
7526 			stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much);
7527 
7528 		if (locked) {
7529 			asoc->locked_on_sending = strq;
7530 			if ((moved_how_much == 0) || (giveup) || bail)
7531 				/* no more to move for now */
7532 				break;
7533 		} else {
7534 			asoc->locked_on_sending = NULL;
7535 			if ((giveup) || bail) {
7536 				break;
7537 			}
7538 			strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7539 			if (strq == NULL) {
7540 				break;
7541 			}
7542 		}
7543 		total_moved += moved_how_much;
7544 		goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
7545 		goal_mtu &= 0xfffffffc;
7546 	}
7547 	if (bail)
7548 		*quit_now = 1;
7549 
7550 	stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7551 
7552 	if (total_moved == 0) {
7553 		if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7554 		    (net == stcb->asoc.primary_destination)) {
7555 			/* ran dry for primary network net */
7556 			SCTP_STAT_INCR(sctps_primary_randry);
7557 		} else if (stcb->asoc.sctp_cmt_on_off > 0) {
7558 			/* ran dry with CMT on */
7559 			SCTP_STAT_INCR(sctps_cmt_randry);
7560 		}
7561 	}
7562 }
7563 
7564 void
7565 sctp_fix_ecn_echo(struct sctp_association *asoc)
7566 {
7567 	struct sctp_tmit_chunk *chk;
7568 
7569 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7570 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7571 			chk->sent = SCTP_DATAGRAM_UNSENT;
7572 		}
7573 	}
7574 }
7575 
7576 void
7577 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7578 {
7579 	struct sctp_association *asoc;
7580 	struct sctp_tmit_chunk *chk;
7581 	struct sctp_stream_queue_pending *sp;
7582 	unsigned int i;
7583 
7584 	if (net == NULL) {
7585 		return;
7586 	}
7587 	asoc = &stcb->asoc;
7588 	for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7589 		TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7590 			if (sp->net == net) {
7591 				sctp_free_remote_addr(sp->net);
7592 				sp->net = NULL;
7593 			}
7594 		}
7595 	}
7596 	TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7597 		if (chk->whoTo == net) {
7598 			sctp_free_remote_addr(chk->whoTo);
7599 			chk->whoTo = NULL;
7600 		}
7601 	}
7602 }
7603 
7604 int
7605 sctp_med_chunk_output(struct sctp_inpcb *inp,
7606     struct sctp_tcb *stcb,
7607     struct sctp_association *asoc,
7608     int *num_out,
7609     int *reason_code,
7610     int control_only, int from_where,
7611     struct timeval *now, int *now_filled, int frag_point, int so_locked
7612 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7613     SCTP_UNUSED
7614 #endif
7615 )
7616 {
7617 	/**
7618 	 * Ok this is the generic chunk service queue. we must do the
7619 	 * following: - Service the stream queue that is next, moving any
7620 	 * message (note I must get a complete message i.e. FIRST/MIDDLE and
7621 	 * LAST to the out queue in one pass) and assigning TSN's - Check to
7622 	 * see if the cwnd/rwnd allows any output, if so we go ahead and
7623 	 * fomulate and send the low level chunks. Making sure to combine
7624 	 * any control in the control chunk queue also.
7625 	 */
7626 	struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7627 	struct mbuf *outchain, *endoutchain;
7628 	struct sctp_tmit_chunk *chk, *nchk;
7629 
7630 	/* temp arrays for unlinking */
7631 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7632 	int no_fragmentflg, error;
7633 	unsigned int max_rwnd_per_dest, max_send_per_dest;
7634 	int one_chunk, hbflag, skip_data_for_this_net;
7635 	int asconf, cookie, no_out_cnt;
7636 	int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7637 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7638 	int tsns_sent = 0;
7639 	uint32_t auth_offset = 0;
7640 	struct sctp_auth_chunk *auth = NULL;
7641 	uint16_t auth_keyid;
7642 	int override_ok = 1;
7643 	int skip_fill_up = 0;
7644 	int data_auth_reqd = 0;
7645 
7646 	/*
7647 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7648 	 * destination.
7649 	 */
7650 	int quit_now = 0;
7651 
7652 	*num_out = 0;
7653 	auth_keyid = stcb->asoc.authinfo.active_keyid;
7654 
7655 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7656 	    (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
7657 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7658 		eeor_mode = 1;
7659 	} else {
7660 		eeor_mode = 0;
7661 	}
7662 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
7663 	/*
7664 	 * First lets prime the pump. For each destination, if there is room
7665 	 * in the flight size, attempt to pull an MTU's worth out of the
7666 	 * stream queues into the general send_queue
7667 	 */
7668 #ifdef SCTP_AUDITING_ENABLED
7669 	sctp_audit_log(0xC2, 2);
7670 #endif
7671 	SCTP_TCB_LOCK_ASSERT(stcb);
7672 	hbflag = 0;
7673 	if ((control_only) || (asoc->stream_reset_outstanding))
7674 		no_data_chunks = 1;
7675 	else
7676 		no_data_chunks = 0;
7677 
7678 	/* Nothing to possible to send? */
7679 	if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7680 	    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7681 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7682 	    TAILQ_EMPTY(&asoc->send_queue) &&
7683 	    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
7684 nothing_to_send:
7685 		*reason_code = 9;
7686 		return (0);
7687 	}
7688 	if (asoc->peers_rwnd == 0) {
7689 		/* No room in peers rwnd */
7690 		*reason_code = 1;
7691 		if (asoc->total_flight > 0) {
7692 			/* we are allowed one chunk in flight */
7693 			no_data_chunks = 1;
7694 		}
7695 	}
7696 	if (stcb->asoc.ecn_echo_cnt_onq) {
7697 		/* Record where a sack goes, if any */
7698 		if (no_data_chunks &&
7699 		    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7700 			/* Nothing but ECNe to send - we don't do that */
7701 			goto nothing_to_send;
7702 		}
7703 		TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7704 			if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7705 			    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7706 				sack_goes_to = chk->whoTo;
7707 				break;
7708 			}
7709 		}
7710 	}
7711 	max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7712 	if (stcb->sctp_socket)
7713 		max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7714 	else
7715 		max_send_per_dest = 0;
7716 	if (no_data_chunks == 0) {
7717 		/* How many non-directed chunks are there? */
7718 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7719 			if (chk->whoTo == NULL) {
7720 				/*
7721 				 * We already have non-directed chunks on
7722 				 * the queue, no need to do a fill-up.
7723 				 */
7724 				skip_fill_up = 1;
7725 				break;
7726 			}
7727 		}
7728 
7729 	}
7730 	if ((no_data_chunks == 0) &&
7731 	    (skip_fill_up == 0) &&
7732 	    (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7733 		TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7734 			/*
7735 			 * This for loop we are in takes in each net, if
7736 			 * its's got space in cwnd and has data sent to it
7737 			 * (when CMT is off) then it calls
7738 			 * sctp_fill_outqueue for the net. This gets data on
7739 			 * the send queue for that network.
7740 			 *
7741 			 * In sctp_fill_outqueue TSN's are assigned and data is
7742 			 * copied out of the stream buffers. Note mostly
7743 			 * copy by reference (we hope).
7744 			 */
7745 			net->window_probe = 0;
7746 			if ((net != stcb->asoc.alternate) &&
7747 			    ((net->dest_state & SCTP_ADDR_PF) ||
7748 			    (!(net->dest_state & SCTP_ADDR_REACHABLE)) ||
7749 			    (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7750 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7751 					sctp_log_cwnd(stcb, net, 1,
7752 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7753 				}
7754 				continue;
7755 			}
7756 			if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7757 			    (net->flight_size == 0)) {
7758 				(*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7759 			}
7760 			if (net->flight_size >= net->cwnd) {
7761 				/* skip this network, no room - can't fill */
7762 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7763 					sctp_log_cwnd(stcb, net, 3,
7764 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7765 				}
7766 				continue;
7767 			}
7768 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7769 				sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7770 			}
7771 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7772 			if (quit_now) {
7773 				/* memory alloc failure */
7774 				no_data_chunks = 1;
7775 				break;
7776 			}
7777 		}
7778 	}
7779 	/* now service each destination and send out what we can for it */
7780 	/* Nothing to send? */
7781 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7782 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7783 	    TAILQ_EMPTY(&asoc->send_queue)) {
7784 		*reason_code = 8;
7785 		return (0);
7786 	}
7787 	if (asoc->sctp_cmt_on_off > 0) {
7788 		/* get the last start point */
7789 		start_at = asoc->last_net_cmt_send_started;
7790 		if (start_at == NULL) {
7791 			/* null so to beginning */
7792 			start_at = TAILQ_FIRST(&asoc->nets);
7793 		} else {
7794 			start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7795 			if (start_at == NULL) {
7796 				start_at = TAILQ_FIRST(&asoc->nets);
7797 			}
7798 		}
7799 		asoc->last_net_cmt_send_started = start_at;
7800 	} else {
7801 		start_at = TAILQ_FIRST(&asoc->nets);
7802 	}
7803 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7804 		if (chk->whoTo == NULL) {
7805 			if (asoc->alternate) {
7806 				chk->whoTo = asoc->alternate;
7807 			} else {
7808 				chk->whoTo = asoc->primary_destination;
7809 			}
7810 			atomic_add_int(&chk->whoTo->ref_count, 1);
7811 		}
7812 	}
7813 	old_start_at = NULL;
7814 again_one_more_time:
7815 	for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7816 		/* how much can we send? */
7817 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7818 		if (old_start_at && (old_start_at == net)) {
7819 			/* through list ocmpletely. */
7820 			break;
7821 		}
7822 		tsns_sent = 0xa;
7823 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7824 		    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7825 		    (net->flight_size >= net->cwnd)) {
7826 			/*
7827 			 * Nothing on control or asconf and flight is full,
7828 			 * we can skip even in the CMT case.
7829 			 */
7830 			continue;
7831 		}
7832 		bundle_at = 0;
7833 		endoutchain = outchain = NULL;
7834 		no_fragmentflg = 1;
7835 		one_chunk = 0;
7836 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
7837 			skip_data_for_this_net = 1;
7838 		} else {
7839 			skip_data_for_this_net = 0;
7840 		}
7841 		if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
7842 			/*
7843 			 * if we have a route and an ifp check to see if we
7844 			 * have room to send to this guy
7845 			 */
7846 			struct ifnet *ifp;
7847 
7848 			ifp = net->ro.ro_rt->rt_ifp;
7849 			if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
7850 				SCTP_STAT_INCR(sctps_ifnomemqueued);
7851 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
7852 					sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
7853 				}
7854 				continue;
7855 			}
7856 		}
7857 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
7858 #ifdef INET
7859 		case AF_INET:
7860 			mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7861 			break;
7862 #endif
7863 #ifdef INET6
7864 		case AF_INET6:
7865 			mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7866 			break;
7867 #endif
7868 		default:
7869 			/* TSNH */
7870 			mtu = net->mtu;
7871 			break;
7872 		}
7873 		mx_mtu = mtu;
7874 		to_out = 0;
7875 		if (mtu > asoc->peers_rwnd) {
7876 			if (asoc->total_flight > 0) {
7877 				/* We have a packet in flight somewhere */
7878 				r_mtu = asoc->peers_rwnd;
7879 			} else {
7880 				/* We are always allowed to send one MTU out */
7881 				one_chunk = 1;
7882 				r_mtu = mtu;
7883 			}
7884 		} else {
7885 			r_mtu = mtu;
7886 		}
7887 		/************************/
7888 		/* ASCONF transmission */
7889 		/************************/
7890 		/* Now first lets go through the asconf queue */
7891 		TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
7892 			if (chk->rec.chunk_id.id != SCTP_ASCONF) {
7893 				continue;
7894 			}
7895 			if (chk->whoTo == NULL) {
7896 				if (asoc->alternate == NULL) {
7897 					if (asoc->primary_destination != net) {
7898 						break;
7899 					}
7900 				} else {
7901 					if (asoc->alternate != net) {
7902 						break;
7903 					}
7904 				}
7905 			} else {
7906 				if (chk->whoTo != net) {
7907 					break;
7908 				}
7909 			}
7910 			if (chk->data == NULL) {
7911 				break;
7912 			}
7913 			if (chk->sent != SCTP_DATAGRAM_UNSENT &&
7914 			    chk->sent != SCTP_DATAGRAM_RESEND) {
7915 				break;
7916 			}
7917 			/*
7918 			 * if no AUTH is yet included and this chunk
7919 			 * requires it, make sure to account for it.  We
7920 			 * don't apply the size until the AUTH chunk is
7921 			 * actually added below in case there is no room for
7922 			 * this chunk. NOTE: we overload the use of "omtu"
7923 			 * here
7924 			 */
7925 			if ((auth == NULL) &&
7926 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7927 			    stcb->asoc.peer_auth_chunks)) {
7928 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7929 			} else
7930 				omtu = 0;
7931 			/* Here we do NOT factor the r_mtu */
7932 			if ((chk->send_size < (int)(mtu - omtu)) ||
7933 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
7934 				/*
7935 				 * We probably should glom the mbuf chain
7936 				 * from the chk->data for control but the
7937 				 * problem is it becomes yet one more level
7938 				 * of tracking to do if for some reason
7939 				 * output fails. Then I have got to
7940 				 * reconstruct the merged control chain.. el
7941 				 * yucko.. for now we take the easy way and
7942 				 * do the copy
7943 				 */
7944 				/*
7945 				 * Add an AUTH chunk, if chunk requires it
7946 				 * save the offset into the chain for AUTH
7947 				 */
7948 				if ((auth == NULL) &&
7949 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7950 				    stcb->asoc.peer_auth_chunks))) {
7951 					outchain = sctp_add_auth_chunk(outchain,
7952 					    &endoutchain,
7953 					    &auth,
7954 					    &auth_offset,
7955 					    stcb,
7956 					    chk->rec.chunk_id.id);
7957 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7958 				}
7959 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
7960 				    (int)chk->rec.chunk_id.can_take_data,
7961 				    chk->send_size, chk->copy_by_ref);
7962 				if (outchain == NULL) {
7963 					*reason_code = 8;
7964 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7965 					return (ENOMEM);
7966 				}
7967 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7968 				/* update our MTU size */
7969 				if (mtu > (chk->send_size + omtu))
7970 					mtu -= (chk->send_size + omtu);
7971 				else
7972 					mtu = 0;
7973 				to_out += (chk->send_size + omtu);
7974 				/* Do clear IP_DF ? */
7975 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7976 					no_fragmentflg = 0;
7977 				}
7978 				if (chk->rec.chunk_id.can_take_data)
7979 					chk->data = NULL;
7980 				/*
7981 				 * set hb flag since we can use these for
7982 				 * RTO
7983 				 */
7984 				hbflag = 1;
7985 				asconf = 1;
7986 				/*
7987 				 * should sysctl this: don't bundle data
7988 				 * with ASCONF since it requires AUTH
7989 				 */
7990 				no_data_chunks = 1;
7991 				chk->sent = SCTP_DATAGRAM_SENT;
7992 				if (chk->whoTo == NULL) {
7993 					chk->whoTo = net;
7994 					atomic_add_int(&net->ref_count, 1);
7995 				}
7996 				chk->snd_count++;
7997 				if (mtu == 0) {
7998 					/*
7999 					 * Ok we are out of room but we can
8000 					 * output without effecting the
8001 					 * flight size since this little guy
8002 					 * is a control only packet.
8003 					 */
8004 					sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8005 					/*
8006 					 * do NOT clear the asconf flag as
8007 					 * it is used to do appropriate
8008 					 * source address selection.
8009 					 */
8010 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8011 					    (struct sockaddr *)&net->ro._l_addr,
8012 					    outchain, auth_offset, auth,
8013 					    stcb->asoc.authinfo.active_keyid,
8014 					    no_fragmentflg, 0, asconf,
8015 					    inp->sctp_lport, stcb->rport,
8016 					    htonl(stcb->asoc.peer_vtag),
8017 					    net->port, NULL,
8018 					    0, 0,
8019 					    so_locked))) {
8020 						if (error == ENOBUFS) {
8021 							asoc->ifp_had_enobuf = 1;
8022 							SCTP_STAT_INCR(sctps_lowlevelerr);
8023 						}
8024 						if (from_where == 0) {
8025 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8026 						}
8027 						if (*now_filled == 0) {
8028 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8029 							*now_filled = 1;
8030 							*now = net->last_sent_time;
8031 						} else {
8032 							net->last_sent_time = *now;
8033 						}
8034 						hbflag = 0;
8035 						/* error, could not output */
8036 						if (error == EHOSTUNREACH) {
8037 							/*
8038 							 * Destination went
8039 							 * unreachable
8040 							 * during this send
8041 							 */
8042 							sctp_move_chunks_from_net(stcb, net);
8043 						}
8044 						*reason_code = 7;
8045 						continue;
8046 					} else
8047 						asoc->ifp_had_enobuf = 0;
8048 					if (*now_filled == 0) {
8049 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8050 						*now_filled = 1;
8051 						*now = net->last_sent_time;
8052 					} else {
8053 						net->last_sent_time = *now;
8054 					}
8055 					hbflag = 0;
8056 					/*
8057 					 * increase the number we sent, if a
8058 					 * cookie is sent we don't tell them
8059 					 * any was sent out.
8060 					 */
8061 					outchain = endoutchain = NULL;
8062 					auth = NULL;
8063 					auth_offset = 0;
8064 					if (!no_out_cnt)
8065 						*num_out += ctl_cnt;
8066 					/* recalc a clean slate and setup */
8067 					switch (net->ro._l_addr.sa.sa_family) {
8068 #ifdef INET
8069 					case AF_INET:
8070 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8071 						break;
8072 #endif
8073 #ifdef INET6
8074 					case AF_INET6:
8075 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8076 						break;
8077 #endif
8078 					default:
8079 						/* TSNH */
8080 						mtu = net->mtu;
8081 						break;
8082 					}
8083 					to_out = 0;
8084 					no_fragmentflg = 1;
8085 				}
8086 			}
8087 		}
8088 		/************************/
8089 		/* Control transmission */
8090 		/************************/
8091 		/* Now first lets go through the control queue */
8092 		TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8093 			if ((sack_goes_to) &&
8094 			    (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8095 			    (chk->whoTo != sack_goes_to)) {
8096 				/*
8097 				 * if we have a sack in queue, and we are
8098 				 * looking at an ecn echo that is NOT queued
8099 				 * to where the sack is going..
8100 				 */
8101 				if (chk->whoTo == net) {
8102 					/*
8103 					 * Don't transmit it to where its
8104 					 * going (current net)
8105 					 */
8106 					continue;
8107 				} else if (sack_goes_to == net) {
8108 					/*
8109 					 * But do transmit it to this
8110 					 * address
8111 					 */
8112 					goto skip_net_check;
8113 				}
8114 			}
8115 			if (chk->whoTo == NULL) {
8116 				if (asoc->alternate == NULL) {
8117 					if (asoc->primary_destination != net) {
8118 						continue;
8119 					}
8120 				} else {
8121 					if (asoc->alternate != net) {
8122 						continue;
8123 					}
8124 				}
8125 			} else {
8126 				if (chk->whoTo != net) {
8127 					continue;
8128 				}
8129 			}
8130 	skip_net_check:
8131 			if (chk->data == NULL) {
8132 				continue;
8133 			}
8134 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8135 				/*
8136 				 * It must be unsent. Cookies and ASCONF's
8137 				 * hang around but there timers will force
8138 				 * when marked for resend.
8139 				 */
8140 				continue;
8141 			}
8142 			/*
8143 			 * if no AUTH is yet included and this chunk
8144 			 * requires it, make sure to account for it.  We
8145 			 * don't apply the size until the AUTH chunk is
8146 			 * actually added below in case there is no room for
8147 			 * this chunk. NOTE: we overload the use of "omtu"
8148 			 * here
8149 			 */
8150 			if ((auth == NULL) &&
8151 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8152 			    stcb->asoc.peer_auth_chunks)) {
8153 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8154 			} else
8155 				omtu = 0;
8156 			/* Here we do NOT factor the r_mtu */
8157 			if ((chk->send_size <= (int)(mtu - omtu)) ||
8158 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8159 				/*
8160 				 * We probably should glom the mbuf chain
8161 				 * from the chk->data for control but the
8162 				 * problem is it becomes yet one more level
8163 				 * of tracking to do if for some reason
8164 				 * output fails. Then I have got to
8165 				 * reconstruct the merged control chain.. el
8166 				 * yucko.. for now we take the easy way and
8167 				 * do the copy
8168 				 */
8169 				/*
8170 				 * Add an AUTH chunk, if chunk requires it
8171 				 * save the offset into the chain for AUTH
8172 				 */
8173 				if ((auth == NULL) &&
8174 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8175 				    stcb->asoc.peer_auth_chunks))) {
8176 					outchain = sctp_add_auth_chunk(outchain,
8177 					    &endoutchain,
8178 					    &auth,
8179 					    &auth_offset,
8180 					    stcb,
8181 					    chk->rec.chunk_id.id);
8182 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8183 				}
8184 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8185 				    (int)chk->rec.chunk_id.can_take_data,
8186 				    chk->send_size, chk->copy_by_ref);
8187 				if (outchain == NULL) {
8188 					*reason_code = 8;
8189 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8190 					return (ENOMEM);
8191 				}
8192 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8193 				/* update our MTU size */
8194 				if (mtu > (chk->send_size + omtu))
8195 					mtu -= (chk->send_size + omtu);
8196 				else
8197 					mtu = 0;
8198 				to_out += (chk->send_size + omtu);
8199 				/* Do clear IP_DF ? */
8200 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8201 					no_fragmentflg = 0;
8202 				}
8203 				if (chk->rec.chunk_id.can_take_data)
8204 					chk->data = NULL;
8205 				/* Mark things to be removed, if needed */
8206 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8207 				    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
8208 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8209 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8210 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8211 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8212 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8213 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8214 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8215 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8216 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8217 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8218 						hbflag = 1;
8219 					}
8220 					/* remove these chunks at the end */
8221 					if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8222 					    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8223 						/* turn off the timer */
8224 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8225 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8226 							    inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8227 						}
8228 					}
8229 					ctl_cnt++;
8230 				} else {
8231 					/*
8232 					 * Other chunks, since they have
8233 					 * timers running (i.e. COOKIE) we
8234 					 * just "trust" that it gets sent or
8235 					 * retransmitted.
8236 					 */
8237 					ctl_cnt++;
8238 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8239 						cookie = 1;
8240 						no_out_cnt = 1;
8241 					} else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8242 						/*
8243 						 * Increment ecne send count
8244 						 * here this means we may be
8245 						 * over-zealous in our
8246 						 * counting if the send
8247 						 * fails, but its the best
8248 						 * place to do it (we used
8249 						 * to do it in the queue of
8250 						 * the chunk, but that did
8251 						 * not tell how many times
8252 						 * it was sent.
8253 						 */
8254 						SCTP_STAT_INCR(sctps_sendecne);
8255 					}
8256 					chk->sent = SCTP_DATAGRAM_SENT;
8257 					if (chk->whoTo == NULL) {
8258 						chk->whoTo = net;
8259 						atomic_add_int(&net->ref_count, 1);
8260 					}
8261 					chk->snd_count++;
8262 				}
8263 				if (mtu == 0) {
8264 					/*
8265 					 * Ok we are out of room but we can
8266 					 * output without effecting the
8267 					 * flight size since this little guy
8268 					 * is a control only packet.
8269 					 */
8270 					if (asconf) {
8271 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8272 						/*
8273 						 * do NOT clear the asconf
8274 						 * flag as it is used to do
8275 						 * appropriate source
8276 						 * address selection.
8277 						 */
8278 					}
8279 					if (cookie) {
8280 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8281 						cookie = 0;
8282 					}
8283 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8284 					    (struct sockaddr *)&net->ro._l_addr,
8285 					    outchain,
8286 					    auth_offset, auth,
8287 					    stcb->asoc.authinfo.active_keyid,
8288 					    no_fragmentflg, 0, asconf,
8289 					    inp->sctp_lport, stcb->rport,
8290 					    htonl(stcb->asoc.peer_vtag),
8291 					    net->port, NULL,
8292 					    0, 0,
8293 					    so_locked))) {
8294 						if (error == ENOBUFS) {
8295 							asoc->ifp_had_enobuf = 1;
8296 							SCTP_STAT_INCR(sctps_lowlevelerr);
8297 						}
8298 						if (from_where == 0) {
8299 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8300 						}
8301 						/* error, could not output */
8302 						if (hbflag) {
8303 							if (*now_filled == 0) {
8304 								(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8305 								*now_filled = 1;
8306 								*now = net->last_sent_time;
8307 							} else {
8308 								net->last_sent_time = *now;
8309 							}
8310 							hbflag = 0;
8311 						}
8312 						if (error == EHOSTUNREACH) {
8313 							/*
8314 							 * Destination went
8315 							 * unreachable
8316 							 * during this send
8317 							 */
8318 							sctp_move_chunks_from_net(stcb, net);
8319 						}
8320 						*reason_code = 7;
8321 						continue;
8322 					} else
8323 						asoc->ifp_had_enobuf = 0;
8324 					/* Only HB or ASCONF advances time */
8325 					if (hbflag) {
8326 						if (*now_filled == 0) {
8327 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8328 							*now_filled = 1;
8329 							*now = net->last_sent_time;
8330 						} else {
8331 							net->last_sent_time = *now;
8332 						}
8333 						hbflag = 0;
8334 					}
8335 					/*
8336 					 * increase the number we sent, if a
8337 					 * cookie is sent we don't tell them
8338 					 * any was sent out.
8339 					 */
8340 					outchain = endoutchain = NULL;
8341 					auth = NULL;
8342 					auth_offset = 0;
8343 					if (!no_out_cnt)
8344 						*num_out += ctl_cnt;
8345 					/* recalc a clean slate and setup */
8346 					switch (net->ro._l_addr.sa.sa_family) {
8347 #ifdef INET
8348 					case AF_INET:
8349 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8350 						break;
8351 #endif
8352 #ifdef INET6
8353 					case AF_INET6:
8354 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8355 						break;
8356 #endif
8357 					default:
8358 						/* TSNH */
8359 						mtu = net->mtu;
8360 						break;
8361 					}
8362 					to_out = 0;
8363 					no_fragmentflg = 1;
8364 				}
8365 			}
8366 		}
8367 		/* JRI: if dest is in PF state, do not send data to it */
8368 		if ((asoc->sctp_cmt_on_off > 0) &&
8369 		    (net != stcb->asoc.alternate) &&
8370 		    (net->dest_state & SCTP_ADDR_PF)) {
8371 			goto no_data_fill;
8372 		}
8373 		if (net->flight_size >= net->cwnd) {
8374 			goto no_data_fill;
8375 		}
8376 		if ((asoc->sctp_cmt_on_off > 0) &&
8377 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8378 		    (net->flight_size > max_rwnd_per_dest)) {
8379 			goto no_data_fill;
8380 		}
8381 		/*
8382 		 * We need a specific accounting for the usage of the send
8383 		 * buffer. We also need to check the number of messages per
8384 		 * net. For now, this is better than nothing and it disabled
8385 		 * by default...
8386 		 */
8387 		if ((asoc->sctp_cmt_on_off > 0) &&
8388 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8389 		    (max_send_per_dest > 0) &&
8390 		    (net->flight_size > max_send_per_dest)) {
8391 			goto no_data_fill;
8392 		}
8393 		/*********************/
8394 		/* Data transmission */
8395 		/*********************/
8396 		/*
8397 		 * if AUTH for DATA is required and no AUTH has been added
8398 		 * yet, account for this in the mtu now... if no data can be
8399 		 * bundled, this adjustment won't matter anyways since the
8400 		 * packet will be going out...
8401 		 */
8402 		data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8403 		    stcb->asoc.peer_auth_chunks);
8404 		if (data_auth_reqd && (auth == NULL)) {
8405 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8406 		}
8407 		/* now lets add any data within the MTU constraints */
8408 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8409 #ifdef INET
8410 		case AF_INET:
8411 			if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
8412 				omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
8413 			else
8414 				omtu = 0;
8415 			break;
8416 #endif
8417 #ifdef INET6
8418 		case AF_INET6:
8419 			if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
8420 				omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
8421 			else
8422 				omtu = 0;
8423 			break;
8424 #endif
8425 		default:
8426 			/* TSNH */
8427 			omtu = 0;
8428 			break;
8429 		}
8430 		if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) &&
8431 		    (skip_data_for_this_net == 0)) ||
8432 		    (cookie)) {
8433 			TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8434 				if (no_data_chunks) {
8435 					/* let only control go out */
8436 					*reason_code = 1;
8437 					break;
8438 				}
8439 				if (net->flight_size >= net->cwnd) {
8440 					/* skip this net, no room for data */
8441 					*reason_code = 2;
8442 					break;
8443 				}
8444 				if ((chk->whoTo != NULL) &&
8445 				    (chk->whoTo != net)) {
8446 					/* Don't send the chunk on this net */
8447 					continue;
8448 				}
8449 				if (asoc->sctp_cmt_on_off == 0) {
8450 					if ((asoc->alternate) &&
8451 					    (asoc->alternate != net) &&
8452 					    (chk->whoTo == NULL)) {
8453 						continue;
8454 					} else if ((net != asoc->primary_destination) &&
8455 						    (asoc->alternate == NULL) &&
8456 					    (chk->whoTo == NULL)) {
8457 						continue;
8458 					}
8459 				}
8460 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8461 					/*-
8462 					 * strange, we have a chunk that is
8463 					 * to big for its destination and
8464 					 * yet no fragment ok flag.
8465 					 * Something went wrong when the
8466 					 * PMTU changed...we did not mark
8467 					 * this chunk for some reason?? I
8468 					 * will fix it here by letting IP
8469 					 * fragment it for now and printing
8470 					 * a warning. This really should not
8471 					 * happen ...
8472 					 */
8473 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8474 					    chk->send_size, mtu);
8475 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8476 				}
8477 				if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8478 				    ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) {
8479 					struct sctp_data_chunk *dchkh;
8480 
8481 					dchkh = mtod(chk->data, struct sctp_data_chunk *);
8482 					dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8483 				}
8484 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8485 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8486 					/* ok we will add this one */
8487 
8488 					/*
8489 					 * Add an AUTH chunk, if chunk
8490 					 * requires it, save the offset into
8491 					 * the chain for AUTH
8492 					 */
8493 					if (data_auth_reqd) {
8494 						if (auth == NULL) {
8495 							outchain = sctp_add_auth_chunk(outchain,
8496 							    &endoutchain,
8497 							    &auth,
8498 							    &auth_offset,
8499 							    stcb,
8500 							    SCTP_DATA);
8501 							auth_keyid = chk->auth_keyid;
8502 							override_ok = 0;
8503 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8504 						} else if (override_ok) {
8505 							/*
8506 							 * use this data's
8507 							 * keyid
8508 							 */
8509 							auth_keyid = chk->auth_keyid;
8510 							override_ok = 0;
8511 						} else if (auth_keyid != chk->auth_keyid) {
8512 							/*
8513 							 * different keyid,
8514 							 * so done bundling
8515 							 */
8516 							break;
8517 						}
8518 					}
8519 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8520 					    chk->send_size, chk->copy_by_ref);
8521 					if (outchain == NULL) {
8522 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8523 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8524 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8525 						}
8526 						*reason_code = 3;
8527 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8528 						return (ENOMEM);
8529 					}
8530 					/* upate our MTU size */
8531 					/* Do clear IP_DF ? */
8532 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8533 						no_fragmentflg = 0;
8534 					}
8535 					/* unsigned subtraction of mtu */
8536 					if (mtu > chk->send_size)
8537 						mtu -= chk->send_size;
8538 					else
8539 						mtu = 0;
8540 					/* unsigned subtraction of r_mtu */
8541 					if (r_mtu > chk->send_size)
8542 						r_mtu -= chk->send_size;
8543 					else
8544 						r_mtu = 0;
8545 
8546 					to_out += chk->send_size;
8547 					if ((to_out > mx_mtu) && no_fragmentflg) {
8548 #ifdef INVARIANTS
8549 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8550 #else
8551 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8552 						    mx_mtu, to_out);
8553 #endif
8554 					}
8555 					chk->window_probe = 0;
8556 					data_list[bundle_at++] = chk;
8557 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8558 						break;
8559 					}
8560 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8561 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8562 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8563 						} else {
8564 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8565 						}
8566 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8567 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8568 							/*
8569 							 * Count number of
8570 							 * user msg's that
8571 							 * were fragmented
8572 							 * we do this by
8573 							 * counting when we
8574 							 * see a LAST
8575 							 * fragment only.
8576 							 */
8577 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8578 					}
8579 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8580 						if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8581 							data_list[0]->window_probe = 1;
8582 							net->window_probe = 1;
8583 						}
8584 						break;
8585 					}
8586 				} else {
8587 					/*
8588 					 * Must be sent in order of the
8589 					 * TSN's (on a network)
8590 					 */
8591 					break;
8592 				}
8593 			}	/* for (chunk gather loop for this net) */
8594 		}		/* if asoc.state OPEN */
8595 no_data_fill:
8596 		/* Is there something to send for this destination? */
8597 		if (outchain) {
8598 			/* We may need to start a control timer or two */
8599 			if (asconf) {
8600 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8601 				    stcb, net);
8602 				/*
8603 				 * do NOT clear the asconf flag as it is
8604 				 * used to do appropriate source address
8605 				 * selection.
8606 				 */
8607 			}
8608 			if (cookie) {
8609 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8610 				cookie = 0;
8611 			}
8612 			/* must start a send timer if data is being sent */
8613 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8614 				/*
8615 				 * no timer running on this destination
8616 				 * restart it.
8617 				 */
8618 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8619 			}
8620 			/* Now send it, if there is anything to send :> */
8621 			if ((error = sctp_lowlevel_chunk_output(inp,
8622 			    stcb,
8623 			    net,
8624 			    (struct sockaddr *)&net->ro._l_addr,
8625 			    outchain,
8626 			    auth_offset,
8627 			    auth,
8628 			    auth_keyid,
8629 			    no_fragmentflg,
8630 			    bundle_at,
8631 			    asconf,
8632 			    inp->sctp_lport, stcb->rport,
8633 			    htonl(stcb->asoc.peer_vtag),
8634 			    net->port, NULL,
8635 			    0, 0,
8636 			    so_locked))) {
8637 				/* error, we could not output */
8638 				if (error == ENOBUFS) {
8639 					SCTP_STAT_INCR(sctps_lowlevelerr);
8640 					asoc->ifp_had_enobuf = 1;
8641 				}
8642 				if (from_where == 0) {
8643 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
8644 				}
8645 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8646 				if (hbflag) {
8647 					if (*now_filled == 0) {
8648 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8649 						*now_filled = 1;
8650 						*now = net->last_sent_time;
8651 					} else {
8652 						net->last_sent_time = *now;
8653 					}
8654 					hbflag = 0;
8655 				}
8656 				if (error == EHOSTUNREACH) {
8657 					/*
8658 					 * Destination went unreachable
8659 					 * during this send
8660 					 */
8661 					sctp_move_chunks_from_net(stcb, net);
8662 				}
8663 				*reason_code = 6;
8664 				/*-
8665 				 * I add this line to be paranoid. As far as
8666 				 * I can tell the continue, takes us back to
8667 				 * the top of the for, but just to make sure
8668 				 * I will reset these again here.
8669 				 */
8670 				ctl_cnt = bundle_at = 0;
8671 				continue;	/* This takes us back to the
8672 						 * for() for the nets. */
8673 			} else {
8674 				asoc->ifp_had_enobuf = 0;
8675 			}
8676 			endoutchain = NULL;
8677 			auth = NULL;
8678 			auth_offset = 0;
8679 			if (bundle_at || hbflag) {
8680 				/* For data/asconf and hb set time */
8681 				if (*now_filled == 0) {
8682 					(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8683 					*now_filled = 1;
8684 					*now = net->last_sent_time;
8685 				} else {
8686 					net->last_sent_time = *now;
8687 				}
8688 			}
8689 			if (!no_out_cnt) {
8690 				*num_out += (ctl_cnt + bundle_at);
8691 			}
8692 			if (bundle_at) {
8693 				/* setup for a RTO measurement */
8694 				tsns_sent = data_list[0]->rec.data.TSN_seq;
8695 				/* fill time if not already filled */
8696 				if (*now_filled == 0) {
8697 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8698 					*now_filled = 1;
8699 					*now = asoc->time_last_sent;
8700 				} else {
8701 					asoc->time_last_sent = *now;
8702 				}
8703 				if (net->rto_needed) {
8704 					data_list[0]->do_rtt = 1;
8705 					net->rto_needed = 0;
8706 				}
8707 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8708 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8709 			}
8710 			if (one_chunk) {
8711 				break;
8712 			}
8713 		}
8714 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8715 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8716 		}
8717 	}
8718 	if (old_start_at == NULL) {
8719 		old_start_at = start_at;
8720 		start_at = TAILQ_FIRST(&asoc->nets);
8721 		if (old_start_at)
8722 			goto again_one_more_time;
8723 	}
8724 	/*
8725 	 * At the end there should be no NON timed chunks hanging on this
8726 	 * queue.
8727 	 */
8728 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8729 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8730 	}
8731 	if ((*num_out == 0) && (*reason_code == 0)) {
8732 		*reason_code = 4;
8733 	} else {
8734 		*reason_code = 5;
8735 	}
8736 	sctp_clean_up_ctl(stcb, asoc, so_locked);
8737 	return (0);
8738 }
8739 
8740 void
8741 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8742 {
8743 	/*-
8744 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8745 	 * the control chunk queue.
8746 	 */
8747 	struct sctp_chunkhdr *hdr;
8748 	struct sctp_tmit_chunk *chk;
8749 	struct mbuf *mat;
8750 
8751 	SCTP_TCB_LOCK_ASSERT(stcb);
8752 	sctp_alloc_a_chunk(stcb, chk);
8753 	if (chk == NULL) {
8754 		/* no memory */
8755 		sctp_m_freem(op_err);
8756 		return;
8757 	}
8758 	chk->copy_by_ref = 0;
8759 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT);
8760 	if (op_err == NULL) {
8761 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
8762 		return;
8763 	}
8764 	chk->send_size = 0;
8765 	mat = op_err;
8766 	while (mat != NULL) {
8767 		chk->send_size += SCTP_BUF_LEN(mat);
8768 		mat = SCTP_BUF_NEXT(mat);
8769 	}
8770 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8771 	chk->rec.chunk_id.can_take_data = 1;
8772 	chk->sent = SCTP_DATAGRAM_UNSENT;
8773 	chk->snd_count = 0;
8774 	chk->flags = 0;
8775 	chk->asoc = &stcb->asoc;
8776 	chk->data = op_err;
8777 	chk->whoTo = NULL;
8778 	hdr = mtod(op_err, struct sctp_chunkhdr *);
8779 	hdr->chunk_type = SCTP_OPERATION_ERROR;
8780 	hdr->chunk_flags = 0;
8781 	hdr->chunk_length = htons(chk->send_size);
8782 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
8783 	    chk,
8784 	    sctp_next);
8785 	chk->asoc->ctrl_queue_cnt++;
8786 }
8787 
8788 int
8789 sctp_send_cookie_echo(struct mbuf *m,
8790     int offset,
8791     struct sctp_tcb *stcb,
8792     struct sctp_nets *net)
8793 {
8794 	/*-
8795 	 * pull out the cookie and put it at the front of the control chunk
8796 	 * queue.
8797 	 */
8798 	int at;
8799 	struct mbuf *cookie;
8800 	struct sctp_paramhdr parm, *phdr;
8801 	struct sctp_chunkhdr *hdr;
8802 	struct sctp_tmit_chunk *chk;
8803 	uint16_t ptype, plen;
8804 
8805 	/* First find the cookie in the param area */
8806 	cookie = NULL;
8807 	at = offset + sizeof(struct sctp_init_chunk);
8808 
8809 	SCTP_TCB_LOCK_ASSERT(stcb);
8810 	do {
8811 		phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
8812 		if (phdr == NULL) {
8813 			return (-3);
8814 		}
8815 		ptype = ntohs(phdr->param_type);
8816 		plen = ntohs(phdr->param_length);
8817 		if (ptype == SCTP_STATE_COOKIE) {
8818 			int pad;
8819 
8820 			/* found the cookie */
8821 			if ((pad = (plen % 4))) {
8822 				plen += 4 - pad;
8823 			}
8824 			cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT);
8825 			if (cookie == NULL) {
8826 				/* No memory */
8827 				return (-2);
8828 			}
8829 #ifdef SCTP_MBUF_LOGGING
8830 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8831 				struct mbuf *mat;
8832 
8833 				for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) {
8834 					if (SCTP_BUF_IS_EXTENDED(mat)) {
8835 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8836 					}
8837 				}
8838 			}
8839 #endif
8840 			break;
8841 		}
8842 		at += SCTP_SIZE32(plen);
8843 	} while (phdr);
8844 	if (cookie == NULL) {
8845 		/* Did not find the cookie */
8846 		return (-3);
8847 	}
8848 	/* ok, we got the cookie lets change it into a cookie echo chunk */
8849 
8850 	/* first the change from param to cookie */
8851 	hdr = mtod(cookie, struct sctp_chunkhdr *);
8852 	hdr->chunk_type = SCTP_COOKIE_ECHO;
8853 	hdr->chunk_flags = 0;
8854 	/* get the chunk stuff now and place it in the FRONT of the queue */
8855 	sctp_alloc_a_chunk(stcb, chk);
8856 	if (chk == NULL) {
8857 		/* no memory */
8858 		sctp_m_freem(cookie);
8859 		return (-5);
8860 	}
8861 	chk->copy_by_ref = 0;
8862 	chk->send_size = plen;
8863 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
8864 	chk->rec.chunk_id.can_take_data = 0;
8865 	chk->sent = SCTP_DATAGRAM_UNSENT;
8866 	chk->snd_count = 0;
8867 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
8868 	chk->asoc = &stcb->asoc;
8869 	chk->data = cookie;
8870 	chk->whoTo = net;
8871 	atomic_add_int(&chk->whoTo->ref_count, 1);
8872 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
8873 	chk->asoc->ctrl_queue_cnt++;
8874 	return (0);
8875 }
8876 
8877 void
8878 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
8879     struct mbuf *m,
8880     int offset,
8881     int chk_length,
8882     struct sctp_nets *net)
8883 {
8884 	/*
8885 	 * take a HB request and make it into a HB ack and send it.
8886 	 */
8887 	struct mbuf *outchain;
8888 	struct sctp_chunkhdr *chdr;
8889 	struct sctp_tmit_chunk *chk;
8890 
8891 
8892 	if (net == NULL)
8893 		/* must have a net pointer */
8894 		return;
8895 
8896 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT);
8897 	if (outchain == NULL) {
8898 		/* gak out of memory */
8899 		return;
8900 	}
8901 #ifdef SCTP_MBUF_LOGGING
8902 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8903 		struct mbuf *mat;
8904 
8905 		for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) {
8906 			if (SCTP_BUF_IS_EXTENDED(mat)) {
8907 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8908 			}
8909 		}
8910 	}
8911 #endif
8912 	chdr = mtod(outchain, struct sctp_chunkhdr *);
8913 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
8914 	chdr->chunk_flags = 0;
8915 	if (chk_length % 4) {
8916 		/* need pad */
8917 		uint32_t cpthis = 0;
8918 		int padlen;
8919 
8920 		padlen = 4 - (chk_length % 4);
8921 		m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
8922 	}
8923 	sctp_alloc_a_chunk(stcb, chk);
8924 	if (chk == NULL) {
8925 		/* no memory */
8926 		sctp_m_freem(outchain);
8927 		return;
8928 	}
8929 	chk->copy_by_ref = 0;
8930 	chk->send_size = chk_length;
8931 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
8932 	chk->rec.chunk_id.can_take_data = 1;
8933 	chk->sent = SCTP_DATAGRAM_UNSENT;
8934 	chk->snd_count = 0;
8935 	chk->flags = 0;
8936 	chk->asoc = &stcb->asoc;
8937 	chk->data = outchain;
8938 	chk->whoTo = net;
8939 	atomic_add_int(&chk->whoTo->ref_count, 1);
8940 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8941 	chk->asoc->ctrl_queue_cnt++;
8942 }
8943 
8944 void
8945 sctp_send_cookie_ack(struct sctp_tcb *stcb)
8946 {
8947 	/* formulate and queue a cookie-ack back to sender */
8948 	struct mbuf *cookie_ack;
8949 	struct sctp_chunkhdr *hdr;
8950 	struct sctp_tmit_chunk *chk;
8951 
8952 	cookie_ack = NULL;
8953 	SCTP_TCB_LOCK_ASSERT(stcb);
8954 
8955 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
8956 	if (cookie_ack == NULL) {
8957 		/* no mbuf's */
8958 		return;
8959 	}
8960 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
8961 	sctp_alloc_a_chunk(stcb, chk);
8962 	if (chk == NULL) {
8963 		/* no memory */
8964 		sctp_m_freem(cookie_ack);
8965 		return;
8966 	}
8967 	chk->copy_by_ref = 0;
8968 	chk->send_size = sizeof(struct sctp_chunkhdr);
8969 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
8970 	chk->rec.chunk_id.can_take_data = 1;
8971 	chk->sent = SCTP_DATAGRAM_UNSENT;
8972 	chk->snd_count = 0;
8973 	chk->flags = 0;
8974 	chk->asoc = &stcb->asoc;
8975 	chk->data = cookie_ack;
8976 	if (chk->asoc->last_control_chunk_from != NULL) {
8977 		chk->whoTo = chk->asoc->last_control_chunk_from;
8978 		atomic_add_int(&chk->whoTo->ref_count, 1);
8979 	} else {
8980 		chk->whoTo = NULL;
8981 	}
8982 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
8983 	hdr->chunk_type = SCTP_COOKIE_ACK;
8984 	hdr->chunk_flags = 0;
8985 	hdr->chunk_length = htons(chk->send_size);
8986 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
8987 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8988 	chk->asoc->ctrl_queue_cnt++;
8989 	return;
8990 }
8991 
8992 
8993 void
8994 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
8995 {
8996 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
8997 	struct mbuf *m_shutdown_ack;
8998 	struct sctp_shutdown_ack_chunk *ack_cp;
8999 	struct sctp_tmit_chunk *chk;
9000 
9001 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9002 	if (m_shutdown_ack == NULL) {
9003 		/* no mbuf's */
9004 		return;
9005 	}
9006 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9007 	sctp_alloc_a_chunk(stcb, chk);
9008 	if (chk == NULL) {
9009 		/* no memory */
9010 		sctp_m_freem(m_shutdown_ack);
9011 		return;
9012 	}
9013 	chk->copy_by_ref = 0;
9014 	chk->send_size = sizeof(struct sctp_chunkhdr);
9015 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9016 	chk->rec.chunk_id.can_take_data = 1;
9017 	chk->sent = SCTP_DATAGRAM_UNSENT;
9018 	chk->snd_count = 0;
9019 	chk->flags = 0;
9020 	chk->asoc = &stcb->asoc;
9021 	chk->data = m_shutdown_ack;
9022 	chk->whoTo = net;
9023 	if (chk->whoTo) {
9024 		atomic_add_int(&chk->whoTo->ref_count, 1);
9025 	}
9026 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9027 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9028 	ack_cp->ch.chunk_flags = 0;
9029 	ack_cp->ch.chunk_length = htons(chk->send_size);
9030 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9031 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9032 	chk->asoc->ctrl_queue_cnt++;
9033 	return;
9034 }
9035 
9036 void
9037 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9038 {
9039 	/* formulate and queue a SHUTDOWN to the sender */
9040 	struct mbuf *m_shutdown;
9041 	struct sctp_shutdown_chunk *shutdown_cp;
9042 	struct sctp_tmit_chunk *chk;
9043 
9044 	m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9045 	if (m_shutdown == NULL) {
9046 		/* no mbuf's */
9047 		return;
9048 	}
9049 	SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9050 	sctp_alloc_a_chunk(stcb, chk);
9051 	if (chk == NULL) {
9052 		/* no memory */
9053 		sctp_m_freem(m_shutdown);
9054 		return;
9055 	}
9056 	chk->copy_by_ref = 0;
9057 	chk->send_size = sizeof(struct sctp_shutdown_chunk);
9058 	chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9059 	chk->rec.chunk_id.can_take_data = 1;
9060 	chk->sent = SCTP_DATAGRAM_UNSENT;
9061 	chk->snd_count = 0;
9062 	chk->flags = 0;
9063 	chk->asoc = &stcb->asoc;
9064 	chk->data = m_shutdown;
9065 	chk->whoTo = net;
9066 	if (chk->whoTo) {
9067 		atomic_add_int(&chk->whoTo->ref_count, 1);
9068 	}
9069 	shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9070 	shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9071 	shutdown_cp->ch.chunk_flags = 0;
9072 	shutdown_cp->ch.chunk_length = htons(chk->send_size);
9073 	shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9074 	SCTP_BUF_LEN(m_shutdown) = chk->send_size;
9075 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9076 	chk->asoc->ctrl_queue_cnt++;
9077 	return;
9078 }
9079 
9080 void
9081 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9082 {
9083 	/*
9084 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
9085 	 * should be queued on the assoc queue.
9086 	 */
9087 	struct sctp_tmit_chunk *chk;
9088 	struct mbuf *m_asconf;
9089 	int len;
9090 
9091 	SCTP_TCB_LOCK_ASSERT(stcb);
9092 
9093 	if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9094 	    (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9095 		/* can't send a new one if there is one in flight already */
9096 		return;
9097 	}
9098 	/* compose an ASCONF chunk, maximum length is PMTU */
9099 	m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9100 	if (m_asconf == NULL) {
9101 		return;
9102 	}
9103 	sctp_alloc_a_chunk(stcb, chk);
9104 	if (chk == NULL) {
9105 		/* no memory */
9106 		sctp_m_freem(m_asconf);
9107 		return;
9108 	}
9109 	chk->copy_by_ref = 0;
9110 	chk->data = m_asconf;
9111 	chk->send_size = len;
9112 	chk->rec.chunk_id.id = SCTP_ASCONF;
9113 	chk->rec.chunk_id.can_take_data = 0;
9114 	chk->sent = SCTP_DATAGRAM_UNSENT;
9115 	chk->snd_count = 0;
9116 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9117 	chk->asoc = &stcb->asoc;
9118 	chk->whoTo = net;
9119 	if (chk->whoTo) {
9120 		atomic_add_int(&chk->whoTo->ref_count, 1);
9121 	}
9122 	TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9123 	chk->asoc->ctrl_queue_cnt++;
9124 	return;
9125 }
9126 
9127 void
9128 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9129 {
9130 	/*
9131 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
9132 	 * must be stored in the tcb.
9133 	 */
9134 	struct sctp_tmit_chunk *chk;
9135 	struct sctp_asconf_ack *ack, *latest_ack;
9136 	struct mbuf *m_ack;
9137 	struct sctp_nets *net = NULL;
9138 
9139 	SCTP_TCB_LOCK_ASSERT(stcb);
9140 	/* Get the latest ASCONF-ACK */
9141 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9142 	if (latest_ack == NULL) {
9143 		return;
9144 	}
9145 	if (latest_ack->last_sent_to != NULL &&
9146 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9147 		/* we're doing a retransmission */
9148 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9149 		if (net == NULL) {
9150 			/* no alternate */
9151 			if (stcb->asoc.last_control_chunk_from == NULL) {
9152 				if (stcb->asoc.alternate) {
9153 					net = stcb->asoc.alternate;
9154 				} else {
9155 					net = stcb->asoc.primary_destination;
9156 				}
9157 			} else {
9158 				net = stcb->asoc.last_control_chunk_from;
9159 			}
9160 		}
9161 	} else {
9162 		/* normal case */
9163 		if (stcb->asoc.last_control_chunk_from == NULL) {
9164 			if (stcb->asoc.alternate) {
9165 				net = stcb->asoc.alternate;
9166 			} else {
9167 				net = stcb->asoc.primary_destination;
9168 			}
9169 		} else {
9170 			net = stcb->asoc.last_control_chunk_from;
9171 		}
9172 	}
9173 	latest_ack->last_sent_to = net;
9174 
9175 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9176 		if (ack->data == NULL) {
9177 			continue;
9178 		}
9179 		/* copy the asconf_ack */
9180 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9181 		if (m_ack == NULL) {
9182 			/* couldn't copy it */
9183 			return;
9184 		}
9185 #ifdef SCTP_MBUF_LOGGING
9186 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9187 			struct mbuf *mat;
9188 
9189 			for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9190 				if (SCTP_BUF_IS_EXTENDED(mat)) {
9191 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9192 				}
9193 			}
9194 		}
9195 #endif
9196 
9197 		sctp_alloc_a_chunk(stcb, chk);
9198 		if (chk == NULL) {
9199 			/* no memory */
9200 			if (m_ack)
9201 				sctp_m_freem(m_ack);
9202 			return;
9203 		}
9204 		chk->copy_by_ref = 0;
9205 
9206 		chk->whoTo = net;
9207 		if (chk->whoTo) {
9208 			atomic_add_int(&chk->whoTo->ref_count, 1);
9209 		}
9210 		chk->data = m_ack;
9211 		chk->send_size = 0;
9212 		/* Get size */
9213 		chk->send_size = ack->len;
9214 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9215 		chk->rec.chunk_id.can_take_data = 1;
9216 		chk->sent = SCTP_DATAGRAM_UNSENT;
9217 		chk->snd_count = 0;
9218 		chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;	/* XXX */
9219 		chk->asoc = &stcb->asoc;
9220 
9221 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9222 		chk->asoc->ctrl_queue_cnt++;
9223 	}
9224 	return;
9225 }
9226 
9227 
9228 static int
9229 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9230     struct sctp_tcb *stcb,
9231     struct sctp_association *asoc,
9232     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
9233 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9234     SCTP_UNUSED
9235 #endif
9236 )
9237 {
9238 	/*-
9239 	 * send out one MTU of retransmission. If fast_retransmit is
9240 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
9241 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
9242 	 * retransmit them by themselves.
9243 	 *
9244 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
9245 	 * marked for resend and bundle them all together (up to a MTU of
9246 	 * destination). The address to send to should have been
9247 	 * selected/changed where the retransmission was marked (i.e. in FR
9248 	 * or t3-timeout routines).
9249 	 */
9250 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9251 	struct sctp_tmit_chunk *chk, *fwd;
9252 	struct mbuf *m, *endofchain;
9253 	struct sctp_nets *net = NULL;
9254 	uint32_t tsns_sent = 0;
9255 	int no_fragmentflg, bundle_at, cnt_thru;
9256 	unsigned int mtu;
9257 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9258 	struct sctp_auth_chunk *auth = NULL;
9259 	uint32_t auth_offset = 0;
9260 	uint16_t auth_keyid;
9261 	int override_ok = 1;
9262 	int data_auth_reqd = 0;
9263 	uint32_t dmtu = 0;
9264 
9265 	SCTP_TCB_LOCK_ASSERT(stcb);
9266 	tmr_started = ctl_cnt = bundle_at = error = 0;
9267 	no_fragmentflg = 1;
9268 	fwd_tsn = 0;
9269 	*cnt_out = 0;
9270 	fwd = NULL;
9271 	endofchain = m = NULL;
9272 	auth_keyid = stcb->asoc.authinfo.active_keyid;
9273 #ifdef SCTP_AUDITING_ENABLED
9274 	sctp_audit_log(0xC3, 1);
9275 #endif
9276 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9277 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
9278 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9279 		    asoc->sent_queue_retran_cnt);
9280 		asoc->sent_queue_cnt = 0;
9281 		asoc->sent_queue_cnt_removeable = 0;
9282 		/* send back 0/0 so we enter normal transmission */
9283 		*cnt_out = 0;
9284 		return (0);
9285 	}
9286 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9287 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9288 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9289 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9290 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
9291 				continue;
9292 			}
9293 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9294 				if (chk != asoc->str_reset) {
9295 					/*
9296 					 * not eligible for retran if its
9297 					 * not ours
9298 					 */
9299 					continue;
9300 				}
9301 			}
9302 			ctl_cnt++;
9303 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9304 				fwd_tsn = 1;
9305 			}
9306 			/*
9307 			 * Add an AUTH chunk, if chunk requires it save the
9308 			 * offset into the chain for AUTH
9309 			 */
9310 			if ((auth == NULL) &&
9311 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9312 			    stcb->asoc.peer_auth_chunks))) {
9313 				m = sctp_add_auth_chunk(m, &endofchain,
9314 				    &auth, &auth_offset,
9315 				    stcb,
9316 				    chk->rec.chunk_id.id);
9317 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9318 			}
9319 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9320 			break;
9321 		}
9322 	}
9323 	one_chunk = 0;
9324 	cnt_thru = 0;
9325 	/* do we have control chunks to retransmit? */
9326 	if (m != NULL) {
9327 		/* Start a timer no matter if we suceed or fail */
9328 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9329 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9330 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF)
9331 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9332 		chk->snd_count++;	/* update our count */
9333 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9334 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9335 		    auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9336 		    no_fragmentflg, 0, 0,
9337 		    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9338 		    chk->whoTo->port, NULL,
9339 		    0, 0,
9340 		    so_locked))) {
9341 			SCTP_STAT_INCR(sctps_lowlevelerr);
9342 			return (error);
9343 		}
9344 		endofchain = NULL;
9345 		auth = NULL;
9346 		auth_offset = 0;
9347 		/*
9348 		 * We don't want to mark the net->sent time here since this
9349 		 * we use this for HB and retrans cannot measure RTT
9350 		 */
9351 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9352 		*cnt_out += 1;
9353 		chk->sent = SCTP_DATAGRAM_SENT;
9354 		sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9355 		if (fwd_tsn == 0) {
9356 			return (0);
9357 		} else {
9358 			/* Clean up the fwd-tsn list */
9359 			sctp_clean_up_ctl(stcb, asoc, so_locked);
9360 			return (0);
9361 		}
9362 	}
9363 	/*
9364 	 * Ok, it is just data retransmission we need to do or that and a
9365 	 * fwd-tsn with it all.
9366 	 */
9367 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
9368 		return (SCTP_RETRAN_DONE);
9369 	}
9370 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
9371 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
9372 		/* not yet open, resend the cookie and that is it */
9373 		return (1);
9374 	}
9375 #ifdef SCTP_AUDITING_ENABLED
9376 	sctp_auditing(20, inp, stcb, NULL);
9377 #endif
9378 	data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9379 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9380 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
9381 			/* No, not sent to this net or not ready for rtx */
9382 			continue;
9383 		}
9384 		if (chk->data == NULL) {
9385 			SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9386 			    chk->rec.data.TSN_seq, chk->snd_count, chk->sent);
9387 			continue;
9388 		}
9389 		if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9390 		    (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9391 			/* Gak, we have exceeded max unlucky retran, abort! */
9392 			SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
9393 			    chk->snd_count,
9394 			    SCTP_BASE_SYSCTL(sctp_max_retran_chunk));
9395 			atomic_add_int(&stcb->asoc.refcnt, 1);
9396 			sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked);
9397 			SCTP_TCB_LOCK(stcb);
9398 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
9399 			return (SCTP_RETRAN_EXIT);
9400 		}
9401 		/* pick up the net */
9402 		net = chk->whoTo;
9403 		switch (net->ro._l_addr.sa.sa_family) {
9404 #ifdef INET
9405 		case AF_INET:
9406 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9407 			break;
9408 #endif
9409 #ifdef INET6
9410 		case AF_INET6:
9411 			mtu = net->mtu - SCTP_MIN_OVERHEAD;
9412 			break;
9413 #endif
9414 		default:
9415 			/* TSNH */
9416 			mtu = net->mtu;
9417 			break;
9418 		}
9419 
9420 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9421 			/* No room in peers rwnd */
9422 			uint32_t tsn;
9423 
9424 			tsn = asoc->last_acked_seq + 1;
9425 			if (tsn == chk->rec.data.TSN_seq) {
9426 				/*
9427 				 * we make a special exception for this
9428 				 * case. The peer has no rwnd but is missing
9429 				 * the lowest chunk.. which is probably what
9430 				 * is holding up the rwnd.
9431 				 */
9432 				goto one_chunk_around;
9433 			}
9434 			return (1);
9435 		}
9436 one_chunk_around:
9437 		if (asoc->peers_rwnd < mtu) {
9438 			one_chunk = 1;
9439 			if ((asoc->peers_rwnd == 0) &&
9440 			    (asoc->total_flight == 0)) {
9441 				chk->window_probe = 1;
9442 				chk->whoTo->window_probe = 1;
9443 			}
9444 		}
9445 #ifdef SCTP_AUDITING_ENABLED
9446 		sctp_audit_log(0xC3, 2);
9447 #endif
9448 		bundle_at = 0;
9449 		m = NULL;
9450 		net->fast_retran_ip = 0;
9451 		if (chk->rec.data.doing_fast_retransmit == 0) {
9452 			/*
9453 			 * if no FR in progress skip destination that have
9454 			 * flight_size > cwnd.
9455 			 */
9456 			if (net->flight_size >= net->cwnd) {
9457 				continue;
9458 			}
9459 		} else {
9460 			/*
9461 			 * Mark the destination net to have FR recovery
9462 			 * limits put on it.
9463 			 */
9464 			*fr_done = 1;
9465 			net->fast_retran_ip = 1;
9466 		}
9467 
9468 		/*
9469 		 * if no AUTH is yet included and this chunk requires it,
9470 		 * make sure to account for it.  We don't apply the size
9471 		 * until the AUTH chunk is actually added below in case
9472 		 * there is no room for this chunk.
9473 		 */
9474 		if (data_auth_reqd && (auth == NULL)) {
9475 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9476 		} else
9477 			dmtu = 0;
9478 
9479 		if ((chk->send_size <= (mtu - dmtu)) ||
9480 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9481 			/* ok we will add this one */
9482 			if (data_auth_reqd) {
9483 				if (auth == NULL) {
9484 					m = sctp_add_auth_chunk(m,
9485 					    &endofchain,
9486 					    &auth,
9487 					    &auth_offset,
9488 					    stcb,
9489 					    SCTP_DATA);
9490 					auth_keyid = chk->auth_keyid;
9491 					override_ok = 0;
9492 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9493 				} else if (override_ok) {
9494 					auth_keyid = chk->auth_keyid;
9495 					override_ok = 0;
9496 				} else if (chk->auth_keyid != auth_keyid) {
9497 					/* different keyid, so done bundling */
9498 					break;
9499 				}
9500 			}
9501 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9502 			if (m == NULL) {
9503 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9504 				return (ENOMEM);
9505 			}
9506 			/* Do clear IP_DF ? */
9507 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9508 				no_fragmentflg = 0;
9509 			}
9510 			/* upate our MTU size */
9511 			if (mtu > (chk->send_size + dmtu))
9512 				mtu -= (chk->send_size + dmtu);
9513 			else
9514 				mtu = 0;
9515 			data_list[bundle_at++] = chk;
9516 			if (one_chunk && (asoc->total_flight <= 0)) {
9517 				SCTP_STAT_INCR(sctps_windowprobed);
9518 			}
9519 		}
9520 		if (one_chunk == 0) {
9521 			/*
9522 			 * now are there anymore forward from chk to pick
9523 			 * up?
9524 			 */
9525 			for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9526 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9527 					/* Nope, not for retran */
9528 					continue;
9529 				}
9530 				if (fwd->whoTo != net) {
9531 					/* Nope, not the net in question */
9532 					continue;
9533 				}
9534 				if (data_auth_reqd && (auth == NULL)) {
9535 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9536 				} else
9537 					dmtu = 0;
9538 				if (fwd->send_size <= (mtu - dmtu)) {
9539 					if (data_auth_reqd) {
9540 						if (auth == NULL) {
9541 							m = sctp_add_auth_chunk(m,
9542 							    &endofchain,
9543 							    &auth,
9544 							    &auth_offset,
9545 							    stcb,
9546 							    SCTP_DATA);
9547 							auth_keyid = fwd->auth_keyid;
9548 							override_ok = 0;
9549 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9550 						} else if (override_ok) {
9551 							auth_keyid = fwd->auth_keyid;
9552 							override_ok = 0;
9553 						} else if (fwd->auth_keyid != auth_keyid) {
9554 							/*
9555 							 * different keyid,
9556 							 * so done bundling
9557 							 */
9558 							break;
9559 						}
9560 					}
9561 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9562 					if (m == NULL) {
9563 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9564 						return (ENOMEM);
9565 					}
9566 					/* Do clear IP_DF ? */
9567 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9568 						no_fragmentflg = 0;
9569 					}
9570 					/* upate our MTU size */
9571 					if (mtu > (fwd->send_size + dmtu))
9572 						mtu -= (fwd->send_size + dmtu);
9573 					else
9574 						mtu = 0;
9575 					data_list[bundle_at++] = fwd;
9576 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9577 						break;
9578 					}
9579 				} else {
9580 					/* can't fit so we are done */
9581 					break;
9582 				}
9583 			}
9584 		}
9585 		/* Is there something to send for this destination? */
9586 		if (m) {
9587 			/*
9588 			 * No matter if we fail/or suceed we should start a
9589 			 * timer. A failure is like a lost IP packet :-)
9590 			 */
9591 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9592 				/*
9593 				 * no timer running on this destination
9594 				 * restart it.
9595 				 */
9596 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9597 				tmr_started = 1;
9598 			}
9599 			/* Now lets send it, if there is anything to send :> */
9600 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9601 			    (struct sockaddr *)&net->ro._l_addr, m,
9602 			    auth_offset, auth, auth_keyid,
9603 			    no_fragmentflg, 0, 0,
9604 			    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9605 			    net->port, NULL,
9606 			    0, 0,
9607 			    so_locked))) {
9608 				/* error, we could not output */
9609 				SCTP_STAT_INCR(sctps_lowlevelerr);
9610 				return (error);
9611 			}
9612 			endofchain = NULL;
9613 			auth = NULL;
9614 			auth_offset = 0;
9615 			/* For HB's */
9616 			/*
9617 			 * We don't want to mark the net->sent time here
9618 			 * since this we use this for HB and retrans cannot
9619 			 * measure RTT
9620 			 */
9621 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9622 
9623 			/* For auto-close */
9624 			cnt_thru++;
9625 			if (*now_filled == 0) {
9626 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9627 				*now = asoc->time_last_sent;
9628 				*now_filled = 1;
9629 			} else {
9630 				asoc->time_last_sent = *now;
9631 			}
9632 			*cnt_out += bundle_at;
9633 #ifdef SCTP_AUDITING_ENABLED
9634 			sctp_audit_log(0xC4, bundle_at);
9635 #endif
9636 			if (bundle_at) {
9637 				tsns_sent = data_list[0]->rec.data.TSN_seq;
9638 			}
9639 			for (i = 0; i < bundle_at; i++) {
9640 				SCTP_STAT_INCR(sctps_sendretransdata);
9641 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
9642 				/*
9643 				 * When we have a revoked data, and we
9644 				 * retransmit it, then we clear the revoked
9645 				 * flag since this flag dictates if we
9646 				 * subtracted from the fs
9647 				 */
9648 				if (data_list[i]->rec.data.chunk_was_revoked) {
9649 					/* Deflate the cwnd */
9650 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9651 					data_list[i]->rec.data.chunk_was_revoked = 0;
9652 				}
9653 				data_list[i]->snd_count++;
9654 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9655 				/* record the time */
9656 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
9657 				if (data_list[i]->book_size_scale) {
9658 					/*
9659 					 * need to double the book size on
9660 					 * this one
9661 					 */
9662 					data_list[i]->book_size_scale = 0;
9663 					/*
9664 					 * Since we double the booksize, we
9665 					 * must also double the output queue
9666 					 * size, since this get shrunk when
9667 					 * we free by this amount.
9668 					 */
9669 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9670 					data_list[i]->book_size *= 2;
9671 
9672 
9673 				} else {
9674 					if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9675 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9676 						    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9677 					}
9678 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9679 					    (uint32_t) (data_list[i]->send_size +
9680 					    SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9681 				}
9682 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9683 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9684 					    data_list[i]->whoTo->flight_size,
9685 					    data_list[i]->book_size,
9686 					    (uintptr_t) data_list[i]->whoTo,
9687 					    data_list[i]->rec.data.TSN_seq);
9688 				}
9689 				sctp_flight_size_increase(data_list[i]);
9690 				sctp_total_flight_increase(stcb, data_list[i]);
9691 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9692 					/* SWS sender side engages */
9693 					asoc->peers_rwnd = 0;
9694 				}
9695 				if ((i == 0) &&
9696 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
9697 					SCTP_STAT_INCR(sctps_sendfastretrans);
9698 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9699 					    (tmr_started == 0)) {
9700 						/*-
9701 						 * ok we just fast-retrans'd
9702 						 * the lowest TSN, i.e the
9703 						 * first on the list. In
9704 						 * this case we want to give
9705 						 * some more time to get a
9706 						 * SACK back without a
9707 						 * t3-expiring.
9708 						 */
9709 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9710 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
9711 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9712 					}
9713 				}
9714 			}
9715 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9716 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9717 			}
9718 #ifdef SCTP_AUDITING_ENABLED
9719 			sctp_auditing(21, inp, stcb, NULL);
9720 #endif
9721 		} else {
9722 			/* None will fit */
9723 			return (1);
9724 		}
9725 		if (asoc->sent_queue_retran_cnt <= 0) {
9726 			/* all done we have no more to retran */
9727 			asoc->sent_queue_retran_cnt = 0;
9728 			break;
9729 		}
9730 		if (one_chunk) {
9731 			/* No more room in rwnd */
9732 			return (1);
9733 		}
9734 		/* stop the for loop here. we sent out a packet */
9735 		break;
9736 	}
9737 	return (0);
9738 }
9739 
9740 static void
9741 sctp_timer_validation(struct sctp_inpcb *inp,
9742     struct sctp_tcb *stcb,
9743     struct sctp_association *asoc)
9744 {
9745 	struct sctp_nets *net;
9746 
9747 	/* Validate that a timer is running somewhere */
9748 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9749 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9750 			/* Here is a timer */
9751 			return;
9752 		}
9753 	}
9754 	SCTP_TCB_LOCK_ASSERT(stcb);
9755 	/* Gak, we did not have a timer somewhere */
9756 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
9757 	if (asoc->alternate) {
9758 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
9759 	} else {
9760 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
9761 	}
9762 	return;
9763 }
9764 
9765 void
9766 sctp_chunk_output(struct sctp_inpcb *inp,
9767     struct sctp_tcb *stcb,
9768     int from_where,
9769     int so_locked
9770 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9771     SCTP_UNUSED
9772 #endif
9773 )
9774 {
9775 	/*-
9776 	 * Ok this is the generic chunk service queue. we must do the
9777 	 * following:
9778 	 * - See if there are retransmits pending, if so we must
9779 	 *   do these first.
9780 	 * - Service the stream queue that is next, moving any
9781 	 *   message (note I must get a complete message i.e.
9782 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
9783 	 *   TSN's
9784 	 * - Check to see if the cwnd/rwnd allows any output, if so we
9785 	 *   go ahead and fomulate and send the low level chunks. Making sure
9786 	 *   to combine any control in the control chunk queue also.
9787 	 */
9788 	struct sctp_association *asoc;
9789 	struct sctp_nets *net;
9790 	int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0;
9791 	unsigned int burst_cnt = 0;
9792 	struct timeval now;
9793 	int now_filled = 0;
9794 	int nagle_on;
9795 	int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
9796 	int un_sent = 0;
9797 	int fr_done;
9798 	unsigned int tot_frs = 0;
9799 
9800 	asoc = &stcb->asoc;
9801 	/* The Nagle algorithm is only applied when handling a send call. */
9802 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
9803 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
9804 			nagle_on = 0;
9805 		} else {
9806 			nagle_on = 1;
9807 		}
9808 	} else {
9809 		nagle_on = 0;
9810 	}
9811 	SCTP_TCB_LOCK_ASSERT(stcb);
9812 
9813 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
9814 
9815 	if ((un_sent <= 0) &&
9816 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
9817 	    (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
9818 	    (asoc->sent_queue_retran_cnt == 0)) {
9819 		/* Nothing to do unless there is something to be sent left */
9820 		return;
9821 	}
9822 	/*
9823 	 * Do we have something to send, data or control AND a sack timer
9824 	 * running, if so piggy-back the sack.
9825 	 */
9826 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
9827 		sctp_send_sack(stcb, so_locked);
9828 		(void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
9829 	}
9830 	while (asoc->sent_queue_retran_cnt) {
9831 		/*-
9832 		 * Ok, it is retransmission time only, we send out only ONE
9833 		 * packet with a single call off to the retran code.
9834 		 */
9835 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
9836 			/*-
9837 			 * Special hook for handling cookiess discarded
9838 			 * by peer that carried data. Send cookie-ack only
9839 			 * and then the next call with get the retran's.
9840 			 */
9841 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9842 			    from_where,
9843 			    &now, &now_filled, frag_point, so_locked);
9844 			return;
9845 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
9846 			/* if its not from a HB then do it */
9847 			fr_done = 0;
9848 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
9849 			if (fr_done) {
9850 				tot_frs++;
9851 			}
9852 		} else {
9853 			/*
9854 			 * its from any other place, we don't allow retran
9855 			 * output (only control)
9856 			 */
9857 			ret = 1;
9858 		}
9859 		if (ret > 0) {
9860 			/* Can't send anymore */
9861 			/*-
9862 			 * now lets push out control by calling med-level
9863 			 * output once. this assures that we WILL send HB's
9864 			 * if queued too.
9865 			 */
9866 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9867 			    from_where,
9868 			    &now, &now_filled, frag_point, so_locked);
9869 #ifdef SCTP_AUDITING_ENABLED
9870 			sctp_auditing(8, inp, stcb, NULL);
9871 #endif
9872 			sctp_timer_validation(inp, stcb, asoc);
9873 			return;
9874 		}
9875 		if (ret < 0) {
9876 			/*-
9877 			 * The count was off.. retran is not happening so do
9878 			 * the normal retransmission.
9879 			 */
9880 #ifdef SCTP_AUDITING_ENABLED
9881 			sctp_auditing(9, inp, stcb, NULL);
9882 #endif
9883 			if (ret == SCTP_RETRAN_EXIT) {
9884 				return;
9885 			}
9886 			break;
9887 		}
9888 		if (from_where == SCTP_OUTPUT_FROM_T3) {
9889 			/* Only one transmission allowed out of a timeout */
9890 #ifdef SCTP_AUDITING_ENABLED
9891 			sctp_auditing(10, inp, stcb, NULL);
9892 #endif
9893 			/* Push out any control */
9894 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
9895 			    &now, &now_filled, frag_point, so_locked);
9896 			return;
9897 		}
9898 		if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
9899 			/* Hit FR burst limit */
9900 			return;
9901 		}
9902 		if ((num_out == 0) && (ret == 0)) {
9903 			/* No more retrans to send */
9904 			break;
9905 		}
9906 	}
9907 #ifdef SCTP_AUDITING_ENABLED
9908 	sctp_auditing(12, inp, stcb, NULL);
9909 #endif
9910 	/* Check for bad destinations, if they exist move chunks around. */
9911 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9912 		if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
9913 			/*-
9914 			 * if possible move things off of this address we
9915 			 * still may send below due to the dormant state but
9916 			 * we try to find an alternate address to send to
9917 			 * and if we have one we move all queued data on the
9918 			 * out wheel to this alternate address.
9919 			 */
9920 			if (net->ref_count > 1)
9921 				sctp_move_chunks_from_net(stcb, net);
9922 		} else {
9923 			/*-
9924 			 * if ((asoc->sat_network) || (net->addr_is_local))
9925 			 * { burst_limit = asoc->max_burst *
9926 			 * SCTP_SAT_NETWORK_BURST_INCR; }
9927 			 */
9928 			if (asoc->max_burst > 0) {
9929 				if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
9930 					if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
9931 						/*
9932 						 * JRS - Use the congestion
9933 						 * control given in the
9934 						 * congestion control module
9935 						 */
9936 						asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
9937 						if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9938 							sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
9939 						}
9940 						SCTP_STAT_INCR(sctps_maxburstqueued);
9941 					}
9942 					net->fast_retran_ip = 0;
9943 				} else {
9944 					if (net->flight_size == 0) {
9945 						/*
9946 						 * Should be decaying the
9947 						 * cwnd here
9948 						 */
9949 						;
9950 					}
9951 				}
9952 			}
9953 		}
9954 
9955 	}
9956 	burst_cnt = 0;
9957 	do {
9958 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
9959 		    &reason_code, 0, from_where,
9960 		    &now, &now_filled, frag_point, so_locked);
9961 		if (error) {
9962 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
9963 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9964 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
9965 			}
9966 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9967 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
9968 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
9969 			}
9970 			break;
9971 		}
9972 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
9973 
9974 		tot_out += num_out;
9975 		burst_cnt++;
9976 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9977 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
9978 			if (num_out == 0) {
9979 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
9980 			}
9981 		}
9982 		if (nagle_on) {
9983 			/*
9984 			 * When the Nagle algorithm is used, look at how
9985 			 * much is unsent, then if its smaller than an MTU
9986 			 * and we have data in flight we stop, except if we
9987 			 * are handling a fragmented user message.
9988 			 */
9989 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
9990 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
9991 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
9992 			    (stcb->asoc.total_flight > 0) &&
9993 			    ((stcb->asoc.locked_on_sending == NULL) ||
9994 			    sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
9995 				break;
9996 			}
9997 		}
9998 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
9999 		    TAILQ_EMPTY(&asoc->send_queue) &&
10000 		    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
10001 			/* Nothing left to send */
10002 			break;
10003 		}
10004 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10005 			/* Nothing left to send */
10006 			break;
10007 		}
10008 	} while (num_out &&
10009 	    ((asoc->max_burst == 0) ||
10010 	    SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10011 	    (burst_cnt < asoc->max_burst)));
10012 
10013 	if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10014 		if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10015 			SCTP_STAT_INCR(sctps_maxburstqueued);
10016 			asoc->burst_limit_applied = 1;
10017 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10018 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10019 			}
10020 		} else {
10021 			asoc->burst_limit_applied = 0;
10022 		}
10023 	}
10024 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10025 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10026 	}
10027 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10028 	    tot_out);
10029 
10030 	/*-
10031 	 * Now we need to clean up the control chunk chain if a ECNE is on
10032 	 * it. It must be marked as UNSENT again so next call will continue
10033 	 * to send it until such time that we get a CWR, to remove it.
10034 	 */
10035 	if (stcb->asoc.ecn_echo_cnt_onq)
10036 		sctp_fix_ecn_echo(asoc);
10037 	return;
10038 }
10039 
10040 
10041 int
10042 sctp_output(
10043     struct sctp_inpcb *inp,
10044     struct mbuf *m,
10045     struct sockaddr *addr,
10046     struct mbuf *control,
10047     struct thread *p,
10048     int flags)
10049 {
10050 	if (inp == NULL) {
10051 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10052 		return (EINVAL);
10053 	}
10054 	if (inp->sctp_socket == NULL) {
10055 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10056 		return (EINVAL);
10057 	}
10058 	return (sctp_sosend(inp->sctp_socket,
10059 	    addr,
10060 	    (struct uio *)NULL,
10061 	    m,
10062 	    control,
10063 	    flags, p
10064 	    ));
10065 }
10066 
10067 void
10068 send_forward_tsn(struct sctp_tcb *stcb,
10069     struct sctp_association *asoc)
10070 {
10071 	struct sctp_tmit_chunk *chk;
10072 	struct sctp_forward_tsn_chunk *fwdtsn;
10073 	uint32_t advance_peer_ack_point;
10074 
10075 	SCTP_TCB_LOCK_ASSERT(stcb);
10076 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10077 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10078 			/* mark it to unsent */
10079 			chk->sent = SCTP_DATAGRAM_UNSENT;
10080 			chk->snd_count = 0;
10081 			/* Do we correct its output location? */
10082 			if (chk->whoTo) {
10083 				sctp_free_remote_addr(chk->whoTo);
10084 				chk->whoTo = NULL;
10085 			}
10086 			goto sctp_fill_in_rest;
10087 		}
10088 	}
10089 	/* Ok if we reach here we must build one */
10090 	sctp_alloc_a_chunk(stcb, chk);
10091 	if (chk == NULL) {
10092 		return;
10093 	}
10094 	asoc->fwd_tsn_cnt++;
10095 	chk->copy_by_ref = 0;
10096 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10097 	chk->rec.chunk_id.can_take_data = 0;
10098 	chk->asoc = asoc;
10099 	chk->whoTo = NULL;
10100 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
10101 	if (chk->data == NULL) {
10102 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10103 		return;
10104 	}
10105 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10106 	chk->sent = SCTP_DATAGRAM_UNSENT;
10107 	chk->snd_count = 0;
10108 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10109 	asoc->ctrl_queue_cnt++;
10110 sctp_fill_in_rest:
10111 	/*-
10112 	 * Here we go through and fill out the part that deals with
10113 	 * stream/seq of the ones we skip.
10114 	 */
10115 	SCTP_BUF_LEN(chk->data) = 0;
10116 	{
10117 		struct sctp_tmit_chunk *at, *tp1, *last;
10118 		struct sctp_strseq *strseq;
10119 		unsigned int cnt_of_space, i, ovh;
10120 		unsigned int space_needed;
10121 		unsigned int cnt_of_skipped = 0;
10122 
10123 		TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10124 			if ((at->sent != SCTP_FORWARD_TSN_SKIP) &&
10125 			    (at->sent != SCTP_DATAGRAM_NR_ACKED)) {
10126 				/* no more to look at */
10127 				break;
10128 			}
10129 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10130 				/* We don't report these */
10131 				continue;
10132 			}
10133 			cnt_of_skipped++;
10134 		}
10135 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10136 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
10137 
10138 		cnt_of_space = M_TRAILINGSPACE(chk->data);
10139 
10140 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10141 			ovh = SCTP_MIN_OVERHEAD;
10142 		} else {
10143 			ovh = SCTP_MIN_V4_OVERHEAD;
10144 		}
10145 		if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10146 			/* trim to a mtu size */
10147 			cnt_of_space = asoc->smallest_mtu - ovh;
10148 		}
10149 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10150 			sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10151 			    0xff, 0, cnt_of_skipped,
10152 			    asoc->advanced_peer_ack_point);
10153 
10154 		}
10155 		advance_peer_ack_point = asoc->advanced_peer_ack_point;
10156 		if (cnt_of_space < space_needed) {
10157 			/*-
10158 			 * ok we must trim down the chunk by lowering the
10159 			 * advance peer ack point.
10160 			 */
10161 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10162 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10163 				    0xff, 0xff, cnt_of_space,
10164 				    space_needed);
10165 			}
10166 			cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10167 			cnt_of_skipped /= sizeof(struct sctp_strseq);
10168 			/*-
10169 			 * Go through and find the TSN that will be the one
10170 			 * we report.
10171 			 */
10172 			at = TAILQ_FIRST(&asoc->sent_queue);
10173 			if (at != NULL) {
10174 				for (i = 0; i < cnt_of_skipped; i++) {
10175 					tp1 = TAILQ_NEXT(at, sctp_next);
10176 					if (tp1 == NULL) {
10177 						break;
10178 					}
10179 					at = tp1;
10180 				}
10181 			}
10182 			if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10183 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10184 				    0xff, cnt_of_skipped, at->rec.data.TSN_seq,
10185 				    asoc->advanced_peer_ack_point);
10186 			}
10187 			last = at;
10188 			/*-
10189 			 * last now points to last one I can report, update
10190 			 * peer ack point
10191 			 */
10192 			if (last)
10193 				advance_peer_ack_point = last->rec.data.TSN_seq;
10194 			space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10195 			    cnt_of_skipped * sizeof(struct sctp_strseq);
10196 		}
10197 		chk->send_size = space_needed;
10198 		/* Setup the chunk */
10199 		fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10200 		fwdtsn->ch.chunk_length = htons(chk->send_size);
10201 		fwdtsn->ch.chunk_flags = 0;
10202 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10203 		fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10204 		SCTP_BUF_LEN(chk->data) = chk->send_size;
10205 		fwdtsn++;
10206 		/*-
10207 		 * Move pointer to after the fwdtsn and transfer to the
10208 		 * strseq pointer.
10209 		 */
10210 		strseq = (struct sctp_strseq *)fwdtsn;
10211 		/*-
10212 		 * Now populate the strseq list. This is done blindly
10213 		 * without pulling out duplicate stream info. This is
10214 		 * inefficent but won't harm the process since the peer will
10215 		 * look at these in sequence and will thus release anything.
10216 		 * It could mean we exceed the PMTU and chop off some that
10217 		 * we could have included.. but this is unlikely (aka 1432/4
10218 		 * would mean 300+ stream seq's would have to be reported in
10219 		 * one FWD-TSN. With a bit of work we can later FIX this to
10220 		 * optimize and pull out duplcates.. but it does add more
10221 		 * overhead. So for now... not!
10222 		 */
10223 		at = TAILQ_FIRST(&asoc->sent_queue);
10224 		for (i = 0; i < cnt_of_skipped; i++) {
10225 			tp1 = TAILQ_NEXT(at, sctp_next);
10226 			if (tp1 == NULL)
10227 				break;
10228 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10229 				/* We don't report these */
10230 				i--;
10231 				at = tp1;
10232 				continue;
10233 			}
10234 			if (at->rec.data.TSN_seq == advance_peer_ack_point) {
10235 				at->rec.data.fwd_tsn_cnt = 0;
10236 			}
10237 			strseq->stream = ntohs(at->rec.data.stream_number);
10238 			strseq->sequence = ntohs(at->rec.data.stream_seq);
10239 			strseq++;
10240 			at = tp1;
10241 		}
10242 	}
10243 	return;
10244 }
10245 
10246 void
10247 sctp_send_sack(struct sctp_tcb *stcb, int so_locked
10248 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10249     SCTP_UNUSED
10250 #endif
10251 )
10252 {
10253 	/*-
10254 	 * Queue up a SACK or NR-SACK in the control queue.
10255 	 * We must first check to see if a SACK or NR-SACK is
10256 	 * somehow on the control queue.
10257 	 * If so, we will take and and remove the old one.
10258 	 */
10259 	struct sctp_association *asoc;
10260 	struct sctp_tmit_chunk *chk, *a_chk;
10261 	struct sctp_sack_chunk *sack;
10262 	struct sctp_nr_sack_chunk *nr_sack;
10263 	struct sctp_gap_ack_block *gap_descriptor;
10264 	struct sack_track *selector;
10265 	int mergeable = 0;
10266 	int offset;
10267 	caddr_t limit;
10268 	uint32_t *dup;
10269 	int limit_reached = 0;
10270 	unsigned int i, siz, j;
10271 	unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10272 	int num_dups = 0;
10273 	int space_req;
10274 	uint32_t highest_tsn;
10275 	uint8_t flags;
10276 	uint8_t type;
10277 	uint8_t tsn_map;
10278 
10279 	if ((stcb->asoc.sctp_nr_sack_on_off == 1) &&
10280 	    (stcb->asoc.peer_supports_nr_sack == 1)) {
10281 		type = SCTP_NR_SELECTIVE_ACK;
10282 	} else {
10283 		type = SCTP_SELECTIVE_ACK;
10284 	}
10285 	a_chk = NULL;
10286 	asoc = &stcb->asoc;
10287 	SCTP_TCB_LOCK_ASSERT(stcb);
10288 	if (asoc->last_data_chunk_from == NULL) {
10289 		/* Hmm we never received anything */
10290 		return;
10291 	}
10292 	sctp_slide_mapping_arrays(stcb);
10293 	sctp_set_rwnd(stcb, asoc);
10294 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10295 		if (chk->rec.chunk_id.id == type) {
10296 			/* Hmm, found a sack already on queue, remove it */
10297 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10298 			asoc->ctrl_queue_cnt--;
10299 			a_chk = chk;
10300 			if (a_chk->data) {
10301 				sctp_m_freem(a_chk->data);
10302 				a_chk->data = NULL;
10303 			}
10304 			if (a_chk->whoTo) {
10305 				sctp_free_remote_addr(a_chk->whoTo);
10306 				a_chk->whoTo = NULL;
10307 			}
10308 			break;
10309 		}
10310 	}
10311 	if (a_chk == NULL) {
10312 		sctp_alloc_a_chunk(stcb, a_chk);
10313 		if (a_chk == NULL) {
10314 			/* No memory so we drop the idea, and set a timer */
10315 			if (stcb->asoc.delayed_ack) {
10316 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10317 				    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
10318 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10319 				    stcb->sctp_ep, stcb, NULL);
10320 			} else {
10321 				stcb->asoc.send_sack = 1;
10322 			}
10323 			return;
10324 		}
10325 		a_chk->copy_by_ref = 0;
10326 		a_chk->rec.chunk_id.id = type;
10327 		a_chk->rec.chunk_id.can_take_data = 1;
10328 	}
10329 	/* Clear our pkt counts */
10330 	asoc->data_pkts_seen = 0;
10331 
10332 	a_chk->asoc = asoc;
10333 	a_chk->snd_count = 0;
10334 	a_chk->send_size = 0;	/* fill in later */
10335 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
10336 	a_chk->whoTo = NULL;
10337 
10338 	if ((asoc->numduptsns) ||
10339 	    (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) {
10340 		/*-
10341 		 * Ok, we have some duplicates or the destination for the
10342 		 * sack is unreachable, lets see if we can select an
10343 		 * alternate than asoc->last_data_chunk_from
10344 		 */
10345 		if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) &&
10346 		    (asoc->used_alt_onsack > asoc->numnets)) {
10347 			/* We used an alt last time, don't this time */
10348 			a_chk->whoTo = NULL;
10349 		} else {
10350 			asoc->used_alt_onsack++;
10351 			a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10352 		}
10353 		if (a_chk->whoTo == NULL) {
10354 			/* Nope, no alternate */
10355 			a_chk->whoTo = asoc->last_data_chunk_from;
10356 			asoc->used_alt_onsack = 0;
10357 		}
10358 	} else {
10359 		/*
10360 		 * No duplicates so we use the last place we received data
10361 		 * from.
10362 		 */
10363 		asoc->used_alt_onsack = 0;
10364 		a_chk->whoTo = asoc->last_data_chunk_from;
10365 	}
10366 	if (a_chk->whoTo) {
10367 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
10368 	}
10369 	if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10370 		highest_tsn = asoc->highest_tsn_inside_map;
10371 	} else {
10372 		highest_tsn = asoc->highest_tsn_inside_nr_map;
10373 	}
10374 	if (highest_tsn == asoc->cumulative_tsn) {
10375 		/* no gaps */
10376 		if (type == SCTP_SELECTIVE_ACK) {
10377 			space_req = sizeof(struct sctp_sack_chunk);
10378 		} else {
10379 			space_req = sizeof(struct sctp_nr_sack_chunk);
10380 		}
10381 	} else {
10382 		/* gaps get a cluster */
10383 		space_req = MCLBYTES;
10384 	}
10385 	/* Ok now lets formulate a MBUF with our sack */
10386 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA);
10387 	if ((a_chk->data == NULL) ||
10388 	    (a_chk->whoTo == NULL)) {
10389 		/* rats, no mbuf memory */
10390 		if (a_chk->data) {
10391 			/* was a problem with the destination */
10392 			sctp_m_freem(a_chk->data);
10393 			a_chk->data = NULL;
10394 		}
10395 		sctp_free_a_chunk(stcb, a_chk, so_locked);
10396 		/* sa_ignore NO_NULL_CHK */
10397 		if (stcb->asoc.delayed_ack) {
10398 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10399 			    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
10400 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10401 			    stcb->sctp_ep, stcb, NULL);
10402 		} else {
10403 			stcb->asoc.send_sack = 1;
10404 		}
10405 		return;
10406 	}
10407 	/* ok, lets go through and fill it in */
10408 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10409 	space = M_TRAILINGSPACE(a_chk->data);
10410 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10411 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10412 	}
10413 	limit = mtod(a_chk->data, caddr_t);
10414 	limit += space;
10415 
10416 	flags = 0;
10417 
10418 	if ((asoc->sctp_cmt_on_off > 0) &&
10419 	    SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10420 		/*-
10421 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10422 		 * received, then set high bit to 1, else 0. Reset
10423 		 * pkts_rcvd.
10424 		 */
10425 		flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10426 		asoc->cmt_dac_pkts_rcvd = 0;
10427 	}
10428 #ifdef SCTP_ASOCLOG_OF_TSNS
10429 	stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10430 	stcb->asoc.cumack_log_atsnt++;
10431 	if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10432 		stcb->asoc.cumack_log_atsnt = 0;
10433 	}
10434 #endif
10435 	/* reset the readers interpretation */
10436 	stcb->freed_by_sorcv_sincelast = 0;
10437 
10438 	if (type == SCTP_SELECTIVE_ACK) {
10439 		sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10440 		nr_sack = NULL;
10441 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10442 		if (highest_tsn > asoc->mapping_array_base_tsn) {
10443 			siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10444 		} else {
10445 			siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8;
10446 		}
10447 	} else {
10448 		sack = NULL;
10449 		nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10450 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10451 		if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10452 			siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10453 		} else {
10454 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10455 		}
10456 	}
10457 
10458 	if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10459 		offset = 1;
10460 	} else {
10461 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10462 	}
10463 	if (((type == SCTP_SELECTIVE_ACK) &&
10464 	    SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10465 	    ((type == SCTP_NR_SELECTIVE_ACK) &&
10466 	    SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10467 		/* we have a gap .. maybe */
10468 		for (i = 0; i < siz; i++) {
10469 			tsn_map = asoc->mapping_array[i];
10470 			if (type == SCTP_SELECTIVE_ACK) {
10471 				tsn_map |= asoc->nr_mapping_array[i];
10472 			}
10473 			if (i == 0) {
10474 				/*
10475 				 * Clear all bits corresponding to TSNs
10476 				 * smaller or equal to the cumulative TSN.
10477 				 */
10478 				tsn_map &= (~0 << (1 - offset));
10479 			}
10480 			selector = &sack_array[tsn_map];
10481 			if (mergeable && selector->right_edge) {
10482 				/*
10483 				 * Backup, left and right edges were ok to
10484 				 * merge.
10485 				 */
10486 				num_gap_blocks--;
10487 				gap_descriptor--;
10488 			}
10489 			if (selector->num_entries == 0)
10490 				mergeable = 0;
10491 			else {
10492 				for (j = 0; j < selector->num_entries; j++) {
10493 					if (mergeable && selector->right_edge) {
10494 						/*
10495 						 * do a merge by NOT setting
10496 						 * the left side
10497 						 */
10498 						mergeable = 0;
10499 					} else {
10500 						/*
10501 						 * no merge, set the left
10502 						 * side
10503 						 */
10504 						mergeable = 0;
10505 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
10506 					}
10507 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
10508 					num_gap_blocks++;
10509 					gap_descriptor++;
10510 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10511 						/* no more room */
10512 						limit_reached = 1;
10513 						break;
10514 					}
10515 				}
10516 				if (selector->left_edge) {
10517 					mergeable = 1;
10518 				}
10519 			}
10520 			if (limit_reached) {
10521 				/* Reached the limit stop */
10522 				break;
10523 			}
10524 			offset += 8;
10525 		}
10526 	}
10527 	if ((type == SCTP_NR_SELECTIVE_ACK) &&
10528 	    (limit_reached == 0)) {
10529 
10530 		mergeable = 0;
10531 
10532 		if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10533 			siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10534 		} else {
10535 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10536 		}
10537 
10538 		if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10539 			offset = 1;
10540 		} else {
10541 			offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10542 		}
10543 		if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10544 			/* we have a gap .. maybe */
10545 			for (i = 0; i < siz; i++) {
10546 				tsn_map = asoc->nr_mapping_array[i];
10547 				if (i == 0) {
10548 					/*
10549 					 * Clear all bits corresponding to
10550 					 * TSNs smaller or equal to the
10551 					 * cumulative TSN.
10552 					 */
10553 					tsn_map &= (~0 << (1 - offset));
10554 				}
10555 				selector = &sack_array[tsn_map];
10556 				if (mergeable && selector->right_edge) {
10557 					/*
10558 					 * Backup, left and right edges were
10559 					 * ok to merge.
10560 					 */
10561 					num_nr_gap_blocks--;
10562 					gap_descriptor--;
10563 				}
10564 				if (selector->num_entries == 0)
10565 					mergeable = 0;
10566 				else {
10567 					for (j = 0; j < selector->num_entries; j++) {
10568 						if (mergeable && selector->right_edge) {
10569 							/*
10570 							 * do a merge by NOT
10571 							 * setting the left
10572 							 * side
10573 							 */
10574 							mergeable = 0;
10575 						} else {
10576 							/*
10577 							 * no merge, set the
10578 							 * left side
10579 							 */
10580 							mergeable = 0;
10581 							gap_descriptor->start = htons((selector->gaps[j].start + offset));
10582 						}
10583 						gap_descriptor->end = htons((selector->gaps[j].end + offset));
10584 						num_nr_gap_blocks++;
10585 						gap_descriptor++;
10586 						if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10587 							/* no more room */
10588 							limit_reached = 1;
10589 							break;
10590 						}
10591 					}
10592 					if (selector->left_edge) {
10593 						mergeable = 1;
10594 					}
10595 				}
10596 				if (limit_reached) {
10597 					/* Reached the limit stop */
10598 					break;
10599 				}
10600 				offset += 8;
10601 			}
10602 		}
10603 	}
10604 	/* now we must add any dups we are going to report. */
10605 	if ((limit_reached == 0) && (asoc->numduptsns)) {
10606 		dup = (uint32_t *) gap_descriptor;
10607 		for (i = 0; i < asoc->numduptsns; i++) {
10608 			*dup = htonl(asoc->dup_tsns[i]);
10609 			dup++;
10610 			num_dups++;
10611 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10612 				/* no more room */
10613 				break;
10614 			}
10615 		}
10616 		asoc->numduptsns = 0;
10617 	}
10618 	/*
10619 	 * now that the chunk is prepared queue it to the control chunk
10620 	 * queue.
10621 	 */
10622 	if (type == SCTP_SELECTIVE_ACK) {
10623 		a_chk->send_size = sizeof(struct sctp_sack_chunk) +
10624 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10625 		    num_dups * sizeof(int32_t);
10626 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10627 		sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10628 		sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10629 		sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10630 		sack->sack.num_dup_tsns = htons(num_dups);
10631 		sack->ch.chunk_type = type;
10632 		sack->ch.chunk_flags = flags;
10633 		sack->ch.chunk_length = htons(a_chk->send_size);
10634 	} else {
10635 		a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) +
10636 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10637 		    num_dups * sizeof(int32_t);
10638 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10639 		nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10640 		nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10641 		nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10642 		nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10643 		nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10644 		nr_sack->nr_sack.reserved = 0;
10645 		nr_sack->ch.chunk_type = type;
10646 		nr_sack->ch.chunk_flags = flags;
10647 		nr_sack->ch.chunk_length = htons(a_chk->send_size);
10648 	}
10649 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10650 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
10651 	asoc->ctrl_queue_cnt++;
10652 	asoc->send_sack = 0;
10653 	SCTP_STAT_INCR(sctps_sendsacks);
10654 	return;
10655 }
10656 
10657 void
10658 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
10659 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10660     SCTP_UNUSED
10661 #endif
10662 )
10663 {
10664 	struct mbuf *m_abort, *m, *m_last;
10665 	struct mbuf *m_out, *m_end = NULL;
10666 	struct sctp_abort_chunk *abort;
10667 	struct sctp_auth_chunk *auth = NULL;
10668 	struct sctp_nets *net;
10669 	uint32_t vtag;
10670 	uint32_t auth_offset = 0;
10671 	uint16_t cause_len, chunk_len, padding_len;
10672 
10673 	SCTP_TCB_LOCK_ASSERT(stcb);
10674 	/*-
10675 	 * Add an AUTH chunk, if chunk requires it and save the offset into
10676 	 * the chain for AUTH
10677 	 */
10678 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10679 	    stcb->asoc.peer_auth_chunks)) {
10680 		m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10681 		    stcb, SCTP_ABORT_ASSOCIATION);
10682 		SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10683 	} else {
10684 		m_out = NULL;
10685 	}
10686 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER);
10687 	if (m_abort == NULL) {
10688 		if (m_out) {
10689 			sctp_m_freem(m_out);
10690 		}
10691 		if (operr) {
10692 			sctp_m_freem(operr);
10693 		}
10694 		return;
10695 	}
10696 	/* link in any error */
10697 	SCTP_BUF_NEXT(m_abort) = operr;
10698 	cause_len = 0;
10699 	m_last = NULL;
10700 	for (m = operr; m; m = SCTP_BUF_NEXT(m)) {
10701 		cause_len += (uint16_t) SCTP_BUF_LEN(m);
10702 		if (SCTP_BUF_NEXT(m) == NULL) {
10703 			m_last = m;
10704 		}
10705 	}
10706 	SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk);
10707 	chunk_len = (uint16_t) sizeof(struct sctp_abort_chunk) + cause_len;
10708 	padding_len = SCTP_SIZE32(chunk_len) - chunk_len;
10709 	if (m_out == NULL) {
10710 		/* NO Auth chunk prepended, so reserve space in front */
10711 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10712 		m_out = m_abort;
10713 	} else {
10714 		/* Put AUTH chunk at the front of the chain */
10715 		SCTP_BUF_NEXT(m_end) = m_abort;
10716 	}
10717 	if (stcb->asoc.alternate) {
10718 		net = stcb->asoc.alternate;
10719 	} else {
10720 		net = stcb->asoc.primary_destination;
10721 	}
10722 	/* Fill in the ABORT chunk header. */
10723 	abort = mtod(m_abort, struct sctp_abort_chunk *);
10724 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10725 	if (stcb->asoc.peer_vtag == 0) {
10726 		/* This happens iff the assoc is in COOKIE-WAIT state. */
10727 		vtag = stcb->asoc.my_vtag;
10728 		abort->ch.chunk_flags = SCTP_HAD_NO_TCB;
10729 	} else {
10730 		vtag = stcb->asoc.peer_vtag;
10731 		abort->ch.chunk_flags = 0;
10732 	}
10733 	abort->ch.chunk_length = htons(chunk_len);
10734 	/* Add padding, if necessary. */
10735 	if (padding_len > 0) {
10736 		if ((m_last == NULL) || sctp_add_pad_tombuf(m_last, padding_len)) {
10737 			sctp_m_freem(m_out);
10738 			return;
10739 		}
10740 	}
10741 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10742 	    (struct sockaddr *)&net->ro._l_addr,
10743 	    m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
10744 	    stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag),
10745 	    stcb->asoc.primary_destination->port, NULL,
10746 	    0, 0,
10747 	    so_locked);
10748 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10749 }
10750 
10751 void
10752 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
10753     struct sctp_nets *net,
10754     int reflect_vtag)
10755 {
10756 	/* formulate and SEND a SHUTDOWN-COMPLETE */
10757 	struct mbuf *m_shutdown_comp;
10758 	struct sctp_shutdown_complete_chunk *shutdown_complete;
10759 	uint32_t vtag;
10760 	uint8_t flags;
10761 
10762 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
10763 	if (m_shutdown_comp == NULL) {
10764 		/* no mbuf's */
10765 		return;
10766 	}
10767 	if (reflect_vtag) {
10768 		flags = SCTP_HAD_NO_TCB;
10769 		vtag = stcb->asoc.my_vtag;
10770 	} else {
10771 		flags = 0;
10772 		vtag = stcb->asoc.peer_vtag;
10773 	}
10774 	shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
10775 	shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
10776 	shutdown_complete->ch.chunk_flags = flags;
10777 	shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
10778 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
10779 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10780 	    (struct sockaddr *)&net->ro._l_addr,
10781 	    m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
10782 	    stcb->sctp_ep->sctp_lport, stcb->rport,
10783 	    htonl(vtag),
10784 	    net->port, NULL,
10785 	    0, 0,
10786 	    SCTP_SO_NOT_LOCKED);
10787 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10788 	return;
10789 }
10790 
10791 static void
10792 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
10793     struct sctphdr *sh, uint32_t vtag,
10794     uint8_t type, struct mbuf *cause,
10795     uint8_t use_mflowid, uint32_t mflowid,
10796     uint32_t vrf_id, uint16_t port)
10797 {
10798 	struct mbuf *o_pak;
10799 	struct mbuf *mout;
10800 	struct sctphdr *shout;
10801 	struct sctp_chunkhdr *ch;
10802 	struct udphdr *udp;
10803 	int len, cause_len, padding_len, ret;
10804 
10805 #ifdef INET
10806 	struct sockaddr_in *src_sin, *dst_sin;
10807 	struct ip *ip;
10808 
10809 #endif
10810 #ifdef INET6
10811 	struct sockaddr_in6 *src_sin6, *dst_sin6;
10812 	struct ip6_hdr *ip6;
10813 
10814 #endif
10815 
10816 	/* Compute the length of the cause and add final padding. */
10817 	cause_len = 0;
10818 	if (cause != NULL) {
10819 		struct mbuf *m_at, *m_last = NULL;
10820 
10821 		for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
10822 			if (SCTP_BUF_NEXT(m_at) == NULL)
10823 				m_last = m_at;
10824 			cause_len += SCTP_BUF_LEN(m_at);
10825 		}
10826 		padding_len = cause_len % 4;
10827 		if (padding_len != 0) {
10828 			padding_len = 4 - padding_len;
10829 		}
10830 		if (padding_len != 0) {
10831 			if (sctp_add_pad_tombuf(m_last, padding_len)) {
10832 				sctp_m_freem(cause);
10833 				return;
10834 			}
10835 		}
10836 	} else {
10837 		padding_len = 0;
10838 	}
10839 	/* Get an mbuf for the header. */
10840 	len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
10841 	switch (dst->sa_family) {
10842 #ifdef INET
10843 	case AF_INET:
10844 		len += sizeof(struct ip);
10845 		break;
10846 #endif
10847 #ifdef INET6
10848 	case AF_INET6:
10849 		len += sizeof(struct ip6_hdr);
10850 		break;
10851 #endif
10852 	default:
10853 		break;
10854 	}
10855 	if (port) {
10856 		len += sizeof(struct udphdr);
10857 	}
10858 	mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA);
10859 	if (mout == NULL) {
10860 		if (cause) {
10861 			sctp_m_freem(cause);
10862 		}
10863 		return;
10864 	}
10865 	SCTP_BUF_RESV_UF(mout, max_linkhdr);
10866 	SCTP_BUF_LEN(mout) = len;
10867 	SCTP_BUF_NEXT(mout) = cause;
10868 	if (use_mflowid != 0) {
10869 		mout->m_pkthdr.flowid = mflowid;
10870 		mout->m_flags |= M_FLOWID;
10871 	}
10872 #ifdef INET
10873 	ip = NULL;
10874 #endif
10875 #ifdef INET6
10876 	ip6 = NULL;
10877 #endif
10878 	switch (dst->sa_family) {
10879 #ifdef INET
10880 	case AF_INET:
10881 		src_sin = (struct sockaddr_in *)src;
10882 		dst_sin = (struct sockaddr_in *)dst;
10883 		ip = mtod(mout, struct ip *);
10884 		ip->ip_v = IPVERSION;
10885 		ip->ip_hl = (sizeof(struct ip) >> 2);
10886 		ip->ip_tos = 0;
10887 		ip->ip_id = ip_newid();
10888 		ip->ip_off = 0;
10889 		ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
10890 		if (port) {
10891 			ip->ip_p = IPPROTO_UDP;
10892 		} else {
10893 			ip->ip_p = IPPROTO_SCTP;
10894 		}
10895 		ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
10896 		ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
10897 		ip->ip_sum = 0;
10898 		len = sizeof(struct ip);
10899 		shout = (struct sctphdr *)((caddr_t)ip + len);
10900 		break;
10901 #endif
10902 #ifdef INET6
10903 	case AF_INET6:
10904 		src_sin6 = (struct sockaddr_in6 *)src;
10905 		dst_sin6 = (struct sockaddr_in6 *)dst;
10906 		ip6 = mtod(mout, struct ip6_hdr *);
10907 		ip6->ip6_flow = htonl(0x60000000);
10908 		if (V_ip6_auto_flowlabel) {
10909 			ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
10910 		}
10911 		ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
10912 		if (port) {
10913 			ip6->ip6_nxt = IPPROTO_UDP;
10914 		} else {
10915 			ip6->ip6_nxt = IPPROTO_SCTP;
10916 		}
10917 		ip6->ip6_src = dst_sin6->sin6_addr;
10918 		ip6->ip6_dst = src_sin6->sin6_addr;
10919 		len = sizeof(struct ip6_hdr);
10920 		shout = (struct sctphdr *)((caddr_t)ip6 + len);
10921 		break;
10922 #endif
10923 	default:
10924 		len = 0;
10925 		shout = mtod(mout, struct sctphdr *);
10926 		break;
10927 	}
10928 	if (port) {
10929 		if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
10930 			sctp_m_freem(mout);
10931 			return;
10932 		}
10933 		udp = (struct udphdr *)shout;
10934 		udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
10935 		udp->uh_dport = port;
10936 		udp->uh_sum = 0;
10937 		udp->uh_ulen = htons(sizeof(struct udphdr) +
10938 		    sizeof(struct sctphdr) +
10939 		    sizeof(struct sctp_chunkhdr) +
10940 		    cause_len + padding_len);
10941 		len += sizeof(struct udphdr);
10942 		shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
10943 	} else {
10944 		udp = NULL;
10945 	}
10946 	shout->src_port = sh->dest_port;
10947 	shout->dest_port = sh->src_port;
10948 	shout->checksum = 0;
10949 	if (vtag) {
10950 		shout->v_tag = htonl(vtag);
10951 	} else {
10952 		shout->v_tag = sh->v_tag;
10953 	}
10954 	len += sizeof(struct sctphdr);
10955 	ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
10956 	ch->chunk_type = type;
10957 	if (vtag) {
10958 		ch->chunk_flags = 0;
10959 	} else {
10960 		ch->chunk_flags = SCTP_HAD_NO_TCB;
10961 	}
10962 	ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len);
10963 	len += sizeof(struct sctp_chunkhdr);
10964 	len += cause_len + padding_len;
10965 
10966 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10967 		sctp_m_freem(mout);
10968 		return;
10969 	}
10970 	SCTP_ATTACH_CHAIN(o_pak, mout, len);
10971 	switch (dst->sa_family) {
10972 #ifdef INET
10973 	case AF_INET:
10974 		if (port) {
10975 			if (V_udp_cksum) {
10976 				udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
10977 			} else {
10978 				udp->uh_sum = 0;
10979 			}
10980 		}
10981 		ip->ip_len = htons(len);
10982 		if (port) {
10983 #if defined(SCTP_WITH_NO_CSUM)
10984 			SCTP_STAT_INCR(sctps_sendnocrc);
10985 #else
10986 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
10987 			SCTP_STAT_INCR(sctps_sendswcrc);
10988 #endif
10989 			if (V_udp_cksum) {
10990 				SCTP_ENABLE_UDP_CSUM(o_pak);
10991 			}
10992 		} else {
10993 #if defined(SCTP_WITH_NO_CSUM)
10994 			SCTP_STAT_INCR(sctps_sendnocrc);
10995 #else
10996 			mout->m_pkthdr.csum_flags = CSUM_SCTP;
10997 			mout->m_pkthdr.csum_data = 0;
10998 			SCTP_STAT_INCR(sctps_sendhwcrc);
10999 #endif
11000 		}
11001 #ifdef SCTP_PACKET_LOGGING
11002 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11003 			sctp_packet_log(o_pak);
11004 		}
11005 #endif
11006 		SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11007 		break;
11008 #endif
11009 #ifdef INET6
11010 	case AF_INET6:
11011 		ip6->ip6_plen = len - sizeof(struct ip6_hdr);
11012 		if (port) {
11013 #if defined(SCTP_WITH_NO_CSUM)
11014 			SCTP_STAT_INCR(sctps_sendnocrc);
11015 #else
11016 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11017 			SCTP_STAT_INCR(sctps_sendswcrc);
11018 #endif
11019 			if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11020 				udp->uh_sum = 0xffff;
11021 			}
11022 		} else {
11023 #if defined(SCTP_WITH_NO_CSUM)
11024 			SCTP_STAT_INCR(sctps_sendnocrc);
11025 #else
11026 			mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11027 			mout->m_pkthdr.csum_data = 0;
11028 			SCTP_STAT_INCR(sctps_sendhwcrc);
11029 #endif
11030 		}
11031 #ifdef SCTP_PACKET_LOGGING
11032 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11033 			sctp_packet_log(o_pak);
11034 		}
11035 #endif
11036 		SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11037 		break;
11038 #endif
11039 	default:
11040 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11041 		    dst->sa_family);
11042 		sctp_m_freem(mout);
11043 		SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11044 		return;
11045 	}
11046 	SCTP_STAT_INCR(sctps_sendpackets);
11047 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11048 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11049 	return;
11050 }
11051 
11052 void
11053 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11054     struct sctphdr *sh,
11055     uint8_t use_mflowid, uint32_t mflowid,
11056     uint32_t vrf_id, uint16_t port)
11057 {
11058 	sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11059 	    use_mflowid, mflowid,
11060 	    vrf_id, port);
11061 }
11062 
11063 void
11064 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
11065 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
11066     SCTP_UNUSED
11067 #endif
11068 )
11069 {
11070 	struct sctp_tmit_chunk *chk;
11071 	struct sctp_heartbeat_chunk *hb;
11072 	struct timeval now;
11073 
11074 	SCTP_TCB_LOCK_ASSERT(stcb);
11075 	if (net == NULL) {
11076 		return;
11077 	}
11078 	(void)SCTP_GETTIME_TIMEVAL(&now);
11079 	switch (net->ro._l_addr.sa.sa_family) {
11080 #ifdef INET
11081 	case AF_INET:
11082 		break;
11083 #endif
11084 #ifdef INET6
11085 	case AF_INET6:
11086 		break;
11087 #endif
11088 	default:
11089 		return;
11090 	}
11091 	sctp_alloc_a_chunk(stcb, chk);
11092 	if (chk == NULL) {
11093 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11094 		return;
11095 	}
11096 	chk->copy_by_ref = 0;
11097 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11098 	chk->rec.chunk_id.can_take_data = 1;
11099 	chk->asoc = &stcb->asoc;
11100 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11101 
11102 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11103 	if (chk->data == NULL) {
11104 		sctp_free_a_chunk(stcb, chk, so_locked);
11105 		return;
11106 	}
11107 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11108 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11109 	chk->sent = SCTP_DATAGRAM_UNSENT;
11110 	chk->snd_count = 0;
11111 	chk->whoTo = net;
11112 	atomic_add_int(&chk->whoTo->ref_count, 1);
11113 	/* Now we have a mbuf that we can fill in with the details */
11114 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11115 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11116 	/* fill out chunk header */
11117 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11118 	hb->ch.chunk_flags = 0;
11119 	hb->ch.chunk_length = htons(chk->send_size);
11120 	/* Fill out hb parameter */
11121 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11122 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11123 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
11124 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11125 	/* Did our user request this one, put it in */
11126 	hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family;
11127 	hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11128 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11129 		/*
11130 		 * we only take from the entropy pool if the address is not
11131 		 * confirmed.
11132 		 */
11133 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11134 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11135 	} else {
11136 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11137 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11138 	}
11139 	switch (net->ro._l_addr.sa.sa_family) {
11140 #ifdef INET
11141 	case AF_INET:
11142 		memcpy(hb->heartbeat.hb_info.address,
11143 		    &net->ro._l_addr.sin.sin_addr,
11144 		    sizeof(net->ro._l_addr.sin.sin_addr));
11145 		break;
11146 #endif
11147 #ifdef INET6
11148 	case AF_INET6:
11149 		memcpy(hb->heartbeat.hb_info.address,
11150 		    &net->ro._l_addr.sin6.sin6_addr,
11151 		    sizeof(net->ro._l_addr.sin6.sin6_addr));
11152 		break;
11153 #endif
11154 	default:
11155 		return;
11156 		break;
11157 	}
11158 	net->hb_responded = 0;
11159 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11160 	stcb->asoc.ctrl_queue_cnt++;
11161 	SCTP_STAT_INCR(sctps_sendheartbeat);
11162 	return;
11163 }
11164 
11165 void
11166 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11167     uint32_t high_tsn)
11168 {
11169 	struct sctp_association *asoc;
11170 	struct sctp_ecne_chunk *ecne;
11171 	struct sctp_tmit_chunk *chk;
11172 
11173 	if (net == NULL) {
11174 		return;
11175 	}
11176 	asoc = &stcb->asoc;
11177 	SCTP_TCB_LOCK_ASSERT(stcb);
11178 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11179 		if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11180 			/* found a previous ECN_ECHO update it if needed */
11181 			uint32_t cnt, ctsn;
11182 
11183 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11184 			ctsn = ntohl(ecne->tsn);
11185 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11186 				ecne->tsn = htonl(high_tsn);
11187 				SCTP_STAT_INCR(sctps_queue_upd_ecne);
11188 			}
11189 			cnt = ntohl(ecne->num_pkts_since_cwr);
11190 			cnt++;
11191 			ecne->num_pkts_since_cwr = htonl(cnt);
11192 			return;
11193 		}
11194 	}
11195 	/* nope could not find one to update so we must build one */
11196 	sctp_alloc_a_chunk(stcb, chk);
11197 	if (chk == NULL) {
11198 		return;
11199 	}
11200 	chk->copy_by_ref = 0;
11201 	SCTP_STAT_INCR(sctps_queue_upd_ecne);
11202 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11203 	chk->rec.chunk_id.can_take_data = 0;
11204 	chk->asoc = &stcb->asoc;
11205 	chk->send_size = sizeof(struct sctp_ecne_chunk);
11206 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11207 	if (chk->data == NULL) {
11208 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11209 		return;
11210 	}
11211 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11212 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11213 	chk->sent = SCTP_DATAGRAM_UNSENT;
11214 	chk->snd_count = 0;
11215 	chk->whoTo = net;
11216 	atomic_add_int(&chk->whoTo->ref_count, 1);
11217 
11218 	stcb->asoc.ecn_echo_cnt_onq++;
11219 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11220 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
11221 	ecne->ch.chunk_flags = 0;
11222 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11223 	ecne->tsn = htonl(high_tsn);
11224 	ecne->num_pkts_since_cwr = htonl(1);
11225 	TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11226 	asoc->ctrl_queue_cnt++;
11227 }
11228 
11229 void
11230 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11231     struct mbuf *m, int len, int iphlen, int bad_crc)
11232 {
11233 	struct sctp_association *asoc;
11234 	struct sctp_pktdrop_chunk *drp;
11235 	struct sctp_tmit_chunk *chk;
11236 	uint8_t *datap;
11237 	int was_trunc = 0;
11238 	int fullsz = 0;
11239 	long spc;
11240 	int offset;
11241 	struct sctp_chunkhdr *ch, chunk_buf;
11242 	unsigned int chk_length;
11243 
11244 	if (!stcb) {
11245 		return;
11246 	}
11247 	asoc = &stcb->asoc;
11248 	SCTP_TCB_LOCK_ASSERT(stcb);
11249 	if (asoc->peer_supports_pktdrop == 0) {
11250 		/*-
11251 		 * peer must declare support before I send one.
11252 		 */
11253 		return;
11254 	}
11255 	if (stcb->sctp_socket == NULL) {
11256 		return;
11257 	}
11258 	sctp_alloc_a_chunk(stcb, chk);
11259 	if (chk == NULL) {
11260 		return;
11261 	}
11262 	chk->copy_by_ref = 0;
11263 	len -= iphlen;
11264 	chk->send_size = len;
11265 	/* Validate that we do not have an ABORT in here. */
11266 	offset = iphlen + sizeof(struct sctphdr);
11267 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11268 	    sizeof(*ch), (uint8_t *) & chunk_buf);
11269 	while (ch != NULL) {
11270 		chk_length = ntohs(ch->chunk_length);
11271 		if (chk_length < sizeof(*ch)) {
11272 			/* break to abort land */
11273 			break;
11274 		}
11275 		switch (ch->chunk_type) {
11276 		case SCTP_PACKET_DROPPED:
11277 		case SCTP_ABORT_ASSOCIATION:
11278 		case SCTP_INITIATION_ACK:
11279 			/**
11280 			 * We don't respond with an PKT-DROP to an ABORT
11281 			 * or PKT-DROP. We also do not respond to an
11282 			 * INIT-ACK, because we can't know if the initiation
11283 			 * tag is correct or not.
11284 			 */
11285 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11286 			return;
11287 		default:
11288 			break;
11289 		}
11290 		offset += SCTP_SIZE32(chk_length);
11291 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11292 		    sizeof(*ch), (uint8_t *) & chunk_buf);
11293 	}
11294 
11295 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11296 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11297 		/*
11298 		 * only send 1 mtu worth, trim off the excess on the end.
11299 		 */
11300 		fullsz = len;
11301 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11302 		was_trunc = 1;
11303 	}
11304 	chk->asoc = &stcb->asoc;
11305 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11306 	if (chk->data == NULL) {
11307 jump_out:
11308 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11309 		return;
11310 	}
11311 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11312 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11313 	if (drp == NULL) {
11314 		sctp_m_freem(chk->data);
11315 		chk->data = NULL;
11316 		goto jump_out;
11317 	}
11318 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11319 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11320 	chk->book_size_scale = 0;
11321 	if (was_trunc) {
11322 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11323 		drp->trunc_len = htons(fullsz);
11324 		/*
11325 		 * Len is already adjusted to size minus overhead above take
11326 		 * out the pkt_drop chunk itself from it.
11327 		 */
11328 		chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
11329 		len = chk->send_size;
11330 	} else {
11331 		/* no truncation needed */
11332 		drp->ch.chunk_flags = 0;
11333 		drp->trunc_len = htons(0);
11334 	}
11335 	if (bad_crc) {
11336 		drp->ch.chunk_flags |= SCTP_BADCRC;
11337 	}
11338 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11339 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11340 	chk->sent = SCTP_DATAGRAM_UNSENT;
11341 	chk->snd_count = 0;
11342 	if (net) {
11343 		/* we should hit here */
11344 		chk->whoTo = net;
11345 		atomic_add_int(&chk->whoTo->ref_count, 1);
11346 	} else {
11347 		chk->whoTo = NULL;
11348 	}
11349 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11350 	chk->rec.chunk_id.can_take_data = 1;
11351 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11352 	drp->ch.chunk_length = htons(chk->send_size);
11353 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11354 	if (spc < 0) {
11355 		spc = 0;
11356 	}
11357 	drp->bottle_bw = htonl(spc);
11358 	if (asoc->my_rwnd) {
11359 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
11360 		    asoc->size_on_all_streams +
11361 		    asoc->my_rwnd_control_len +
11362 		    stcb->sctp_socket->so_rcv.sb_cc);
11363 	} else {
11364 		/*-
11365 		 * If my rwnd is 0, possibly from mbuf depletion as well as
11366 		 * space used, tell the peer there is NO space aka onq == bw
11367 		 */
11368 		drp->current_onq = htonl(spc);
11369 	}
11370 	drp->reserved = 0;
11371 	datap = drp->data;
11372 	m_copydata(m, iphlen, len, (caddr_t)datap);
11373 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11374 	asoc->ctrl_queue_cnt++;
11375 }
11376 
11377 void
11378 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11379 {
11380 	struct sctp_association *asoc;
11381 	struct sctp_cwr_chunk *cwr;
11382 	struct sctp_tmit_chunk *chk;
11383 
11384 	SCTP_TCB_LOCK_ASSERT(stcb);
11385 	if (net == NULL) {
11386 		return;
11387 	}
11388 	asoc = &stcb->asoc;
11389 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11390 		if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11391 			/*
11392 			 * found a previous CWR queued to same destination
11393 			 * update it if needed
11394 			 */
11395 			uint32_t ctsn;
11396 
11397 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11398 			ctsn = ntohl(cwr->tsn);
11399 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11400 				cwr->tsn = htonl(high_tsn);
11401 			}
11402 			if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11403 				/* Make sure override is carried */
11404 				cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11405 			}
11406 			return;
11407 		}
11408 	}
11409 	sctp_alloc_a_chunk(stcb, chk);
11410 	if (chk == NULL) {
11411 		return;
11412 	}
11413 	chk->copy_by_ref = 0;
11414 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
11415 	chk->rec.chunk_id.can_take_data = 1;
11416 	chk->asoc = &stcb->asoc;
11417 	chk->send_size = sizeof(struct sctp_cwr_chunk);
11418 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11419 	if (chk->data == NULL) {
11420 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11421 		return;
11422 	}
11423 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11424 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11425 	chk->sent = SCTP_DATAGRAM_UNSENT;
11426 	chk->snd_count = 0;
11427 	chk->whoTo = net;
11428 	atomic_add_int(&chk->whoTo->ref_count, 1);
11429 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11430 	cwr->ch.chunk_type = SCTP_ECN_CWR;
11431 	cwr->ch.chunk_flags = override;
11432 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11433 	cwr->tsn = htonl(high_tsn);
11434 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11435 	asoc->ctrl_queue_cnt++;
11436 }
11437 
11438 void
11439 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
11440     int number_entries, uint16_t * list,
11441     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11442 {
11443 	uint16_t len, old_len, i;
11444 	struct sctp_stream_reset_out_request *req_out;
11445 	struct sctp_chunkhdr *ch;
11446 
11447 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11448 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11449 
11450 	/* get to new offset for the param. */
11451 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11452 	/* now how long will this param be? */
11453 	len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11454 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11455 	req_out->ph.param_length = htons(len);
11456 	req_out->request_seq = htonl(seq);
11457 	req_out->response_seq = htonl(resp_seq);
11458 	req_out->send_reset_at_tsn = htonl(last_sent);
11459 	if (number_entries) {
11460 		for (i = 0; i < number_entries; i++) {
11461 			req_out->list_of_streams[i] = htons(list[i]);
11462 		}
11463 	}
11464 	if (SCTP_SIZE32(len) > len) {
11465 		/*-
11466 		 * Need to worry about the pad we may end up adding to the
11467 		 * end. This is easy since the struct is either aligned to 4
11468 		 * bytes or 2 bytes off.
11469 		 */
11470 		req_out->list_of_streams[number_entries] = 0;
11471 	}
11472 	/* now fix the chunk length */
11473 	ch->chunk_length = htons(len + old_len);
11474 	chk->book_size = len + old_len;
11475 	chk->book_size_scale = 0;
11476 	chk->send_size = SCTP_SIZE32(chk->book_size);
11477 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11478 	return;
11479 }
11480 
11481 static void
11482 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11483     int number_entries, uint16_t * list,
11484     uint32_t seq)
11485 {
11486 	uint16_t len, old_len, i;
11487 	struct sctp_stream_reset_in_request *req_in;
11488 	struct sctp_chunkhdr *ch;
11489 
11490 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11491 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11492 
11493 	/* get to new offset for the param. */
11494 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11495 	/* now how long will this param be? */
11496 	len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11497 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11498 	req_in->ph.param_length = htons(len);
11499 	req_in->request_seq = htonl(seq);
11500 	if (number_entries) {
11501 		for (i = 0; i < number_entries; i++) {
11502 			req_in->list_of_streams[i] = htons(list[i]);
11503 		}
11504 	}
11505 	if (SCTP_SIZE32(len) > len) {
11506 		/*-
11507 		 * Need to worry about the pad we may end up adding to the
11508 		 * end. This is easy since the struct is either aligned to 4
11509 		 * bytes or 2 bytes off.
11510 		 */
11511 		req_in->list_of_streams[number_entries] = 0;
11512 	}
11513 	/* now fix the chunk length */
11514 	ch->chunk_length = htons(len + old_len);
11515 	chk->book_size = len + old_len;
11516 	chk->book_size_scale = 0;
11517 	chk->send_size = SCTP_SIZE32(chk->book_size);
11518 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11519 	return;
11520 }
11521 
11522 static void
11523 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11524     uint32_t seq)
11525 {
11526 	uint16_t len, old_len;
11527 	struct sctp_stream_reset_tsn_request *req_tsn;
11528 	struct sctp_chunkhdr *ch;
11529 
11530 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11531 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11532 
11533 	/* get to new offset for the param. */
11534 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11535 	/* now how long will this param be? */
11536 	len = sizeof(struct sctp_stream_reset_tsn_request);
11537 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11538 	req_tsn->ph.param_length = htons(len);
11539 	req_tsn->request_seq = htonl(seq);
11540 
11541 	/* now fix the chunk length */
11542 	ch->chunk_length = htons(len + old_len);
11543 	chk->send_size = len + old_len;
11544 	chk->book_size = SCTP_SIZE32(chk->send_size);
11545 	chk->book_size_scale = 0;
11546 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11547 	return;
11548 }
11549 
11550 void
11551 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11552     uint32_t resp_seq, uint32_t result)
11553 {
11554 	uint16_t len, old_len;
11555 	struct sctp_stream_reset_response *resp;
11556 	struct sctp_chunkhdr *ch;
11557 
11558 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11559 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11560 
11561 	/* get to new offset for the param. */
11562 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11563 	/* now how long will this param be? */
11564 	len = sizeof(struct sctp_stream_reset_response);
11565 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11566 	resp->ph.param_length = htons(len);
11567 	resp->response_seq = htonl(resp_seq);
11568 	resp->result = ntohl(result);
11569 
11570 	/* now fix the chunk length */
11571 	ch->chunk_length = htons(len + old_len);
11572 	chk->book_size = len + old_len;
11573 	chk->book_size_scale = 0;
11574 	chk->send_size = SCTP_SIZE32(chk->book_size);
11575 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11576 	return;
11577 }
11578 
11579 void
11580 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11581     uint32_t resp_seq, uint32_t result,
11582     uint32_t send_una, uint32_t recv_next)
11583 {
11584 	uint16_t len, old_len;
11585 	struct sctp_stream_reset_response_tsn *resp;
11586 	struct sctp_chunkhdr *ch;
11587 
11588 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11589 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11590 
11591 	/* get to new offset for the param. */
11592 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11593 	/* now how long will this param be? */
11594 	len = sizeof(struct sctp_stream_reset_response_tsn);
11595 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11596 	resp->ph.param_length = htons(len);
11597 	resp->response_seq = htonl(resp_seq);
11598 	resp->result = htonl(result);
11599 	resp->senders_next_tsn = htonl(send_una);
11600 	resp->receivers_next_tsn = htonl(recv_next);
11601 
11602 	/* now fix the chunk length */
11603 	ch->chunk_length = htons(len + old_len);
11604 	chk->book_size = len + old_len;
11605 	chk->send_size = SCTP_SIZE32(chk->book_size);
11606 	chk->book_size_scale = 0;
11607 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11608 	return;
11609 }
11610 
11611 static void
11612 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
11613     uint32_t seq,
11614     uint16_t adding)
11615 {
11616 	uint16_t len, old_len;
11617 	struct sctp_chunkhdr *ch;
11618 	struct sctp_stream_reset_add_strm *addstr;
11619 
11620 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11621 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11622 
11623 	/* get to new offset for the param. */
11624 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11625 	/* now how long will this param be? */
11626 	len = sizeof(struct sctp_stream_reset_add_strm);
11627 
11628 	/* Fill it out. */
11629 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
11630 	addstr->ph.param_length = htons(len);
11631 	addstr->request_seq = htonl(seq);
11632 	addstr->number_of_streams = htons(adding);
11633 	addstr->reserved = 0;
11634 
11635 	/* now fix the chunk length */
11636 	ch->chunk_length = htons(len + old_len);
11637 	chk->send_size = len + old_len;
11638 	chk->book_size = SCTP_SIZE32(chk->send_size);
11639 	chk->book_size_scale = 0;
11640 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11641 	return;
11642 }
11643 
11644 static void
11645 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
11646     uint32_t seq,
11647     uint16_t adding)
11648 {
11649 	uint16_t len, old_len;
11650 	struct sctp_chunkhdr *ch;
11651 	struct sctp_stream_reset_add_strm *addstr;
11652 
11653 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11654 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11655 
11656 	/* get to new offset for the param. */
11657 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11658 	/* now how long will this param be? */
11659 	len = sizeof(struct sctp_stream_reset_add_strm);
11660 	/* Fill it out. */
11661 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
11662 	addstr->ph.param_length = htons(len);
11663 	addstr->request_seq = htonl(seq);
11664 	addstr->number_of_streams = htons(adding);
11665 	addstr->reserved = 0;
11666 
11667 	/* now fix the chunk length */
11668 	ch->chunk_length = htons(len + old_len);
11669 	chk->send_size = len + old_len;
11670 	chk->book_size = SCTP_SIZE32(chk->send_size);
11671 	chk->book_size_scale = 0;
11672 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11673 	return;
11674 }
11675 
11676 int
11677 sctp_send_str_reset_req(struct sctp_tcb *stcb,
11678     int number_entries, uint16_t * list,
11679     uint8_t send_out_req,
11680     uint8_t send_in_req,
11681     uint8_t send_tsn_req,
11682     uint8_t add_stream,
11683     uint16_t adding_o,
11684     uint16_t adding_i, uint8_t peer_asked)
11685 {
11686 
11687 	struct sctp_association *asoc;
11688 	struct sctp_tmit_chunk *chk;
11689 	struct sctp_chunkhdr *ch;
11690 	uint32_t seq;
11691 
11692 	asoc = &stcb->asoc;
11693 	if (asoc->stream_reset_outstanding) {
11694 		/*-
11695 		 * Already one pending, must get ACK back to clear the flag.
11696 		 */
11697 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
11698 		return (EBUSY);
11699 	}
11700 	if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) &&
11701 	    (add_stream == 0)) {
11702 		/* nothing to do */
11703 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11704 		return (EINVAL);
11705 	}
11706 	if (send_tsn_req && (send_out_req || send_in_req)) {
11707 		/* error, can't do that */
11708 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11709 		return (EINVAL);
11710 	}
11711 	sctp_alloc_a_chunk(stcb, chk);
11712 	if (chk == NULL) {
11713 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11714 		return (ENOMEM);
11715 	}
11716 	chk->copy_by_ref = 0;
11717 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11718 	chk->rec.chunk_id.can_take_data = 0;
11719 	chk->asoc = &stcb->asoc;
11720 	chk->book_size = sizeof(struct sctp_chunkhdr);
11721 	chk->send_size = SCTP_SIZE32(chk->book_size);
11722 	chk->book_size_scale = 0;
11723 
11724 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11725 	if (chk->data == NULL) {
11726 		sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11727 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11728 		return (ENOMEM);
11729 	}
11730 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11731 
11732 	/* setup chunk parameters */
11733 	chk->sent = SCTP_DATAGRAM_UNSENT;
11734 	chk->snd_count = 0;
11735 	if (stcb->asoc.alternate) {
11736 		chk->whoTo = stcb->asoc.alternate;
11737 	} else {
11738 		chk->whoTo = stcb->asoc.primary_destination;
11739 	}
11740 	atomic_add_int(&chk->whoTo->ref_count, 1);
11741 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11742 	ch->chunk_type = SCTP_STREAM_RESET;
11743 	ch->chunk_flags = 0;
11744 	ch->chunk_length = htons(chk->book_size);
11745 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11746 
11747 	seq = stcb->asoc.str_reset_seq_out;
11748 	if (send_out_req) {
11749 		sctp_add_stream_reset_out(chk, number_entries, list,
11750 		    seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
11751 		asoc->stream_reset_out_is_outstanding = 1;
11752 		seq++;
11753 		asoc->stream_reset_outstanding++;
11754 	}
11755 	if ((add_stream & 1) &&
11756 	    ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
11757 		/* Need to allocate more */
11758 		struct sctp_stream_out *oldstream;
11759 		struct sctp_stream_queue_pending *sp, *nsp;
11760 		int i;
11761 
11762 		oldstream = stcb->asoc.strmout;
11763 		/* get some more */
11764 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
11765 		    ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
11766 		    SCTP_M_STRMO);
11767 		if (stcb->asoc.strmout == NULL) {
11768 			uint8_t x;
11769 
11770 			stcb->asoc.strmout = oldstream;
11771 			/* Turn off the bit */
11772 			x = add_stream & 0xfe;
11773 			add_stream = x;
11774 			goto skip_stuff;
11775 		}
11776 		/*
11777 		 * Ok now we proceed with copying the old out stuff and
11778 		 * initializing the new stuff.
11779 		 */
11780 		SCTP_TCB_SEND_LOCK(stcb);
11781 		stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1);
11782 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11783 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11784 			stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
11785 			stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send;
11786 			stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
11787 			stcb->asoc.strmout[i].stream_no = i;
11788 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]);
11789 			/* now anything on those queues? */
11790 			TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
11791 				TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
11792 				TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
11793 			}
11794 			/* Now move assoc pointers too */
11795 			if (stcb->asoc.last_out_stream == &oldstream[i]) {
11796 				stcb->asoc.last_out_stream = &stcb->asoc.strmout[i];
11797 			}
11798 			if (stcb->asoc.locked_on_sending == &oldstream[i]) {
11799 				stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i];
11800 			}
11801 		}
11802 		/* now the new streams */
11803 		stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1);
11804 		for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
11805 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11806 			stcb->asoc.strmout[i].chunks_on_queues = 0;
11807 			stcb->asoc.strmout[i].next_sequence_send = 0x0;
11808 			stcb->asoc.strmout[i].stream_no = i;
11809 			stcb->asoc.strmout[i].last_msg_incomplete = 0;
11810 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
11811 		}
11812 		stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
11813 		SCTP_FREE(oldstream, SCTP_M_STRMO);
11814 		SCTP_TCB_SEND_UNLOCK(stcb);
11815 	}
11816 skip_stuff:
11817 	if ((add_stream & 1) && (adding_o > 0)) {
11818 		asoc->strm_pending_add_size = adding_o;
11819 		asoc->peer_req_out = peer_asked;
11820 		sctp_add_an_out_stream(chk, seq, adding_o);
11821 		seq++;
11822 		asoc->stream_reset_outstanding++;
11823 	}
11824 	if ((add_stream & 2) && (adding_i > 0)) {
11825 		sctp_add_an_in_stream(chk, seq, adding_i);
11826 		seq++;
11827 		asoc->stream_reset_outstanding++;
11828 	}
11829 	if (send_in_req) {
11830 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
11831 		seq++;
11832 		asoc->stream_reset_outstanding++;
11833 	}
11834 	if (send_tsn_req) {
11835 		sctp_add_stream_reset_tsn(chk, seq);
11836 		asoc->stream_reset_outstanding++;
11837 	}
11838 	asoc->str_reset = chk;
11839 	/* insert the chunk for sending */
11840 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
11841 	    chk,
11842 	    sctp_next);
11843 	asoc->ctrl_queue_cnt++;
11844 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
11845 	return (0);
11846 }
11847 
11848 void
11849 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
11850     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11851     uint8_t use_mflowid, uint32_t mflowid,
11852     uint32_t vrf_id, uint16_t port)
11853 {
11854 	/* Don't respond to an ABORT with an ABORT. */
11855 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
11856 		if (cause)
11857 			sctp_m_freem(cause);
11858 		return;
11859 	}
11860 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
11861 	    use_mflowid, mflowid,
11862 	    vrf_id, port);
11863 	return;
11864 }
11865 
11866 void
11867 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
11868     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11869     uint8_t use_mflowid, uint32_t mflowid,
11870     uint32_t vrf_id, uint16_t port)
11871 {
11872 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
11873 	    use_mflowid, mflowid,
11874 	    vrf_id, port);
11875 	return;
11876 }
11877 
11878 static struct mbuf *
11879 sctp_copy_resume(struct uio *uio,
11880     int max_send_len,
11881     int user_marks_eor,
11882     int *error,
11883     uint32_t * sndout,
11884     struct mbuf **new_tail)
11885 {
11886 	struct mbuf *m;
11887 
11888 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
11889 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
11890 	if (m == NULL) {
11891 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11892 		*error = ENOMEM;
11893 	} else {
11894 		*sndout = m_length(m, NULL);
11895 		*new_tail = m_last(m);
11896 	}
11897 	return (m);
11898 }
11899 
11900 static int
11901 sctp_copy_one(struct sctp_stream_queue_pending *sp,
11902     struct uio *uio,
11903     int resv_upfront)
11904 {
11905 	int left;
11906 
11907 	left = sp->length;
11908 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
11909 	    resv_upfront, 0);
11910 	if (sp->data == NULL) {
11911 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11912 		return (ENOMEM);
11913 	}
11914 	sp->tail_mbuf = m_last(sp->data);
11915 	return (0);
11916 }
11917 
11918 
11919 
11920 static struct sctp_stream_queue_pending *
11921 sctp_copy_it_in(struct sctp_tcb *stcb,
11922     struct sctp_association *asoc,
11923     struct sctp_sndrcvinfo *srcv,
11924     struct uio *uio,
11925     struct sctp_nets *net,
11926     int max_send_len,
11927     int user_marks_eor,
11928     int *error)
11929 {
11930 	/*-
11931 	 * This routine must be very careful in its work. Protocol
11932 	 * processing is up and running so care must be taken to spl...()
11933 	 * when you need to do something that may effect the stcb/asoc. The
11934 	 * sb is locked however. When data is copied the protocol processing
11935 	 * should be enabled since this is a slower operation...
11936 	 */
11937 	struct sctp_stream_queue_pending *sp = NULL;
11938 	int resv_in_first;
11939 
11940 	*error = 0;
11941 	/* Now can we send this? */
11942 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
11943 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
11944 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
11945 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
11946 		/* got data while shutting down */
11947 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11948 		*error = ECONNRESET;
11949 		goto out_now;
11950 	}
11951 	sctp_alloc_a_strmoq(stcb, sp);
11952 	if (sp == NULL) {
11953 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11954 		*error = ENOMEM;
11955 		goto out_now;
11956 	}
11957 	sp->act_flags = 0;
11958 	sp->sender_all_done = 0;
11959 	sp->sinfo_flags = srcv->sinfo_flags;
11960 	sp->timetolive = srcv->sinfo_timetolive;
11961 	sp->ppid = srcv->sinfo_ppid;
11962 	sp->context = srcv->sinfo_context;
11963 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
11964 
11965 	sp->stream = srcv->sinfo_stream;
11966 	sp->length = min(uio->uio_resid, max_send_len);
11967 	if ((sp->length == (uint32_t) uio->uio_resid) &&
11968 	    ((user_marks_eor == 0) ||
11969 	    (srcv->sinfo_flags & SCTP_EOF) ||
11970 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
11971 		sp->msg_is_complete = 1;
11972 	} else {
11973 		sp->msg_is_complete = 0;
11974 	}
11975 	sp->sender_all_done = 0;
11976 	sp->some_taken = 0;
11977 	sp->put_last_out = 0;
11978 	resv_in_first = sizeof(struct sctp_data_chunk);
11979 	sp->data = sp->tail_mbuf = NULL;
11980 	if (sp->length == 0) {
11981 		*error = 0;
11982 		goto skip_copy;
11983 	}
11984 	if (srcv->sinfo_keynumber_valid) {
11985 		sp->auth_keyid = srcv->sinfo_keynumber;
11986 	} else {
11987 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
11988 	}
11989 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
11990 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
11991 		sp->holds_key_ref = 1;
11992 	}
11993 	*error = sctp_copy_one(sp, uio, resv_in_first);
11994 skip_copy:
11995 	if (*error) {
11996 		sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
11997 		sp = NULL;
11998 	} else {
11999 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12000 			sp->net = net;
12001 			atomic_add_int(&sp->net->ref_count, 1);
12002 		} else {
12003 			sp->net = NULL;
12004 		}
12005 		sctp_set_prsctp_policy(sp);
12006 	}
12007 out_now:
12008 	return (sp);
12009 }
12010 
12011 
12012 int
12013 sctp_sosend(struct socket *so,
12014     struct sockaddr *addr,
12015     struct uio *uio,
12016     struct mbuf *top,
12017     struct mbuf *control,
12018     int flags,
12019     struct thread *p
12020 )
12021 {
12022 	int error, use_sndinfo = 0;
12023 	struct sctp_sndrcvinfo sndrcvninfo;
12024 	struct sockaddr *addr_to_use;
12025 
12026 #if defined(INET) && defined(INET6)
12027 	struct sockaddr_in sin;
12028 
12029 #endif
12030 
12031 	if (control) {
12032 		/* process cmsg snd/rcv info (maybe a assoc-id) */
12033 		if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control,
12034 		    sizeof(sndrcvninfo))) {
12035 			/* got one */
12036 			use_sndinfo = 1;
12037 		}
12038 	}
12039 	addr_to_use = addr;
12040 #if defined(INET) && defined(INET6)
12041 	if ((addr) && (addr->sa_family == AF_INET6)) {
12042 		struct sockaddr_in6 *sin6;
12043 
12044 		sin6 = (struct sockaddr_in6 *)addr;
12045 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12046 			in6_sin6_2_sin(&sin, sin6);
12047 			addr_to_use = (struct sockaddr *)&sin;
12048 		}
12049 	}
12050 #endif
12051 	error = sctp_lower_sosend(so, addr_to_use, uio, top,
12052 	    control,
12053 	    flags,
12054 	    use_sndinfo ? &sndrcvninfo : NULL
12055 	    ,p
12056 	    );
12057 	return (error);
12058 }
12059 
12060 
12061 int
12062 sctp_lower_sosend(struct socket *so,
12063     struct sockaddr *addr,
12064     struct uio *uio,
12065     struct mbuf *i_pak,
12066     struct mbuf *control,
12067     int flags,
12068     struct sctp_sndrcvinfo *srcv
12069     ,
12070     struct thread *p
12071 )
12072 {
12073 	unsigned int sndlen = 0, max_len;
12074 	int error, len;
12075 	struct mbuf *top = NULL;
12076 	int queue_only = 0, queue_only_for_init = 0;
12077 	int free_cnt_applied = 0;
12078 	int un_sent;
12079 	int now_filled = 0;
12080 	unsigned int inqueue_bytes = 0;
12081 	struct sctp_block_entry be;
12082 	struct sctp_inpcb *inp;
12083 	struct sctp_tcb *stcb = NULL;
12084 	struct timeval now;
12085 	struct sctp_nets *net;
12086 	struct sctp_association *asoc;
12087 	struct sctp_inpcb *t_inp;
12088 	int user_marks_eor;
12089 	int create_lock_applied = 0;
12090 	int nagle_applies = 0;
12091 	int some_on_control = 0;
12092 	int got_all_of_the_send = 0;
12093 	int hold_tcblock = 0;
12094 	int non_blocking = 0;
12095 	uint32_t local_add_more, local_soresv = 0;
12096 	uint16_t port;
12097 	uint16_t sinfo_flags;
12098 	sctp_assoc_t sinfo_assoc_id;
12099 
12100 	error = 0;
12101 	net = NULL;
12102 	stcb = NULL;
12103 	asoc = NULL;
12104 
12105 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12106 	if (inp == NULL) {
12107 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12108 		error = EINVAL;
12109 		if (i_pak) {
12110 			SCTP_RELEASE_PKT(i_pak);
12111 		}
12112 		return (error);
12113 	}
12114 	if ((uio == NULL) && (i_pak == NULL)) {
12115 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12116 		return (EINVAL);
12117 	}
12118 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12119 	atomic_add_int(&inp->total_sends, 1);
12120 	if (uio) {
12121 		if (uio->uio_resid < 0) {
12122 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12123 			return (EINVAL);
12124 		}
12125 		sndlen = uio->uio_resid;
12126 	} else {
12127 		top = SCTP_HEADER_TO_CHAIN(i_pak);
12128 		sndlen = SCTP_HEADER_LEN(i_pak);
12129 	}
12130 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
12131 	    (void *)addr,
12132 	    sndlen);
12133 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12134 	    (inp->sctp_socket->so_qlimit)) {
12135 		/* The listener can NOT send */
12136 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12137 		error = ENOTCONN;
12138 		goto out_unlocked;
12139 	}
12140 	/**
12141 	 * Pre-screen address, if one is given the sin-len
12142 	 * must be set correctly!
12143 	 */
12144 	if (addr) {
12145 		union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12146 
12147 		switch (raddr->sa.sa_family) {
12148 #ifdef INET
12149 		case AF_INET:
12150 			if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12151 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12152 				error = EINVAL;
12153 				goto out_unlocked;
12154 			}
12155 			port = raddr->sin.sin_port;
12156 			break;
12157 #endif
12158 #ifdef INET6
12159 		case AF_INET6:
12160 			if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12161 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12162 				error = EINVAL;
12163 				goto out_unlocked;
12164 			}
12165 			port = raddr->sin6.sin6_port;
12166 			break;
12167 #endif
12168 		default:
12169 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT);
12170 			error = EAFNOSUPPORT;
12171 			goto out_unlocked;
12172 		}
12173 	} else
12174 		port = 0;
12175 
12176 	if (srcv) {
12177 		sinfo_flags = srcv->sinfo_flags;
12178 		sinfo_assoc_id = srcv->sinfo_assoc_id;
12179 		if (INVALID_SINFO_FLAG(sinfo_flags) ||
12180 		    PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12181 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12182 			error = EINVAL;
12183 			goto out_unlocked;
12184 		}
12185 		if (srcv->sinfo_flags)
12186 			SCTP_STAT_INCR(sctps_sends_with_flags);
12187 	} else {
12188 		sinfo_flags = inp->def_send.sinfo_flags;
12189 		sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12190 	}
12191 	if (sinfo_flags & SCTP_SENDALL) {
12192 		/* its a sendall */
12193 		error = sctp_sendall(inp, uio, top, srcv);
12194 		top = NULL;
12195 		goto out_unlocked;
12196 	}
12197 	if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12198 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12199 		error = EINVAL;
12200 		goto out_unlocked;
12201 	}
12202 	/* now we must find the assoc */
12203 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12204 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12205 		SCTP_INP_RLOCK(inp);
12206 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
12207 		if (stcb) {
12208 			SCTP_TCB_LOCK(stcb);
12209 			hold_tcblock = 1;
12210 		}
12211 		SCTP_INP_RUNLOCK(inp);
12212 	} else if (sinfo_assoc_id) {
12213 		stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0);
12214 	} else if (addr) {
12215 		/*-
12216 		 * Since we did not use findep we must
12217 		 * increment it, and if we don't find a tcb
12218 		 * decrement it.
12219 		 */
12220 		SCTP_INP_WLOCK(inp);
12221 		SCTP_INP_INCR_REF(inp);
12222 		SCTP_INP_WUNLOCK(inp);
12223 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12224 		if (stcb == NULL) {
12225 			SCTP_INP_WLOCK(inp);
12226 			SCTP_INP_DECR_REF(inp);
12227 			SCTP_INP_WUNLOCK(inp);
12228 		} else {
12229 			hold_tcblock = 1;
12230 		}
12231 	}
12232 	if ((stcb == NULL) && (addr)) {
12233 		/* Possible implicit send? */
12234 		SCTP_ASOC_CREATE_LOCK(inp);
12235 		create_lock_applied = 1;
12236 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12237 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12238 			/* Should I really unlock ? */
12239 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12240 			error = EINVAL;
12241 			goto out_unlocked;
12242 
12243 		}
12244 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12245 		    (addr->sa_family == AF_INET6)) {
12246 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12247 			error = EINVAL;
12248 			goto out_unlocked;
12249 		}
12250 		SCTP_INP_WLOCK(inp);
12251 		SCTP_INP_INCR_REF(inp);
12252 		SCTP_INP_WUNLOCK(inp);
12253 		/* With the lock applied look again */
12254 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12255 		if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12256 			stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12257 		}
12258 		if (stcb == NULL) {
12259 			SCTP_INP_WLOCK(inp);
12260 			SCTP_INP_DECR_REF(inp);
12261 			SCTP_INP_WUNLOCK(inp);
12262 		} else {
12263 			hold_tcblock = 1;
12264 		}
12265 		if (error) {
12266 			goto out_unlocked;
12267 		}
12268 		if (t_inp != inp) {
12269 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12270 			error = ENOTCONN;
12271 			goto out_unlocked;
12272 		}
12273 	}
12274 	if (stcb == NULL) {
12275 		if (addr == NULL) {
12276 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12277 			error = ENOENT;
12278 			goto out_unlocked;
12279 		} else {
12280 			/* We must go ahead and start the INIT process */
12281 			uint32_t vrf_id;
12282 
12283 			if ((sinfo_flags & SCTP_ABORT) ||
12284 			    ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12285 				/*-
12286 				 * User asks to abort a non-existant assoc,
12287 				 * or EOF a non-existant assoc with no data
12288 				 */
12289 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12290 				error = ENOENT;
12291 				goto out_unlocked;
12292 			}
12293 			/* get an asoc/stcb struct */
12294 			vrf_id = inp->def_vrf_id;
12295 #ifdef INVARIANTS
12296 			if (create_lock_applied == 0) {
12297 				panic("Error, should hold create lock and I don't?");
12298 			}
12299 #endif
12300 			stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
12301 			    p
12302 			    );
12303 			if (stcb == NULL) {
12304 				/* Error is setup for us in the call */
12305 				goto out_unlocked;
12306 			}
12307 			if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
12308 				stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
12309 				/*
12310 				 * Set the connected flag so we can queue
12311 				 * data
12312 				 */
12313 				soisconnecting(so);
12314 			}
12315 			hold_tcblock = 1;
12316 			if (create_lock_applied) {
12317 				SCTP_ASOC_CREATE_UNLOCK(inp);
12318 				create_lock_applied = 0;
12319 			} else {
12320 				SCTP_PRINTF("Huh-3? create lock should have been on??\n");
12321 			}
12322 			/*
12323 			 * Turn on queue only flag to prevent data from
12324 			 * being sent
12325 			 */
12326 			queue_only = 1;
12327 			asoc = &stcb->asoc;
12328 			SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12329 			(void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
12330 
12331 			/* initialize authentication params for the assoc */
12332 			sctp_initialize_auth_params(inp, stcb);
12333 
12334 			if (control) {
12335 				if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12336 					sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7);
12337 					hold_tcblock = 0;
12338 					stcb = NULL;
12339 					goto out_unlocked;
12340 				}
12341 			}
12342 			/* out with the INIT */
12343 			queue_only_for_init = 1;
12344 			/*-
12345 			 * we may want to dig in after this call and adjust the MTU
12346 			 * value. It defaulted to 1500 (constant) but the ro
12347 			 * structure may now have an update and thus we may need to
12348 			 * change it BEFORE we append the message.
12349 			 */
12350 		}
12351 	} else
12352 		asoc = &stcb->asoc;
12353 	if (srcv == NULL)
12354 		srcv = (struct sctp_sndrcvinfo *)&asoc->def_send;
12355 	if (srcv->sinfo_flags & SCTP_ADDR_OVER) {
12356 		if (addr)
12357 			net = sctp_findnet(stcb, addr);
12358 		else
12359 			net = NULL;
12360 		if ((net == NULL) ||
12361 		    ((port != 0) && (port != stcb->rport))) {
12362 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12363 			error = EINVAL;
12364 			goto out_unlocked;
12365 		}
12366 	} else {
12367 		if (stcb->asoc.alternate) {
12368 			net = stcb->asoc.alternate;
12369 		} else {
12370 			net = stcb->asoc.primary_destination;
12371 		}
12372 	}
12373 	atomic_add_int(&stcb->total_sends, 1);
12374 	/* Keep the stcb from being freed under our feet */
12375 	atomic_add_int(&asoc->refcnt, 1);
12376 	free_cnt_applied = 1;
12377 
12378 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
12379 		if (sndlen > asoc->smallest_mtu) {
12380 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12381 			error = EMSGSIZE;
12382 			goto out_unlocked;
12383 		}
12384 	}
12385 	if (SCTP_SO_IS_NBIO(so)
12386 	    || (flags & MSG_NBIO)
12387 	    ) {
12388 		non_blocking = 1;
12389 	}
12390 	/* would we block? */
12391 	if (non_blocking) {
12392 		if (hold_tcblock == 0) {
12393 			SCTP_TCB_LOCK(stcb);
12394 			hold_tcblock = 1;
12395 		}
12396 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12397 		if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) ||
12398 		    (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12399 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
12400 			if (sndlen > SCTP_SB_LIMIT_SND(so))
12401 				error = EMSGSIZE;
12402 			else
12403 				error = EWOULDBLOCK;
12404 			goto out_unlocked;
12405 		}
12406 		stcb->asoc.sb_send_resv += sndlen;
12407 		SCTP_TCB_UNLOCK(stcb);
12408 		hold_tcblock = 0;
12409 	} else {
12410 		atomic_add_int(&stcb->asoc.sb_send_resv, sndlen);
12411 	}
12412 	local_soresv = sndlen;
12413 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12414 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12415 		error = ECONNRESET;
12416 		goto out_unlocked;
12417 	}
12418 	if (create_lock_applied) {
12419 		SCTP_ASOC_CREATE_UNLOCK(inp);
12420 		create_lock_applied = 0;
12421 	}
12422 	if (asoc->stream_reset_outstanding) {
12423 		/*
12424 		 * Can't queue any data while stream reset is underway.
12425 		 */
12426 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
12427 		error = EAGAIN;
12428 		goto out_unlocked;
12429 	}
12430 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12431 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12432 		queue_only = 1;
12433 	}
12434 	/* we are now done with all control */
12435 	if (control) {
12436 		sctp_m_freem(control);
12437 		control = NULL;
12438 	}
12439 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12440 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12441 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12442 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12443 		if (srcv->sinfo_flags & SCTP_ABORT) {
12444 			;
12445 		} else {
12446 			SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12447 			error = ECONNRESET;
12448 			goto out_unlocked;
12449 		}
12450 	}
12451 	/* Ok, we will attempt a msgsnd :> */
12452 	if (p) {
12453 		p->td_ru.ru_msgsnd++;
12454 	}
12455 	/* Are we aborting? */
12456 	if (srcv->sinfo_flags & SCTP_ABORT) {
12457 		struct mbuf *mm;
12458 		int tot_demand, tot_out = 0, max_out;
12459 
12460 		SCTP_STAT_INCR(sctps_sends_with_abort);
12461 		if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12462 		    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12463 			/* It has to be up before we abort */
12464 			/* how big is the user initiated abort? */
12465 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12466 			error = EINVAL;
12467 			goto out;
12468 		}
12469 		if (hold_tcblock) {
12470 			SCTP_TCB_UNLOCK(stcb);
12471 			hold_tcblock = 0;
12472 		}
12473 		if (top) {
12474 			struct mbuf *cntm = NULL;
12475 
12476 			mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA);
12477 			if (sndlen != 0) {
12478 				for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12479 					tot_out += SCTP_BUF_LEN(cntm);
12480 				}
12481 			}
12482 		} else {
12483 			/* Must fit in a MTU */
12484 			tot_out = sndlen;
12485 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12486 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12487 				/* To big */
12488 				SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12489 				error = EMSGSIZE;
12490 				goto out;
12491 			}
12492 			mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA);
12493 		}
12494 		if (mm == NULL) {
12495 			SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12496 			error = ENOMEM;
12497 			goto out;
12498 		}
12499 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12500 		max_out -= sizeof(struct sctp_abort_msg);
12501 		if (tot_out > max_out) {
12502 			tot_out = max_out;
12503 		}
12504 		if (mm) {
12505 			struct sctp_paramhdr *ph;
12506 
12507 			/* now move forward the data pointer */
12508 			ph = mtod(mm, struct sctp_paramhdr *);
12509 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12510 			ph->param_length = htons(sizeof(struct sctp_paramhdr) + tot_out);
12511 			ph++;
12512 			SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
12513 			if (top == NULL) {
12514 				error = uiomove((caddr_t)ph, (int)tot_out, uio);
12515 				if (error) {
12516 					/*-
12517 					 * Here if we can't get his data we
12518 					 * still abort we just don't get to
12519 					 * send the users note :-0
12520 					 */
12521 					sctp_m_freem(mm);
12522 					mm = NULL;
12523 				}
12524 			} else {
12525 				if (sndlen != 0) {
12526 					SCTP_BUF_NEXT(mm) = top;
12527 				}
12528 			}
12529 		}
12530 		if (hold_tcblock == 0) {
12531 			SCTP_TCB_LOCK(stcb);
12532 		}
12533 		atomic_add_int(&stcb->asoc.refcnt, -1);
12534 		free_cnt_applied = 0;
12535 		/* release this lock, otherwise we hang on ourselves */
12536 		sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED);
12537 		/* now relock the stcb so everything is sane */
12538 		hold_tcblock = 0;
12539 		stcb = NULL;
12540 		/*
12541 		 * In this case top is already chained to mm avoid double
12542 		 * free, since we free it below if top != NULL and driver
12543 		 * would free it after sending the packet out
12544 		 */
12545 		if (sndlen != 0) {
12546 			top = NULL;
12547 		}
12548 		goto out_unlocked;
12549 	}
12550 	/* Calculate the maximum we can send */
12551 	inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12552 	if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12553 		if (non_blocking) {
12554 			/* we already checked for non-blocking above. */
12555 			max_len = sndlen;
12556 		} else {
12557 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12558 		}
12559 	} else {
12560 		max_len = 0;
12561 	}
12562 	if (hold_tcblock) {
12563 		SCTP_TCB_UNLOCK(stcb);
12564 		hold_tcblock = 0;
12565 	}
12566 	/* Is the stream no. valid? */
12567 	if (srcv->sinfo_stream >= asoc->streamoutcnt) {
12568 		/* Invalid stream number */
12569 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12570 		error = EINVAL;
12571 		goto out_unlocked;
12572 	}
12573 	if (asoc->strmout == NULL) {
12574 		/* huh? software error */
12575 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12576 		error = EFAULT;
12577 		goto out_unlocked;
12578 	}
12579 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
12580 	if ((user_marks_eor == 0) &&
12581 	    (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
12582 		/* It will NEVER fit */
12583 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12584 		error = EMSGSIZE;
12585 		goto out_unlocked;
12586 	}
12587 	if ((uio == NULL) && user_marks_eor) {
12588 		/*-
12589 		 * We do not support eeor mode for
12590 		 * sending with mbuf chains (like sendfile).
12591 		 */
12592 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12593 		error = EINVAL;
12594 		goto out_unlocked;
12595 	}
12596 	if (user_marks_eor) {
12597 		local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
12598 	} else {
12599 		/*-
12600 		 * For non-eeor the whole message must fit in
12601 		 * the socket send buffer.
12602 		 */
12603 		local_add_more = sndlen;
12604 	}
12605 	len = 0;
12606 	if (non_blocking) {
12607 		goto skip_preblock;
12608 	}
12609 	if (((max_len <= local_add_more) &&
12610 	    (SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
12611 	    (max_len == 0) ||
12612 	    ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12613 		/* No room right now ! */
12614 		SOCKBUF_LOCK(&so->so_snd);
12615 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12616 		while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
12617 		    ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12618 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n",
12619 			    (unsigned int)SCTP_SB_LIMIT_SND(so),
12620 			    inqueue_bytes,
12621 			    local_add_more,
12622 			    stcb->asoc.stream_queue_cnt,
12623 			    stcb->asoc.chunks_on_out_queue,
12624 			    SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
12625 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12626 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
12627 			}
12628 			be.error = 0;
12629 			stcb->block_entry = &be;
12630 			error = sbwait(&so->so_snd);
12631 			stcb->block_entry = NULL;
12632 			if (error || so->so_error || be.error) {
12633 				if (error == 0) {
12634 					if (so->so_error)
12635 						error = so->so_error;
12636 					if (be.error) {
12637 						error = be.error;
12638 					}
12639 				}
12640 				SOCKBUF_UNLOCK(&so->so_snd);
12641 				goto out_unlocked;
12642 			}
12643 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12644 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12645 				    asoc, stcb->asoc.total_output_queue_size);
12646 			}
12647 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12648 				goto out_unlocked;
12649 			}
12650 			inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12651 		}
12652 		if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12653 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12654 		} else {
12655 			max_len = 0;
12656 		}
12657 		SOCKBUF_UNLOCK(&so->so_snd);
12658 	}
12659 skip_preblock:
12660 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12661 		goto out_unlocked;
12662 	}
12663 	/*
12664 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
12665 	 * case NOTE: uio will be null when top/mbuf is passed
12666 	 */
12667 	if (sndlen == 0) {
12668 		if (srcv->sinfo_flags & SCTP_EOF) {
12669 			got_all_of_the_send = 1;
12670 			goto dataless_eof;
12671 		} else {
12672 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12673 			error = EINVAL;
12674 			goto out;
12675 		}
12676 	}
12677 	if (top == NULL) {
12678 		struct sctp_stream_queue_pending *sp;
12679 		struct sctp_stream_out *strm;
12680 		uint32_t sndout;
12681 
12682 		SCTP_TCB_SEND_LOCK(stcb);
12683 		if ((asoc->stream_locked) &&
12684 		    (asoc->stream_locked_on != srcv->sinfo_stream)) {
12685 			SCTP_TCB_SEND_UNLOCK(stcb);
12686 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12687 			error = EINVAL;
12688 			goto out;
12689 		}
12690 		SCTP_TCB_SEND_UNLOCK(stcb);
12691 
12692 		strm = &stcb->asoc.strmout[srcv->sinfo_stream];
12693 		if (strm->last_msg_incomplete == 0) {
12694 	do_a_copy_in:
12695 			sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error);
12696 			if ((sp == NULL) || (error)) {
12697 				goto out;
12698 			}
12699 			SCTP_TCB_SEND_LOCK(stcb);
12700 			if (sp->msg_is_complete) {
12701 				strm->last_msg_incomplete = 0;
12702 				asoc->stream_locked = 0;
12703 			} else {
12704 				/*
12705 				 * Just got locked to this guy in case of an
12706 				 * interrupt.
12707 				 */
12708 				strm->last_msg_incomplete = 1;
12709 				asoc->stream_locked = 1;
12710 				asoc->stream_locked_on = srcv->sinfo_stream;
12711 				sp->sender_all_done = 0;
12712 			}
12713 			sctp_snd_sb_alloc(stcb, sp->length);
12714 			atomic_add_int(&asoc->stream_queue_cnt, 1);
12715 			if (srcv->sinfo_flags & SCTP_UNORDERED) {
12716 				SCTP_STAT_INCR(sctps_sends_with_unord);
12717 			}
12718 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
12719 			stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1);
12720 			SCTP_TCB_SEND_UNLOCK(stcb);
12721 		} else {
12722 			SCTP_TCB_SEND_LOCK(stcb);
12723 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
12724 			SCTP_TCB_SEND_UNLOCK(stcb);
12725 			if (sp == NULL) {
12726 				/* ???? Huh ??? last msg is gone */
12727 #ifdef INVARIANTS
12728 				panic("Warning: Last msg marked incomplete, yet nothing left?");
12729 #else
12730 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
12731 				strm->last_msg_incomplete = 0;
12732 #endif
12733 				goto do_a_copy_in;
12734 
12735 			}
12736 		}
12737 		while (uio->uio_resid > 0) {
12738 			/* How much room do we have? */
12739 			struct mbuf *new_tail, *mm;
12740 
12741 			if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12742 				max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
12743 			else
12744 				max_len = 0;
12745 
12746 			if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
12747 			    (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
12748 			    (uio->uio_resid && (uio->uio_resid <= (int)max_len))) {
12749 				sndout = 0;
12750 				new_tail = NULL;
12751 				if (hold_tcblock) {
12752 					SCTP_TCB_UNLOCK(stcb);
12753 					hold_tcblock = 0;
12754 				}
12755 				mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail);
12756 				if ((mm == NULL) || error) {
12757 					if (mm) {
12758 						sctp_m_freem(mm);
12759 					}
12760 					goto out;
12761 				}
12762 				/* Update the mbuf and count */
12763 				SCTP_TCB_SEND_LOCK(stcb);
12764 				if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12765 					/*
12766 					 * we need to get out. Peer probably
12767 					 * aborted.
12768 					 */
12769 					sctp_m_freem(mm);
12770 					if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
12771 						SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12772 						error = ECONNRESET;
12773 					}
12774 					SCTP_TCB_SEND_UNLOCK(stcb);
12775 					goto out;
12776 				}
12777 				if (sp->tail_mbuf) {
12778 					/* tack it to the end */
12779 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
12780 					sp->tail_mbuf = new_tail;
12781 				} else {
12782 					/* A stolen mbuf */
12783 					sp->data = mm;
12784 					sp->tail_mbuf = new_tail;
12785 				}
12786 				sctp_snd_sb_alloc(stcb, sndout);
12787 				atomic_add_int(&sp->length, sndout);
12788 				len += sndout;
12789 
12790 				/* Did we reach EOR? */
12791 				if ((uio->uio_resid == 0) &&
12792 				    ((user_marks_eor == 0) ||
12793 				    (srcv->sinfo_flags & SCTP_EOF) ||
12794 				    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12795 					sp->msg_is_complete = 1;
12796 				} else {
12797 					sp->msg_is_complete = 0;
12798 				}
12799 				SCTP_TCB_SEND_UNLOCK(stcb);
12800 			}
12801 			if (uio->uio_resid == 0) {
12802 				/* got it all? */
12803 				continue;
12804 			}
12805 			/* PR-SCTP? */
12806 			if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
12807 				/*
12808 				 * This is ugly but we must assure locking
12809 				 * order
12810 				 */
12811 				if (hold_tcblock == 0) {
12812 					SCTP_TCB_LOCK(stcb);
12813 					hold_tcblock = 1;
12814 				}
12815 				sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
12816 				inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12817 				if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12818 					max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12819 				else
12820 					max_len = 0;
12821 				if (max_len > 0) {
12822 					continue;
12823 				}
12824 				SCTP_TCB_UNLOCK(stcb);
12825 				hold_tcblock = 0;
12826 			}
12827 			/* wait for space now */
12828 			if (non_blocking) {
12829 				/* Non-blocking io in place out */
12830 				goto skip_out_eof;
12831 			}
12832 			/* What about the INIT, send it maybe */
12833 			if (queue_only_for_init) {
12834 				if (hold_tcblock == 0) {
12835 					SCTP_TCB_LOCK(stcb);
12836 					hold_tcblock = 1;
12837 				}
12838 				if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
12839 					/* a collision took us forward? */
12840 					queue_only = 0;
12841 				} else {
12842 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
12843 					SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12844 					queue_only = 1;
12845 				}
12846 			}
12847 			if ((net->flight_size > net->cwnd) &&
12848 			    (asoc->sctp_cmt_on_off == 0)) {
12849 				SCTP_STAT_INCR(sctps_send_cwnd_avoid);
12850 				queue_only = 1;
12851 			} else if (asoc->ifp_had_enobuf) {
12852 				SCTP_STAT_INCR(sctps_ifnomemqueued);
12853 				if (net->flight_size > (2 * net->mtu)) {
12854 					queue_only = 1;
12855 				}
12856 				asoc->ifp_had_enobuf = 0;
12857 			}
12858 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12859 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
12860 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
12861 			    (stcb->asoc.total_flight > 0) &&
12862 			    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
12863 			    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
12864 
12865 				/*-
12866 				 * Ok, Nagle is set on and we have data outstanding.
12867 				 * Don't send anything and let SACKs drive out the
12868 				 * data unless wen have a "full" segment to send.
12869 				 */
12870 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12871 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
12872 				}
12873 				SCTP_STAT_INCR(sctps_naglequeued);
12874 				nagle_applies = 1;
12875 			} else {
12876 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12877 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
12878 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
12879 				}
12880 				SCTP_STAT_INCR(sctps_naglesent);
12881 				nagle_applies = 0;
12882 			}
12883 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12884 
12885 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
12886 				    nagle_applies, un_sent);
12887 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
12888 				    stcb->asoc.total_flight,
12889 				    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
12890 			}
12891 			if (queue_only_for_init)
12892 				queue_only_for_init = 0;
12893 			if ((queue_only == 0) && (nagle_applies == 0)) {
12894 				/*-
12895 				 * need to start chunk output
12896 				 * before blocking.. note that if
12897 				 * a lock is already applied, then
12898 				 * the input via the net is happening
12899 				 * and I don't need to start output :-D
12900 				 */
12901 				if (hold_tcblock == 0) {
12902 					if (SCTP_TCB_TRYLOCK(stcb)) {
12903 						hold_tcblock = 1;
12904 						sctp_chunk_output(inp,
12905 						    stcb,
12906 						    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12907 					}
12908 				} else {
12909 					sctp_chunk_output(inp,
12910 					    stcb,
12911 					    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12912 				}
12913 				if (hold_tcblock == 1) {
12914 					SCTP_TCB_UNLOCK(stcb);
12915 					hold_tcblock = 0;
12916 				}
12917 			}
12918 			SOCKBUF_LOCK(&so->so_snd);
12919 			/*-
12920 			 * This is a bit strange, but I think it will
12921 			 * work. The total_output_queue_size is locked and
12922 			 * protected by the TCB_LOCK, which we just released.
12923 			 * There is a race that can occur between releasing it
12924 			 * above, and me getting the socket lock, where sacks
12925 			 * come in but we have not put the SB_WAIT on the
12926 			 * so_snd buffer to get the wakeup. After the LOCK
12927 			 * is applied the sack_processing will also need to
12928 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
12929 			 * once we have the socket buffer lock if we recheck the
12930 			 * size we KNOW we will get to sleep safely with the
12931 			 * wakeup flag in place.
12932 			 */
12933 			if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
12934 			    min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
12935 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12936 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
12937 					    asoc, uio->uio_resid);
12938 				}
12939 				be.error = 0;
12940 				stcb->block_entry = &be;
12941 				error = sbwait(&so->so_snd);
12942 				stcb->block_entry = NULL;
12943 
12944 				if (error || so->so_error || be.error) {
12945 					if (error == 0) {
12946 						if (so->so_error)
12947 							error = so->so_error;
12948 						if (be.error) {
12949 							error = be.error;
12950 						}
12951 					}
12952 					SOCKBUF_UNLOCK(&so->so_snd);
12953 					goto out_unlocked;
12954 				}
12955 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12956 					sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12957 					    asoc, stcb->asoc.total_output_queue_size);
12958 				}
12959 			}
12960 			SOCKBUF_UNLOCK(&so->so_snd);
12961 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12962 				goto out_unlocked;
12963 			}
12964 		}
12965 		SCTP_TCB_SEND_LOCK(stcb);
12966 		if (sp) {
12967 			if (sp->msg_is_complete == 0) {
12968 				strm->last_msg_incomplete = 1;
12969 				asoc->stream_locked = 1;
12970 				asoc->stream_locked_on = srcv->sinfo_stream;
12971 			} else {
12972 				sp->sender_all_done = 1;
12973 				strm->last_msg_incomplete = 0;
12974 				asoc->stream_locked = 0;
12975 			}
12976 		} else {
12977 			SCTP_PRINTF("Huh no sp TSNH?\n");
12978 			strm->last_msg_incomplete = 0;
12979 			asoc->stream_locked = 0;
12980 		}
12981 		SCTP_TCB_SEND_UNLOCK(stcb);
12982 		if (uio->uio_resid == 0) {
12983 			got_all_of_the_send = 1;
12984 		}
12985 	} else {
12986 		/* We send in a 0, since we do NOT have any locks */
12987 		error = sctp_msg_append(stcb, net, top, srcv, 0);
12988 		top = NULL;
12989 		if (srcv->sinfo_flags & SCTP_EOF) {
12990 			/*
12991 			 * This should only happen for Panda for the mbuf
12992 			 * send case, which does NOT yet support EEOR mode.
12993 			 * Thus, we can just set this flag to do the proper
12994 			 * EOF handling.
12995 			 */
12996 			got_all_of_the_send = 1;
12997 		}
12998 	}
12999 	if (error) {
13000 		goto out;
13001 	}
13002 dataless_eof:
13003 	/* EOF thing ? */
13004 	if ((srcv->sinfo_flags & SCTP_EOF) &&
13005 	    (got_all_of_the_send == 1)) {
13006 		int cnt;
13007 
13008 		SCTP_STAT_INCR(sctps_sends_with_eof);
13009 		error = 0;
13010 		if (hold_tcblock == 0) {
13011 			SCTP_TCB_LOCK(stcb);
13012 			hold_tcblock = 1;
13013 		}
13014 		cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED);
13015 		if (TAILQ_EMPTY(&asoc->send_queue) &&
13016 		    TAILQ_EMPTY(&asoc->sent_queue) &&
13017 		    (cnt == 0)) {
13018 			if (asoc->locked_on_sending) {
13019 				goto abort_anyway;
13020 			}
13021 			/* there is nothing queued to send, so I'm done... */
13022 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13023 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13024 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13025 				struct sctp_nets *netp;
13026 
13027 				/* only send SHUTDOWN the first time through */
13028 				if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
13029 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13030 				}
13031 				SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
13032 				SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
13033 				sctp_stop_timers_for_shutdown(stcb);
13034 				if (stcb->asoc.alternate) {
13035 					netp = stcb->asoc.alternate;
13036 				} else {
13037 					netp = stcb->asoc.primary_destination;
13038 				}
13039 				sctp_send_shutdown(stcb, netp);
13040 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13041 				    netp);
13042 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13043 				    asoc->primary_destination);
13044 			}
13045 		} else {
13046 			/*-
13047 			 * we still got (or just got) data to send, so set
13048 			 * SHUTDOWN_PENDING
13049 			 */
13050 			/*-
13051 			 * XXX sockets draft says that SCTP_EOF should be
13052 			 * sent with no data.  currently, we will allow user
13053 			 * data to be sent first and move to
13054 			 * SHUTDOWN-PENDING
13055 			 */
13056 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13057 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13058 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13059 				if (hold_tcblock == 0) {
13060 					SCTP_TCB_LOCK(stcb);
13061 					hold_tcblock = 1;
13062 				}
13063 				if (asoc->locked_on_sending) {
13064 					/* Locked to send out the data */
13065 					struct sctp_stream_queue_pending *sp;
13066 
13067 					sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
13068 					if (sp) {
13069 						if ((sp->length == 0) && (sp->msg_is_complete == 0))
13070 							asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
13071 					}
13072 				}
13073 				asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
13074 				if (TAILQ_EMPTY(&asoc->send_queue) &&
13075 				    TAILQ_EMPTY(&asoc->sent_queue) &&
13076 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13077 			abort_anyway:
13078 					if (free_cnt_applied) {
13079 						atomic_add_int(&stcb->asoc.refcnt, -1);
13080 						free_cnt_applied = 0;
13081 					}
13082 					sctp_abort_an_association(stcb->sctp_ep, stcb,
13083 					    NULL, SCTP_SO_LOCKED);
13084 					/*
13085 					 * now relock the stcb so everything
13086 					 * is sane
13087 					 */
13088 					hold_tcblock = 0;
13089 					stcb = NULL;
13090 					goto out;
13091 				}
13092 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13093 				    asoc->primary_destination);
13094 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13095 			}
13096 		}
13097 	}
13098 skip_out_eof:
13099 	if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
13100 		some_on_control = 1;
13101 	}
13102 	if (queue_only_for_init) {
13103 		if (hold_tcblock == 0) {
13104 			SCTP_TCB_LOCK(stcb);
13105 			hold_tcblock = 1;
13106 		}
13107 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13108 			/* a collision took us forward? */
13109 			queue_only = 0;
13110 		} else {
13111 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13112 			SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
13113 			queue_only = 1;
13114 		}
13115 	}
13116 	if ((net->flight_size > net->cwnd) &&
13117 	    (stcb->asoc.sctp_cmt_on_off == 0)) {
13118 		SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13119 		queue_only = 1;
13120 	} else if (asoc->ifp_had_enobuf) {
13121 		SCTP_STAT_INCR(sctps_ifnomemqueued);
13122 		if (net->flight_size > (2 * net->mtu)) {
13123 			queue_only = 1;
13124 		}
13125 		asoc->ifp_had_enobuf = 0;
13126 	}
13127 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13128 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13129 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13130 	    (stcb->asoc.total_flight > 0) &&
13131 	    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13132 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13133 		/*-
13134 		 * Ok, Nagle is set on and we have data outstanding.
13135 		 * Don't send anything and let SACKs drive out the
13136 		 * data unless wen have a "full" segment to send.
13137 		 */
13138 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13139 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13140 		}
13141 		SCTP_STAT_INCR(sctps_naglequeued);
13142 		nagle_applies = 1;
13143 	} else {
13144 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13145 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13146 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13147 		}
13148 		SCTP_STAT_INCR(sctps_naglesent);
13149 		nagle_applies = 0;
13150 	}
13151 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13152 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13153 		    nagle_applies, un_sent);
13154 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13155 		    stcb->asoc.total_flight,
13156 		    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13157 	}
13158 	if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
13159 		/* we can attempt to send too. */
13160 		if (hold_tcblock == 0) {
13161 			/*
13162 			 * If there is activity recv'ing sacks no need to
13163 			 * send
13164 			 */
13165 			if (SCTP_TCB_TRYLOCK(stcb)) {
13166 				sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13167 				hold_tcblock = 1;
13168 			}
13169 		} else {
13170 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13171 		}
13172 	} else if ((queue_only == 0) &&
13173 		    (stcb->asoc.peers_rwnd == 0) &&
13174 	    (stcb->asoc.total_flight == 0)) {
13175 		/* We get to have a probe outstanding */
13176 		if (hold_tcblock == 0) {
13177 			hold_tcblock = 1;
13178 			SCTP_TCB_LOCK(stcb);
13179 		}
13180 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13181 	} else if (some_on_control) {
13182 		int num_out, reason, frag_point;
13183 
13184 		/* Here we do control only */
13185 		if (hold_tcblock == 0) {
13186 			hold_tcblock = 1;
13187 			SCTP_TCB_LOCK(stcb);
13188 		}
13189 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
13190 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
13191 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
13192 	}
13193 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13194 	    queue_only, stcb->asoc.peers_rwnd, un_sent,
13195 	    stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
13196 	    stcb->asoc.total_output_queue_size, error);
13197 
13198 out:
13199 out_unlocked:
13200 
13201 	if (local_soresv && stcb) {
13202 		atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen);
13203 	}
13204 	if (create_lock_applied) {
13205 		SCTP_ASOC_CREATE_UNLOCK(inp);
13206 	}
13207 	if ((stcb) && hold_tcblock) {
13208 		SCTP_TCB_UNLOCK(stcb);
13209 	}
13210 	if (stcb && free_cnt_applied) {
13211 		atomic_add_int(&stcb->asoc.refcnt, -1);
13212 	}
13213 #ifdef INVARIANTS
13214 	if (stcb) {
13215 		if (mtx_owned(&stcb->tcb_mtx)) {
13216 			panic("Leaving with tcb mtx owned?");
13217 		}
13218 		if (mtx_owned(&stcb->tcb_send_mtx)) {
13219 			panic("Leaving with tcb send mtx owned?");
13220 		}
13221 	}
13222 #endif
13223 #ifdef INVARIANTS
13224 	if (inp) {
13225 		sctp_validate_no_locks(inp);
13226 	} else {
13227 		SCTP_PRINTF("Warning - inp is NULL so cant validate locks\n");
13228 	}
13229 #endif
13230 	if (top) {
13231 		sctp_m_freem(top);
13232 	}
13233 	if (control) {
13234 		sctp_m_freem(control);
13235 	}
13236 	return (error);
13237 }
13238 
13239 
13240 /*
13241  * generate an AUTHentication chunk, if required
13242  */
13243 struct mbuf *
13244 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13245     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
13246     struct sctp_tcb *stcb, uint8_t chunk)
13247 {
13248 	struct mbuf *m_auth;
13249 	struct sctp_auth_chunk *auth;
13250 	int chunk_len;
13251 	struct mbuf *cn;
13252 
13253 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13254 	    (stcb == NULL))
13255 		return (m);
13256 
13257 	/* sysctl disabled auth? */
13258 	if (SCTP_BASE_SYSCTL(sctp_auth_disable))
13259 		return (m);
13260 
13261 	/* peer doesn't do auth... */
13262 	if (!stcb->asoc.peer_supports_auth) {
13263 		return (m);
13264 	}
13265 	/* does the requested chunk require auth? */
13266 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13267 		return (m);
13268 	}
13269 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER);
13270 	if (m_auth == NULL) {
13271 		/* no mbuf's */
13272 		return (m);
13273 	}
13274 	/* reserve some space if this will be the first mbuf */
13275 	if (m == NULL)
13276 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13277 	/* fill in the AUTH chunk details */
13278 	auth = mtod(m_auth, struct sctp_auth_chunk *);
13279 	bzero(auth, sizeof(*auth));
13280 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
13281 	auth->ch.chunk_flags = 0;
13282 	chunk_len = sizeof(*auth) +
13283 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13284 	auth->ch.chunk_length = htons(chunk_len);
13285 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13286 	/* key id and hmac digest will be computed and filled in upon send */
13287 
13288 	/* save the offset where the auth was inserted into the chain */
13289 	*offset = 0;
13290 	for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13291 		*offset += SCTP_BUF_LEN(cn);
13292 	}
13293 
13294 	/* update length and return pointer to the auth chunk */
13295 	SCTP_BUF_LEN(m_auth) = chunk_len;
13296 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13297 	if (auth_ret != NULL)
13298 		*auth_ret = auth;
13299 
13300 	return (m);
13301 }
13302 
13303 #ifdef INET6
13304 int
13305 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
13306 {
13307 	struct nd_prefix *pfx = NULL;
13308 	struct nd_pfxrouter *pfxrtr = NULL;
13309 	struct sockaddr_in6 gw6;
13310 
13311 	if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
13312 		return (0);
13313 
13314 	/* get prefix entry of address */
13315 	LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13316 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13317 			continue;
13318 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13319 		    &src6->sin6_addr, &pfx->ndpr_mask))
13320 			break;
13321 	}
13322 	/* no prefix entry in the prefix list */
13323 	if (pfx == NULL) {
13324 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13325 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13326 		return (0);
13327 	}
13328 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13329 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13330 
13331 	/* search installed gateway from prefix entry */
13332 	LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13333 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
13334 		gw6.sin6_family = AF_INET6;
13335 		gw6.sin6_len = sizeof(struct sockaddr_in6);
13336 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13337 		    sizeof(struct in6_addr));
13338 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13339 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13340 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13341 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13342 		if (sctp_cmpaddr((struct sockaddr *)&gw6,
13343 		    ro->ro_rt->rt_gateway)) {
13344 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13345 			return (1);
13346 		}
13347 	}
13348 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13349 	return (0);
13350 }
13351 
13352 #endif
13353 
13354 int
13355 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
13356 {
13357 #ifdef INET
13358 	struct sockaddr_in *sin, *mask;
13359 	struct ifaddr *ifa;
13360 	struct in_addr srcnetaddr, gwnetaddr;
13361 
13362 	if (ro == NULL || ro->ro_rt == NULL ||
13363 	    sifa->address.sa.sa_family != AF_INET) {
13364 		return (0);
13365 	}
13366 	ifa = (struct ifaddr *)sifa->ifa;
13367 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13368 	sin = (struct sockaddr_in *)&sifa->address.sin;
13369 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13370 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13371 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13372 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13373 
13374 	sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
13375 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13376 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13377 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13378 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13379 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13380 		return (1);
13381 	}
13382 #endif
13383 	return (0);
13384 }
13385