xref: /freebsd/sys/netinet/sctp_output.c (revision 3364718004fd125943e152bc8c26564d5a14b50d)
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     int ipv4_addr_legal,
1867     int ipv6_addr_legal,
1868     int loopback_scope,
1869     int ipv4_local_scope,
1870     int local_scope SCTP_UNUSED,/* XXX */
1871     int site_scope,
1872     int do_update)
1873 {
1874 	if ((loopback_scope == 0) &&
1875 	    (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1876 		/*
1877 		 * skip loopback if not in scope *
1878 		 */
1879 		return (0);
1880 	}
1881 	switch (ifa->address.sa.sa_family) {
1882 #ifdef INET
1883 	case AF_INET:
1884 		if (ipv4_addr_legal) {
1885 			struct sockaddr_in *sin;
1886 
1887 			sin = (struct sockaddr_in *)&ifa->address.sin;
1888 			if (sin->sin_addr.s_addr == 0) {
1889 				/* not in scope , unspecified */
1890 				return (0);
1891 			}
1892 			if ((ipv4_local_scope == 0) &&
1893 			    (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1894 				/* private address not in scope */
1895 				return (0);
1896 			}
1897 		} else {
1898 			return (0);
1899 		}
1900 		break;
1901 #endif
1902 #ifdef INET6
1903 	case AF_INET6:
1904 		if (ipv6_addr_legal) {
1905 			struct sockaddr_in6 *sin6;
1906 
1907 			/*
1908 			 * Must update the flags,  bummer, which means any
1909 			 * IFA locks must now be applied HERE <->
1910 			 */
1911 			if (do_update) {
1912 				sctp_gather_internal_ifa_flags(ifa);
1913 			}
1914 			if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1915 				return (0);
1916 			}
1917 			/* ok to use deprecated addresses? */
1918 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1919 			if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1920 				/* skip unspecifed addresses */
1921 				return (0);
1922 			}
1923 			if (	/* (local_scope == 0) && */
1924 			    (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1925 				return (0);
1926 			}
1927 			if ((site_scope == 0) &&
1928 			    (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1929 				return (0);
1930 			}
1931 		} else {
1932 			return (0);
1933 		}
1934 		break;
1935 #endif
1936 	default:
1937 		return (0);
1938 	}
1939 	return (1);
1940 }
1941 
1942 static struct mbuf *
1943 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa)
1944 {
1945 	struct sctp_paramhdr *parmh;
1946 	struct mbuf *mret;
1947 	int len;
1948 
1949 	switch (ifa->address.sa.sa_family) {
1950 #ifdef INET
1951 	case AF_INET:
1952 		len = sizeof(struct sctp_ipv4addr_param);
1953 		break;
1954 #endif
1955 #ifdef INET6
1956 	case AF_INET6:
1957 		len = sizeof(struct sctp_ipv6addr_param);
1958 		break;
1959 #endif
1960 	default:
1961 		return (m);
1962 	}
1963 	if (M_TRAILINGSPACE(m) >= len) {
1964 		/* easy side we just drop it on the end */
1965 		parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1966 		mret = m;
1967 	} else {
1968 		/* Need more space */
1969 		mret = m;
1970 		while (SCTP_BUF_NEXT(mret) != NULL) {
1971 			mret = SCTP_BUF_NEXT(mret);
1972 		}
1973 		SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(len, 0, M_DONTWAIT, 1, MT_DATA);
1974 		if (SCTP_BUF_NEXT(mret) == NULL) {
1975 			/* We are hosed, can't add more addresses */
1976 			return (m);
1977 		}
1978 		mret = SCTP_BUF_NEXT(mret);
1979 		parmh = mtod(mret, struct sctp_paramhdr *);
1980 	}
1981 	/* now add the parameter */
1982 	switch (ifa->address.sa.sa_family) {
1983 #ifdef INET
1984 	case AF_INET:
1985 		{
1986 			struct sctp_ipv4addr_param *ipv4p;
1987 			struct sockaddr_in *sin;
1988 
1989 			sin = (struct sockaddr_in *)&ifa->address.sin;
1990 			ipv4p = (struct sctp_ipv4addr_param *)parmh;
1991 			parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1992 			parmh->param_length = htons(len);
1993 			ipv4p->addr = sin->sin_addr.s_addr;
1994 			SCTP_BUF_LEN(mret) += len;
1995 			break;
1996 		}
1997 #endif
1998 #ifdef INET6
1999 	case AF_INET6:
2000 		{
2001 			struct sctp_ipv6addr_param *ipv6p;
2002 			struct sockaddr_in6 *sin6;
2003 
2004 			sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
2005 			ipv6p = (struct sctp_ipv6addr_param *)parmh;
2006 			parmh->param_type = htons(SCTP_IPV6_ADDRESS);
2007 			parmh->param_length = htons(len);
2008 			memcpy(ipv6p->addr, &sin6->sin6_addr,
2009 			    sizeof(ipv6p->addr));
2010 			/* clear embedded scope in the address */
2011 			in6_clearscope((struct in6_addr *)ipv6p->addr);
2012 			SCTP_BUF_LEN(mret) += len;
2013 			break;
2014 		}
2015 #endif
2016 	default:
2017 		return (m);
2018 	}
2019 	return (mret);
2020 }
2021 
2022 
2023 struct mbuf *
2024 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2025     struct sctp_scoping *scope,
2026     struct mbuf *m_at, int cnt_inits_to)
2027 {
2028 	struct sctp_vrf *vrf = NULL;
2029 	int cnt, limit_out = 0, total_count;
2030 	uint32_t vrf_id;
2031 
2032 	vrf_id = inp->def_vrf_id;
2033 	SCTP_IPI_ADDR_RLOCK();
2034 	vrf = sctp_find_vrf(vrf_id);
2035 	if (vrf == NULL) {
2036 		SCTP_IPI_ADDR_RUNLOCK();
2037 		return (m_at);
2038 	}
2039 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2040 		struct sctp_ifa *sctp_ifap;
2041 		struct sctp_ifn *sctp_ifnp;
2042 
2043 		cnt = cnt_inits_to;
2044 		if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2045 			limit_out = 1;
2046 			cnt = SCTP_ADDRESS_LIMIT;
2047 			goto skip_count;
2048 		}
2049 		LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2050 			if ((scope->loopback_scope == 0) &&
2051 			    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2052 				/*
2053 				 * Skip loopback devices if loopback_scope
2054 				 * not set
2055 				 */
2056 				continue;
2057 			}
2058 			LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2059 				if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2060 					continue;
2061 				}
2062 				if (sctp_is_address_in_scope(sctp_ifap,
2063 				    scope->ipv4_addr_legal,
2064 				    scope->ipv6_addr_legal,
2065 				    scope->loopback_scope,
2066 				    scope->ipv4_local_scope,
2067 				    scope->local_scope,
2068 				    scope->site_scope, 1) == 0) {
2069 					continue;
2070 				}
2071 				cnt++;
2072 				if (cnt > SCTP_ADDRESS_LIMIT) {
2073 					break;
2074 				}
2075 			}
2076 			if (cnt > SCTP_ADDRESS_LIMIT) {
2077 				break;
2078 			}
2079 		}
2080 skip_count:
2081 		if (cnt > 1) {
2082 			total_count = 0;
2083 			LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2084 				cnt = 0;
2085 				if ((scope->loopback_scope == 0) &&
2086 				    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2087 					/*
2088 					 * Skip loopback devices if
2089 					 * loopback_scope not set
2090 					 */
2091 					continue;
2092 				}
2093 				LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2094 					if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2095 						continue;
2096 					}
2097 					if (sctp_is_address_in_scope(sctp_ifap,
2098 					    scope->ipv4_addr_legal,
2099 					    scope->ipv6_addr_legal,
2100 					    scope->loopback_scope,
2101 					    scope->ipv4_local_scope,
2102 					    scope->local_scope,
2103 					    scope->site_scope, 0) == 0) {
2104 						continue;
2105 					}
2106 					m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap);
2107 					if (limit_out) {
2108 						cnt++;
2109 						total_count++;
2110 						if (cnt >= 2) {
2111 							/*
2112 							 * two from each
2113 							 * address
2114 							 */
2115 							break;
2116 						}
2117 						if (total_count > SCTP_ADDRESS_LIMIT) {
2118 							/* No more addresses */
2119 							break;
2120 						}
2121 					}
2122 				}
2123 			}
2124 		}
2125 	} else {
2126 		struct sctp_laddr *laddr;
2127 
2128 		cnt = cnt_inits_to;
2129 		/* First, how many ? */
2130 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2131 			if (laddr->ifa == NULL) {
2132 				continue;
2133 			}
2134 			if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2135 				/*
2136 				 * Address being deleted by the system, dont
2137 				 * list.
2138 				 */
2139 				continue;
2140 			if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2141 				/*
2142 				 * Address being deleted on this ep don't
2143 				 * list.
2144 				 */
2145 				continue;
2146 			}
2147 			if (sctp_is_address_in_scope(laddr->ifa,
2148 			    scope->ipv4_addr_legal,
2149 			    scope->ipv6_addr_legal,
2150 			    scope->loopback_scope,
2151 			    scope->ipv4_local_scope,
2152 			    scope->local_scope,
2153 			    scope->site_scope, 1) == 0) {
2154 				continue;
2155 			}
2156 			cnt++;
2157 		}
2158 		/*
2159 		 * To get through a NAT we only list addresses if we have
2160 		 * more than one. That way if you just bind a single address
2161 		 * we let the source of the init dictate our address.
2162 		 */
2163 		if (cnt > 1) {
2164 			cnt = cnt_inits_to;
2165 			LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2166 				if (laddr->ifa == NULL) {
2167 					continue;
2168 				}
2169 				if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) {
2170 					continue;
2171 				}
2172 				if (sctp_is_address_in_scope(laddr->ifa,
2173 				    scope->ipv4_addr_legal,
2174 				    scope->ipv6_addr_legal,
2175 				    scope->loopback_scope,
2176 				    scope->ipv4_local_scope,
2177 				    scope->local_scope,
2178 				    scope->site_scope, 0) == 0) {
2179 					continue;
2180 				}
2181 				m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa);
2182 				cnt++;
2183 				if (cnt >= SCTP_ADDRESS_LIMIT) {
2184 					break;
2185 				}
2186 			}
2187 		}
2188 	}
2189 	SCTP_IPI_ADDR_RUNLOCK();
2190 	return (m_at);
2191 }
2192 
2193 static struct sctp_ifa *
2194 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2195     uint8_t dest_is_loop,
2196     uint8_t dest_is_priv,
2197     sa_family_t fam)
2198 {
2199 	uint8_t dest_is_global = 0;
2200 
2201 	/* dest_is_priv is true if destination is a private address */
2202 	/* dest_is_loop is true if destination is a loopback addresses */
2203 
2204 	/**
2205 	 * Here we determine if its a preferred address. A preferred address
2206 	 * means it is the same scope or higher scope then the destination.
2207 	 * L = loopback, P = private, G = global
2208 	 * -----------------------------------------
2209 	 *    src    |  dest | result
2210 	 *  ----------------------------------------
2211 	 *     L     |    L  |    yes
2212 	 *  -----------------------------------------
2213 	 *     P     |    L  |    yes-v4 no-v6
2214 	 *  -----------------------------------------
2215 	 *     G     |    L  |    yes-v4 no-v6
2216 	 *  -----------------------------------------
2217 	 *     L     |    P  |    no
2218 	 *  -----------------------------------------
2219 	 *     P     |    P  |    yes
2220 	 *  -----------------------------------------
2221 	 *     G     |    P  |    no
2222 	 *   -----------------------------------------
2223 	 *     L     |    G  |    no
2224 	 *   -----------------------------------------
2225 	 *     P     |    G  |    no
2226 	 *    -----------------------------------------
2227 	 *     G     |    G  |    yes
2228 	 *    -----------------------------------------
2229 	 */
2230 
2231 	if (ifa->address.sa.sa_family != fam) {
2232 		/* forget mis-matched family */
2233 		return (NULL);
2234 	}
2235 	if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2236 		dest_is_global = 1;
2237 	}
2238 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2239 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2240 	/* Ok the address may be ok */
2241 #ifdef INET6
2242 	if (fam == AF_INET6) {
2243 		/* ok to use deprecated addresses? no lets not! */
2244 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2245 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2246 			return (NULL);
2247 		}
2248 		if (ifa->src_is_priv && !ifa->src_is_loop) {
2249 			if (dest_is_loop) {
2250 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2251 				return (NULL);
2252 			}
2253 		}
2254 		if (ifa->src_is_glob) {
2255 			if (dest_is_loop) {
2256 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2257 				return (NULL);
2258 			}
2259 		}
2260 	}
2261 #endif
2262 	/*
2263 	 * Now that we know what is what, implement or table this could in
2264 	 * theory be done slicker (it used to be), but this is
2265 	 * straightforward and easier to validate :-)
2266 	 */
2267 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2268 	    ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2269 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2270 	    dest_is_loop, dest_is_priv, dest_is_global);
2271 
2272 	if ((ifa->src_is_loop) && (dest_is_priv)) {
2273 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2274 		return (NULL);
2275 	}
2276 	if ((ifa->src_is_glob) && (dest_is_priv)) {
2277 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2278 		return (NULL);
2279 	}
2280 	if ((ifa->src_is_loop) && (dest_is_global)) {
2281 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2282 		return (NULL);
2283 	}
2284 	if ((ifa->src_is_priv) && (dest_is_global)) {
2285 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2286 		return (NULL);
2287 	}
2288 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2289 	/* its a preferred address */
2290 	return (ifa);
2291 }
2292 
2293 static struct sctp_ifa *
2294 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2295     uint8_t dest_is_loop,
2296     uint8_t dest_is_priv,
2297     sa_family_t fam)
2298 {
2299 	uint8_t dest_is_global = 0;
2300 
2301 	/**
2302 	 * Here we determine if its a acceptable address. A acceptable
2303 	 * address means it is the same scope or higher scope but we can
2304 	 * allow for NAT which means its ok to have a global dest and a
2305 	 * private src.
2306 	 *
2307 	 * L = loopback, P = private, G = global
2308 	 * -----------------------------------------
2309 	 *  src    |  dest | result
2310 	 * -----------------------------------------
2311 	 *   L     |   L   |    yes
2312 	 *  -----------------------------------------
2313 	 *   P     |   L   |    yes-v4 no-v6
2314 	 *  -----------------------------------------
2315 	 *   G     |   L   |    yes
2316 	 * -----------------------------------------
2317 	 *   L     |   P   |    no
2318 	 * -----------------------------------------
2319 	 *   P     |   P   |    yes
2320 	 * -----------------------------------------
2321 	 *   G     |   P   |    yes - May not work
2322 	 * -----------------------------------------
2323 	 *   L     |   G   |    no
2324 	 * -----------------------------------------
2325 	 *   P     |   G   |    yes - May not work
2326 	 * -----------------------------------------
2327 	 *   G     |   G   |    yes
2328 	 * -----------------------------------------
2329 	 */
2330 
2331 	if (ifa->address.sa.sa_family != fam) {
2332 		/* forget non matching family */
2333 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2334 		    ifa->address.sa.sa_family, fam);
2335 		return (NULL);
2336 	}
2337 	/* Ok the address may be ok */
2338 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2339 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2340 	    dest_is_loop, dest_is_priv);
2341 	if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2342 		dest_is_global = 1;
2343 	}
2344 #ifdef INET6
2345 	if (fam == AF_INET6) {
2346 		/* ok to use deprecated addresses? */
2347 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2348 			return (NULL);
2349 		}
2350 		if (ifa->src_is_priv) {
2351 			/* Special case, linklocal to loop */
2352 			if (dest_is_loop)
2353 				return (NULL);
2354 		}
2355 	}
2356 #endif
2357 	/*
2358 	 * Now that we know what is what, implement our table. This could in
2359 	 * theory be done slicker (it used to be), but this is
2360 	 * straightforward and easier to validate :-)
2361 	 */
2362 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2363 	    ifa->src_is_loop,
2364 	    dest_is_priv);
2365 	if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2366 		return (NULL);
2367 	}
2368 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2369 	    ifa->src_is_loop,
2370 	    dest_is_global);
2371 	if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2372 		return (NULL);
2373 	}
2374 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2375 	/* its an acceptable address */
2376 	return (ifa);
2377 }
2378 
2379 int
2380 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2381 {
2382 	struct sctp_laddr *laddr;
2383 
2384 	if (stcb == NULL) {
2385 		/* There are no restrictions, no TCB :-) */
2386 		return (0);
2387 	}
2388 	LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2389 		if (laddr->ifa == NULL) {
2390 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2391 			    __FUNCTION__);
2392 			continue;
2393 		}
2394 		if (laddr->ifa == ifa) {
2395 			/* Yes it is on the list */
2396 			return (1);
2397 		}
2398 	}
2399 	return (0);
2400 }
2401 
2402 
2403 int
2404 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2405 {
2406 	struct sctp_laddr *laddr;
2407 
2408 	if (ifa == NULL)
2409 		return (0);
2410 	LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2411 		if (laddr->ifa == NULL) {
2412 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2413 			    __FUNCTION__);
2414 			continue;
2415 		}
2416 		if ((laddr->ifa == ifa) && laddr->action == 0)
2417 			/* same pointer */
2418 			return (1);
2419 	}
2420 	return (0);
2421 }
2422 
2423 
2424 
2425 static struct sctp_ifa *
2426 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2427     sctp_route_t * ro,
2428     uint32_t vrf_id,
2429     int non_asoc_addr_ok,
2430     uint8_t dest_is_priv,
2431     uint8_t dest_is_loop,
2432     sa_family_t fam)
2433 {
2434 	struct sctp_laddr *laddr, *starting_point;
2435 	void *ifn;
2436 	int resettotop = 0;
2437 	struct sctp_ifn *sctp_ifn;
2438 	struct sctp_ifa *sctp_ifa, *sifa;
2439 	struct sctp_vrf *vrf;
2440 	uint32_t ifn_index;
2441 
2442 	vrf = sctp_find_vrf(vrf_id);
2443 	if (vrf == NULL)
2444 		return (NULL);
2445 
2446 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2447 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2448 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2449 	/*
2450 	 * first question, is the ifn we will emit on in our list, if so, we
2451 	 * want such an address. Note that we first looked for a preferred
2452 	 * address.
2453 	 */
2454 	if (sctp_ifn) {
2455 		/* is a preferred one on the interface we route out? */
2456 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2457 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2458 			    (non_asoc_addr_ok == 0))
2459 				continue;
2460 			sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2461 			    dest_is_loop,
2462 			    dest_is_priv, fam);
2463 			if (sifa == NULL)
2464 				continue;
2465 			if (sctp_is_addr_in_ep(inp, sifa)) {
2466 				atomic_add_int(&sifa->refcount, 1);
2467 				return (sifa);
2468 			}
2469 		}
2470 	}
2471 	/*
2472 	 * ok, now we now need to find one on the list of the addresses. We
2473 	 * can't get one on the emitting interface so let's find first a
2474 	 * preferred one. If not that an acceptable one otherwise... we
2475 	 * return NULL.
2476 	 */
2477 	starting_point = inp->next_addr_touse;
2478 once_again:
2479 	if (inp->next_addr_touse == NULL) {
2480 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2481 		resettotop = 1;
2482 	}
2483 	for (laddr = inp->next_addr_touse; laddr;
2484 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2485 		if (laddr->ifa == NULL) {
2486 			/* address has been removed */
2487 			continue;
2488 		}
2489 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2490 			/* address is being deleted */
2491 			continue;
2492 		}
2493 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2494 		    dest_is_priv, fam);
2495 		if (sifa == NULL)
2496 			continue;
2497 		atomic_add_int(&sifa->refcount, 1);
2498 		return (sifa);
2499 	}
2500 	if (resettotop == 0) {
2501 		inp->next_addr_touse = NULL;
2502 		goto once_again;
2503 	}
2504 	inp->next_addr_touse = starting_point;
2505 	resettotop = 0;
2506 once_again_too:
2507 	if (inp->next_addr_touse == NULL) {
2508 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2509 		resettotop = 1;
2510 	}
2511 	/* ok, what about an acceptable address in the inp */
2512 	for (laddr = inp->next_addr_touse; laddr;
2513 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2514 		if (laddr->ifa == NULL) {
2515 			/* address has been removed */
2516 			continue;
2517 		}
2518 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2519 			/* address is being deleted */
2520 			continue;
2521 		}
2522 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2523 		    dest_is_priv, fam);
2524 		if (sifa == NULL)
2525 			continue;
2526 		atomic_add_int(&sifa->refcount, 1);
2527 		return (sifa);
2528 	}
2529 	if (resettotop == 0) {
2530 		inp->next_addr_touse = NULL;
2531 		goto once_again_too;
2532 	}
2533 	/*
2534 	 * no address bound can be a source for the destination we are in
2535 	 * trouble
2536 	 */
2537 	return (NULL);
2538 }
2539 
2540 
2541 
2542 static struct sctp_ifa *
2543 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2544     struct sctp_tcb *stcb,
2545     sctp_route_t * ro,
2546     uint32_t vrf_id,
2547     uint8_t dest_is_priv,
2548     uint8_t dest_is_loop,
2549     int non_asoc_addr_ok,
2550     sa_family_t fam)
2551 {
2552 	struct sctp_laddr *laddr, *starting_point;
2553 	void *ifn;
2554 	struct sctp_ifn *sctp_ifn;
2555 	struct sctp_ifa *sctp_ifa, *sifa;
2556 	uint8_t start_at_beginning = 0;
2557 	struct sctp_vrf *vrf;
2558 	uint32_t ifn_index;
2559 
2560 	/*
2561 	 * first question, is the ifn we will emit on in our list, if so, we
2562 	 * want that one.
2563 	 */
2564 	vrf = sctp_find_vrf(vrf_id);
2565 	if (vrf == NULL)
2566 		return (NULL);
2567 
2568 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2569 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2570 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2571 
2572 	/*
2573 	 * first question, is the ifn we will emit on in our list?  If so,
2574 	 * we want that one. First we look for a preferred. Second, we go
2575 	 * for an acceptable.
2576 	 */
2577 	if (sctp_ifn) {
2578 		/* first try for a preferred address on the ep */
2579 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2580 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2581 				continue;
2582 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2583 				sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2584 				if (sifa == NULL)
2585 					continue;
2586 				if (((non_asoc_addr_ok == 0) &&
2587 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2588 				    (non_asoc_addr_ok &&
2589 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2590 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2591 					/* on the no-no list */
2592 					continue;
2593 				}
2594 				atomic_add_int(&sifa->refcount, 1);
2595 				return (sifa);
2596 			}
2597 		}
2598 		/* next try for an acceptable address on the ep */
2599 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2600 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2601 				continue;
2602 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2603 				sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2604 				if (sifa == NULL)
2605 					continue;
2606 				if (((non_asoc_addr_ok == 0) &&
2607 				    (sctp_is_addr_restricted(stcb, sifa))) ||
2608 				    (non_asoc_addr_ok &&
2609 				    (sctp_is_addr_restricted(stcb, sifa)) &&
2610 				    (!sctp_is_addr_pending(stcb, sifa)))) {
2611 					/* on the no-no list */
2612 					continue;
2613 				}
2614 				atomic_add_int(&sifa->refcount, 1);
2615 				return (sifa);
2616 			}
2617 		}
2618 
2619 	}
2620 	/*
2621 	 * if we can't find one like that then we must look at all addresses
2622 	 * bound to pick one at first preferable then secondly acceptable.
2623 	 */
2624 	starting_point = stcb->asoc.last_used_address;
2625 sctp_from_the_top:
2626 	if (stcb->asoc.last_used_address == NULL) {
2627 		start_at_beginning = 1;
2628 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2629 	}
2630 	/* search beginning with the last used address */
2631 	for (laddr = stcb->asoc.last_used_address; laddr;
2632 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2633 		if (laddr->ifa == NULL) {
2634 			/* address has been removed */
2635 			continue;
2636 		}
2637 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2638 			/* address is being deleted */
2639 			continue;
2640 		}
2641 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2642 		if (sifa == NULL)
2643 			continue;
2644 		if (((non_asoc_addr_ok == 0) &&
2645 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2646 		    (non_asoc_addr_ok &&
2647 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2648 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2649 			/* on the no-no list */
2650 			continue;
2651 		}
2652 		stcb->asoc.last_used_address = laddr;
2653 		atomic_add_int(&sifa->refcount, 1);
2654 		return (sifa);
2655 	}
2656 	if (start_at_beginning == 0) {
2657 		stcb->asoc.last_used_address = NULL;
2658 		goto sctp_from_the_top;
2659 	}
2660 	/* now try for any higher scope than the destination */
2661 	stcb->asoc.last_used_address = starting_point;
2662 	start_at_beginning = 0;
2663 sctp_from_the_top2:
2664 	if (stcb->asoc.last_used_address == NULL) {
2665 		start_at_beginning = 1;
2666 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2667 	}
2668 	/* search beginning with the last used address */
2669 	for (laddr = stcb->asoc.last_used_address; laddr;
2670 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2671 		if (laddr->ifa == NULL) {
2672 			/* address has been removed */
2673 			continue;
2674 		}
2675 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2676 			/* address is being deleted */
2677 			continue;
2678 		}
2679 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2680 		    dest_is_priv, fam);
2681 		if (sifa == NULL)
2682 			continue;
2683 		if (((non_asoc_addr_ok == 0) &&
2684 		    (sctp_is_addr_restricted(stcb, sifa))) ||
2685 		    (non_asoc_addr_ok &&
2686 		    (sctp_is_addr_restricted(stcb, sifa)) &&
2687 		    (!sctp_is_addr_pending(stcb, sifa)))) {
2688 			/* on the no-no list */
2689 			continue;
2690 		}
2691 		stcb->asoc.last_used_address = laddr;
2692 		atomic_add_int(&sifa->refcount, 1);
2693 		return (sifa);
2694 	}
2695 	if (start_at_beginning == 0) {
2696 		stcb->asoc.last_used_address = NULL;
2697 		goto sctp_from_the_top2;
2698 	}
2699 	return (NULL);
2700 }
2701 
2702 static struct sctp_ifa *
2703 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2704     struct sctp_tcb *stcb,
2705     int non_asoc_addr_ok,
2706     uint8_t dest_is_loop,
2707     uint8_t dest_is_priv,
2708     int addr_wanted,
2709     sa_family_t fam,
2710     sctp_route_t * ro
2711 )
2712 {
2713 	struct sctp_ifa *ifa, *sifa;
2714 	int num_eligible_addr = 0;
2715 
2716 #ifdef INET6
2717 	struct sockaddr_in6 sin6, lsa6;
2718 
2719 	if (fam == AF_INET6) {
2720 		memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2721 		(void)sa6_recoverscope(&sin6);
2722 	}
2723 #endif				/* INET6 */
2724 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2725 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2726 		    (non_asoc_addr_ok == 0))
2727 			continue;
2728 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2729 		    dest_is_priv, fam);
2730 		if (sifa == NULL)
2731 			continue;
2732 #ifdef INET6
2733 		if (fam == AF_INET6 &&
2734 		    dest_is_loop &&
2735 		    sifa->src_is_loop && sifa->src_is_priv) {
2736 			/*
2737 			 * don't allow fe80::1 to be a src on loop ::1, we
2738 			 * don't list it to the peer so we will get an
2739 			 * abort.
2740 			 */
2741 			continue;
2742 		}
2743 		if (fam == AF_INET6 &&
2744 		    IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2745 		    IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2746 			/*
2747 			 * link-local <-> link-local must belong to the same
2748 			 * scope.
2749 			 */
2750 			memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2751 			(void)sa6_recoverscope(&lsa6);
2752 			if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2753 				continue;
2754 			}
2755 		}
2756 #endif				/* INET6 */
2757 
2758 		/*
2759 		 * Check if the IPv6 address matches to next-hop. In the
2760 		 * mobile case, old IPv6 address may be not deleted from the
2761 		 * interface. Then, the interface has previous and new
2762 		 * addresses.  We should use one corresponding to the
2763 		 * next-hop.  (by micchie)
2764 		 */
2765 #ifdef INET6
2766 		if (stcb && fam == AF_INET6 &&
2767 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2768 			if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2769 			    == 0) {
2770 				continue;
2771 			}
2772 		}
2773 #endif
2774 #ifdef INET
2775 		/* Avoid topologically incorrect IPv4 address */
2776 		if (stcb && fam == AF_INET &&
2777 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2778 			if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2779 				continue;
2780 			}
2781 		}
2782 #endif
2783 		if (stcb) {
2784 			if (sctp_is_address_in_scope(ifa,
2785 			    stcb->asoc.ipv4_addr_legal,
2786 			    stcb->asoc.ipv6_addr_legal,
2787 			    stcb->asoc.loopback_scope,
2788 			    stcb->asoc.ipv4_local_scope,
2789 			    stcb->asoc.local_scope,
2790 			    stcb->asoc.site_scope, 0) == 0) {
2791 				continue;
2792 			}
2793 			if (((non_asoc_addr_ok == 0) &&
2794 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2795 			    (non_asoc_addr_ok &&
2796 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2797 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2798 				/*
2799 				 * It is restricted for some reason..
2800 				 * probably not yet added.
2801 				 */
2802 				continue;
2803 			}
2804 		}
2805 		if (num_eligible_addr >= addr_wanted) {
2806 			return (sifa);
2807 		}
2808 		num_eligible_addr++;
2809 	}
2810 	return (NULL);
2811 }
2812 
2813 
2814 static int
2815 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2816     struct sctp_tcb *stcb,
2817     int non_asoc_addr_ok,
2818     uint8_t dest_is_loop,
2819     uint8_t dest_is_priv,
2820     sa_family_t fam)
2821 {
2822 	struct sctp_ifa *ifa, *sifa;
2823 	int num_eligible_addr = 0;
2824 
2825 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2826 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2827 		    (non_asoc_addr_ok == 0)) {
2828 			continue;
2829 		}
2830 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2831 		    dest_is_priv, fam);
2832 		if (sifa == NULL) {
2833 			continue;
2834 		}
2835 		if (stcb) {
2836 			if (sctp_is_address_in_scope(ifa,
2837 			    stcb->asoc.ipv4_addr_legal,
2838 			    stcb->asoc.ipv6_addr_legal,
2839 			    stcb->asoc.loopback_scope,
2840 			    stcb->asoc.ipv4_local_scope,
2841 			    stcb->asoc.local_scope,
2842 			    stcb->asoc.site_scope, 0) == 0) {
2843 				continue;
2844 			}
2845 			if (((non_asoc_addr_ok == 0) &&
2846 			    (sctp_is_addr_restricted(stcb, sifa))) ||
2847 			    (non_asoc_addr_ok &&
2848 			    (sctp_is_addr_restricted(stcb, sifa)) &&
2849 			    (!sctp_is_addr_pending(stcb, sifa)))) {
2850 				/*
2851 				 * It is restricted for some reason..
2852 				 * probably not yet added.
2853 				 */
2854 				continue;
2855 			}
2856 		}
2857 		num_eligible_addr++;
2858 	}
2859 	return (num_eligible_addr);
2860 }
2861 
2862 static struct sctp_ifa *
2863 sctp_choose_boundall(struct sctp_tcb *stcb,
2864     struct sctp_nets *net,
2865     sctp_route_t * ro,
2866     uint32_t vrf_id,
2867     uint8_t dest_is_priv,
2868     uint8_t dest_is_loop,
2869     int non_asoc_addr_ok,
2870     sa_family_t fam)
2871 {
2872 	int cur_addr_num = 0, num_preferred = 0;
2873 	void *ifn;
2874 	struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2875 	struct sctp_ifa *sctp_ifa, *sifa;
2876 	uint32_t ifn_index;
2877 	struct sctp_vrf *vrf;
2878 
2879 #ifdef INET
2880 	int retried = 0;
2881 
2882 #endif
2883 
2884 	/*-
2885 	 * For boundall we can use any address in the association.
2886 	 * If non_asoc_addr_ok is set we can use any address (at least in
2887 	 * theory). So we look for preferred addresses first. If we find one,
2888 	 * we use it. Otherwise we next try to get an address on the
2889 	 * interface, which we should be able to do (unless non_asoc_addr_ok
2890 	 * is false and we are routed out that way). In these cases where we
2891 	 * can't use the address of the interface we go through all the
2892 	 * ifn's looking for an address we can use and fill that in. Punting
2893 	 * means we send back address 0, which will probably cause problems
2894 	 * actually since then IP will fill in the address of the route ifn,
2895 	 * which means we probably already rejected it.. i.e. here comes an
2896 	 * abort :-<.
2897 	 */
2898 	vrf = sctp_find_vrf(vrf_id);
2899 	if (vrf == NULL)
2900 		return (NULL);
2901 
2902 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2903 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2904 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2905 	emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2906 	if (sctp_ifn == NULL) {
2907 		/* ?? We don't have this guy ?? */
2908 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
2909 		goto bound_all_plan_b;
2910 	}
2911 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
2912 	    ifn_index, sctp_ifn->ifn_name);
2913 
2914 	if (net) {
2915 		cur_addr_num = net->indx_of_eligible_next_to_use;
2916 	}
2917 	num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
2918 	    stcb,
2919 	    non_asoc_addr_ok,
2920 	    dest_is_loop,
2921 	    dest_is_priv, fam);
2922 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
2923 	    num_preferred, sctp_ifn->ifn_name);
2924 	if (num_preferred == 0) {
2925 		/*
2926 		 * no eligible addresses, we must use some other interface
2927 		 * address if we can find one.
2928 		 */
2929 		goto bound_all_plan_b;
2930 	}
2931 	/*
2932 	 * Ok we have num_eligible_addr set with how many we can use, this
2933 	 * may vary from call to call due to addresses being deprecated
2934 	 * etc..
2935 	 */
2936 	if (cur_addr_num >= num_preferred) {
2937 		cur_addr_num = 0;
2938 	}
2939 	/*
2940 	 * select the nth address from the list (where cur_addr_num is the
2941 	 * nth) and 0 is the first one, 1 is the second one etc...
2942 	 */
2943 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
2944 
2945 	sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2946 	    dest_is_priv, cur_addr_num, fam, ro);
2947 
2948 	/* if sctp_ifa is NULL something changed??, fall to plan b. */
2949 	if (sctp_ifa) {
2950 		atomic_add_int(&sctp_ifa->refcount, 1);
2951 		if (net) {
2952 			/* save off where the next one we will want */
2953 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2954 		}
2955 		return (sctp_ifa);
2956 	}
2957 	/*
2958 	 * plan_b: Look at all interfaces and find a preferred address. If
2959 	 * no preferred fall through to plan_c.
2960 	 */
2961 bound_all_plan_b:
2962 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
2963 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
2964 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
2965 		    sctp_ifn->ifn_name);
2966 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
2967 			/* wrong base scope */
2968 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
2969 			continue;
2970 		}
2971 		if ((sctp_ifn == looked_at) && looked_at) {
2972 			/* already looked at this guy */
2973 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
2974 			continue;
2975 		}
2976 		num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok,
2977 		    dest_is_loop, dest_is_priv, fam);
2978 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2979 		    "Found ifn:%p %d preferred source addresses\n",
2980 		    ifn, num_preferred);
2981 		if (num_preferred == 0) {
2982 			/* None on this interface. */
2983 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n");
2984 			continue;
2985 		}
2986 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2987 		    "num preferred:%d on interface:%p cur_addr_num:%d\n",
2988 		    num_preferred, (void *)sctp_ifn, cur_addr_num);
2989 
2990 		/*
2991 		 * Ok we have num_eligible_addr set with how many we can
2992 		 * use, this may vary from call to call due to addresses
2993 		 * being deprecated etc..
2994 		 */
2995 		if (cur_addr_num >= num_preferred) {
2996 			cur_addr_num = 0;
2997 		}
2998 		sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2999 		    dest_is_priv, cur_addr_num, fam, ro);
3000 		if (sifa == NULL)
3001 			continue;
3002 		if (net) {
3003 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3004 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
3005 			    cur_addr_num);
3006 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
3007 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
3008 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
3009 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
3010 		}
3011 		atomic_add_int(&sifa->refcount, 1);
3012 		return (sifa);
3013 	}
3014 #ifdef INET
3015 again_with_private_addresses_allowed:
3016 #endif
3017 	/* plan_c: do we have an acceptable address on the emit interface */
3018 	sifa = NULL;
3019 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3020 	if (emit_ifn == NULL) {
3021 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3022 		goto plan_d;
3023 	}
3024 	LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3025 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3026 		if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3027 		    (non_asoc_addr_ok == 0)) {
3028 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3029 			continue;
3030 		}
3031 		sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3032 		    dest_is_priv, fam);
3033 		if (sifa == NULL) {
3034 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3035 			continue;
3036 		}
3037 		if (stcb) {
3038 			if (sctp_is_address_in_scope(sifa,
3039 			    stcb->asoc.ipv4_addr_legal,
3040 			    stcb->asoc.ipv6_addr_legal,
3041 			    stcb->asoc.loopback_scope,
3042 			    stcb->asoc.ipv4_local_scope,
3043 			    stcb->asoc.local_scope,
3044 			    stcb->asoc.site_scope, 0) == 0) {
3045 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3046 				sifa = NULL;
3047 				continue;
3048 			}
3049 			if (((non_asoc_addr_ok == 0) &&
3050 			    (sctp_is_addr_restricted(stcb, sifa))) ||
3051 			    (non_asoc_addr_ok &&
3052 			    (sctp_is_addr_restricted(stcb, sifa)) &&
3053 			    (!sctp_is_addr_pending(stcb, sifa)))) {
3054 				/*
3055 				 * It is restricted for some reason..
3056 				 * probably not yet added.
3057 				 */
3058 				SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n");
3059 				sifa = NULL;
3060 				continue;
3061 			}
3062 		} else {
3063 			SCTP_PRINTF("Stcb is null - no print\n");
3064 		}
3065 		atomic_add_int(&sifa->refcount, 1);
3066 		goto out;
3067 	}
3068 plan_d:
3069 	/*
3070 	 * plan_d: We are in trouble. No preferred address on the emit
3071 	 * interface. And not even a preferred address on all interfaces. Go
3072 	 * out and see if we can find an acceptable address somewhere
3073 	 * amongst all interfaces.
3074 	 */
3075 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3076 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3077 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3078 			/* wrong base scope */
3079 			continue;
3080 		}
3081 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3082 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3083 			    (non_asoc_addr_ok == 0))
3084 				continue;
3085 			sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3086 			    dest_is_loop,
3087 			    dest_is_priv, fam);
3088 			if (sifa == NULL)
3089 				continue;
3090 			if (stcb) {
3091 				if (sctp_is_address_in_scope(sifa,
3092 				    stcb->asoc.ipv4_addr_legal,
3093 				    stcb->asoc.ipv6_addr_legal,
3094 				    stcb->asoc.loopback_scope,
3095 				    stcb->asoc.ipv4_local_scope,
3096 				    stcb->asoc.local_scope,
3097 				    stcb->asoc.site_scope, 0) == 0) {
3098 					sifa = NULL;
3099 					continue;
3100 				}
3101 				if (((non_asoc_addr_ok == 0) &&
3102 				    (sctp_is_addr_restricted(stcb, sifa))) ||
3103 				    (non_asoc_addr_ok &&
3104 				    (sctp_is_addr_restricted(stcb, sifa)) &&
3105 				    (!sctp_is_addr_pending(stcb, sifa)))) {
3106 					/*
3107 					 * It is restricted for some
3108 					 * reason.. probably not yet added.
3109 					 */
3110 					sifa = NULL;
3111 					continue;
3112 				}
3113 			}
3114 			goto out;
3115 		}
3116 	}
3117 #ifdef INET
3118 	if ((retried == 0) && (stcb->asoc.ipv4_local_scope == 0)) {
3119 		stcb->asoc.ipv4_local_scope = 1;
3120 		retried = 1;
3121 		goto again_with_private_addresses_allowed;
3122 	} else if (retried == 1) {
3123 		stcb->asoc.ipv4_local_scope = 0;
3124 	}
3125 #endif
3126 out:
3127 #ifdef INET
3128 	if (sifa) {
3129 		if (retried == 1) {
3130 			LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3131 				if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3132 					/* wrong base scope */
3133 					continue;
3134 				}
3135 				LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3136 					struct sctp_ifa *tmp_sifa;
3137 
3138 					if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3139 					    (non_asoc_addr_ok == 0))
3140 						continue;
3141 					tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3142 					    dest_is_loop,
3143 					    dest_is_priv, fam);
3144 					if (tmp_sifa == NULL) {
3145 						continue;
3146 					}
3147 					if (tmp_sifa == sifa) {
3148 						continue;
3149 					}
3150 					if (stcb) {
3151 						if (sctp_is_address_in_scope(tmp_sifa,
3152 						    stcb->asoc.ipv4_addr_legal,
3153 						    stcb->asoc.ipv6_addr_legal,
3154 						    stcb->asoc.loopback_scope,
3155 						    stcb->asoc.ipv4_local_scope,
3156 						    stcb->asoc.local_scope,
3157 						    stcb->asoc.site_scope, 0) == 0) {
3158 							continue;
3159 						}
3160 						if (((non_asoc_addr_ok == 0) &&
3161 						    (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3162 						    (non_asoc_addr_ok &&
3163 						    (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3164 						    (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3165 							/*
3166 							 * It is restricted
3167 							 * for some reason..
3168 							 * probably not yet
3169 							 * added.
3170 							 */
3171 							continue;
3172 						}
3173 					}
3174 					if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3175 					    (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3176 						sctp_add_local_addr_restricted(stcb, tmp_sifa);
3177 					}
3178 				}
3179 			}
3180 		}
3181 		atomic_add_int(&sifa->refcount, 1);
3182 	}
3183 #endif
3184 	return (sifa);
3185 }
3186 
3187 
3188 
3189 /* tcb may be NULL */
3190 struct sctp_ifa *
3191 sctp_source_address_selection(struct sctp_inpcb *inp,
3192     struct sctp_tcb *stcb,
3193     sctp_route_t * ro,
3194     struct sctp_nets *net,
3195     int non_asoc_addr_ok, uint32_t vrf_id)
3196 {
3197 	struct sctp_ifa *answer;
3198 	uint8_t dest_is_priv, dest_is_loop;
3199 	sa_family_t fam;
3200 
3201 #ifdef INET
3202 	struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3203 
3204 #endif
3205 #ifdef INET6
3206 	struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3207 
3208 #endif
3209 
3210 	/**
3211 	 * Rules: - Find the route if needed, cache if I can. - Look at
3212 	 * interface address in route, Is it in the bound list. If so we
3213 	 * have the best source. - If not we must rotate amongst the
3214 	 * addresses.
3215 	 *
3216 	 * Cavets and issues
3217 	 *
3218 	 * Do we need to pay attention to scope. We can have a private address
3219 	 * or a global address we are sourcing or sending to. So if we draw
3220 	 * it out
3221 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3222 	 * For V4
3223 	 * ------------------------------------------
3224 	 *      source     *      dest  *  result
3225 	 * -----------------------------------------
3226 	 * <a>  Private    *    Global  *  NAT
3227 	 * -----------------------------------------
3228 	 * <b>  Private    *    Private *  No problem
3229 	 * -----------------------------------------
3230 	 * <c>  Global     *    Private *  Huh, How will this work?
3231 	 * -----------------------------------------
3232 	 * <d>  Global     *    Global  *  No Problem
3233 	 *------------------------------------------
3234 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3235 	 * For V6
3236 	 *------------------------------------------
3237 	 *      source     *      dest  *  result
3238 	 * -----------------------------------------
3239 	 * <a>  Linklocal  *    Global  *
3240 	 * -----------------------------------------
3241 	 * <b>  Linklocal  * Linklocal  *  No problem
3242 	 * -----------------------------------------
3243 	 * <c>  Global     * Linklocal  *  Huh, How will this work?
3244 	 * -----------------------------------------
3245 	 * <d>  Global     *    Global  *  No Problem
3246 	 *------------------------------------------
3247 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3248 	 *
3249 	 * And then we add to that what happens if there are multiple addresses
3250 	 * assigned to an interface. Remember the ifa on a ifn is a linked
3251 	 * list of addresses. So one interface can have more than one IP
3252 	 * address. What happens if we have both a private and a global
3253 	 * address? Do we then use context of destination to sort out which
3254 	 * one is best? And what about NAT's sending P->G may get you a NAT
3255 	 * translation, or should you select the G thats on the interface in
3256 	 * preference.
3257 	 *
3258 	 * Decisions:
3259 	 *
3260 	 * - count the number of addresses on the interface.
3261 	 * - if it is one, no problem except case <c>.
3262 	 *   For <a> we will assume a NAT out there.
3263 	 * - if there are more than one, then we need to worry about scope P
3264 	 *   or G. We should prefer G -> G and P -> P if possible.
3265 	 *   Then as a secondary fall back to mixed types G->P being a last
3266 	 *   ditch one.
3267 	 * - The above all works for bound all, but bound specific we need to
3268 	 *   use the same concept but instead only consider the bound
3269 	 *   addresses. If the bound set is NOT assigned to the interface then
3270 	 *   we must use rotation amongst the bound addresses..
3271 	 */
3272 	if (ro->ro_rt == NULL) {
3273 		/*
3274 		 * Need a route to cache.
3275 		 */
3276 		SCTP_RTALLOC(ro, vrf_id);
3277 	}
3278 	if (ro->ro_rt == NULL) {
3279 		return (NULL);
3280 	}
3281 	fam = ro->ro_dst.sa_family;
3282 	dest_is_priv = dest_is_loop = 0;
3283 	/* Setup our scopes for the destination */
3284 	switch (fam) {
3285 #ifdef INET
3286 	case AF_INET:
3287 		/* Scope based on outbound address */
3288 		if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3289 			dest_is_loop = 1;
3290 			if (net != NULL) {
3291 				/* mark it as local */
3292 				net->addr_is_local = 1;
3293 			}
3294 		} else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3295 			dest_is_priv = 1;
3296 		}
3297 		break;
3298 #endif
3299 #ifdef INET6
3300 	case AF_INET6:
3301 		/* Scope based on outbound address */
3302 		if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3303 		    SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3304 			/*
3305 			 * If the address is a loopback address, which
3306 			 * consists of "::1" OR "fe80::1%lo0", we are
3307 			 * loopback scope. But we don't use dest_is_priv
3308 			 * (link local addresses).
3309 			 */
3310 			dest_is_loop = 1;
3311 			if (net != NULL) {
3312 				/* mark it as local */
3313 				net->addr_is_local = 1;
3314 			}
3315 		} else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3316 			dest_is_priv = 1;
3317 		}
3318 		break;
3319 #endif
3320 	}
3321 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3322 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3323 	SCTP_IPI_ADDR_RLOCK();
3324 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3325 		/*
3326 		 * Bound all case
3327 		 */
3328 		answer = sctp_choose_boundall(stcb, net, ro, vrf_id,
3329 		    dest_is_priv, dest_is_loop,
3330 		    non_asoc_addr_ok, fam);
3331 		SCTP_IPI_ADDR_RUNLOCK();
3332 		return (answer);
3333 	}
3334 	/*
3335 	 * Subset bound case
3336 	 */
3337 	if (stcb) {
3338 		answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3339 		    vrf_id, dest_is_priv,
3340 		    dest_is_loop,
3341 		    non_asoc_addr_ok, fam);
3342 	} else {
3343 		answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3344 		    non_asoc_addr_ok,
3345 		    dest_is_priv,
3346 		    dest_is_loop, fam);
3347 	}
3348 	SCTP_IPI_ADDR_RUNLOCK();
3349 	return (answer);
3350 }
3351 
3352 static int
3353 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3354 {
3355 	struct cmsghdr cmh;
3356 	int tlen, at, found;
3357 	struct sctp_sndinfo sndinfo;
3358 	struct sctp_prinfo prinfo;
3359 	struct sctp_authinfo authinfo;
3360 
3361 	tlen = SCTP_BUF_LEN(control);
3362 	at = 0;
3363 	found = 0;
3364 	/*
3365 	 * Independent of how many mbufs, find the c_type inside the control
3366 	 * structure and copy out the data.
3367 	 */
3368 	while (at < tlen) {
3369 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3370 			/* There is not enough room for one more. */
3371 			return (found);
3372 		}
3373 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3374 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3375 			/* We dont't have a complete CMSG header. */
3376 			return (found);
3377 		}
3378 		if (((int)cmh.cmsg_len + at) > tlen) {
3379 			/* We don't have the complete CMSG. */
3380 			return (found);
3381 		}
3382 		if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3383 		    ((c_type == cmh.cmsg_type) ||
3384 		    ((c_type == SCTP_SNDRCV) &&
3385 		    ((cmh.cmsg_type == SCTP_SNDINFO) ||
3386 		    (cmh.cmsg_type == SCTP_PRINFO) ||
3387 		    (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3388 			if (c_type == cmh.cmsg_type) {
3389 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) {
3390 					return (found);
3391 				}
3392 				/* It is exactly what we want. Copy it out. */
3393 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data);
3394 				return (1);
3395 			} else {
3396 				struct sctp_sndrcvinfo *sndrcvinfo;
3397 
3398 				sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3399 				if (found == 0) {
3400 					if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3401 						return (found);
3402 					}
3403 					memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3404 				}
3405 				switch (cmh.cmsg_type) {
3406 				case SCTP_SNDINFO:
3407 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) {
3408 						return (found);
3409 					}
3410 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3411 					sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3412 					sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3413 					sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3414 					sndrcvinfo->sinfo_context = sndinfo.snd_context;
3415 					sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3416 					break;
3417 				case SCTP_PRINFO:
3418 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) {
3419 						return (found);
3420 					}
3421 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3422 					sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3423 					sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3424 					break;
3425 				case SCTP_AUTHINFO:
3426 					if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) {
3427 						return (found);
3428 					}
3429 					m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3430 					sndrcvinfo->sinfo_keynumber_valid = 1;
3431 					sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3432 					break;
3433 				default:
3434 					return (found);
3435 				}
3436 				found = 1;
3437 			}
3438 		}
3439 		at += CMSG_ALIGN(cmh.cmsg_len);
3440 	}
3441 	return (found);
3442 }
3443 
3444 static int
3445 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3446 {
3447 	struct cmsghdr cmh;
3448 	int tlen, at;
3449 	struct sctp_initmsg initmsg;
3450 
3451 #ifdef INET
3452 	struct sockaddr_in sin;
3453 
3454 #endif
3455 #ifdef INET6
3456 	struct sockaddr_in6 sin6;
3457 
3458 #endif
3459 
3460 	tlen = SCTP_BUF_LEN(control);
3461 	at = 0;
3462 	while (at < tlen) {
3463 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3464 			/* There is not enough room for one more. */
3465 			*error = EINVAL;
3466 			return (1);
3467 		}
3468 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3469 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3470 			/* We dont't have a complete CMSG header. */
3471 			*error = EINVAL;
3472 			return (1);
3473 		}
3474 		if (((int)cmh.cmsg_len + at) > tlen) {
3475 			/* We don't have the complete CMSG. */
3476 			*error = EINVAL;
3477 			return (1);
3478 		}
3479 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3480 			switch (cmh.cmsg_type) {
3481 			case SCTP_INIT:
3482 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) {
3483 					*error = EINVAL;
3484 					return (1);
3485 				}
3486 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3487 				if (initmsg.sinit_max_attempts)
3488 					stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3489 				if (initmsg.sinit_num_ostreams)
3490 					stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3491 				if (initmsg.sinit_max_instreams)
3492 					stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3493 				if (initmsg.sinit_max_init_timeo)
3494 					stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3495 				if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3496 					struct sctp_stream_out *tmp_str;
3497 					unsigned int i;
3498 
3499 					/* Default is NOT correct */
3500 					SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3501 					    stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3502 					SCTP_TCB_UNLOCK(stcb);
3503 					SCTP_MALLOC(tmp_str,
3504 					    struct sctp_stream_out *,
3505 					    (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3506 					    SCTP_M_STRMO);
3507 					SCTP_TCB_LOCK(stcb);
3508 					if (tmp_str != NULL) {
3509 						SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3510 						stcb->asoc.strmout = tmp_str;
3511 						stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3512 					} else {
3513 						stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3514 					}
3515 					for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3516 						stcb->asoc.strmout[i].next_sequence_send = 0;
3517 						TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3518 						stcb->asoc.strmout[i].stream_no = i;
3519 						stcb->asoc.strmout[i].last_msg_incomplete = 0;
3520 						stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
3521 					}
3522 				}
3523 				break;
3524 #ifdef INET
3525 			case SCTP_DSTADDRV4:
3526 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3527 					*error = EINVAL;
3528 					return (1);
3529 				}
3530 				memset(&sin, 0, sizeof(struct sockaddr_in));
3531 				sin.sin_family = AF_INET;
3532 				sin.sin_len = sizeof(struct sockaddr_in);
3533 				sin.sin_port = stcb->rport;
3534 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3535 				if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3536 				    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3537 				    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3538 					*error = EINVAL;
3539 					return (1);
3540 				}
3541 				if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3542 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3543 					*error = ENOBUFS;
3544 					return (1);
3545 				}
3546 				break;
3547 #endif
3548 #ifdef INET6
3549 			case SCTP_DSTADDRV6:
3550 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3551 					*error = EINVAL;
3552 					return (1);
3553 				}
3554 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3555 				sin6.sin6_family = AF_INET6;
3556 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3557 				sin6.sin6_port = stcb->rport;
3558 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3559 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) ||
3560 				    IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) {
3561 					*error = EINVAL;
3562 					return (1);
3563 				}
3564 #ifdef INET
3565 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3566 					in6_sin6_2_sin(&sin, &sin6);
3567 					if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3568 					    (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3569 					    IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3570 						*error = EINVAL;
3571 						return (1);
3572 					}
3573 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3574 					    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3575 						*error = ENOBUFS;
3576 						return (1);
3577 					}
3578 				} else
3579 #endif
3580 					if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL,
3581 				    SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3582 					*error = ENOBUFS;
3583 					return (1);
3584 				}
3585 				break;
3586 #endif
3587 			default:
3588 				break;
3589 			}
3590 		}
3591 		at += CMSG_ALIGN(cmh.cmsg_len);
3592 	}
3593 	return (0);
3594 }
3595 
3596 static struct sctp_tcb *
3597 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p,
3598     in_port_t port,
3599     struct mbuf *control,
3600     struct sctp_nets **net_p,
3601     int *error)
3602 {
3603 	struct cmsghdr cmh;
3604 	int tlen, at;
3605 	struct sctp_tcb *stcb;
3606 	struct sockaddr *addr;
3607 
3608 #ifdef INET
3609 	struct sockaddr_in sin;
3610 
3611 #endif
3612 #ifdef INET6
3613 	struct sockaddr_in6 sin6;
3614 
3615 #endif
3616 
3617 	tlen = SCTP_BUF_LEN(control);
3618 	at = 0;
3619 	while (at < tlen) {
3620 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3621 			/* There is not enough room for one more. */
3622 			*error = EINVAL;
3623 			return (NULL);
3624 		}
3625 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3626 		if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3627 			/* We dont't have a complete CMSG header. */
3628 			*error = EINVAL;
3629 			return (NULL);
3630 		}
3631 		if (((int)cmh.cmsg_len + at) > tlen) {
3632 			/* We don't have the complete CMSG. */
3633 			*error = EINVAL;
3634 			return (NULL);
3635 		}
3636 		if (cmh.cmsg_level == IPPROTO_SCTP) {
3637 			switch (cmh.cmsg_type) {
3638 #ifdef INET
3639 			case SCTP_DSTADDRV4:
3640 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3641 					*error = EINVAL;
3642 					return (NULL);
3643 				}
3644 				memset(&sin, 0, sizeof(struct sockaddr_in));
3645 				sin.sin_family = AF_INET;
3646 				sin.sin_len = sizeof(struct sockaddr_in);
3647 				sin.sin_port = port;
3648 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3649 				addr = (struct sockaddr *)&sin;
3650 				break;
3651 #endif
3652 #ifdef INET6
3653 			case SCTP_DSTADDRV6:
3654 				if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3655 					*error = EINVAL;
3656 					return (NULL);
3657 				}
3658 				memset(&sin6, 0, sizeof(struct sockaddr_in6));
3659 				sin6.sin6_family = AF_INET6;
3660 				sin6.sin6_len = sizeof(struct sockaddr_in6);
3661 				sin6.sin6_port = port;
3662 				m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3663 #ifdef INET
3664 				if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3665 					in6_sin6_2_sin(&sin, &sin6);
3666 					addr = (struct sockaddr *)&sin;
3667 				} else
3668 #endif
3669 					addr = (struct sockaddr *)&sin6;
3670 				break;
3671 #endif
3672 			default:
3673 				addr = NULL;
3674 				break;
3675 			}
3676 			if (addr) {
3677 				stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3678 				if (stcb != NULL) {
3679 					return (stcb);
3680 				}
3681 			}
3682 		}
3683 		at += CMSG_ALIGN(cmh.cmsg_len);
3684 	}
3685 	return (NULL);
3686 }
3687 
3688 static struct mbuf *
3689 sctp_add_cookie(struct mbuf *init, int init_offset,
3690     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3691 {
3692 	struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3693 	struct sctp_state_cookie *stc;
3694 	struct sctp_paramhdr *ph;
3695 	uint8_t *foo;
3696 	int sig_offset;
3697 	uint16_t cookie_sz;
3698 
3699 	mret = NULL;
3700 	mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3701 	    sizeof(struct sctp_paramhdr)), 0,
3702 	    M_DONTWAIT, 1, MT_DATA);
3703 	if (mret == NULL) {
3704 		return (NULL);
3705 	}
3706 	copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_DONTWAIT);
3707 	if (copy_init == NULL) {
3708 		sctp_m_freem(mret);
3709 		return (NULL);
3710 	}
3711 #ifdef SCTP_MBUF_LOGGING
3712 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3713 		struct mbuf *mat;
3714 
3715 		for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) {
3716 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3717 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3718 			}
3719 		}
3720 	}
3721 #endif
3722 	copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3723 	    M_DONTWAIT);
3724 	if (copy_initack == NULL) {
3725 		sctp_m_freem(mret);
3726 		sctp_m_freem(copy_init);
3727 		return (NULL);
3728 	}
3729 #ifdef SCTP_MBUF_LOGGING
3730 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3731 		struct mbuf *mat;
3732 
3733 		for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) {
3734 			if (SCTP_BUF_IS_EXTENDED(mat)) {
3735 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3736 			}
3737 		}
3738 	}
3739 #endif
3740 	/* easy side we just drop it on the end */
3741 	ph = mtod(mret, struct sctp_paramhdr *);
3742 	SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3743 	    sizeof(struct sctp_paramhdr);
3744 	stc = (struct sctp_state_cookie *)((caddr_t)ph +
3745 	    sizeof(struct sctp_paramhdr));
3746 	ph->param_type = htons(SCTP_STATE_COOKIE);
3747 	ph->param_length = 0;	/* fill in at the end */
3748 	/* Fill in the stc cookie data */
3749 	memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3750 
3751 	/* tack the INIT and then the INIT-ACK onto the chain */
3752 	cookie_sz = 0;
3753 	for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3754 		cookie_sz += SCTP_BUF_LEN(m_at);
3755 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3756 			SCTP_BUF_NEXT(m_at) = copy_init;
3757 			break;
3758 		}
3759 	}
3760 	for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3761 		cookie_sz += SCTP_BUF_LEN(m_at);
3762 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3763 			SCTP_BUF_NEXT(m_at) = copy_initack;
3764 			break;
3765 		}
3766 	}
3767 	for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3768 		cookie_sz += SCTP_BUF_LEN(m_at);
3769 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3770 			break;
3771 		}
3772 	}
3773 	sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_DONTWAIT, 1, MT_DATA);
3774 	if (sig == NULL) {
3775 		/* no space, so free the entire chain */
3776 		sctp_m_freem(mret);
3777 		return (NULL);
3778 	}
3779 	SCTP_BUF_LEN(sig) = 0;
3780 	SCTP_BUF_NEXT(m_at) = sig;
3781 	sig_offset = 0;
3782 	foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3783 	memset(foo, 0, SCTP_SIGNATURE_SIZE);
3784 	*signature = foo;
3785 	SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3786 	cookie_sz += SCTP_SIGNATURE_SIZE;
3787 	ph->param_length = htons(cookie_sz);
3788 	return (mret);
3789 }
3790 
3791 
3792 static uint8_t
3793 sctp_get_ect(struct sctp_tcb *stcb)
3794 {
3795 	if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) {
3796 		return (SCTP_ECT0_BIT);
3797 	} else {
3798 		return (0);
3799 	}
3800 }
3801 
3802 #if defined(INET) || defined(INET6)
3803 static void
3804 sctp_handle_no_route(struct sctp_tcb *stcb,
3805     struct sctp_nets *net,
3806     int so_locked)
3807 {
3808 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3809 
3810 	if (net) {
3811 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3812 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3813 		if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3814 			if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3815 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3816 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3817 				    stcb, 0,
3818 				    (void *)net,
3819 				    so_locked);
3820 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
3821 				net->dest_state &= ~SCTP_ADDR_PF;
3822 			}
3823 		}
3824 		if (stcb) {
3825 			if (net == stcb->asoc.primary_destination) {
3826 				/* need a new primary */
3827 				struct sctp_nets *alt;
3828 
3829 				alt = sctp_find_alternate_net(stcb, net, 0);
3830 				if (alt != net) {
3831 					if (stcb->asoc.alternate) {
3832 						sctp_free_remote_addr(stcb->asoc.alternate);
3833 					}
3834 					stcb->asoc.alternate = alt;
3835 					atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3836 					if (net->ro._s_addr) {
3837 						sctp_free_ifa(net->ro._s_addr);
3838 						net->ro._s_addr = NULL;
3839 					}
3840 					net->src_addr_selected = 0;
3841 				}
3842 			}
3843 		}
3844 	}
3845 }
3846 
3847 #endif
3848 
3849 static int
3850 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3851     struct sctp_tcb *stcb,	/* may be NULL */
3852     struct sctp_nets *net,
3853     struct sockaddr *to,
3854     struct mbuf *m,
3855     uint32_t auth_offset,
3856     struct sctp_auth_chunk *auth,
3857     uint16_t auth_keyid,
3858     int nofragment_flag,
3859     int ecn_ok,
3860     int out_of_asoc_ok,
3861     uint16_t src_port,
3862     uint16_t dest_port,
3863     uint32_t v_tag,
3864     uint16_t port,
3865     union sctp_sockstore *over_addr,
3866     uint8_t use_mflowid, uint32_t mflowid,
3867 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3868     int so_locked SCTP_UNUSED
3869 #else
3870     int so_locked
3871 #endif
3872 )
3873 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3874 {
3875 	/**
3876 	 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
3877 	 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
3878 	 * - fill in the HMAC digest of any AUTH chunk in the packet.
3879 	 * - calculate and fill in the SCTP checksum.
3880 	 * - prepend an IP address header.
3881 	 * - if boundall use INADDR_ANY.
3882 	 * - if boundspecific do source address selection.
3883 	 * - set fragmentation option for ipV4.
3884 	 * - On return from IP output, check/adjust mtu size of output
3885 	 *   interface and smallest_mtu size as well.
3886 	 */
3887 	/* Will need ifdefs around this */
3888 	struct mbuf *newm;
3889 	struct sctphdr *sctphdr;
3890 	int packet_length;
3891 	int ret;
3892 	uint32_t vrf_id;
3893 
3894 #if defined(INET) || defined(INET6)
3895 	struct mbuf *o_pak;
3896 	sctp_route_t *ro = NULL;
3897 	struct udphdr *udp = NULL;
3898 
3899 #endif
3900 	uint8_t tos_value;
3901 
3902 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
3903 	struct socket *so = NULL;
3904 
3905 #endif
3906 
3907 	if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
3908 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
3909 		sctp_m_freem(m);
3910 		return (EFAULT);
3911 	}
3912 	if (stcb) {
3913 		vrf_id = stcb->asoc.vrf_id;
3914 	} else {
3915 		vrf_id = inp->def_vrf_id;
3916 	}
3917 
3918 	/* fill in the HMAC digest for any AUTH chunk in the packet */
3919 	if ((auth != NULL) && (stcb != NULL)) {
3920 		sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
3921 	}
3922 	if (net) {
3923 		tos_value = net->dscp;
3924 	} else if (stcb) {
3925 		tos_value = stcb->asoc.default_dscp;
3926 	} else {
3927 		tos_value = inp->sctp_ep.default_dscp;
3928 	}
3929 
3930 	switch (to->sa_family) {
3931 #ifdef INET
3932 	case AF_INET:
3933 		{
3934 			struct ip *ip = NULL;
3935 			sctp_route_t iproute;
3936 			int len;
3937 
3938 			len = sizeof(struct ip) + sizeof(struct sctphdr);
3939 			if (port) {
3940 				len += sizeof(struct udphdr);
3941 			}
3942 			newm = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
3943 			if (newm == NULL) {
3944 				sctp_m_freem(m);
3945 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3946 				return (ENOMEM);
3947 			}
3948 			SCTP_ALIGN_TO_END(newm, len);
3949 			SCTP_BUF_LEN(newm) = len;
3950 			SCTP_BUF_NEXT(newm) = m;
3951 			m = newm;
3952 			if (net != NULL) {
3953 #ifdef INVARIANTS
3954 				if (net->flowidset == 0) {
3955 					panic("Flow ID not set");
3956 				}
3957 #endif
3958 				m->m_pkthdr.flowid = net->flowid;
3959 				m->m_flags |= M_FLOWID;
3960 			} else {
3961 				if (use_mflowid != 0) {
3962 					m->m_pkthdr.flowid = mflowid;
3963 					m->m_flags |= M_FLOWID;
3964 				}
3965 			}
3966 			packet_length = sctp_calculate_len(m);
3967 			ip = mtod(m, struct ip *);
3968 			ip->ip_v = IPVERSION;
3969 			ip->ip_hl = (sizeof(struct ip) >> 2);
3970 			if (tos_value == 0) {
3971 				/*
3972 				 * This means especially, that it is not set
3973 				 * at the SCTP layer. So use the value from
3974 				 * the IP layer.
3975 				 */
3976 				tos_value = inp->ip_inp.inp.inp_ip_tos;
3977 			}
3978 			tos_value &= 0xfc;
3979 			if (ecn_ok) {
3980 				tos_value |= sctp_get_ect(stcb);
3981 			}
3982 			if ((nofragment_flag) && (port == 0)) {
3983 				ip->ip_off = htons(IP_DF);
3984 			} else {
3985 				ip->ip_off = htons(0);
3986 			}
3987 			/* FreeBSD has a function for ip_id's */
3988 			ip->ip_id = ip_newid();
3989 
3990 			ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
3991 			ip->ip_len = htons(packet_length);
3992 			ip->ip_tos = tos_value;
3993 			if (port) {
3994 				ip->ip_p = IPPROTO_UDP;
3995 			} else {
3996 				ip->ip_p = IPPROTO_SCTP;
3997 			}
3998 			ip->ip_sum = 0;
3999 			if (net == NULL) {
4000 				ro = &iproute;
4001 				memset(&iproute, 0, sizeof(iproute));
4002 				memcpy(&ro->ro_dst, to, to->sa_len);
4003 			} else {
4004 				ro = (sctp_route_t *) & net->ro;
4005 			}
4006 			/* Now the address selection part */
4007 			ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
4008 
4009 			/* call the routine to select the src address */
4010 			if (net && out_of_asoc_ok == 0) {
4011 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4012 					sctp_free_ifa(net->ro._s_addr);
4013 					net->ro._s_addr = NULL;
4014 					net->src_addr_selected = 0;
4015 					if (ro->ro_rt) {
4016 						RTFREE(ro->ro_rt);
4017 						ro->ro_rt = NULL;
4018 					}
4019 				}
4020 				if (net->src_addr_selected == 0) {
4021 					/* Cache the source address */
4022 					net->ro._s_addr = sctp_source_address_selection(inp, stcb,
4023 					    ro, net, 0,
4024 					    vrf_id);
4025 					net->src_addr_selected = 1;
4026 				}
4027 				if (net->ro._s_addr == NULL) {
4028 					/* No route to host */
4029 					net->src_addr_selected = 0;
4030 					sctp_handle_no_route(stcb, net, so_locked);
4031 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4032 					sctp_m_freem(m);
4033 					return (EHOSTUNREACH);
4034 				}
4035 				ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4036 			} else {
4037 				if (over_addr == NULL) {
4038 					struct sctp_ifa *_lsrc;
4039 
4040 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4041 					    net,
4042 					    out_of_asoc_ok,
4043 					    vrf_id);
4044 					if (_lsrc == NULL) {
4045 						sctp_handle_no_route(stcb, net, so_locked);
4046 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4047 						sctp_m_freem(m);
4048 						return (EHOSTUNREACH);
4049 					}
4050 					ip->ip_src = _lsrc->address.sin.sin_addr;
4051 					sctp_free_ifa(_lsrc);
4052 				} else {
4053 					ip->ip_src = over_addr->sin.sin_addr;
4054 					SCTP_RTALLOC(ro, vrf_id);
4055 				}
4056 			}
4057 			if (port) {
4058 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4059 					sctp_handle_no_route(stcb, net, so_locked);
4060 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4061 					sctp_m_freem(m);
4062 					return (EHOSTUNREACH);
4063 				}
4064 				udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4065 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4066 				udp->uh_dport = port;
4067 				udp->uh_ulen = htons(packet_length - sizeof(struct ip));
4068 				if (V_udp_cksum) {
4069 					udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4070 				} else {
4071 					udp->uh_sum = 0;
4072 				}
4073 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4074 			} else {
4075 				sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4076 			}
4077 
4078 			sctphdr->src_port = src_port;
4079 			sctphdr->dest_port = dest_port;
4080 			sctphdr->v_tag = v_tag;
4081 			sctphdr->checksum = 0;
4082 
4083 			/*
4084 			 * If source address selection fails and we find no
4085 			 * route then the ip_output should fail as well with
4086 			 * a NO_ROUTE_TO_HOST type error. We probably should
4087 			 * catch that somewhere and abort the association
4088 			 * right away (assuming this is an INIT being sent).
4089 			 */
4090 			if (ro->ro_rt == NULL) {
4091 				/*
4092 				 * src addr selection failed to find a route
4093 				 * (or valid source addr), so we can't get
4094 				 * there from here (yet)!
4095 				 */
4096 				sctp_handle_no_route(stcb, net, so_locked);
4097 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4098 				sctp_m_freem(m);
4099 				return (EHOSTUNREACH);
4100 			}
4101 			if (ro != &iproute) {
4102 				memcpy(&iproute, ro, sizeof(*ro));
4103 			}
4104 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4105 			    (uint32_t) (ntohl(ip->ip_src.s_addr)));
4106 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4107 			    (uint32_t) (ntohl(ip->ip_dst.s_addr)));
4108 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4109 			    (void *)ro->ro_rt);
4110 
4111 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4112 				/* failed to prepend data, give up */
4113 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4114 				sctp_m_freem(m);
4115 				return (ENOMEM);
4116 			}
4117 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4118 			if (port) {
4119 #if defined(SCTP_WITH_NO_CSUM)
4120 				SCTP_STAT_INCR(sctps_sendnocrc);
4121 #else
4122 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4123 				SCTP_STAT_INCR(sctps_sendswcrc);
4124 #endif
4125 				if (V_udp_cksum) {
4126 					SCTP_ENABLE_UDP_CSUM(o_pak);
4127 				}
4128 			} else {
4129 #if defined(SCTP_WITH_NO_CSUM)
4130 				SCTP_STAT_INCR(sctps_sendnocrc);
4131 #else
4132 				m->m_pkthdr.csum_flags = CSUM_SCTP;
4133 				m->m_pkthdr.csum_data = 0;
4134 				SCTP_STAT_INCR(sctps_sendhwcrc);
4135 #endif
4136 			}
4137 #ifdef SCTP_PACKET_LOGGING
4138 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4139 				sctp_packet_log(o_pak);
4140 #endif
4141 			/* send it out.  table id is taken from stcb */
4142 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4143 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4144 				so = SCTP_INP_SO(inp);
4145 				SCTP_SOCKET_UNLOCK(so, 0);
4146 			}
4147 #endif
4148 			SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
4149 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4150 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4151 				atomic_add_int(&stcb->asoc.refcnt, 1);
4152 				SCTP_TCB_UNLOCK(stcb);
4153 				SCTP_SOCKET_LOCK(so, 0);
4154 				SCTP_TCB_LOCK(stcb);
4155 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4156 			}
4157 #endif
4158 			SCTP_STAT_INCR(sctps_sendpackets);
4159 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4160 			if (ret)
4161 				SCTP_STAT_INCR(sctps_senderrors);
4162 
4163 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4164 			if (net == NULL) {
4165 				/* free tempy routes */
4166 				RO_RTFREE(ro);
4167 			} else {
4168 				/*
4169 				 * PMTU check versus smallest asoc MTU goes
4170 				 * here
4171 				 */
4172 				if ((ro->ro_rt != NULL) &&
4173 				    (net->ro._s_addr)) {
4174 					uint32_t mtu;
4175 
4176 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4177 					if (net->port) {
4178 						mtu -= sizeof(struct udphdr);
4179 					}
4180 					if (mtu && (stcb->asoc.smallest_mtu > mtu)) {
4181 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4182 						net->mtu = mtu;
4183 					}
4184 				} else if (ro->ro_rt == NULL) {
4185 					/* route was freed */
4186 					if (net->ro._s_addr &&
4187 					    net->src_addr_selected) {
4188 						sctp_free_ifa(net->ro._s_addr);
4189 						net->ro._s_addr = NULL;
4190 					}
4191 					net->src_addr_selected = 0;
4192 				}
4193 			}
4194 			return (ret);
4195 		}
4196 #endif
4197 #ifdef INET6
4198 	case AF_INET6:
4199 		{
4200 			uint32_t flowlabel, flowinfo;
4201 			struct ip6_hdr *ip6h;
4202 			struct route_in6 ip6route;
4203 			struct ifnet *ifp;
4204 			struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4205 			int prev_scope = 0;
4206 			struct sockaddr_in6 lsa6_storage;
4207 			int error;
4208 			u_short prev_port = 0;
4209 			int len;
4210 
4211 			if (net) {
4212 				flowlabel = net->flowlabel;
4213 			} else if (stcb) {
4214 				flowlabel = stcb->asoc.default_flowlabel;
4215 			} else {
4216 				flowlabel = inp->sctp_ep.default_flowlabel;
4217 			}
4218 			if (flowlabel == 0) {
4219 				/*
4220 				 * This means especially, that it is not set
4221 				 * at the SCTP layer. So use the value from
4222 				 * the IP layer.
4223 				 */
4224 				flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo);
4225 			}
4226 			flowlabel &= 0x000fffff;
4227 			len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr);
4228 			if (port) {
4229 				len += sizeof(struct udphdr);
4230 			}
4231 			newm = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
4232 			if (newm == NULL) {
4233 				sctp_m_freem(m);
4234 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4235 				return (ENOMEM);
4236 			}
4237 			SCTP_ALIGN_TO_END(newm, len);
4238 			SCTP_BUF_LEN(newm) = len;
4239 			SCTP_BUF_NEXT(newm) = m;
4240 			m = newm;
4241 			if (net != NULL) {
4242 #ifdef INVARIANTS
4243 				if (net->flowidset == 0) {
4244 					panic("Flow ID not set");
4245 				}
4246 #endif
4247 				m->m_pkthdr.flowid = net->flowid;
4248 				m->m_flags |= M_FLOWID;
4249 			} else {
4250 				if (use_mflowid != 0) {
4251 					m->m_pkthdr.flowid = mflowid;
4252 					m->m_flags |= M_FLOWID;
4253 				}
4254 			}
4255 			packet_length = sctp_calculate_len(m);
4256 
4257 			ip6h = mtod(m, struct ip6_hdr *);
4258 			/* protect *sin6 from overwrite */
4259 			sin6 = (struct sockaddr_in6 *)to;
4260 			tmp = *sin6;
4261 			sin6 = &tmp;
4262 
4263 			/* KAME hack: embed scopeid */
4264 			if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4265 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4266 				return (EINVAL);
4267 			}
4268 			if (net == NULL) {
4269 				memset(&ip6route, 0, sizeof(ip6route));
4270 				ro = (sctp_route_t *) & ip6route;
4271 				memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4272 			} else {
4273 				ro = (sctp_route_t *) & net->ro;
4274 			}
4275 			/*
4276 			 * We assume here that inp_flow is in host byte
4277 			 * order within the TCB!
4278 			 */
4279 			if (tos_value == 0) {
4280 				/*
4281 				 * This means especially, that it is not set
4282 				 * at the SCTP layer. So use the value from
4283 				 * the IP layer.
4284 				 */
4285 				tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff;
4286 			}
4287 			tos_value &= 0xfc;
4288 			if (ecn_ok) {
4289 				tos_value |= sctp_get_ect(stcb);
4290 			}
4291 			flowinfo = 0x06;
4292 			flowinfo <<= 8;
4293 			flowinfo |= tos_value;
4294 			flowinfo <<= 20;
4295 			flowinfo |= flowlabel;
4296 			ip6h->ip6_flow = htonl(flowinfo);
4297 			if (port) {
4298 				ip6h->ip6_nxt = IPPROTO_UDP;
4299 			} else {
4300 				ip6h->ip6_nxt = IPPROTO_SCTP;
4301 			}
4302 			ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr));
4303 			ip6h->ip6_dst = sin6->sin6_addr;
4304 
4305 			/*
4306 			 * Add SRC address selection here: we can only reuse
4307 			 * to a limited degree the kame src-addr-sel, since
4308 			 * we can try their selection but it may not be
4309 			 * bound.
4310 			 */
4311 			bzero(&lsa6_tmp, sizeof(lsa6_tmp));
4312 			lsa6_tmp.sin6_family = AF_INET6;
4313 			lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4314 			lsa6 = &lsa6_tmp;
4315 			if (net && out_of_asoc_ok == 0) {
4316 				if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4317 					sctp_free_ifa(net->ro._s_addr);
4318 					net->ro._s_addr = NULL;
4319 					net->src_addr_selected = 0;
4320 					if (ro->ro_rt) {
4321 						RTFREE(ro->ro_rt);
4322 						ro->ro_rt = NULL;
4323 					}
4324 				}
4325 				if (net->src_addr_selected == 0) {
4326 					sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4327 					/* KAME hack: embed scopeid */
4328 					if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4329 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4330 						return (EINVAL);
4331 					}
4332 					/* Cache the source address */
4333 					net->ro._s_addr = sctp_source_address_selection(inp,
4334 					    stcb,
4335 					    ro,
4336 					    net,
4337 					    0,
4338 					    vrf_id);
4339 					(void)sa6_recoverscope(sin6);
4340 					net->src_addr_selected = 1;
4341 				}
4342 				if (net->ro._s_addr == NULL) {
4343 					SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4344 					net->src_addr_selected = 0;
4345 					sctp_handle_no_route(stcb, net, so_locked);
4346 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4347 					sctp_m_freem(m);
4348 					return (EHOSTUNREACH);
4349 				}
4350 				lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4351 			} else {
4352 				sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4353 				/* KAME hack: embed scopeid */
4354 				if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4355 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4356 					return (EINVAL);
4357 				}
4358 				if (over_addr == NULL) {
4359 					struct sctp_ifa *_lsrc;
4360 
4361 					_lsrc = sctp_source_address_selection(inp, stcb, ro,
4362 					    net,
4363 					    out_of_asoc_ok,
4364 					    vrf_id);
4365 					if (_lsrc == NULL) {
4366 						sctp_handle_no_route(stcb, net, so_locked);
4367 						SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4368 						sctp_m_freem(m);
4369 						return (EHOSTUNREACH);
4370 					}
4371 					lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4372 					sctp_free_ifa(_lsrc);
4373 				} else {
4374 					lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4375 					SCTP_RTALLOC(ro, vrf_id);
4376 				}
4377 				(void)sa6_recoverscope(sin6);
4378 			}
4379 			lsa6->sin6_port = inp->sctp_lport;
4380 
4381 			if (ro->ro_rt == NULL) {
4382 				/*
4383 				 * src addr selection failed to find a route
4384 				 * (or valid source addr), so we can't get
4385 				 * there from here!
4386 				 */
4387 				sctp_handle_no_route(stcb, net, so_locked);
4388 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4389 				sctp_m_freem(m);
4390 				return (EHOSTUNREACH);
4391 			}
4392 			/*
4393 			 * XXX: sa6 may not have a valid sin6_scope_id in
4394 			 * the non-SCOPEDROUTING case.
4395 			 */
4396 			bzero(&lsa6_storage, sizeof(lsa6_storage));
4397 			lsa6_storage.sin6_family = AF_INET6;
4398 			lsa6_storage.sin6_len = sizeof(lsa6_storage);
4399 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4400 			if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4401 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4402 				sctp_m_freem(m);
4403 				return (error);
4404 			}
4405 			/* XXX */
4406 			lsa6_storage.sin6_addr = lsa6->sin6_addr;
4407 			lsa6_storage.sin6_port = inp->sctp_lport;
4408 			lsa6 = &lsa6_storage;
4409 			ip6h->ip6_src = lsa6->sin6_addr;
4410 
4411 			if (port) {
4412 				if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4413 					sctp_handle_no_route(stcb, net, so_locked);
4414 					SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4415 					sctp_m_freem(m);
4416 					return (EHOSTUNREACH);
4417 				}
4418 				udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4419 				udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4420 				udp->uh_dport = port;
4421 				udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr));
4422 				udp->uh_sum = 0;
4423 				sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4424 			} else {
4425 				sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4426 			}
4427 
4428 			sctphdr->src_port = src_port;
4429 			sctphdr->dest_port = dest_port;
4430 			sctphdr->v_tag = v_tag;
4431 			sctphdr->checksum = 0;
4432 
4433 			/*
4434 			 * We set the hop limit now since there is a good
4435 			 * chance that our ro pointer is now filled
4436 			 */
4437 			ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4438 			ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4439 
4440 #ifdef SCTP_DEBUG
4441 			/* Copy to be sure something bad is not happening */
4442 			sin6->sin6_addr = ip6h->ip6_dst;
4443 			lsa6->sin6_addr = ip6h->ip6_src;
4444 #endif
4445 
4446 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4447 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4448 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4449 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4450 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4451 			if (net) {
4452 				sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4453 				/*
4454 				 * preserve the port and scope for link
4455 				 * local send
4456 				 */
4457 				prev_scope = sin6->sin6_scope_id;
4458 				prev_port = sin6->sin6_port;
4459 			}
4460 			if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4461 				/* failed to prepend data, give up */
4462 				sctp_m_freem(m);
4463 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4464 				return (ENOMEM);
4465 			}
4466 			SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4467 			if (port) {
4468 #if defined(SCTP_WITH_NO_CSUM)
4469 				SCTP_STAT_INCR(sctps_sendnocrc);
4470 #else
4471 				sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4472 				SCTP_STAT_INCR(sctps_sendswcrc);
4473 #endif
4474 				if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4475 					udp->uh_sum = 0xffff;
4476 				}
4477 			} else {
4478 #if defined(SCTP_WITH_NO_CSUM)
4479 				SCTP_STAT_INCR(sctps_sendnocrc);
4480 #else
4481 				m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4482 				m->m_pkthdr.csum_data = 0;
4483 				SCTP_STAT_INCR(sctps_sendhwcrc);
4484 #endif
4485 			}
4486 			/* send it out. table id is taken from stcb */
4487 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4488 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4489 				so = SCTP_INP_SO(inp);
4490 				SCTP_SOCKET_UNLOCK(so, 0);
4491 			}
4492 #endif
4493 #ifdef SCTP_PACKET_LOGGING
4494 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4495 				sctp_packet_log(o_pak);
4496 #endif
4497 			SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id);
4498 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4499 			if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4500 				atomic_add_int(&stcb->asoc.refcnt, 1);
4501 				SCTP_TCB_UNLOCK(stcb);
4502 				SCTP_SOCKET_LOCK(so, 0);
4503 				SCTP_TCB_LOCK(stcb);
4504 				atomic_subtract_int(&stcb->asoc.refcnt, 1);
4505 			}
4506 #endif
4507 			if (net) {
4508 				/* for link local this must be done */
4509 				sin6->sin6_scope_id = prev_scope;
4510 				sin6->sin6_port = prev_port;
4511 			}
4512 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4513 			SCTP_STAT_INCR(sctps_sendpackets);
4514 			SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4515 			if (ret) {
4516 				SCTP_STAT_INCR(sctps_senderrors);
4517 			}
4518 			if (net == NULL) {
4519 				/* Now if we had a temp route free it */
4520 				RO_RTFREE(ro);
4521 			} else {
4522 				/*
4523 				 * PMTU check versus smallest asoc MTU goes
4524 				 * here
4525 				 */
4526 				if (ro->ro_rt == NULL) {
4527 					/* Route was freed */
4528 					if (net->ro._s_addr &&
4529 					    net->src_addr_selected) {
4530 						sctp_free_ifa(net->ro._s_addr);
4531 						net->ro._s_addr = NULL;
4532 					}
4533 					net->src_addr_selected = 0;
4534 				}
4535 				if ((ro->ro_rt != NULL) &&
4536 				    (net->ro._s_addr)) {
4537 					uint32_t mtu;
4538 
4539 					mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4540 					if (mtu &&
4541 					    (stcb->asoc.smallest_mtu > mtu)) {
4542 						sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4543 						net->mtu = mtu;
4544 						if (net->port) {
4545 							net->mtu -= sizeof(struct udphdr);
4546 						}
4547 					}
4548 				} else if (ifp) {
4549 					if (ND_IFINFO(ifp)->linkmtu &&
4550 					    (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4551 						sctp_mtu_size_reset(inp,
4552 						    &stcb->asoc,
4553 						    ND_IFINFO(ifp)->linkmtu);
4554 					}
4555 				}
4556 			}
4557 			return (ret);
4558 		}
4559 #endif
4560 	default:
4561 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4562 		    ((struct sockaddr *)to)->sa_family);
4563 		sctp_m_freem(m);
4564 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4565 		return (EFAULT);
4566 	}
4567 }
4568 
4569 
4570 void
4571 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
4572 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
4573     SCTP_UNUSED
4574 #endif
4575 )
4576 {
4577 	struct mbuf *m, *m_at, *mp_last;
4578 	struct sctp_nets *net;
4579 	struct sctp_init_chunk *init;
4580 	struct sctp_supported_addr_param *sup_addr;
4581 	struct sctp_adaptation_layer_indication *ali;
4582 	struct sctp_ecn_supported_param *ecn;
4583 	struct sctp_prsctp_supported_param *prsctp;
4584 	struct sctp_supported_chunk_types_param *pr_supported;
4585 	int cnt_inits_to = 0;
4586 	int padval, ret;
4587 	int num_ext;
4588 	int p_len;
4589 
4590 	/* INIT's always go to the primary (and usually ONLY address) */
4591 	mp_last = NULL;
4592 	net = stcb->asoc.primary_destination;
4593 	if (net == NULL) {
4594 		net = TAILQ_FIRST(&stcb->asoc.nets);
4595 		if (net == NULL) {
4596 			/* TSNH */
4597 			return;
4598 		}
4599 		/* we confirm any address we send an INIT to */
4600 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4601 		(void)sctp_set_primary_addr(stcb, NULL, net);
4602 	} else {
4603 		/* we confirm any address we send an INIT to */
4604 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4605 	}
4606 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4607 #ifdef INET6
4608 	if (((struct sockaddr *)&(net->ro._l_addr))->sa_family == AF_INET6) {
4609 		/*
4610 		 * special hook, if we are sending to link local it will not
4611 		 * show up in our private address count.
4612 		 */
4613 		struct sockaddr_in6 *sin6l;
4614 
4615 		sin6l = &net->ro._l_addr.sin6;
4616 		if (IN6_IS_ADDR_LINKLOCAL(&sin6l->sin6_addr))
4617 			cnt_inits_to = 1;
4618 	}
4619 #endif
4620 	if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4621 		/* This case should not happen */
4622 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4623 		return;
4624 	}
4625 	/* start the INIT timer */
4626 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4627 
4628 	m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_DONTWAIT, 1, MT_DATA);
4629 	if (m == NULL) {
4630 		/* No memory, INIT timer will re-attempt. */
4631 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4632 		return;
4633 	}
4634 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk);
4635 	/*
4636 	 * assume peer supports asconf in order to be able to queue local
4637 	 * address changes while an INIT is in flight and before the assoc
4638 	 * is established.
4639 	 */
4640 	stcb->asoc.peer_supports_asconf = 1;
4641 	/* Now lets put the SCTP header in place */
4642 	init = mtod(m, struct sctp_init_chunk *);
4643 	/* now the chunk header */
4644 	init->ch.chunk_type = SCTP_INITIATION;
4645 	init->ch.chunk_flags = 0;
4646 	/* fill in later from mbuf we build */
4647 	init->ch.chunk_length = 0;
4648 	/* place in my tag */
4649 	init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4650 	/* set up some of the credits. */
4651 	init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4652 	    SCTP_MINIMAL_RWND));
4653 
4654 	init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4655 	init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4656 	init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4657 	/* now the address restriction */
4658 	/* XXX Should we take the address family of the socket into account? */
4659 	sup_addr = (struct sctp_supported_addr_param *)((caddr_t)init +
4660 	    sizeof(*init));
4661 	sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4662 #ifdef INET6
4663 #ifdef INET
4664 	/* we support 2 types: IPv4/IPv6 */
4665 	sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + 2 * sizeof(uint16_t));
4666 	sup_addr->addr_type[0] = htons(SCTP_IPV4_ADDRESS);
4667 	sup_addr->addr_type[1] = htons(SCTP_IPV6_ADDRESS);
4668 #else
4669 	/* we support 1 type: IPv6 */
4670 	sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + sizeof(uint16_t));
4671 	sup_addr->addr_type[0] = htons(SCTP_IPV6_ADDRESS);
4672 	sup_addr->addr_type[1] = htons(0);	/* this is the padding */
4673 #endif
4674 #else
4675 	/* we support 1 type: IPv4 */
4676 	sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + sizeof(uint16_t));
4677 	sup_addr->addr_type[0] = htons(SCTP_IPV4_ADDRESS);
4678 	sup_addr->addr_type[1] = htons(0);	/* this is the padding */
4679 #endif
4680 	SCTP_BUF_LEN(m) += sizeof(struct sctp_supported_addr_param);
4681 	/* adaptation layer indication parameter */
4682 	ali = (struct sctp_adaptation_layer_indication *)((caddr_t)sup_addr + sizeof(struct sctp_supported_addr_param));
4683 	ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4684 	ali->ph.param_length = htons(sizeof(*ali));
4685 	ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
4686 	SCTP_BUF_LEN(m) += sizeof(*ali);
4687 	ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali));
4688 
4689 	if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4690 		/* Add NAT friendly parameter */
4691 		struct sctp_paramhdr *ph;
4692 
4693 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4694 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4695 		ph->param_length = htons(sizeof(struct sctp_paramhdr));
4696 		SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr);
4697 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ph + sizeof(*ph));
4698 	}
4699 	/* now any cookie time extensions */
4700 	if (stcb->asoc.cookie_preserve_req) {
4701 		struct sctp_cookie_perserve_param *cookie_preserve;
4702 
4703 		cookie_preserve = (struct sctp_cookie_perserve_param *)(ecn);
4704 		cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4705 		cookie_preserve->ph.param_length = htons(
4706 		    sizeof(*cookie_preserve));
4707 		cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4708 		SCTP_BUF_LEN(m) += sizeof(*cookie_preserve);
4709 		ecn = (struct sctp_ecn_supported_param *)(
4710 		    (caddr_t)cookie_preserve + sizeof(*cookie_preserve));
4711 		stcb->asoc.cookie_preserve_req = 0;
4712 	}
4713 	/* ECN parameter */
4714 	if (stcb->asoc.ecn_allowed == 1) {
4715 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
4716 		ecn->ph.param_length = htons(sizeof(*ecn));
4717 		SCTP_BUF_LEN(m) += sizeof(*ecn);
4718 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
4719 		    sizeof(*ecn));
4720 	} else {
4721 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
4722 	}
4723 	/* And now tell the peer we do pr-sctp */
4724 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
4725 	prsctp->ph.param_length = htons(sizeof(*prsctp));
4726 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
4727 
4728 	/* And now tell the peer we do all the extensions */
4729 	pr_supported = (struct sctp_supported_chunk_types_param *)
4730 	    ((caddr_t)prsctp + sizeof(*prsctp));
4731 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4732 	num_ext = 0;
4733 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4734 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4735 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4736 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4737 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4738 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4739 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4740 	}
4741 	if (stcb->asoc.sctp_nr_sack_on_off == 1) {
4742 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4743 	}
4744 	p_len = sizeof(*pr_supported) + num_ext;
4745 	pr_supported->ph.param_length = htons(p_len);
4746 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
4747 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4748 
4749 
4750 	/* add authentication parameters */
4751 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4752 		struct sctp_auth_random *randp;
4753 		struct sctp_auth_hmac_algo *hmacs;
4754 		struct sctp_auth_chunk_list *chunks;
4755 
4756 		/* attach RANDOM parameter, if available */
4757 		if (stcb->asoc.authinfo.random != NULL) {
4758 			randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4759 			p_len = sizeof(*randp) + stcb->asoc.authinfo.random_len;
4760 			/* random key already contains the header */
4761 			bcopy(stcb->asoc.authinfo.random->key, randp, p_len);
4762 			/* zero out any padding required */
4763 			bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
4764 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4765 		}
4766 		/* add HMAC_ALGO parameter */
4767 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4768 		p_len = sctp_serialize_hmaclist(stcb->asoc.local_hmacs,
4769 		    (uint8_t *) hmacs->hmac_ids);
4770 		if (p_len > 0) {
4771 			p_len += sizeof(*hmacs);
4772 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4773 			hmacs->ph.param_length = htons(p_len);
4774 			/* zero out any padding required */
4775 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
4776 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4777 		}
4778 		/* add CHUNKS parameter */
4779 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4780 		p_len = sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks,
4781 		    chunks->chunk_types);
4782 		if (p_len > 0) {
4783 			p_len += sizeof(*chunks);
4784 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4785 			chunks->ph.param_length = htons(p_len);
4786 			/* zero out any padding required */
4787 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
4788 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4789 		}
4790 	}
4791 	/* now the addresses */
4792 	{
4793 		struct sctp_scoping scp;
4794 
4795 		/*
4796 		 * To optimize this we could put the scoping stuff into a
4797 		 * structure and remove the individual uint8's from the
4798 		 * assoc structure. Then we could just sifa in the address
4799 		 * within the stcb. But for now this is a quick hack to get
4800 		 * the address stuff teased apart.
4801 		 */
4802 
4803 		scp.ipv4_addr_legal = stcb->asoc.ipv4_addr_legal;
4804 		scp.ipv6_addr_legal = stcb->asoc.ipv6_addr_legal;
4805 		scp.loopback_scope = stcb->asoc.loopback_scope;
4806 		scp.ipv4_local_scope = stcb->asoc.ipv4_local_scope;
4807 		scp.local_scope = stcb->asoc.local_scope;
4808 		scp.site_scope = stcb->asoc.site_scope;
4809 
4810 		sctp_add_addresses_to_i_ia(inp, stcb, &scp, m, cnt_inits_to);
4811 	}
4812 
4813 	/* calulate the size and update pkt header and chunk header */
4814 	p_len = 0;
4815 	for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
4816 		if (SCTP_BUF_NEXT(m_at) == NULL)
4817 			mp_last = m_at;
4818 		p_len += SCTP_BUF_LEN(m_at);
4819 	}
4820 	init->ch.chunk_length = htons(p_len);
4821 	/*
4822 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
4823 	 * here since the timer will drive a retranmission.
4824 	 */
4825 
4826 	/* I don't expect this to execute but we will be safe here */
4827 	padval = p_len % 4;
4828 	if ((padval) && (mp_last)) {
4829 		/*
4830 		 * The compiler worries that mp_last may not be set even
4831 		 * though I think it is impossible :-> however we add
4832 		 * mp_last here just in case.
4833 		 */
4834 		ret = sctp_add_pad_tombuf(mp_last, (4 - padval));
4835 		if (ret) {
4836 			/* Houston we have a problem, no space */
4837 			sctp_m_freem(m);
4838 			return;
4839 		}
4840 	}
4841 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4842 	ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4843 	    (struct sockaddr *)&net->ro._l_addr,
4844 	    m, 0, NULL, 0, 0, 0, 0,
4845 	    inp->sctp_lport, stcb->rport, htonl(0),
4846 	    net->port, NULL,
4847 	    0, 0,
4848 	    so_locked);
4849 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4850 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4851 	(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4852 }
4853 
4854 struct mbuf *
4855 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4856     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly)
4857 {
4858 	/*
4859 	 * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4860 	 * being equal to the beginning of the params i.e. (iphlen +
4861 	 * sizeof(struct sctp_init_msg) parse through the parameters to the
4862 	 * end of the mbuf verifying that all parameters are known.
4863 	 *
4864 	 * For unknown parameters build and return a mbuf with
4865 	 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4866 	 * processing this chunk stop, and set *abort_processing to 1.
4867 	 *
4868 	 * By having param_offset be pre-set to where parameters begin it is
4869 	 * hoped that this routine may be reused in the future by new
4870 	 * features.
4871 	 */
4872 	struct sctp_paramhdr *phdr, params;
4873 
4874 	struct mbuf *mat, *op_err;
4875 	char tempbuf[SCTP_PARAM_BUFFER_SIZE];
4876 	int at, limit, pad_needed;
4877 	uint16_t ptype, plen, padded_size;
4878 	int err_at;
4879 
4880 	*abort_processing = 0;
4881 	mat = in_initpkt;
4882 	err_at = 0;
4883 	limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4884 	at = param_offset;
4885 	op_err = NULL;
4886 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4887 	phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4888 	while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4889 		ptype = ntohs(phdr->param_type);
4890 		plen = ntohs(phdr->param_length);
4891 		if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
4892 			/* wacked parameter */
4893 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
4894 			goto invalid_size;
4895 		}
4896 		limit -= SCTP_SIZE32(plen);
4897 		/*-
4898 		 * All parameters for all chunks that we know/understand are
4899 		 * listed here. We process them other places and make
4900 		 * appropriate stop actions per the upper bits. However this
4901 		 * is the generic routine processor's can call to get back
4902 		 * an operr.. to either incorporate (init-ack) or send.
4903 		 */
4904 		padded_size = SCTP_SIZE32(plen);
4905 		switch (ptype) {
4906 			/* Param's with variable size */
4907 		case SCTP_HEARTBEAT_INFO:
4908 		case SCTP_STATE_COOKIE:
4909 		case SCTP_UNRECOG_PARAM:
4910 		case SCTP_ERROR_CAUSE_IND:
4911 			/* ok skip fwd */
4912 			at += padded_size;
4913 			break;
4914 			/* Param's with variable size within a range */
4915 		case SCTP_CHUNK_LIST:
4916 		case SCTP_SUPPORTED_CHUNK_EXT:
4917 			if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
4918 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
4919 				goto invalid_size;
4920 			}
4921 			at += padded_size;
4922 			break;
4923 		case SCTP_SUPPORTED_ADDRTYPE:
4924 			if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
4925 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
4926 				goto invalid_size;
4927 			}
4928 			at += padded_size;
4929 			break;
4930 		case SCTP_RANDOM:
4931 			if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
4932 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
4933 				goto invalid_size;
4934 			}
4935 			at += padded_size;
4936 			break;
4937 		case SCTP_SET_PRIM_ADDR:
4938 		case SCTP_DEL_IP_ADDRESS:
4939 		case SCTP_ADD_IP_ADDRESS:
4940 			if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
4941 			    (padded_size != sizeof(struct sctp_asconf_addr_param))) {
4942 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
4943 				goto invalid_size;
4944 			}
4945 			at += padded_size;
4946 			break;
4947 			/* Param's with a fixed size */
4948 		case SCTP_IPV4_ADDRESS:
4949 			if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
4950 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
4951 				goto invalid_size;
4952 			}
4953 			at += padded_size;
4954 			break;
4955 		case SCTP_IPV6_ADDRESS:
4956 			if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
4957 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
4958 				goto invalid_size;
4959 			}
4960 			at += padded_size;
4961 			break;
4962 		case SCTP_COOKIE_PRESERVE:
4963 			if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
4964 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
4965 				goto invalid_size;
4966 			}
4967 			at += padded_size;
4968 			break;
4969 		case SCTP_HAS_NAT_SUPPORT:
4970 			*nat_friendly = 1;
4971 			/* fall through */
4972 		case SCTP_PRSCTP_SUPPORTED:
4973 
4974 			if (padded_size != sizeof(struct sctp_paramhdr)) {
4975 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen);
4976 				goto invalid_size;
4977 			}
4978 			at += padded_size;
4979 			break;
4980 		case SCTP_ECN_CAPABLE:
4981 			if (padded_size != sizeof(struct sctp_ecn_supported_param)) {
4982 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
4983 				goto invalid_size;
4984 			}
4985 			at += padded_size;
4986 			break;
4987 		case SCTP_ULP_ADAPTATION:
4988 			if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
4989 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
4990 				goto invalid_size;
4991 			}
4992 			at += padded_size;
4993 			break;
4994 		case SCTP_SUCCESS_REPORT:
4995 			if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
4996 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
4997 				goto invalid_size;
4998 			}
4999 			at += padded_size;
5000 			break;
5001 		case SCTP_HOSTNAME_ADDRESS:
5002 			{
5003 				/* We can NOT handle HOST NAME addresses!! */
5004 				int l_len;
5005 
5006 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
5007 				*abort_processing = 1;
5008 				if (op_err == NULL) {
5009 					/* Ok need to try to get a mbuf */
5010 #ifdef INET6
5011 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5012 #else
5013 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5014 #endif
5015 					l_len += plen;
5016 					l_len += sizeof(struct sctp_paramhdr);
5017 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
5018 					if (op_err) {
5019 						SCTP_BUF_LEN(op_err) = 0;
5020 						/*
5021 						 * pre-reserve space for ip
5022 						 * and sctp header  and
5023 						 * chunk hdr
5024 						 */
5025 #ifdef INET6
5026 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5027 #else
5028 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5029 #endif
5030 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5031 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5032 					}
5033 				}
5034 				if (op_err) {
5035 					/* If we have space */
5036 					struct sctp_paramhdr s;
5037 
5038 					if (err_at % 4) {
5039 						uint32_t cpthis = 0;
5040 
5041 						pad_needed = 4 - (err_at % 4);
5042 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5043 						err_at += pad_needed;
5044 					}
5045 					s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5046 					s.param_length = htons(sizeof(s) + plen);
5047 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5048 					err_at += sizeof(s);
5049 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5050 					if (phdr == NULL) {
5051 						sctp_m_freem(op_err);
5052 						/*
5053 						 * we are out of memory but
5054 						 * we still need to have a
5055 						 * look at what to do (the
5056 						 * system is in trouble
5057 						 * though).
5058 						 */
5059 						return (NULL);
5060 					}
5061 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5062 				}
5063 				return (op_err);
5064 				break;
5065 			}
5066 		default:
5067 			/*
5068 			 * we do not recognize the parameter figure out what
5069 			 * we do.
5070 			 */
5071 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5072 			if ((ptype & 0x4000) == 0x4000) {
5073 				/* Report bit is set?? */
5074 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5075 				if (op_err == NULL) {
5076 					int l_len;
5077 
5078 					/* Ok need to try to get an mbuf */
5079 #ifdef INET6
5080 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5081 #else
5082 					l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5083 #endif
5084 					l_len += plen;
5085 					l_len += sizeof(struct sctp_paramhdr);
5086 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
5087 					if (op_err) {
5088 						SCTP_BUF_LEN(op_err) = 0;
5089 #ifdef INET6
5090 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5091 #else
5092 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5093 #endif
5094 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5095 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5096 					}
5097 				}
5098 				if (op_err) {
5099 					/* If we have space */
5100 					struct sctp_paramhdr s;
5101 
5102 					if (err_at % 4) {
5103 						uint32_t cpthis = 0;
5104 
5105 						pad_needed = 4 - (err_at % 4);
5106 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5107 						err_at += pad_needed;
5108 					}
5109 					s.param_type = htons(SCTP_UNRECOG_PARAM);
5110 					s.param_length = htons(sizeof(s) + plen);
5111 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5112 					err_at += sizeof(s);
5113 					if (plen > sizeof(tempbuf)) {
5114 						plen = sizeof(tempbuf);
5115 					}
5116 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5117 					if (phdr == NULL) {
5118 						sctp_m_freem(op_err);
5119 						/*
5120 						 * we are out of memory but
5121 						 * we still need to have a
5122 						 * look at what to do (the
5123 						 * system is in trouble
5124 						 * though).
5125 						 */
5126 						op_err = NULL;
5127 						goto more_processing;
5128 					}
5129 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5130 					err_at += plen;
5131 				}
5132 			}
5133 	more_processing:
5134 			if ((ptype & 0x8000) == 0x0000) {
5135 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5136 				return (op_err);
5137 			} else {
5138 				/* skip this chunk and continue processing */
5139 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5140 				at += SCTP_SIZE32(plen);
5141 			}
5142 			break;
5143 
5144 		}
5145 		phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5146 	}
5147 	return (op_err);
5148 invalid_size:
5149 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5150 	*abort_processing = 1;
5151 	if ((op_err == NULL) && phdr) {
5152 		int l_len;
5153 
5154 #ifdef INET6
5155 		l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5156 #else
5157 		l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5158 #endif
5159 		l_len += (2 * sizeof(struct sctp_paramhdr));
5160 		op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
5161 		if (op_err) {
5162 			SCTP_BUF_LEN(op_err) = 0;
5163 #ifdef INET6
5164 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5165 #else
5166 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5167 #endif
5168 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5169 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5170 		}
5171 	}
5172 	if ((op_err) && phdr) {
5173 		struct sctp_paramhdr s;
5174 
5175 		if (err_at % 4) {
5176 			uint32_t cpthis = 0;
5177 
5178 			pad_needed = 4 - (err_at % 4);
5179 			m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5180 			err_at += pad_needed;
5181 		}
5182 		s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5183 		s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
5184 		m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5185 		err_at += sizeof(s);
5186 		/* Only copy back the p-hdr that caused the issue */
5187 		m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
5188 	}
5189 	return (op_err);
5190 }
5191 
5192 static int
5193 sctp_are_there_new_addresses(struct sctp_association *asoc,
5194     struct mbuf *in_initpkt, int offset, struct sockaddr *src)
5195 {
5196 	/*
5197 	 * Given a INIT packet, look through the packet to verify that there
5198 	 * are NO new addresses. As we go through the parameters add reports
5199 	 * of any un-understood parameters that require an error.  Also we
5200 	 * must return (1) to drop the packet if we see a un-understood
5201 	 * parameter that tells us to drop the chunk.
5202 	 */
5203 	struct sockaddr *sa_touse;
5204 	struct sockaddr *sa;
5205 	struct sctp_paramhdr *phdr, params;
5206 	uint16_t ptype, plen;
5207 	uint8_t fnd;
5208 	struct sctp_nets *net;
5209 
5210 #ifdef INET
5211 	struct sockaddr_in sin4, *sa4;
5212 
5213 #endif
5214 #ifdef INET6
5215 	struct sockaddr_in6 sin6, *sa6;
5216 
5217 #endif
5218 
5219 #ifdef INET
5220 	memset(&sin4, 0, sizeof(sin4));
5221 	sin4.sin_family = AF_INET;
5222 	sin4.sin_len = sizeof(sin4);
5223 #endif
5224 #ifdef INET6
5225 	memset(&sin6, 0, sizeof(sin6));
5226 	sin6.sin6_family = AF_INET6;
5227 	sin6.sin6_len = sizeof(sin6);
5228 #endif
5229 	/* First what about the src address of the pkt ? */
5230 	fnd = 0;
5231 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5232 		sa = (struct sockaddr *)&net->ro._l_addr;
5233 		if (sa->sa_family == src->sa_family) {
5234 #ifdef INET
5235 			if (sa->sa_family == AF_INET) {
5236 				struct sockaddr_in *src4;
5237 
5238 				sa4 = (struct sockaddr_in *)sa;
5239 				src4 = (struct sockaddr_in *)src;
5240 				if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5241 					fnd = 1;
5242 					break;
5243 				}
5244 			}
5245 #endif
5246 #ifdef INET6
5247 			if (sa->sa_family == AF_INET6) {
5248 				struct sockaddr_in6 *src6;
5249 
5250 				sa6 = (struct sockaddr_in6 *)sa;
5251 				src6 = (struct sockaddr_in6 *)src;
5252 				if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5253 					fnd = 1;
5254 					break;
5255 				}
5256 			}
5257 #endif
5258 		}
5259 	}
5260 	if (fnd == 0) {
5261 		/* New address added! no need to look futher. */
5262 		return (1);
5263 	}
5264 	/* Ok so far lets munge through the rest of the packet */
5265 	offset += sizeof(struct sctp_init_chunk);
5266 	phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5267 	while (phdr) {
5268 		sa_touse = NULL;
5269 		ptype = ntohs(phdr->param_type);
5270 		plen = ntohs(phdr->param_length);
5271 		switch (ptype) {
5272 #ifdef INET
5273 		case SCTP_IPV4_ADDRESS:
5274 			{
5275 				struct sctp_ipv4addr_param *p4, p4_buf;
5276 
5277 				phdr = sctp_get_next_param(in_initpkt, offset,
5278 				    (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5279 				if (plen != sizeof(struct sctp_ipv4addr_param) ||
5280 				    phdr == NULL) {
5281 					return (1);
5282 				}
5283 				p4 = (struct sctp_ipv4addr_param *)phdr;
5284 				sin4.sin_addr.s_addr = p4->addr;
5285 				sa_touse = (struct sockaddr *)&sin4;
5286 				break;
5287 			}
5288 #endif
5289 #ifdef INET6
5290 		case SCTP_IPV6_ADDRESS:
5291 			{
5292 				struct sctp_ipv6addr_param *p6, p6_buf;
5293 
5294 				phdr = sctp_get_next_param(in_initpkt, offset,
5295 				    (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5296 				if (plen != sizeof(struct sctp_ipv6addr_param) ||
5297 				    phdr == NULL) {
5298 					return (1);
5299 				}
5300 				p6 = (struct sctp_ipv6addr_param *)phdr;
5301 				memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5302 				    sizeof(p6->addr));
5303 				sa_touse = (struct sockaddr *)&sin6;
5304 				break;
5305 			}
5306 #endif
5307 		default:
5308 			sa_touse = NULL;
5309 			break;
5310 		}
5311 		if (sa_touse) {
5312 			/* ok, sa_touse points to one to check */
5313 			fnd = 0;
5314 			TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5315 				sa = (struct sockaddr *)&net->ro._l_addr;
5316 				if (sa->sa_family != sa_touse->sa_family) {
5317 					continue;
5318 				}
5319 #ifdef INET
5320 				if (sa->sa_family == AF_INET) {
5321 					sa4 = (struct sockaddr_in *)sa;
5322 					if (sa4->sin_addr.s_addr ==
5323 					    sin4.sin_addr.s_addr) {
5324 						fnd = 1;
5325 						break;
5326 					}
5327 				}
5328 #endif
5329 #ifdef INET6
5330 				if (sa->sa_family == AF_INET6) {
5331 					sa6 = (struct sockaddr_in6 *)sa;
5332 					if (SCTP6_ARE_ADDR_EQUAL(
5333 					    sa6, &sin6)) {
5334 						fnd = 1;
5335 						break;
5336 					}
5337 				}
5338 #endif
5339 			}
5340 			if (!fnd) {
5341 				/* New addr added! no need to look further */
5342 				return (1);
5343 			}
5344 		}
5345 		offset += SCTP_SIZE32(plen);
5346 		phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5347 	}
5348 	return (0);
5349 }
5350 
5351 /*
5352  * Given a MBUF chain that was sent into us containing an INIT. Build a
5353  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5354  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5355  * message (i.e. the struct sctp_init_msg).
5356  */
5357 void
5358 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5359     struct mbuf *init_pkt, int iphlen, int offset,
5360     struct sockaddr *src, struct sockaddr *dst,
5361     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5362     uint8_t use_mflowid, uint32_t mflowid,
5363     uint32_t vrf_id, uint16_t port, int hold_inp_lock)
5364 {
5365 	struct sctp_association *asoc;
5366 	struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last;
5367 	struct sctp_init_ack_chunk *initack;
5368 	struct sctp_adaptation_layer_indication *ali;
5369 	struct sctp_ecn_supported_param *ecn;
5370 	struct sctp_prsctp_supported_param *prsctp;
5371 	struct sctp_supported_chunk_types_param *pr_supported;
5372 	union sctp_sockstore *over_addr;
5373 
5374 #ifdef INET
5375 	struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5376 	struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5377 	struct sockaddr_in *sin;
5378 
5379 #endif
5380 #ifdef INET6
5381 	struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5382 	struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5383 	struct sockaddr_in6 *sin6;
5384 
5385 #endif
5386 	struct sockaddr *to;
5387 	struct sctp_state_cookie stc;
5388 	struct sctp_nets *net = NULL;
5389 	uint8_t *signature = NULL;
5390 	int cnt_inits_to = 0;
5391 	uint16_t his_limit, i_want;
5392 	int abort_flag, padval;
5393 	int num_ext;
5394 	int p_len;
5395 	int nat_friendly = 0;
5396 	struct socket *so;
5397 
5398 	if (stcb) {
5399 		asoc = &stcb->asoc;
5400 	} else {
5401 		asoc = NULL;
5402 	}
5403 	mp_last = NULL;
5404 	if ((asoc != NULL) &&
5405 	    (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
5406 	    (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) {
5407 		/* new addresses, out of here in non-cookie-wait states */
5408 		/*
5409 		 * Send a ABORT, we don't add the new address error clause
5410 		 * though we even set the T bit and copy in the 0 tag.. this
5411 		 * looks no different than if no listener was present.
5412 		 */
5413 		sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, NULL,
5414 		    use_mflowid, mflowid,
5415 		    vrf_id, port);
5416 		return;
5417 	}
5418 	abort_flag = 0;
5419 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5420 	    (offset + sizeof(struct sctp_init_chunk)),
5421 	    &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly);
5422 	if (abort_flag) {
5423 do_a_abort:
5424 		sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5425 		    init_chk->init.initiate_tag, op_err,
5426 		    use_mflowid, mflowid,
5427 		    vrf_id, port);
5428 		return;
5429 	}
5430 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
5431 	if (m == NULL) {
5432 		/* No memory, INIT timer will re-attempt. */
5433 		if (op_err)
5434 			sctp_m_freem(op_err);
5435 		return;
5436 	}
5437 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk);
5438 
5439 	/* the time I built cookie */
5440 	(void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
5441 
5442 	/* populate any tie tags */
5443 	if (asoc != NULL) {
5444 		/* unlock before tag selections */
5445 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5446 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5447 		stc.cookie_life = asoc->cookie_life;
5448 		net = asoc->primary_destination;
5449 	} else {
5450 		stc.tie_tag_my_vtag = 0;
5451 		stc.tie_tag_peer_vtag = 0;
5452 		/* life I will award this cookie */
5453 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
5454 	}
5455 
5456 	/* copy in the ports for later check */
5457 	stc.myport = sh->dest_port;
5458 	stc.peerport = sh->src_port;
5459 
5460 	/*
5461 	 * If we wanted to honor cookie life extentions, we would add to
5462 	 * stc.cookie_life. For now we should NOT honor any extension
5463 	 */
5464 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5465 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5466 		struct inpcb *in_inp;
5467 
5468 		/* Its a V6 socket */
5469 		in_inp = (struct inpcb *)inp;
5470 		stc.ipv6_addr_legal = 1;
5471 		/* Now look at the binding flag to see if V4 will be legal */
5472 		if (SCTP_IPV6_V6ONLY(in_inp) == 0) {
5473 			stc.ipv4_addr_legal = 1;
5474 		} else {
5475 			/* V4 addresses are NOT legal on the association */
5476 			stc.ipv4_addr_legal = 0;
5477 		}
5478 	} else {
5479 		/* Its a V4 socket, no - V6 */
5480 		stc.ipv4_addr_legal = 1;
5481 		stc.ipv6_addr_legal = 0;
5482 	}
5483 
5484 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
5485 	stc.ipv4_scope = 1;
5486 #else
5487 	stc.ipv4_scope = 0;
5488 #endif
5489 	if (net == NULL) {
5490 		to = src;
5491 		switch (dst->sa_family) {
5492 #ifdef INET
5493 		case AF_INET:
5494 			{
5495 				/* lookup address */
5496 				stc.address[0] = src4->sin_addr.s_addr;
5497 				stc.address[1] = 0;
5498 				stc.address[2] = 0;
5499 				stc.address[3] = 0;
5500 				stc.addr_type = SCTP_IPV4_ADDRESS;
5501 				/* local from address */
5502 				stc.laddress[0] = dst4->sin_addr.s_addr;
5503 				stc.laddress[1] = 0;
5504 				stc.laddress[2] = 0;
5505 				stc.laddress[3] = 0;
5506 				stc.laddr_type = SCTP_IPV4_ADDRESS;
5507 				/* scope_id is only for v6 */
5508 				stc.scope_id = 0;
5509 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
5510 				if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) {
5511 					stc.ipv4_scope = 1;
5512 				}
5513 #else
5514 				stc.ipv4_scope = 1;
5515 #endif				/* SCTP_DONT_DO_PRIVADDR_SCOPE */
5516 				/* Must use the address in this case */
5517 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5518 					stc.loopback_scope = 1;
5519 					stc.ipv4_scope = 1;
5520 					stc.site_scope = 1;
5521 					stc.local_scope = 0;
5522 				}
5523 				break;
5524 			}
5525 #endif
5526 #ifdef INET6
5527 		case AF_INET6:
5528 			{
5529 				stc.addr_type = SCTP_IPV6_ADDRESS;
5530 				memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5531 				stc.scope_id = in6_getscope(&src6->sin6_addr);
5532 				if (sctp_is_address_on_local_host(src, vrf_id)) {
5533 					stc.loopback_scope = 1;
5534 					stc.local_scope = 0;
5535 					stc.site_scope = 1;
5536 					stc.ipv4_scope = 1;
5537 				} else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) {
5538 					/*
5539 					 * If the new destination is a
5540 					 * LINK_LOCAL we must have common
5541 					 * both site and local scope. Don't
5542 					 * set local scope though since we
5543 					 * must depend on the source to be
5544 					 * added implicitly. We cannot
5545 					 * assure just because we share one
5546 					 * link that all links are common.
5547 					 */
5548 					stc.local_scope = 0;
5549 					stc.site_scope = 1;
5550 					stc.ipv4_scope = 1;
5551 					/*
5552 					 * we start counting for the private
5553 					 * address stuff at 1. since the
5554 					 * link local we source from won't
5555 					 * show up in our scoped count.
5556 					 */
5557 					cnt_inits_to = 1;
5558 					/*
5559 					 * pull out the scope_id from
5560 					 * incoming pkt
5561 					 */
5562 				} else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) {
5563 					/*
5564 					 * If the new destination is
5565 					 * SITE_LOCAL then we must have site
5566 					 * scope in common.
5567 					 */
5568 					stc.site_scope = 1;
5569 				}
5570 				memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5571 				stc.laddr_type = SCTP_IPV6_ADDRESS;
5572 				break;
5573 			}
5574 #endif
5575 		default:
5576 			/* TSNH */
5577 			goto do_a_abort;
5578 			break;
5579 		}
5580 	} else {
5581 		/* set the scope per the existing tcb */
5582 
5583 #ifdef INET6
5584 		struct sctp_nets *lnet;
5585 
5586 #endif
5587 
5588 		stc.loopback_scope = asoc->loopback_scope;
5589 		stc.ipv4_scope = asoc->ipv4_local_scope;
5590 		stc.site_scope = asoc->site_scope;
5591 		stc.local_scope = asoc->local_scope;
5592 #ifdef INET6
5593 		/* Why do we not consider IPv4 LL addresses? */
5594 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5595 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5596 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5597 					/*
5598 					 * if we have a LL address, start
5599 					 * counting at 1.
5600 					 */
5601 					cnt_inits_to = 1;
5602 				}
5603 			}
5604 		}
5605 #endif
5606 		/* use the net pointer */
5607 		to = (struct sockaddr *)&net->ro._l_addr;
5608 		switch (to->sa_family) {
5609 #ifdef INET
5610 		case AF_INET:
5611 			sin = (struct sockaddr_in *)to;
5612 			stc.address[0] = sin->sin_addr.s_addr;
5613 			stc.address[1] = 0;
5614 			stc.address[2] = 0;
5615 			stc.address[3] = 0;
5616 			stc.addr_type = SCTP_IPV4_ADDRESS;
5617 			if (net->src_addr_selected == 0) {
5618 				/*
5619 				 * strange case here, the INIT should have
5620 				 * did 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 			}
5631 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5632 			stc.laddress[1] = 0;
5633 			stc.laddress[2] = 0;
5634 			stc.laddress[3] = 0;
5635 			stc.laddr_type = SCTP_IPV4_ADDRESS;
5636 			/* scope_id is only for v6 */
5637 			stc.scope_id = 0;
5638 			break;
5639 #endif
5640 #ifdef INET6
5641 		case AF_INET6:
5642 			sin6 = (struct sockaddr_in6 *)to;
5643 			memcpy(&stc.address, &sin6->sin6_addr,
5644 			    sizeof(struct in6_addr));
5645 			stc.addr_type = SCTP_IPV6_ADDRESS;
5646 			stc.scope_id = sin6->sin6_scope_id;
5647 			if (net->src_addr_selected == 0) {
5648 				/*
5649 				 * strange case here, the INIT should have
5650 				 * done the selection.
5651 				 */
5652 				net->ro._s_addr = sctp_source_address_selection(inp,
5653 				    stcb, (sctp_route_t *) & net->ro,
5654 				    net, 0, vrf_id);
5655 				if (net->ro._s_addr == NULL)
5656 					return;
5657 
5658 				net->src_addr_selected = 1;
5659 			}
5660 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5661 			    sizeof(struct in6_addr));
5662 			stc.laddr_type = SCTP_IPV6_ADDRESS;
5663 			break;
5664 #endif
5665 		}
5666 	}
5667 	/* Now lets put the SCTP header in place */
5668 	initack = mtod(m, struct sctp_init_ack_chunk *);
5669 	/* Save it off for quick ref */
5670 	stc.peers_vtag = init_chk->init.initiate_tag;
5671 	/* who are we */
5672 	memcpy(stc.identification, SCTP_VERSION_STRING,
5673 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5674 	memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5675 	/* now the chunk header */
5676 	initack->ch.chunk_type = SCTP_INITIATION_ACK;
5677 	initack->ch.chunk_flags = 0;
5678 	/* fill in later from mbuf we build */
5679 	initack->ch.chunk_length = 0;
5680 	/* place in my tag */
5681 	if ((asoc != NULL) &&
5682 	    ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
5683 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
5684 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
5685 		/* re-use the v-tags and init-seq here */
5686 		initack->init.initiate_tag = htonl(asoc->my_vtag);
5687 		initack->init.initial_tsn = htonl(asoc->init_seq_number);
5688 	} else {
5689 		uint32_t vtag, itsn;
5690 
5691 		if (hold_inp_lock) {
5692 			SCTP_INP_INCR_REF(inp);
5693 			SCTP_INP_RUNLOCK(inp);
5694 		}
5695 		if (asoc) {
5696 			atomic_add_int(&asoc->refcnt, 1);
5697 			SCTP_TCB_UNLOCK(stcb);
5698 	new_tag:
5699 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5700 			if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5701 				/*
5702 				 * Got a duplicate vtag on some guy behind a
5703 				 * nat make sure we don't use it.
5704 				 */
5705 				goto new_tag;
5706 			}
5707 			initack->init.initiate_tag = htonl(vtag);
5708 			/* get a TSN to use too */
5709 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5710 			initack->init.initial_tsn = htonl(itsn);
5711 			SCTP_TCB_LOCK(stcb);
5712 			atomic_add_int(&asoc->refcnt, -1);
5713 		} else {
5714 			vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5715 			initack->init.initiate_tag = htonl(vtag);
5716 			/* get a TSN to use too */
5717 			initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5718 		}
5719 		if (hold_inp_lock) {
5720 			SCTP_INP_RLOCK(inp);
5721 			SCTP_INP_DECR_REF(inp);
5722 		}
5723 	}
5724 	/* save away my tag to */
5725 	stc.my_vtag = initack->init.initiate_tag;
5726 
5727 	/* set up some of the credits. */
5728 	so = inp->sctp_socket;
5729 	if (so == NULL) {
5730 		/* memory problem */
5731 		sctp_m_freem(m);
5732 		return;
5733 	} else {
5734 		initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5735 	}
5736 	/* set what I want */
5737 	his_limit = ntohs(init_chk->init.num_inbound_streams);
5738 	/* choose what I want */
5739 	if (asoc != NULL) {
5740 		if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
5741 			i_want = asoc->streamoutcnt;
5742 		} else {
5743 			i_want = inp->sctp_ep.pre_open_stream_count;
5744 		}
5745 	} else {
5746 		i_want = inp->sctp_ep.pre_open_stream_count;
5747 	}
5748 	if (his_limit < i_want) {
5749 		/* I Want more :< */
5750 		initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5751 	} else {
5752 		/* I can have what I want :> */
5753 		initack->init.num_outbound_streams = htons(i_want);
5754 	}
5755 	/* tell him his limt. */
5756 	initack->init.num_inbound_streams =
5757 	    htons(inp->sctp_ep.max_open_streams_intome);
5758 
5759 	/* adaptation layer indication parameter */
5760 	ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack));
5761 	ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5762 	ali->ph.param_length = htons(sizeof(*ali));
5763 	ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5764 	SCTP_BUF_LEN(m) += sizeof(*ali);
5765 	ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali));
5766 
5767 	/* ECN parameter */
5768 	if (((asoc != NULL) && (asoc->ecn_allowed == 1)) ||
5769 	    (inp->sctp_ecn_enable == 1)) {
5770 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5771 		ecn->ph.param_length = htons(sizeof(*ecn));
5772 		SCTP_BUF_LEN(m) += sizeof(*ecn);
5773 
5774 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5775 		    sizeof(*ecn));
5776 	} else {
5777 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5778 	}
5779 	/* And now tell the peer we do  pr-sctp */
5780 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5781 	prsctp->ph.param_length = htons(sizeof(*prsctp));
5782 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
5783 	if (nat_friendly) {
5784 		/* Add NAT friendly parameter */
5785 		struct sctp_paramhdr *ph;
5786 
5787 		ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5788 		ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5789 		ph->param_length = htons(sizeof(struct sctp_paramhdr));
5790 		SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr);
5791 	}
5792 	/* And now tell the peer we do all the extensions */
5793 	pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5794 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5795 	num_ext = 0;
5796 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5797 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5798 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5799 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5800 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5801 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable))
5802 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5803 	if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off))
5804 		pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
5805 	p_len = sizeof(*pr_supported) + num_ext;
5806 	pr_supported->ph.param_length = htons(p_len);
5807 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5808 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5809 
5810 	/* add authentication parameters */
5811 	if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
5812 		struct sctp_auth_random *randp;
5813 		struct sctp_auth_hmac_algo *hmacs;
5814 		struct sctp_auth_chunk_list *chunks;
5815 		uint16_t random_len;
5816 
5817 		/* generate and add RANDOM parameter */
5818 		random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5819 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5820 		randp->ph.param_type = htons(SCTP_RANDOM);
5821 		p_len = sizeof(*randp) + random_len;
5822 		randp->ph.param_length = htons(p_len);
5823 		SCTP_READ_RANDOM(randp->random_data, random_len);
5824 		/* zero out any padding required */
5825 		bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5826 		SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5827 
5828 		/* add HMAC_ALGO parameter */
5829 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5830 		p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5831 		    (uint8_t *) hmacs->hmac_ids);
5832 		if (p_len > 0) {
5833 			p_len += sizeof(*hmacs);
5834 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5835 			hmacs->ph.param_length = htons(p_len);
5836 			/* zero out any padding required */
5837 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5838 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5839 		}
5840 		/* add CHUNKS parameter */
5841 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5842 		p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5843 		    chunks->chunk_types);
5844 		if (p_len > 0) {
5845 			p_len += sizeof(*chunks);
5846 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5847 			chunks->ph.param_length = htons(p_len);
5848 			/* zero out any padding required */
5849 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5850 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5851 		}
5852 	}
5853 	m_at = m;
5854 	/* now the addresses */
5855 	{
5856 		struct sctp_scoping scp;
5857 
5858 		/*
5859 		 * To optimize this we could put the scoping stuff into a
5860 		 * structure and remove the individual uint8's from the stc
5861 		 * structure. Then we could just sifa in the address within
5862 		 * the stc.. but for now this is a quick hack to get the
5863 		 * address stuff teased apart.
5864 		 */
5865 		scp.ipv4_addr_legal = stc.ipv4_addr_legal;
5866 		scp.ipv6_addr_legal = stc.ipv6_addr_legal;
5867 		scp.loopback_scope = stc.loopback_scope;
5868 		scp.ipv4_local_scope = stc.ipv4_scope;
5869 		scp.local_scope = stc.local_scope;
5870 		scp.site_scope = stc.site_scope;
5871 		m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to);
5872 	}
5873 
5874 	/* tack on the operational error if present */
5875 	if (op_err) {
5876 		struct mbuf *ol;
5877 		int llen;
5878 
5879 		llen = 0;
5880 		ol = op_err;
5881 
5882 		while (ol) {
5883 			llen += SCTP_BUF_LEN(ol);
5884 			ol = SCTP_BUF_NEXT(ol);
5885 		}
5886 		if (llen % 4) {
5887 			/* must add a pad to the param */
5888 			uint32_t cpthis = 0;
5889 			int padlen;
5890 
5891 			padlen = 4 - (llen % 4);
5892 			m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
5893 		}
5894 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5895 			m_at = SCTP_BUF_NEXT(m_at);
5896 		}
5897 		SCTP_BUF_NEXT(m_at) = op_err;
5898 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5899 			m_at = SCTP_BUF_NEXT(m_at);
5900 		}
5901 	}
5902 	/* pre-calulate the size and update pkt header and chunk header */
5903 	p_len = 0;
5904 	for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5905 		p_len += SCTP_BUF_LEN(m_tmp);
5906 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5907 			/* m_tmp should now point to last one */
5908 			break;
5909 		}
5910 	}
5911 
5912 	/* Now we must build a cookie */
5913 	m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
5914 	if (m_cookie == NULL) {
5915 		/* memory problem */
5916 		sctp_m_freem(m);
5917 		return;
5918 	}
5919 	/* Now append the cookie to the end and update the space/size */
5920 	SCTP_BUF_NEXT(m_tmp) = m_cookie;
5921 
5922 	for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5923 		p_len += SCTP_BUF_LEN(m_tmp);
5924 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5925 			/* m_tmp should now point to last one */
5926 			mp_last = m_tmp;
5927 			break;
5928 		}
5929 	}
5930 	/*
5931 	 * Place in the size, but we don't include the last pad (if any) in
5932 	 * the INIT-ACK.
5933 	 */
5934 	initack->ch.chunk_length = htons(p_len);
5935 
5936 	/*
5937 	 * Time to sign the cookie, we don't sign over the cookie signature
5938 	 * though thus we set trailer.
5939 	 */
5940 	(void)sctp_hmac_m(SCTP_HMAC,
5941 	    (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
5942 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
5943 	    (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
5944 	/*
5945 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
5946 	 * here since the timer will drive a retranmission.
5947 	 */
5948 	padval = p_len % 4;
5949 	if ((padval) && (mp_last)) {
5950 		/* see my previous comments on mp_last */
5951 		if (sctp_add_pad_tombuf(mp_last, (4 - padval))) {
5952 			/* Houston we have a problem, no space */
5953 			sctp_m_freem(m);
5954 			return;
5955 		}
5956 	}
5957 	if (stc.loopback_scope) {
5958 		over_addr = (union sctp_sockstore *)dst;
5959 	} else {
5960 		over_addr = NULL;
5961 	}
5962 
5963 	(void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
5964 	    0, 0,
5965 	    inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
5966 	    port, over_addr,
5967 	    use_mflowid, mflowid,
5968 	    SCTP_SO_NOT_LOCKED);
5969 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
5970 }
5971 
5972 
5973 static void
5974 sctp_prune_prsctp(struct sctp_tcb *stcb,
5975     struct sctp_association *asoc,
5976     struct sctp_sndrcvinfo *srcv,
5977     int dataout)
5978 {
5979 	int freed_spc = 0;
5980 	struct sctp_tmit_chunk *chk, *nchk;
5981 
5982 	SCTP_TCB_LOCK_ASSERT(stcb);
5983 	if ((asoc->peer_supports_prsctp) &&
5984 	    (asoc->sent_queue_cnt_removeable > 0)) {
5985 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
5986 			/*
5987 			 * Look for chunks marked with the PR_SCTP flag AND
5988 			 * the buffer space flag. If the one being sent is
5989 			 * equal or greater priority then purge the old one
5990 			 * and free some space.
5991 			 */
5992 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
5993 				/*
5994 				 * This one is PR-SCTP AND buffer space
5995 				 * limited type
5996 				 */
5997 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5998 					/*
5999 					 * Lower numbers equates to higher
6000 					 * priority so if the one we are
6001 					 * looking at has a larger or equal
6002 					 * priority we want to drop the data
6003 					 * and NOT retransmit it.
6004 					 */
6005 					if (chk->data) {
6006 						/*
6007 						 * We release the book_size
6008 						 * if the mbuf is here
6009 						 */
6010 						int ret_spc;
6011 						uint8_t sent;
6012 
6013 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
6014 							sent = 1;
6015 						else
6016 							sent = 0;
6017 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6018 						    sent,
6019 						    SCTP_SO_LOCKED);
6020 						freed_spc += ret_spc;
6021 						if (freed_spc >= dataout) {
6022 							return;
6023 						}
6024 					}	/* if chunk was present */
6025 				}	/* if of sufficent priority */
6026 			}	/* if chunk has enabled */
6027 		}		/* tailqforeach */
6028 
6029 		TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6030 			/* Here we must move to the sent queue and mark */
6031 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6032 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6033 					if (chk->data) {
6034 						/*
6035 						 * We release the book_size
6036 						 * if the mbuf is here
6037 						 */
6038 						int ret_spc;
6039 
6040 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6041 						    0, SCTP_SO_LOCKED);
6042 
6043 						freed_spc += ret_spc;
6044 						if (freed_spc >= dataout) {
6045 							return;
6046 						}
6047 					}	/* end if chk->data */
6048 				}	/* end if right class */
6049 			}	/* end if chk pr-sctp */
6050 		}		/* tailqforeachsafe (chk) */
6051 	}			/* if enabled in asoc */
6052 }
6053 
6054 int
6055 sctp_get_frag_point(struct sctp_tcb *stcb,
6056     struct sctp_association *asoc)
6057 {
6058 	int siz, ovh;
6059 
6060 	/*
6061 	 * For endpoints that have both v6 and v4 addresses we must reserve
6062 	 * room for the ipv6 header, for those that are only dealing with V4
6063 	 * we use a larger frag point.
6064 	 */
6065 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6066 		ovh = SCTP_MED_OVERHEAD;
6067 	} else {
6068 		ovh = SCTP_MED_V4_OVERHEAD;
6069 	}
6070 
6071 	if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
6072 		siz = asoc->smallest_mtu - ovh;
6073 	else
6074 		siz = (stcb->asoc.sctp_frag_point - ovh);
6075 	/*
6076 	 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
6077 	 */
6078 	/* A data chunk MUST fit in a cluster */
6079 	/* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
6080 	/* } */
6081 
6082 	/* adjust for an AUTH chunk if DATA requires auth */
6083 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
6084 		siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
6085 
6086 	if (siz % 4) {
6087 		/* make it an even word boundary please */
6088 		siz -= (siz % 4);
6089 	}
6090 	return (siz);
6091 }
6092 
6093 static void
6094 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6095 {
6096 	sp->pr_sctp_on = 0;
6097 	/*
6098 	 * We assume that the user wants PR_SCTP_TTL if the user provides a
6099 	 * positive lifetime but does not specify any PR_SCTP policy. This
6100 	 * is a BAD assumption and causes problems at least with the
6101 	 * U-Vancovers MPI folks. I will change this to be no policy means
6102 	 * NO PR-SCTP.
6103 	 */
6104 	if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6105 		sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6106 		sp->pr_sctp_on = 1;
6107 	} else {
6108 		return;
6109 	}
6110 	switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6111 	case CHUNK_FLAGS_PR_SCTP_BUF:
6112 		/*
6113 		 * Time to live is a priority stored in tv_sec when doing
6114 		 * the buffer drop thing.
6115 		 */
6116 		sp->ts.tv_sec = sp->timetolive;
6117 		sp->ts.tv_usec = 0;
6118 		break;
6119 	case CHUNK_FLAGS_PR_SCTP_TTL:
6120 		{
6121 			struct timeval tv;
6122 
6123 			(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6124 			tv.tv_sec = sp->timetolive / 1000;
6125 			tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6126 			/*
6127 			 * TODO sctp_constants.h needs alternative time
6128 			 * macros when _KERNEL is undefined.
6129 			 */
6130 			timevaladd(&sp->ts, &tv);
6131 		}
6132 		break;
6133 	case CHUNK_FLAGS_PR_SCTP_RTX:
6134 		/*
6135 		 * Time to live is a the number or retransmissions stored in
6136 		 * tv_sec.
6137 		 */
6138 		sp->ts.tv_sec = sp->timetolive;
6139 		sp->ts.tv_usec = 0;
6140 		break;
6141 	default:
6142 		SCTPDBG(SCTP_DEBUG_USRREQ1,
6143 		    "Unknown PR_SCTP policy %u.\n",
6144 		    PR_SCTP_POLICY(sp->sinfo_flags));
6145 		break;
6146 	}
6147 }
6148 
6149 static int
6150 sctp_msg_append(struct sctp_tcb *stcb,
6151     struct sctp_nets *net,
6152     struct mbuf *m,
6153     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
6154 {
6155 	int error = 0;
6156 	struct mbuf *at;
6157 	struct sctp_stream_queue_pending *sp = NULL;
6158 	struct sctp_stream_out *strm;
6159 
6160 	/*
6161 	 * Given an mbuf chain, put it into the association send queue and
6162 	 * place it on the wheel
6163 	 */
6164 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6165 		/* Invalid stream number */
6166 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6167 		error = EINVAL;
6168 		goto out_now;
6169 	}
6170 	if ((stcb->asoc.stream_locked) &&
6171 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6172 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6173 		error = EINVAL;
6174 		goto out_now;
6175 	}
6176 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6177 	/* Now can we send this? */
6178 	if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
6179 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6180 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6181 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6182 		/* got data while shutting down */
6183 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
6184 		error = ECONNRESET;
6185 		goto out_now;
6186 	}
6187 	sctp_alloc_a_strmoq(stcb, sp);
6188 	if (sp == NULL) {
6189 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6190 		error = ENOMEM;
6191 		goto out_now;
6192 	}
6193 	sp->sinfo_flags = srcv->sinfo_flags;
6194 	sp->timetolive = srcv->sinfo_timetolive;
6195 	sp->ppid = srcv->sinfo_ppid;
6196 	sp->context = srcv->sinfo_context;
6197 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6198 		sp->net = net;
6199 		atomic_add_int(&sp->net->ref_count, 1);
6200 	} else {
6201 		sp->net = NULL;
6202 	}
6203 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6204 	sp->stream = srcv->sinfo_stream;
6205 	sp->msg_is_complete = 1;
6206 	sp->sender_all_done = 1;
6207 	sp->some_taken = 0;
6208 	sp->data = m;
6209 	sp->tail_mbuf = NULL;
6210 	sctp_set_prsctp_policy(sp);
6211 	/*
6212 	 * We could in theory (for sendall) sifa the length in, but we would
6213 	 * still have to hunt through the chain since we need to setup the
6214 	 * tail_mbuf
6215 	 */
6216 	sp->length = 0;
6217 	for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6218 		if (SCTP_BUF_NEXT(at) == NULL)
6219 			sp->tail_mbuf = at;
6220 		sp->length += SCTP_BUF_LEN(at);
6221 	}
6222 	if (srcv->sinfo_keynumber_valid) {
6223 		sp->auth_keyid = srcv->sinfo_keynumber;
6224 	} else {
6225 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6226 	}
6227 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6228 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
6229 		sp->holds_key_ref = 1;
6230 	}
6231 	if (hold_stcb_lock == 0) {
6232 		SCTP_TCB_SEND_LOCK(stcb);
6233 	}
6234 	sctp_snd_sb_alloc(stcb, sp->length);
6235 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6236 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6237 	stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1);
6238 	m = NULL;
6239 	if (hold_stcb_lock == 0) {
6240 		SCTP_TCB_SEND_UNLOCK(stcb);
6241 	}
6242 out_now:
6243 	if (m) {
6244 		sctp_m_freem(m);
6245 	}
6246 	return (error);
6247 }
6248 
6249 
6250 static struct mbuf *
6251 sctp_copy_mbufchain(struct mbuf *clonechain,
6252     struct mbuf *outchain,
6253     struct mbuf **endofchain,
6254     int can_take_mbuf,
6255     int sizeofcpy,
6256     uint8_t copy_by_ref)
6257 {
6258 	struct mbuf *m;
6259 	struct mbuf *appendchain;
6260 	caddr_t cp;
6261 	int len;
6262 
6263 	if (endofchain == NULL) {
6264 		/* error */
6265 error_out:
6266 		if (outchain)
6267 			sctp_m_freem(outchain);
6268 		return (NULL);
6269 	}
6270 	if (can_take_mbuf) {
6271 		appendchain = clonechain;
6272 	} else {
6273 		if (!copy_by_ref &&
6274 		    (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))
6275 		    ) {
6276 			/* Its not in a cluster */
6277 			if (*endofchain == NULL) {
6278 				/* lets get a mbuf cluster */
6279 				if (outchain == NULL) {
6280 					/* This is the general case */
6281 			new_mbuf:
6282 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
6283 					if (outchain == NULL) {
6284 						goto error_out;
6285 					}
6286 					SCTP_BUF_LEN(outchain) = 0;
6287 					*endofchain = outchain;
6288 					/* get the prepend space */
6289 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6290 				} else {
6291 					/*
6292 					 * We really should not get a NULL
6293 					 * in endofchain
6294 					 */
6295 					/* find end */
6296 					m = outchain;
6297 					while (m) {
6298 						if (SCTP_BUF_NEXT(m) == NULL) {
6299 							*endofchain = m;
6300 							break;
6301 						}
6302 						m = SCTP_BUF_NEXT(m);
6303 					}
6304 					/* sanity */
6305 					if (*endofchain == NULL) {
6306 						/*
6307 						 * huh, TSNH XXX maybe we
6308 						 * should panic
6309 						 */
6310 						sctp_m_freem(outchain);
6311 						goto new_mbuf;
6312 					}
6313 				}
6314 				/* get the new end of length */
6315 				len = M_TRAILINGSPACE(*endofchain);
6316 			} else {
6317 				/* how much is left at the end? */
6318 				len = M_TRAILINGSPACE(*endofchain);
6319 			}
6320 			/* Find the end of the data, for appending */
6321 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6322 
6323 			/* Now lets copy it out */
6324 			if (len >= sizeofcpy) {
6325 				/* It all fits, copy it in */
6326 				m_copydata(clonechain, 0, sizeofcpy, cp);
6327 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6328 			} else {
6329 				/* fill up the end of the chain */
6330 				if (len > 0) {
6331 					m_copydata(clonechain, 0, len, cp);
6332 					SCTP_BUF_LEN((*endofchain)) += len;
6333 					/* now we need another one */
6334 					sizeofcpy -= len;
6335 				}
6336 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
6337 				if (m == NULL) {
6338 					/* We failed */
6339 					goto error_out;
6340 				}
6341 				SCTP_BUF_NEXT((*endofchain)) = m;
6342 				*endofchain = m;
6343 				cp = mtod((*endofchain), caddr_t);
6344 				m_copydata(clonechain, len, sizeofcpy, cp);
6345 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6346 			}
6347 			return (outchain);
6348 		} else {
6349 			/* copy the old fashion way */
6350 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_DONTWAIT);
6351 #ifdef SCTP_MBUF_LOGGING
6352 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6353 				struct mbuf *mat;
6354 
6355 				for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) {
6356 					if (SCTP_BUF_IS_EXTENDED(mat)) {
6357 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6358 					}
6359 				}
6360 			}
6361 #endif
6362 		}
6363 	}
6364 	if (appendchain == NULL) {
6365 		/* error */
6366 		if (outchain)
6367 			sctp_m_freem(outchain);
6368 		return (NULL);
6369 	}
6370 	if (outchain) {
6371 		/* tack on to the end */
6372 		if (*endofchain != NULL) {
6373 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6374 		} else {
6375 			m = outchain;
6376 			while (m) {
6377 				if (SCTP_BUF_NEXT(m) == NULL) {
6378 					SCTP_BUF_NEXT(m) = appendchain;
6379 					break;
6380 				}
6381 				m = SCTP_BUF_NEXT(m);
6382 			}
6383 		}
6384 		/*
6385 		 * save off the end and update the end-chain postion
6386 		 */
6387 		m = appendchain;
6388 		while (m) {
6389 			if (SCTP_BUF_NEXT(m) == NULL) {
6390 				*endofchain = m;
6391 				break;
6392 			}
6393 			m = SCTP_BUF_NEXT(m);
6394 		}
6395 		return (outchain);
6396 	} else {
6397 		/* save off the end and update the end-chain postion */
6398 		m = appendchain;
6399 		while (m) {
6400 			if (SCTP_BUF_NEXT(m) == NULL) {
6401 				*endofchain = m;
6402 				break;
6403 			}
6404 			m = SCTP_BUF_NEXT(m);
6405 		}
6406 		return (appendchain);
6407 	}
6408 }
6409 
6410 static int
6411 sctp_med_chunk_output(struct sctp_inpcb *inp,
6412     struct sctp_tcb *stcb,
6413     struct sctp_association *asoc,
6414     int *num_out,
6415     int *reason_code,
6416     int control_only, int from_where,
6417     struct timeval *now, int *now_filled, int frag_point, int so_locked
6418 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6419     SCTP_UNUSED
6420 #endif
6421 );
6422 
6423 static void
6424 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6425     uint32_t val SCTP_UNUSED)
6426 {
6427 	struct sctp_copy_all *ca;
6428 	struct mbuf *m;
6429 	int ret = 0;
6430 	int added_control = 0;
6431 	int un_sent, do_chunk_output = 1;
6432 	struct sctp_association *asoc;
6433 	struct sctp_nets *net;
6434 
6435 	ca = (struct sctp_copy_all *)ptr;
6436 	if (ca->m == NULL) {
6437 		return;
6438 	}
6439 	if (ca->inp != inp) {
6440 		/* TSNH */
6441 		return;
6442 	}
6443 	if ((ca->m) && ca->sndlen) {
6444 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_DONTWAIT);
6445 		if (m == NULL) {
6446 			/* can't copy so we are done */
6447 			ca->cnt_failed++;
6448 			return;
6449 		}
6450 #ifdef SCTP_MBUF_LOGGING
6451 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6452 			struct mbuf *mat;
6453 
6454 			for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6455 				if (SCTP_BUF_IS_EXTENDED(mat)) {
6456 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6457 				}
6458 			}
6459 		}
6460 #endif
6461 	} else {
6462 		m = NULL;
6463 	}
6464 	SCTP_TCB_LOCK_ASSERT(stcb);
6465 	if (stcb->asoc.alternate) {
6466 		net = stcb->asoc.alternate;
6467 	} else {
6468 		net = stcb->asoc.primary_destination;
6469 	}
6470 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6471 		/* Abort this assoc with m as the user defined reason */
6472 		if (m) {
6473 			struct sctp_paramhdr *ph;
6474 
6475 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_DONTWAIT);
6476 			if (m) {
6477 				ph = mtod(m, struct sctp_paramhdr *);
6478 				ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6479 				ph->param_length = htons(ca->sndlen);
6480 			}
6481 			/*
6482 			 * We add one here to keep the assoc from
6483 			 * dis-appearing on us.
6484 			 */
6485 			atomic_add_int(&stcb->asoc.refcnt, 1);
6486 			sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED);
6487 			/*
6488 			 * sctp_abort_an_association calls sctp_free_asoc()
6489 			 * free association will NOT free it since we
6490 			 * incremented the refcnt .. we do this to prevent
6491 			 * it being freed and things getting tricky since we
6492 			 * could end up (from free_asoc) calling inpcb_free
6493 			 * which would get a recursive lock call to the
6494 			 * iterator lock.. But as a consequence of that the
6495 			 * stcb will return to us un-locked.. since
6496 			 * free_asoc returns with either no TCB or the TCB
6497 			 * unlocked, we must relock.. to unlock in the
6498 			 * iterator timer :-0
6499 			 */
6500 			SCTP_TCB_LOCK(stcb);
6501 			atomic_add_int(&stcb->asoc.refcnt, -1);
6502 			goto no_chunk_output;
6503 		}
6504 	} else {
6505 		if (m) {
6506 			ret = sctp_msg_append(stcb, net, m,
6507 			    &ca->sndrcv, 1);
6508 		}
6509 		asoc = &stcb->asoc;
6510 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6511 			/* shutdown this assoc */
6512 			int cnt;
6513 
6514 			cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED);
6515 
6516 			if (TAILQ_EMPTY(&asoc->send_queue) &&
6517 			    TAILQ_EMPTY(&asoc->sent_queue) &&
6518 			    (cnt == 0)) {
6519 				if (asoc->locked_on_sending) {
6520 					goto abort_anyway;
6521 				}
6522 				/*
6523 				 * there is nothing queued to send, so I'm
6524 				 * done...
6525 				 */
6526 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6527 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6528 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6529 					/*
6530 					 * only send SHUTDOWN the first time
6531 					 * through
6532 					 */
6533 					sctp_send_shutdown(stcb, net);
6534 					if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
6535 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6536 					}
6537 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
6538 					SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
6539 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6540 					    net);
6541 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6542 					    asoc->primary_destination);
6543 					added_control = 1;
6544 					do_chunk_output = 0;
6545 				}
6546 			} else {
6547 				/*
6548 				 * we still got (or just got) data to send,
6549 				 * so set SHUTDOWN_PENDING
6550 				 */
6551 				/*
6552 				 * XXX sockets draft says that SCTP_EOF
6553 				 * should be sent with no data.  currently,
6554 				 * we will allow user data to be sent first
6555 				 * and move to SHUTDOWN-PENDING
6556 				 */
6557 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6558 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6559 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6560 					if (asoc->locked_on_sending) {
6561 						/*
6562 						 * Locked to send out the
6563 						 * data
6564 						 */
6565 						struct sctp_stream_queue_pending *sp;
6566 
6567 						sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
6568 						if (sp) {
6569 							if ((sp->length == 0) && (sp->msg_is_complete == 0))
6570 								asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
6571 						}
6572 					}
6573 					asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
6574 					if (TAILQ_EMPTY(&asoc->send_queue) &&
6575 					    TAILQ_EMPTY(&asoc->sent_queue) &&
6576 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6577 				abort_anyway:
6578 						atomic_add_int(&stcb->asoc.refcnt, 1);
6579 						sctp_abort_an_association(stcb->sctp_ep, stcb,
6580 						    NULL, SCTP_SO_NOT_LOCKED);
6581 						atomic_add_int(&stcb->asoc.refcnt, -1);
6582 						goto no_chunk_output;
6583 					}
6584 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6585 					    asoc->primary_destination);
6586 				}
6587 			}
6588 
6589 		}
6590 	}
6591 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6592 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
6593 
6594 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6595 	    (stcb->asoc.total_flight > 0) &&
6596 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
6597 	    ) {
6598 		do_chunk_output = 0;
6599 	}
6600 	if (do_chunk_output)
6601 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6602 	else if (added_control) {
6603 		int num_out = 0, reason = 0, now_filled = 0;
6604 		struct timeval now;
6605 		int frag_point;
6606 
6607 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
6608 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6609 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
6610 	}
6611 no_chunk_output:
6612 	if (ret) {
6613 		ca->cnt_failed++;
6614 	} else {
6615 		ca->cnt_sent++;
6616 	}
6617 }
6618 
6619 static void
6620 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6621 {
6622 	struct sctp_copy_all *ca;
6623 
6624 	ca = (struct sctp_copy_all *)ptr;
6625 	/*
6626 	 * Do a notify here? Kacheong suggests that the notify be done at
6627 	 * the send time.. so you would push up a notification if any send
6628 	 * failed. Don't know if this is feasable since the only failures we
6629 	 * have is "memory" related and if you cannot get an mbuf to send
6630 	 * the data you surely can't get an mbuf to send up to notify the
6631 	 * user you can't send the data :->
6632 	 */
6633 
6634 	/* now free everything */
6635 	sctp_m_freem(ca->m);
6636 	SCTP_FREE(ca, SCTP_M_COPYAL);
6637 }
6638 
6639 
6640 #define	MC_ALIGN(m, len) do {						\
6641 	SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1));	\
6642 } while (0)
6643 
6644 
6645 
6646 static struct mbuf *
6647 sctp_copy_out_all(struct uio *uio, int len)
6648 {
6649 	struct mbuf *ret, *at;
6650 	int left, willcpy, cancpy, error;
6651 
6652 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAIT, 1, MT_DATA);
6653 	if (ret == NULL) {
6654 		/* TSNH */
6655 		return (NULL);
6656 	}
6657 	left = len;
6658 	SCTP_BUF_LEN(ret) = 0;
6659 	/* save space for the data chunk header */
6660 	cancpy = M_TRAILINGSPACE(ret);
6661 	willcpy = min(cancpy, left);
6662 	at = ret;
6663 	while (left > 0) {
6664 		/* Align data to the end */
6665 		error = uiomove(mtod(at, caddr_t), willcpy, uio);
6666 		if (error) {
6667 	err_out_now:
6668 			sctp_m_freem(at);
6669 			return (NULL);
6670 		}
6671 		SCTP_BUF_LEN(at) = willcpy;
6672 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6673 		left -= willcpy;
6674 		if (left > 0) {
6675 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAIT, 1, MT_DATA);
6676 			if (SCTP_BUF_NEXT(at) == NULL) {
6677 				goto err_out_now;
6678 			}
6679 			at = SCTP_BUF_NEXT(at);
6680 			SCTP_BUF_LEN(at) = 0;
6681 			cancpy = M_TRAILINGSPACE(at);
6682 			willcpy = min(cancpy, left);
6683 		}
6684 	}
6685 	return (ret);
6686 }
6687 
6688 static int
6689 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6690     struct sctp_sndrcvinfo *srcv)
6691 {
6692 	int ret;
6693 	struct sctp_copy_all *ca;
6694 
6695 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6696 	    SCTP_M_COPYAL);
6697 	if (ca == NULL) {
6698 		sctp_m_freem(m);
6699 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6700 		return (ENOMEM);
6701 	}
6702 	memset(ca, 0, sizeof(struct sctp_copy_all));
6703 
6704 	ca->inp = inp;
6705 	if (srcv) {
6706 		memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6707 	}
6708 	/*
6709 	 * take off the sendall flag, it would be bad if we failed to do
6710 	 * this :-0
6711 	 */
6712 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6713 	/* get length and mbuf chain */
6714 	if (uio) {
6715 		ca->sndlen = uio->uio_resid;
6716 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
6717 		if (ca->m == NULL) {
6718 			SCTP_FREE(ca, SCTP_M_COPYAL);
6719 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6720 			return (ENOMEM);
6721 		}
6722 	} else {
6723 		/* Gather the length of the send */
6724 		struct mbuf *mat;
6725 
6726 		mat = m;
6727 		ca->sndlen = 0;
6728 		while (m) {
6729 			ca->sndlen += SCTP_BUF_LEN(m);
6730 			m = SCTP_BUF_NEXT(m);
6731 		}
6732 		ca->m = mat;
6733 	}
6734 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6735 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6736 	    SCTP_ASOC_ANY_STATE,
6737 	    (void *)ca, 0,
6738 	    sctp_sendall_completes, inp, 1);
6739 	if (ret) {
6740 		SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6741 		SCTP_FREE(ca, SCTP_M_COPYAL);
6742 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6743 		return (EFAULT);
6744 	}
6745 	return (0);
6746 }
6747 
6748 
6749 void
6750 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6751 {
6752 	struct sctp_tmit_chunk *chk, *nchk;
6753 
6754 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6755 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6756 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6757 			if (chk->data) {
6758 				sctp_m_freem(chk->data);
6759 				chk->data = NULL;
6760 			}
6761 			asoc->ctrl_queue_cnt--;
6762 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6763 		}
6764 	}
6765 }
6766 
6767 void
6768 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6769 {
6770 	struct sctp_association *asoc;
6771 	struct sctp_tmit_chunk *chk, *nchk;
6772 	struct sctp_asconf_chunk *acp;
6773 
6774 	asoc = &stcb->asoc;
6775 	TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
6776 		/* find SCTP_ASCONF chunk in queue */
6777 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6778 			if (chk->data) {
6779 				acp = mtod(chk->data, struct sctp_asconf_chunk *);
6780 				if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
6781 					/* Not Acked yet */
6782 					break;
6783 				}
6784 			}
6785 			TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
6786 			if (chk->data) {
6787 				sctp_m_freem(chk->data);
6788 				chk->data = NULL;
6789 			}
6790 			asoc->ctrl_queue_cnt--;
6791 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6792 		}
6793 	}
6794 }
6795 
6796 
6797 static void
6798 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6799     struct sctp_association *asoc,
6800     struct sctp_tmit_chunk **data_list,
6801     int bundle_at,
6802     struct sctp_nets *net)
6803 {
6804 	int i;
6805 	struct sctp_tmit_chunk *tp1;
6806 
6807 	for (i = 0; i < bundle_at; i++) {
6808 		/* off of the send queue */
6809 		TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
6810 		asoc->send_queue_cnt--;
6811 		if (i > 0) {
6812 			/*
6813 			 * Any chunk NOT 0 you zap the time chunk 0 gets
6814 			 * zapped or set based on if a RTO measurment is
6815 			 * needed.
6816 			 */
6817 			data_list[i]->do_rtt = 0;
6818 		}
6819 		/* record time */
6820 		data_list[i]->sent_rcv_time = net->last_sent_time;
6821 		data_list[i]->rec.data.cwnd_at_send = net->cwnd;
6822 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6823 		if (data_list[i]->whoTo == NULL) {
6824 			data_list[i]->whoTo = net;
6825 			atomic_add_int(&net->ref_count, 1);
6826 		}
6827 		/* on to the sent queue */
6828 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6829 		if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6830 			struct sctp_tmit_chunk *tpp;
6831 
6832 			/* need to move back */
6833 	back_up_more:
6834 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6835 			if (tpp == NULL) {
6836 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6837 				goto all_done;
6838 			}
6839 			tp1 = tpp;
6840 			if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6841 				goto back_up_more;
6842 			}
6843 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6844 		} else {
6845 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
6846 			    data_list[i],
6847 			    sctp_next);
6848 		}
6849 all_done:
6850 		/* This does not lower until the cum-ack passes it */
6851 		asoc->sent_queue_cnt++;
6852 		if ((asoc->peers_rwnd <= 0) &&
6853 		    (asoc->total_flight == 0) &&
6854 		    (bundle_at == 1)) {
6855 			/* Mark the chunk as being a window probe */
6856 			SCTP_STAT_INCR(sctps_windowprobed);
6857 		}
6858 #ifdef SCTP_AUDITING_ENABLED
6859 		sctp_audit_log(0xC2, 3);
6860 #endif
6861 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
6862 		data_list[i]->snd_count = 1;
6863 		data_list[i]->rec.data.chunk_was_revoked = 0;
6864 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
6865 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
6866 			    data_list[i]->whoTo->flight_size,
6867 			    data_list[i]->book_size,
6868 			    (uintptr_t) data_list[i]->whoTo,
6869 			    data_list[i]->rec.data.TSN_seq);
6870 		}
6871 		sctp_flight_size_increase(data_list[i]);
6872 		sctp_total_flight_increase(stcb, data_list[i]);
6873 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
6874 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
6875 			    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
6876 		}
6877 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
6878 		    (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
6879 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
6880 			/* SWS sender side engages */
6881 			asoc->peers_rwnd = 0;
6882 		}
6883 	}
6884 	if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
6885 		(*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
6886 	}
6887 }
6888 
6889 static void
6890 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked
6891 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6892     SCTP_UNUSED
6893 #endif
6894 )
6895 {
6896 	struct sctp_tmit_chunk *chk, *nchk;
6897 
6898 	TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6899 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
6900 		    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
6901 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
6902 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
6903 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
6904 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
6905 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
6906 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
6907 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
6908 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
6909 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
6910 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
6911 			/* Stray chunks must be cleaned up */
6912 	clean_up_anyway:
6913 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6914 			if (chk->data) {
6915 				sctp_m_freem(chk->data);
6916 				chk->data = NULL;
6917 			}
6918 			asoc->ctrl_queue_cnt--;
6919 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)
6920 				asoc->fwd_tsn_cnt--;
6921 			sctp_free_a_chunk(stcb, chk, so_locked);
6922 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
6923 			/* special handling, we must look into the param */
6924 			if (chk != asoc->str_reset) {
6925 				goto clean_up_anyway;
6926 			}
6927 		}
6928 	}
6929 }
6930 
6931 
6932 static int
6933 sctp_can_we_split_this(struct sctp_tcb *stcb,
6934     uint32_t length,
6935     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
6936 {
6937 	/*
6938 	 * Make a decision on if I should split a msg into multiple parts.
6939 	 * This is only asked of incomplete messages.
6940 	 */
6941 	if (eeor_on) {
6942 		/*
6943 		 * If we are doing EEOR we need to always send it if its the
6944 		 * entire thing, since it might be all the guy is putting in
6945 		 * the hopper.
6946 		 */
6947 		if (goal_mtu >= length) {
6948 			/*-
6949 			 * If we have data outstanding,
6950 			 * we get another chance when the sack
6951 			 * arrives to transmit - wait for more data
6952 			 */
6953 			if (stcb->asoc.total_flight == 0) {
6954 				/*
6955 				 * If nothing is in flight, we zero the
6956 				 * packet counter.
6957 				 */
6958 				return (length);
6959 			}
6960 			return (0);
6961 
6962 		} else {
6963 			/* You can fill the rest */
6964 			return (goal_mtu);
6965 		}
6966 	}
6967 	/*-
6968 	 * For those strange folk that make the send buffer
6969 	 * smaller than our fragmentation point, we can't
6970 	 * get a full msg in so we have to allow splitting.
6971 	 */
6972 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
6973 		return (length);
6974 	}
6975 	if ((length <= goal_mtu) ||
6976 	    ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
6977 		/* Sub-optimial residual don't split in non-eeor mode. */
6978 		return (0);
6979 	}
6980 	/*
6981 	 * If we reach here length is larger than the goal_mtu. Do we wish
6982 	 * to split it for the sake of packet putting together?
6983 	 */
6984 	if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
6985 		/* Its ok to split it */
6986 		return (min(goal_mtu, frag_point));
6987 	}
6988 	/* Nope, can't split */
6989 	return (0);
6990 
6991 }
6992 
6993 static uint32_t
6994 sctp_move_to_outqueue(struct sctp_tcb *stcb,
6995     struct sctp_stream_out *strq,
6996     uint32_t goal_mtu,
6997     uint32_t frag_point,
6998     int *locked,
6999     int *giveup,
7000     int eeor_mode,
7001     int *bail,
7002     int so_locked
7003 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7004     SCTP_UNUSED
7005 #endif
7006 )
7007 {
7008 	/* Move from the stream to the send_queue keeping track of the total */
7009 	struct sctp_association *asoc;
7010 	struct sctp_stream_queue_pending *sp;
7011 	struct sctp_tmit_chunk *chk;
7012 	struct sctp_data_chunk *dchkh;
7013 	uint32_t to_move, length;
7014 	uint8_t rcv_flags = 0;
7015 	uint8_t some_taken;
7016 	uint8_t send_lock_up = 0;
7017 
7018 	SCTP_TCB_LOCK_ASSERT(stcb);
7019 	asoc = &stcb->asoc;
7020 one_more_time:
7021 	/* sa_ignore FREED_MEMORY */
7022 	sp = TAILQ_FIRST(&strq->outqueue);
7023 	if (sp == NULL) {
7024 		*locked = 0;
7025 		if (send_lock_up == 0) {
7026 			SCTP_TCB_SEND_LOCK(stcb);
7027 			send_lock_up = 1;
7028 		}
7029 		sp = TAILQ_FIRST(&strq->outqueue);
7030 		if (sp) {
7031 			goto one_more_time;
7032 		}
7033 		if (strq->last_msg_incomplete) {
7034 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7035 			    strq->stream_no,
7036 			    strq->last_msg_incomplete);
7037 			strq->last_msg_incomplete = 0;
7038 		}
7039 		to_move = 0;
7040 		if (send_lock_up) {
7041 			SCTP_TCB_SEND_UNLOCK(stcb);
7042 			send_lock_up = 0;
7043 		}
7044 		goto out_of;
7045 	}
7046 	if ((sp->msg_is_complete) && (sp->length == 0)) {
7047 		if (sp->sender_all_done) {
7048 			/*
7049 			 * We are doing differed cleanup. Last time through
7050 			 * when we took all the data the sender_all_done was
7051 			 * not set.
7052 			 */
7053 			if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7054 				SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7055 				SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7056 				    sp->sender_all_done,
7057 				    sp->length,
7058 				    sp->msg_is_complete,
7059 				    sp->put_last_out,
7060 				    send_lock_up);
7061 			}
7062 			if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) {
7063 				SCTP_TCB_SEND_LOCK(stcb);
7064 				send_lock_up = 1;
7065 			}
7066 			atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7067 			TAILQ_REMOVE(&strq->outqueue, sp, next);
7068 			stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7069 			if (sp->net) {
7070 				sctp_free_remote_addr(sp->net);
7071 				sp->net = NULL;
7072 			}
7073 			if (sp->data) {
7074 				sctp_m_freem(sp->data);
7075 				sp->data = NULL;
7076 			}
7077 			sctp_free_a_strmoq(stcb, sp, so_locked);
7078 			/* we can't be locked to it */
7079 			*locked = 0;
7080 			stcb->asoc.locked_on_sending = NULL;
7081 			if (send_lock_up) {
7082 				SCTP_TCB_SEND_UNLOCK(stcb);
7083 				send_lock_up = 0;
7084 			}
7085 			/* back to get the next msg */
7086 			goto one_more_time;
7087 		} else {
7088 			/*
7089 			 * sender just finished this but still holds a
7090 			 * reference
7091 			 */
7092 			*locked = 1;
7093 			*giveup = 1;
7094 			to_move = 0;
7095 			goto out_of;
7096 		}
7097 	} else {
7098 		/* is there some to get */
7099 		if (sp->length == 0) {
7100 			/* no */
7101 			*locked = 1;
7102 			*giveup = 1;
7103 			to_move = 0;
7104 			goto out_of;
7105 		} else if (sp->discard_rest) {
7106 			if (send_lock_up == 0) {
7107 				SCTP_TCB_SEND_LOCK(stcb);
7108 				send_lock_up = 1;
7109 			}
7110 			/* Whack down the size */
7111 			atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7112 			if ((stcb->sctp_socket != NULL) && \
7113 			    ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7114 			    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7115 				atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length);
7116 			}
7117 			if (sp->data) {
7118 				sctp_m_freem(sp->data);
7119 				sp->data = NULL;
7120 				sp->tail_mbuf = NULL;
7121 			}
7122 			sp->length = 0;
7123 			sp->some_taken = 1;
7124 			*locked = 1;
7125 			*giveup = 1;
7126 			to_move = 0;
7127 			goto out_of;
7128 		}
7129 	}
7130 	some_taken = sp->some_taken;
7131 	if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
7132 		sp->msg_is_complete = 1;
7133 	}
7134 re_look:
7135 	length = sp->length;
7136 	if (sp->msg_is_complete) {
7137 		/* The message is complete */
7138 		to_move = min(length, frag_point);
7139 		if (to_move == length) {
7140 			/* All of it fits in the MTU */
7141 			if (sp->some_taken) {
7142 				rcv_flags |= SCTP_DATA_LAST_FRAG;
7143 				sp->put_last_out = 1;
7144 			} else {
7145 				rcv_flags |= SCTP_DATA_NOT_FRAG;
7146 				sp->put_last_out = 1;
7147 			}
7148 		} else {
7149 			/* Not all of it fits, we fragment */
7150 			if (sp->some_taken == 0) {
7151 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7152 			}
7153 			sp->some_taken = 1;
7154 		}
7155 	} else {
7156 		to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode);
7157 		if (to_move) {
7158 			/*-
7159 			 * We use a snapshot of length in case it
7160 			 * is expanding during the compare.
7161 			 */
7162 			uint32_t llen;
7163 
7164 			llen = length;
7165 			if (to_move >= llen) {
7166 				to_move = llen;
7167 				if (send_lock_up == 0) {
7168 					/*-
7169 					 * We are taking all of an incomplete msg
7170 					 * thus we need a send lock.
7171 					 */
7172 					SCTP_TCB_SEND_LOCK(stcb);
7173 					send_lock_up = 1;
7174 					if (sp->msg_is_complete) {
7175 						/*
7176 						 * the sender finished the
7177 						 * msg
7178 						 */
7179 						goto re_look;
7180 					}
7181 				}
7182 			}
7183 			if (sp->some_taken == 0) {
7184 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
7185 				sp->some_taken = 1;
7186 			}
7187 		} else {
7188 			/* Nothing to take. */
7189 			if (sp->some_taken) {
7190 				*locked = 1;
7191 			}
7192 			*giveup = 1;
7193 			to_move = 0;
7194 			goto out_of;
7195 		}
7196 	}
7197 
7198 	/* If we reach here, we can copy out a chunk */
7199 	sctp_alloc_a_chunk(stcb, chk);
7200 	if (chk == NULL) {
7201 		/* No chunk memory */
7202 		*giveup = 1;
7203 		to_move = 0;
7204 		goto out_of;
7205 	}
7206 	/*
7207 	 * Setup for unordered if needed by looking at the user sent info
7208 	 * flags.
7209 	 */
7210 	if (sp->sinfo_flags & SCTP_UNORDERED) {
7211 		rcv_flags |= SCTP_DATA_UNORDERED;
7212 	}
7213 	if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) ||
7214 	    ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) {
7215 		rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7216 	}
7217 	/* clear out the chunk before setting up */
7218 	memset(chk, 0, sizeof(*chk));
7219 	chk->rec.data.rcv_flags = rcv_flags;
7220 
7221 	if (to_move >= length) {
7222 		/* we think we can steal the whole thing */
7223 		if ((sp->sender_all_done == 0) && (send_lock_up == 0)) {
7224 			SCTP_TCB_SEND_LOCK(stcb);
7225 			send_lock_up = 1;
7226 		}
7227 		if (to_move < sp->length) {
7228 			/* bail, it changed */
7229 			goto dont_do_it;
7230 		}
7231 		chk->data = sp->data;
7232 		chk->last_mbuf = sp->tail_mbuf;
7233 		/* register the stealing */
7234 		sp->data = sp->tail_mbuf = NULL;
7235 	} else {
7236 		struct mbuf *m;
7237 
7238 dont_do_it:
7239 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_DONTWAIT);
7240 		chk->last_mbuf = NULL;
7241 		if (chk->data == NULL) {
7242 			sp->some_taken = some_taken;
7243 			sctp_free_a_chunk(stcb, chk, so_locked);
7244 			*bail = 1;
7245 			to_move = 0;
7246 			goto out_of;
7247 		}
7248 #ifdef SCTP_MBUF_LOGGING
7249 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7250 			struct mbuf *mat;
7251 
7252 			for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) {
7253 				if (SCTP_BUF_IS_EXTENDED(mat)) {
7254 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
7255 				}
7256 			}
7257 		}
7258 #endif
7259 		/* Pull off the data */
7260 		m_adj(sp->data, to_move);
7261 		/* Now lets work our way down and compact it */
7262 		m = sp->data;
7263 		while (m && (SCTP_BUF_LEN(m) == 0)) {
7264 			sp->data = SCTP_BUF_NEXT(m);
7265 			SCTP_BUF_NEXT(m) = NULL;
7266 			if (sp->tail_mbuf == m) {
7267 				/*-
7268 				 * Freeing tail? TSNH since
7269 				 * we supposedly were taking less
7270 				 * than the sp->length.
7271 				 */
7272 #ifdef INVARIANTS
7273 				panic("Huh, freing tail? - TSNH");
7274 #else
7275 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7276 				sp->tail_mbuf = sp->data = NULL;
7277 				sp->length = 0;
7278 #endif
7279 
7280 			}
7281 			sctp_m_free(m);
7282 			m = sp->data;
7283 		}
7284 	}
7285 	if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7286 		chk->copy_by_ref = 1;
7287 	} else {
7288 		chk->copy_by_ref = 0;
7289 	}
7290 	/*
7291 	 * get last_mbuf and counts of mb useage This is ugly but hopefully
7292 	 * its only one mbuf.
7293 	 */
7294 	if (chk->last_mbuf == NULL) {
7295 		chk->last_mbuf = chk->data;
7296 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7297 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7298 		}
7299 	}
7300 	if (to_move > length) {
7301 		/*- This should not happen either
7302 		 * since we always lower to_move to the size
7303 		 * of sp->length if its larger.
7304 		 */
7305 #ifdef INVARIANTS
7306 		panic("Huh, how can to_move be larger?");
7307 #else
7308 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
7309 		sp->length = 0;
7310 #endif
7311 	} else {
7312 		atomic_subtract_int(&sp->length, to_move);
7313 	}
7314 	if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
7315 		/* Not enough room for a chunk header, get some */
7316 		struct mbuf *m;
7317 
7318 		m = sctp_get_mbuf_for_msg(1, 0, M_DONTWAIT, 0, MT_DATA);
7319 		if (m == NULL) {
7320 			/*
7321 			 * we're in trouble here. _PREPEND below will free
7322 			 * all the data if there is no leading space, so we
7323 			 * must put the data back and restore.
7324 			 */
7325 			if (send_lock_up == 0) {
7326 				SCTP_TCB_SEND_LOCK(stcb);
7327 				send_lock_up = 1;
7328 			}
7329 			if (chk->data == NULL) {
7330 				/* unsteal the data */
7331 				sp->data = chk->data;
7332 				sp->tail_mbuf = chk->last_mbuf;
7333 			} else {
7334 				struct mbuf *m_tmp;
7335 
7336 				/* reassemble the data */
7337 				m_tmp = sp->data;
7338 				sp->data = chk->data;
7339 				SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7340 			}
7341 			sp->some_taken = some_taken;
7342 			atomic_add_int(&sp->length, to_move);
7343 			chk->data = NULL;
7344 			*bail = 1;
7345 			sctp_free_a_chunk(stcb, chk, so_locked);
7346 			to_move = 0;
7347 			goto out_of;
7348 		} else {
7349 			SCTP_BUF_LEN(m) = 0;
7350 			SCTP_BUF_NEXT(m) = chk->data;
7351 			chk->data = m;
7352 			M_ALIGN(chk->data, 4);
7353 		}
7354 	}
7355 	SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_DONTWAIT);
7356 	if (chk->data == NULL) {
7357 		/* HELP, TSNH since we assured it would not above? */
7358 #ifdef INVARIANTS
7359 		panic("prepend failes HELP?");
7360 #else
7361 		SCTP_PRINTF("prepend fails HELP?\n");
7362 		sctp_free_a_chunk(stcb, chk, so_locked);
7363 #endif
7364 		*bail = 1;
7365 		to_move = 0;
7366 		goto out_of;
7367 	}
7368 	sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
7369 	chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk));
7370 	chk->book_size_scale = 0;
7371 	chk->sent = SCTP_DATAGRAM_UNSENT;
7372 
7373 	chk->flags = 0;
7374 	chk->asoc = &stcb->asoc;
7375 	chk->pad_inplace = 0;
7376 	chk->no_fr_allowed = 0;
7377 	chk->rec.data.stream_seq = strq->next_sequence_send;
7378 	if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7379 		strq->next_sequence_send++;
7380 	}
7381 	chk->rec.data.stream_number = sp->stream;
7382 	chk->rec.data.payloadtype = sp->ppid;
7383 	chk->rec.data.context = sp->context;
7384 	chk->rec.data.doing_fast_retransmit = 0;
7385 
7386 	chk->rec.data.timetodrop = sp->ts;
7387 	chk->flags = sp->act_flags;
7388 
7389 	if (sp->net) {
7390 		chk->whoTo = sp->net;
7391 		atomic_add_int(&chk->whoTo->ref_count, 1);
7392 	} else
7393 		chk->whoTo = NULL;
7394 
7395 	if (sp->holds_key_ref) {
7396 		chk->auth_keyid = sp->auth_keyid;
7397 		sctp_auth_key_acquire(stcb, chk->auth_keyid);
7398 		chk->holds_key_ref = 1;
7399 	}
7400 	chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
7401 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7402 		sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7403 		    (uintptr_t) stcb, sp->length,
7404 		    (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
7405 		    chk->rec.data.TSN_seq);
7406 	}
7407 	dchkh = mtod(chk->data, struct sctp_data_chunk *);
7408 	/*
7409 	 * Put the rest of the things in place now. Size was done earlier in
7410 	 * previous loop prior to padding.
7411 	 */
7412 
7413 #ifdef SCTP_ASOCLOG_OF_TSNS
7414 	SCTP_TCB_LOCK_ASSERT(stcb);
7415 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7416 		asoc->tsn_out_at = 0;
7417 		asoc->tsn_out_wrapped = 1;
7418 	}
7419 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
7420 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
7421 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
7422 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7423 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7424 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7425 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7426 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7427 	asoc->tsn_out_at++;
7428 #endif
7429 
7430 	dchkh->ch.chunk_type = SCTP_DATA;
7431 	dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7432 	dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7433 	dchkh->dp.stream_id = htons(strq->stream_no);
7434 	dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
7435 	dchkh->dp.protocol_id = chk->rec.data.payloadtype;
7436 	dchkh->ch.chunk_length = htons(chk->send_size);
7437 	/* Now advance the chk->send_size by the actual pad needed. */
7438 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7439 		/* need a pad */
7440 		struct mbuf *lm;
7441 		int pads;
7442 
7443 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7444 		if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
7445 			chk->pad_inplace = 1;
7446 		}
7447 		if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
7448 			/* pad added an mbuf */
7449 			chk->last_mbuf = lm;
7450 		}
7451 		chk->send_size += pads;
7452 	}
7453 	/* We only re-set the policy if it is on */
7454 	if (sp->pr_sctp_on) {
7455 		sctp_set_prsctp_policy(sp);
7456 		asoc->pr_sctp_cnt++;
7457 		chk->pr_sctp_on = 1;
7458 	} else {
7459 		chk->pr_sctp_on = 0;
7460 	}
7461 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7462 		/* All done pull and kill the message */
7463 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7464 		if (sp->put_last_out == 0) {
7465 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7466 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7467 			    sp->sender_all_done,
7468 			    sp->length,
7469 			    sp->msg_is_complete,
7470 			    sp->put_last_out,
7471 			    send_lock_up);
7472 		}
7473 		if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
7474 			SCTP_TCB_SEND_LOCK(stcb);
7475 			send_lock_up = 1;
7476 		}
7477 		TAILQ_REMOVE(&strq->outqueue, sp, next);
7478 		stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7479 		if (sp->net) {
7480 			sctp_free_remote_addr(sp->net);
7481 			sp->net = NULL;
7482 		}
7483 		if (sp->data) {
7484 			sctp_m_freem(sp->data);
7485 			sp->data = NULL;
7486 		}
7487 		sctp_free_a_strmoq(stcb, sp, so_locked);
7488 
7489 		/* we can't be locked to it */
7490 		*locked = 0;
7491 		stcb->asoc.locked_on_sending = NULL;
7492 	} else {
7493 		/* more to go, we are locked */
7494 		*locked = 1;
7495 	}
7496 	asoc->chunks_on_out_queue++;
7497 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7498 	asoc->send_queue_cnt++;
7499 out_of:
7500 	if (send_lock_up) {
7501 		SCTP_TCB_SEND_UNLOCK(stcb);
7502 	}
7503 	return (to_move);
7504 }
7505 
7506 
7507 static void
7508 sctp_fill_outqueue(struct sctp_tcb *stcb,
7509     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked
7510 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7511     SCTP_UNUSED
7512 #endif
7513 )
7514 {
7515 	struct sctp_association *asoc;
7516 	struct sctp_stream_out *strq;
7517 	int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
7518 	int locked, giveup;
7519 
7520 	SCTP_TCB_LOCK_ASSERT(stcb);
7521 	asoc = &stcb->asoc;
7522 	switch (net->ro._l_addr.sa.sa_family) {
7523 #ifdef INET
7524 	case AF_INET:
7525 		goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
7526 		break;
7527 #endif
7528 #ifdef INET6
7529 	case AF_INET6:
7530 		goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
7531 		break;
7532 #endif
7533 	default:
7534 		/* TSNH */
7535 		goal_mtu = net->mtu;
7536 		break;
7537 	}
7538 	/* Need an allowance for the data chunk header too */
7539 	goal_mtu -= sizeof(struct sctp_data_chunk);
7540 
7541 	/* must make even word boundary */
7542 	goal_mtu &= 0xfffffffc;
7543 	if (asoc->locked_on_sending) {
7544 		/* We are stuck on one stream until the message completes. */
7545 		strq = asoc->locked_on_sending;
7546 		locked = 1;
7547 	} else {
7548 		strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7549 		locked = 0;
7550 	}
7551 	while ((goal_mtu > 0) && strq) {
7552 		giveup = 0;
7553 		bail = 0;
7554 		moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked,
7555 		    &giveup, eeor_mode, &bail, so_locked);
7556 		if (moved_how_much)
7557 			stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much);
7558 
7559 		if (locked) {
7560 			asoc->locked_on_sending = strq;
7561 			if ((moved_how_much == 0) || (giveup) || bail)
7562 				/* no more to move for now */
7563 				break;
7564 		} else {
7565 			asoc->locked_on_sending = NULL;
7566 			if ((giveup) || bail) {
7567 				break;
7568 			}
7569 			strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7570 			if (strq == NULL) {
7571 				break;
7572 			}
7573 		}
7574 		total_moved += moved_how_much;
7575 		goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
7576 		goal_mtu &= 0xfffffffc;
7577 	}
7578 	if (bail)
7579 		*quit_now = 1;
7580 
7581 	stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7582 
7583 	if (total_moved == 0) {
7584 		if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7585 		    (net == stcb->asoc.primary_destination)) {
7586 			/* ran dry for primary network net */
7587 			SCTP_STAT_INCR(sctps_primary_randry);
7588 		} else if (stcb->asoc.sctp_cmt_on_off > 0) {
7589 			/* ran dry with CMT on */
7590 			SCTP_STAT_INCR(sctps_cmt_randry);
7591 		}
7592 	}
7593 }
7594 
7595 void
7596 sctp_fix_ecn_echo(struct sctp_association *asoc)
7597 {
7598 	struct sctp_tmit_chunk *chk;
7599 
7600 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7601 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7602 			chk->sent = SCTP_DATAGRAM_UNSENT;
7603 		}
7604 	}
7605 }
7606 
7607 void
7608 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7609 {
7610 	struct sctp_association *asoc;
7611 	struct sctp_tmit_chunk *chk;
7612 	struct sctp_stream_queue_pending *sp;
7613 	unsigned int i;
7614 
7615 	if (net == NULL) {
7616 		return;
7617 	}
7618 	asoc = &stcb->asoc;
7619 	for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7620 		TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7621 			if (sp->net == net) {
7622 				sctp_free_remote_addr(sp->net);
7623 				sp->net = NULL;
7624 			}
7625 		}
7626 	}
7627 	TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7628 		if (chk->whoTo == net) {
7629 			sctp_free_remote_addr(chk->whoTo);
7630 			chk->whoTo = NULL;
7631 		}
7632 	}
7633 }
7634 
7635 int
7636 sctp_med_chunk_output(struct sctp_inpcb *inp,
7637     struct sctp_tcb *stcb,
7638     struct sctp_association *asoc,
7639     int *num_out,
7640     int *reason_code,
7641     int control_only, int from_where,
7642     struct timeval *now, int *now_filled, int frag_point, int so_locked
7643 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7644     SCTP_UNUSED
7645 #endif
7646 )
7647 {
7648 	/*
7649 	 * Ok this is the generic chunk service queue. we must do the
7650 	 * following: - Service the stream queue that is next, moving any
7651 	 * message (note I must get a complete message i.e. FIRST/MIDDLE and
7652 	 * LAST to the out queue in one pass) and assigning TSN's - Check to
7653 	 * see if the cwnd/rwnd allows any output, if so we go ahead and
7654 	 * fomulate and send the low level chunks. Making sure to combine
7655 	 * any control in the control chunk queue also.
7656 	 */
7657 	struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7658 	struct mbuf *outchain, *endoutchain;
7659 	struct sctp_tmit_chunk *chk, *nchk;
7660 
7661 	/* temp arrays for unlinking */
7662 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7663 	int no_fragmentflg, error;
7664 	unsigned int max_rwnd_per_dest, max_send_per_dest;
7665 	int one_chunk, hbflag, skip_data_for_this_net;
7666 	int asconf, cookie, no_out_cnt;
7667 	int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7668 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7669 	int tsns_sent = 0;
7670 	uint32_t auth_offset = 0;
7671 	struct sctp_auth_chunk *auth = NULL;
7672 	uint16_t auth_keyid;
7673 	int override_ok = 1;
7674 	int skip_fill_up = 0;
7675 	int data_auth_reqd = 0;
7676 
7677 	/*
7678 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7679 	 * destination.
7680 	 */
7681 	int quit_now = 0;
7682 
7683 	*num_out = 0;
7684 	auth_keyid = stcb->asoc.authinfo.active_keyid;
7685 
7686 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7687 	    (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
7688 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7689 		eeor_mode = 1;
7690 	} else {
7691 		eeor_mode = 0;
7692 	}
7693 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
7694 	/*
7695 	 * First lets prime the pump. For each destination, if there is room
7696 	 * in the flight size, attempt to pull an MTU's worth out of the
7697 	 * stream queues into the general send_queue
7698 	 */
7699 #ifdef SCTP_AUDITING_ENABLED
7700 	sctp_audit_log(0xC2, 2);
7701 #endif
7702 	SCTP_TCB_LOCK_ASSERT(stcb);
7703 	hbflag = 0;
7704 	if ((control_only) || (asoc->stream_reset_outstanding))
7705 		no_data_chunks = 1;
7706 	else
7707 		no_data_chunks = 0;
7708 
7709 	/* Nothing to possible to send? */
7710 	if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7711 	    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7712 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7713 	    TAILQ_EMPTY(&asoc->send_queue) &&
7714 	    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
7715 nothing_to_send:
7716 		*reason_code = 9;
7717 		return (0);
7718 	}
7719 	if (asoc->peers_rwnd == 0) {
7720 		/* No room in peers rwnd */
7721 		*reason_code = 1;
7722 		if (asoc->total_flight > 0) {
7723 			/* we are allowed one chunk in flight */
7724 			no_data_chunks = 1;
7725 		}
7726 	}
7727 	if (stcb->asoc.ecn_echo_cnt_onq) {
7728 		/* Record where a sack goes, if any */
7729 		if (no_data_chunks &&
7730 		    (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7731 			/* Nothing but ECNe to send - we don't do that */
7732 			goto nothing_to_send;
7733 		}
7734 		TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7735 			if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7736 			    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7737 				sack_goes_to = chk->whoTo;
7738 				break;
7739 			}
7740 		}
7741 	}
7742 	max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7743 	if (stcb->sctp_socket)
7744 		max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7745 	else
7746 		max_send_per_dest = 0;
7747 	if (no_data_chunks == 0) {
7748 		/* How many non-directed chunks are there? */
7749 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7750 			if (chk->whoTo == NULL) {
7751 				/*
7752 				 * We already have non-directed chunks on
7753 				 * the queue, no need to do a fill-up.
7754 				 */
7755 				skip_fill_up = 1;
7756 				break;
7757 			}
7758 		}
7759 
7760 	}
7761 	if ((no_data_chunks == 0) &&
7762 	    (skip_fill_up == 0) &&
7763 	    (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7764 		TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7765 			/*
7766 			 * This for loop we are in takes in each net, if
7767 			 * its's got space in cwnd and has data sent to it
7768 			 * (when CMT is off) then it calls
7769 			 * sctp_fill_outqueue for the net. This gets data on
7770 			 * the send queue for that network.
7771 			 *
7772 			 * In sctp_fill_outqueue TSN's are assigned and data is
7773 			 * copied out of the stream buffers. Note mostly
7774 			 * copy by reference (we hope).
7775 			 */
7776 			net->window_probe = 0;
7777 			if ((net != stcb->asoc.alternate) &&
7778 			    ((net->dest_state & SCTP_ADDR_PF) ||
7779 			    (!(net->dest_state & SCTP_ADDR_REACHABLE)) ||
7780 			    (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7781 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7782 					sctp_log_cwnd(stcb, net, 1,
7783 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7784 				}
7785 				continue;
7786 			}
7787 			if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7788 			    (net->flight_size == 0)) {
7789 				(*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7790 			}
7791 			if (net->flight_size >= net->cwnd) {
7792 				/* skip this network, no room - can't fill */
7793 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7794 					sctp_log_cwnd(stcb, net, 3,
7795 					    SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7796 				}
7797 				continue;
7798 			}
7799 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7800 				sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7801 			}
7802 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7803 			if (quit_now) {
7804 				/* memory alloc failure */
7805 				no_data_chunks = 1;
7806 				break;
7807 			}
7808 		}
7809 	}
7810 	/* now service each destination and send out what we can for it */
7811 	/* Nothing to send? */
7812 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7813 	    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7814 	    TAILQ_EMPTY(&asoc->send_queue)) {
7815 		*reason_code = 8;
7816 		return (0);
7817 	}
7818 	if (asoc->sctp_cmt_on_off > 0) {
7819 		/* get the last start point */
7820 		start_at = asoc->last_net_cmt_send_started;
7821 		if (start_at == NULL) {
7822 			/* null so to beginning */
7823 			start_at = TAILQ_FIRST(&asoc->nets);
7824 		} else {
7825 			start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7826 			if (start_at == NULL) {
7827 				start_at = TAILQ_FIRST(&asoc->nets);
7828 			}
7829 		}
7830 		asoc->last_net_cmt_send_started = start_at;
7831 	} else {
7832 		start_at = TAILQ_FIRST(&asoc->nets);
7833 	}
7834 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7835 		if (chk->whoTo == NULL) {
7836 			if (asoc->alternate) {
7837 				chk->whoTo = asoc->alternate;
7838 			} else {
7839 				chk->whoTo = asoc->primary_destination;
7840 			}
7841 			atomic_add_int(&chk->whoTo->ref_count, 1);
7842 		}
7843 	}
7844 	old_start_at = NULL;
7845 again_one_more_time:
7846 	for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7847 		/* how much can we send? */
7848 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7849 		if (old_start_at && (old_start_at == net)) {
7850 			/* through list ocmpletely. */
7851 			break;
7852 		}
7853 		tsns_sent = 0xa;
7854 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7855 		    TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7856 		    (net->flight_size >= net->cwnd)) {
7857 			/*
7858 			 * Nothing on control or asconf and flight is full,
7859 			 * we can skip even in the CMT case.
7860 			 */
7861 			continue;
7862 		}
7863 		bundle_at = 0;
7864 		endoutchain = outchain = NULL;
7865 		no_fragmentflg = 1;
7866 		one_chunk = 0;
7867 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
7868 			skip_data_for_this_net = 1;
7869 		} else {
7870 			skip_data_for_this_net = 0;
7871 		}
7872 		if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
7873 			/*
7874 			 * if we have a route and an ifp check to see if we
7875 			 * have room to send to this guy
7876 			 */
7877 			struct ifnet *ifp;
7878 
7879 			ifp = net->ro.ro_rt->rt_ifp;
7880 			if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
7881 				SCTP_STAT_INCR(sctps_ifnomemqueued);
7882 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
7883 					sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
7884 				}
7885 				continue;
7886 			}
7887 		}
7888 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
7889 #ifdef INET
7890 		case AF_INET:
7891 			mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7892 			break;
7893 #endif
7894 #ifdef INET6
7895 		case AF_INET6:
7896 			mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7897 			break;
7898 #endif
7899 		default:
7900 			/* TSNH */
7901 			mtu = net->mtu;
7902 			break;
7903 		}
7904 		mx_mtu = mtu;
7905 		to_out = 0;
7906 		if (mtu > asoc->peers_rwnd) {
7907 			if (asoc->total_flight > 0) {
7908 				/* We have a packet in flight somewhere */
7909 				r_mtu = asoc->peers_rwnd;
7910 			} else {
7911 				/* We are always allowed to send one MTU out */
7912 				one_chunk = 1;
7913 				r_mtu = mtu;
7914 			}
7915 		} else {
7916 			r_mtu = mtu;
7917 		}
7918 		/************************/
7919 		/* ASCONF transmission */
7920 		/************************/
7921 		/* Now first lets go through the asconf queue */
7922 		TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
7923 			if (chk->rec.chunk_id.id != SCTP_ASCONF) {
7924 				continue;
7925 			}
7926 			if (chk->whoTo == NULL) {
7927 				if (asoc->alternate == NULL) {
7928 					if (asoc->primary_destination != net) {
7929 						break;
7930 					}
7931 				} else {
7932 					if (asoc->alternate != net) {
7933 						break;
7934 					}
7935 				}
7936 			} else {
7937 				if (chk->whoTo != net) {
7938 					break;
7939 				}
7940 			}
7941 			if (chk->data == NULL) {
7942 				break;
7943 			}
7944 			if (chk->sent != SCTP_DATAGRAM_UNSENT &&
7945 			    chk->sent != SCTP_DATAGRAM_RESEND) {
7946 				break;
7947 			}
7948 			/*
7949 			 * if no AUTH is yet included and this chunk
7950 			 * requires it, make sure to account for it.  We
7951 			 * don't apply the size until the AUTH chunk is
7952 			 * actually added below in case there is no room for
7953 			 * this chunk. NOTE: we overload the use of "omtu"
7954 			 * here
7955 			 */
7956 			if ((auth == NULL) &&
7957 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7958 			    stcb->asoc.peer_auth_chunks)) {
7959 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7960 			} else
7961 				omtu = 0;
7962 			/* Here we do NOT factor the r_mtu */
7963 			if ((chk->send_size < (int)(mtu - omtu)) ||
7964 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
7965 				/*
7966 				 * We probably should glom the mbuf chain
7967 				 * from the chk->data for control but the
7968 				 * problem is it becomes yet one more level
7969 				 * of tracking to do if for some reason
7970 				 * output fails. Then I have got to
7971 				 * reconstruct the merged control chain.. el
7972 				 * yucko.. for now we take the easy way and
7973 				 * do the copy
7974 				 */
7975 				/*
7976 				 * Add an AUTH chunk, if chunk requires it
7977 				 * save the offset into the chain for AUTH
7978 				 */
7979 				if ((auth == NULL) &&
7980 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7981 				    stcb->asoc.peer_auth_chunks))) {
7982 					outchain = sctp_add_auth_chunk(outchain,
7983 					    &endoutchain,
7984 					    &auth,
7985 					    &auth_offset,
7986 					    stcb,
7987 					    chk->rec.chunk_id.id);
7988 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7989 				}
7990 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
7991 				    (int)chk->rec.chunk_id.can_take_data,
7992 				    chk->send_size, chk->copy_by_ref);
7993 				if (outchain == NULL) {
7994 					*reason_code = 8;
7995 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7996 					return (ENOMEM);
7997 				}
7998 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7999 				/* update our MTU size */
8000 				if (mtu > (chk->send_size + omtu))
8001 					mtu -= (chk->send_size + omtu);
8002 				else
8003 					mtu = 0;
8004 				to_out += (chk->send_size + omtu);
8005 				/* Do clear IP_DF ? */
8006 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8007 					no_fragmentflg = 0;
8008 				}
8009 				if (chk->rec.chunk_id.can_take_data)
8010 					chk->data = NULL;
8011 				/*
8012 				 * set hb flag since we can use these for
8013 				 * RTO
8014 				 */
8015 				hbflag = 1;
8016 				asconf = 1;
8017 				/*
8018 				 * should sysctl this: don't bundle data
8019 				 * with ASCONF since it requires AUTH
8020 				 */
8021 				no_data_chunks = 1;
8022 				chk->sent = SCTP_DATAGRAM_SENT;
8023 				if (chk->whoTo == NULL) {
8024 					chk->whoTo = net;
8025 					atomic_add_int(&net->ref_count, 1);
8026 				}
8027 				chk->snd_count++;
8028 				if (mtu == 0) {
8029 					/*
8030 					 * Ok we are out of room but we can
8031 					 * output without effecting the
8032 					 * flight size since this little guy
8033 					 * is a control only packet.
8034 					 */
8035 					sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8036 					/*
8037 					 * do NOT clear the asconf flag as
8038 					 * it is used to do appropriate
8039 					 * source address selection.
8040 					 */
8041 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8042 					    (struct sockaddr *)&net->ro._l_addr,
8043 					    outchain, auth_offset, auth,
8044 					    stcb->asoc.authinfo.active_keyid,
8045 					    no_fragmentflg, 0, asconf,
8046 					    inp->sctp_lport, stcb->rport,
8047 					    htonl(stcb->asoc.peer_vtag),
8048 					    net->port, NULL,
8049 					    0, 0,
8050 					    so_locked))) {
8051 						if (error == ENOBUFS) {
8052 							asoc->ifp_had_enobuf = 1;
8053 							SCTP_STAT_INCR(sctps_lowlevelerr);
8054 						}
8055 						if (from_where == 0) {
8056 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8057 						}
8058 						if (*now_filled == 0) {
8059 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8060 							*now_filled = 1;
8061 							*now = net->last_sent_time;
8062 						} else {
8063 							net->last_sent_time = *now;
8064 						}
8065 						hbflag = 0;
8066 						/* error, could not output */
8067 						if (error == EHOSTUNREACH) {
8068 							/*
8069 							 * Destination went
8070 							 * unreachable
8071 							 * during this send
8072 							 */
8073 							sctp_move_chunks_from_net(stcb, net);
8074 						}
8075 						*reason_code = 7;
8076 						continue;
8077 					} else
8078 						asoc->ifp_had_enobuf = 0;
8079 					if (*now_filled == 0) {
8080 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8081 						*now_filled = 1;
8082 						*now = net->last_sent_time;
8083 					} else {
8084 						net->last_sent_time = *now;
8085 					}
8086 					hbflag = 0;
8087 					/*
8088 					 * increase the number we sent, if a
8089 					 * cookie is sent we don't tell them
8090 					 * any was sent out.
8091 					 */
8092 					outchain = endoutchain = NULL;
8093 					auth = NULL;
8094 					auth_offset = 0;
8095 					if (!no_out_cnt)
8096 						*num_out += ctl_cnt;
8097 					/* recalc a clean slate and setup */
8098 					switch (net->ro._l_addr.sa.sa_family) {
8099 #ifdef INET
8100 					case AF_INET:
8101 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8102 						break;
8103 #endif
8104 #ifdef INET6
8105 					case AF_INET6:
8106 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8107 						break;
8108 #endif
8109 					default:
8110 						/* TSNH */
8111 						mtu = net->mtu;
8112 						break;
8113 					}
8114 					to_out = 0;
8115 					no_fragmentflg = 1;
8116 				}
8117 			}
8118 		}
8119 		/************************/
8120 		/* Control transmission */
8121 		/************************/
8122 		/* Now first lets go through the control queue */
8123 		TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8124 			if ((sack_goes_to) &&
8125 			    (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8126 			    (chk->whoTo != sack_goes_to)) {
8127 				/*
8128 				 * if we have a sack in queue, and we are
8129 				 * looking at an ecn echo that is NOT queued
8130 				 * to where the sack is going..
8131 				 */
8132 				if (chk->whoTo == net) {
8133 					/*
8134 					 * Don't transmit it to where its
8135 					 * going (current net)
8136 					 */
8137 					continue;
8138 				} else if (sack_goes_to == net) {
8139 					/*
8140 					 * But do transmit it to this
8141 					 * address
8142 					 */
8143 					goto skip_net_check;
8144 				}
8145 			}
8146 			if (chk->whoTo == NULL) {
8147 				if (asoc->alternate == NULL) {
8148 					if (asoc->primary_destination != net) {
8149 						continue;
8150 					}
8151 				} else {
8152 					if (asoc->alternate != net) {
8153 						continue;
8154 					}
8155 				}
8156 			} else {
8157 				if (chk->whoTo != net) {
8158 					continue;
8159 				}
8160 			}
8161 	skip_net_check:
8162 			if (chk->data == NULL) {
8163 				continue;
8164 			}
8165 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8166 				/*
8167 				 * It must be unsent. Cookies and ASCONF's
8168 				 * hang around but there timers will force
8169 				 * when marked for resend.
8170 				 */
8171 				continue;
8172 			}
8173 			/*
8174 			 * if no AUTH is yet included and this chunk
8175 			 * requires it, make sure to account for it.  We
8176 			 * don't apply the size until the AUTH chunk is
8177 			 * actually added below in case there is no room for
8178 			 * this chunk. NOTE: we overload the use of "omtu"
8179 			 * here
8180 			 */
8181 			if ((auth == NULL) &&
8182 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8183 			    stcb->asoc.peer_auth_chunks)) {
8184 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8185 			} else
8186 				omtu = 0;
8187 			/* Here we do NOT factor the r_mtu */
8188 			if ((chk->send_size <= (int)(mtu - omtu)) ||
8189 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8190 				/*
8191 				 * We probably should glom the mbuf chain
8192 				 * from the chk->data for control but the
8193 				 * problem is it becomes yet one more level
8194 				 * of tracking to do if for some reason
8195 				 * output fails. Then I have got to
8196 				 * reconstruct the merged control chain.. el
8197 				 * yucko.. for now we take the easy way and
8198 				 * do the copy
8199 				 */
8200 				/*
8201 				 * Add an AUTH chunk, if chunk requires it
8202 				 * save the offset into the chain for AUTH
8203 				 */
8204 				if ((auth == NULL) &&
8205 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8206 				    stcb->asoc.peer_auth_chunks))) {
8207 					outchain = sctp_add_auth_chunk(outchain,
8208 					    &endoutchain,
8209 					    &auth,
8210 					    &auth_offset,
8211 					    stcb,
8212 					    chk->rec.chunk_id.id);
8213 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8214 				}
8215 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8216 				    (int)chk->rec.chunk_id.can_take_data,
8217 				    chk->send_size, chk->copy_by_ref);
8218 				if (outchain == NULL) {
8219 					*reason_code = 8;
8220 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8221 					return (ENOMEM);
8222 				}
8223 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8224 				/* update our MTU size */
8225 				if (mtu > (chk->send_size + omtu))
8226 					mtu -= (chk->send_size + omtu);
8227 				else
8228 					mtu = 0;
8229 				to_out += (chk->send_size + omtu);
8230 				/* Do clear IP_DF ? */
8231 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8232 					no_fragmentflg = 0;
8233 				}
8234 				if (chk->rec.chunk_id.can_take_data)
8235 					chk->data = NULL;
8236 				/* Mark things to be removed, if needed */
8237 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8238 				    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||	/* EY */
8239 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8240 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8241 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8242 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8243 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8244 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8245 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8246 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8247 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8248 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8249 						hbflag = 1;
8250 					}
8251 					/* remove these chunks at the end */
8252 					if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8253 					    (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8254 						/* turn off the timer */
8255 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8256 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8257 							    inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8258 						}
8259 					}
8260 					ctl_cnt++;
8261 				} else {
8262 					/*
8263 					 * Other chunks, since they have
8264 					 * timers running (i.e. COOKIE) we
8265 					 * just "trust" that it gets sent or
8266 					 * retransmitted.
8267 					 */
8268 					ctl_cnt++;
8269 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8270 						cookie = 1;
8271 						no_out_cnt = 1;
8272 					} else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8273 						/*
8274 						 * Increment ecne send count
8275 						 * here this means we may be
8276 						 * over-zealous in our
8277 						 * counting if the send
8278 						 * fails, but its the best
8279 						 * place to do it (we used
8280 						 * to do it in the queue of
8281 						 * the chunk, but that did
8282 						 * not tell how many times
8283 						 * it was sent.
8284 						 */
8285 						SCTP_STAT_INCR(sctps_sendecne);
8286 					}
8287 					chk->sent = SCTP_DATAGRAM_SENT;
8288 					if (chk->whoTo == NULL) {
8289 						chk->whoTo = net;
8290 						atomic_add_int(&net->ref_count, 1);
8291 					}
8292 					chk->snd_count++;
8293 				}
8294 				if (mtu == 0) {
8295 					/*
8296 					 * Ok we are out of room but we can
8297 					 * output without effecting the
8298 					 * flight size since this little guy
8299 					 * is a control only packet.
8300 					 */
8301 					if (asconf) {
8302 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8303 						/*
8304 						 * do NOT clear the asconf
8305 						 * flag as it is used to do
8306 						 * appropriate source
8307 						 * address selection.
8308 						 */
8309 					}
8310 					if (cookie) {
8311 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8312 						cookie = 0;
8313 					}
8314 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8315 					    (struct sockaddr *)&net->ro._l_addr,
8316 					    outchain,
8317 					    auth_offset, auth,
8318 					    stcb->asoc.authinfo.active_keyid,
8319 					    no_fragmentflg, 0, asconf,
8320 					    inp->sctp_lport, stcb->rport,
8321 					    htonl(stcb->asoc.peer_vtag),
8322 					    net->port, NULL,
8323 					    0, 0,
8324 					    so_locked))) {
8325 						if (error == ENOBUFS) {
8326 							asoc->ifp_had_enobuf = 1;
8327 							SCTP_STAT_INCR(sctps_lowlevelerr);
8328 						}
8329 						if (from_where == 0) {
8330 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
8331 						}
8332 						/* error, could not output */
8333 						if (hbflag) {
8334 							if (*now_filled == 0) {
8335 								(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8336 								*now_filled = 1;
8337 								*now = net->last_sent_time;
8338 							} else {
8339 								net->last_sent_time = *now;
8340 							}
8341 							hbflag = 0;
8342 						}
8343 						if (error == EHOSTUNREACH) {
8344 							/*
8345 							 * Destination went
8346 							 * unreachable
8347 							 * during this send
8348 							 */
8349 							sctp_move_chunks_from_net(stcb, net);
8350 						}
8351 						*reason_code = 7;
8352 						continue;
8353 					} else
8354 						asoc->ifp_had_enobuf = 0;
8355 					/* Only HB or ASCONF advances time */
8356 					if (hbflag) {
8357 						if (*now_filled == 0) {
8358 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8359 							*now_filled = 1;
8360 							*now = net->last_sent_time;
8361 						} else {
8362 							net->last_sent_time = *now;
8363 						}
8364 						hbflag = 0;
8365 					}
8366 					/*
8367 					 * increase the number we sent, if a
8368 					 * cookie is sent we don't tell them
8369 					 * any was sent out.
8370 					 */
8371 					outchain = endoutchain = NULL;
8372 					auth = NULL;
8373 					auth_offset = 0;
8374 					if (!no_out_cnt)
8375 						*num_out += ctl_cnt;
8376 					/* recalc a clean slate and setup */
8377 					switch (net->ro._l_addr.sa.sa_family) {
8378 #ifdef INET
8379 					case AF_INET:
8380 						mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8381 						break;
8382 #endif
8383 #ifdef INET6
8384 					case AF_INET6:
8385 						mtu = net->mtu - SCTP_MIN_OVERHEAD;
8386 						break;
8387 #endif
8388 					default:
8389 						/* TSNH */
8390 						mtu = net->mtu;
8391 						break;
8392 					}
8393 					to_out = 0;
8394 					no_fragmentflg = 1;
8395 				}
8396 			}
8397 		}
8398 		/* JRI: if dest is in PF state, do not send data to it */
8399 		if ((asoc->sctp_cmt_on_off > 0) &&
8400 		    (net != stcb->asoc.alternate) &&
8401 		    (net->dest_state & SCTP_ADDR_PF)) {
8402 			goto no_data_fill;
8403 		}
8404 		if (net->flight_size >= net->cwnd) {
8405 			goto no_data_fill;
8406 		}
8407 		if ((asoc->sctp_cmt_on_off > 0) &&
8408 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8409 		    (net->flight_size > max_rwnd_per_dest)) {
8410 			goto no_data_fill;
8411 		}
8412 		/*
8413 		 * We need a specific accounting for the usage of the send
8414 		 * buffer. We also need to check the number of messages per
8415 		 * net. For now, this is better than nothing and it disabled
8416 		 * by default...
8417 		 */
8418 		if ((asoc->sctp_cmt_on_off > 0) &&
8419 		    (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8420 		    (max_send_per_dest > 0) &&
8421 		    (net->flight_size > max_send_per_dest)) {
8422 			goto no_data_fill;
8423 		}
8424 		/*********************/
8425 		/* Data transmission */
8426 		/*********************/
8427 		/*
8428 		 * if AUTH for DATA is required and no AUTH has been added
8429 		 * yet, account for this in the mtu now... if no data can be
8430 		 * bundled, this adjustment won't matter anyways since the
8431 		 * packet will be going out...
8432 		 */
8433 		data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8434 		    stcb->asoc.peer_auth_chunks);
8435 		if (data_auth_reqd && (auth == NULL)) {
8436 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8437 		}
8438 		/* now lets add any data within the MTU constraints */
8439 		switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8440 #ifdef INET
8441 		case AF_INET:
8442 			if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
8443 				omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
8444 			else
8445 				omtu = 0;
8446 			break;
8447 #endif
8448 #ifdef INET6
8449 		case AF_INET6:
8450 			if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
8451 				omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
8452 			else
8453 				omtu = 0;
8454 			break;
8455 #endif
8456 		default:
8457 			/* TSNH */
8458 			omtu = 0;
8459 			break;
8460 		}
8461 		if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) &&
8462 		    (skip_data_for_this_net == 0)) ||
8463 		    (cookie)) {
8464 			TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8465 				if (no_data_chunks) {
8466 					/* let only control go out */
8467 					*reason_code = 1;
8468 					break;
8469 				}
8470 				if (net->flight_size >= net->cwnd) {
8471 					/* skip this net, no room for data */
8472 					*reason_code = 2;
8473 					break;
8474 				}
8475 				if ((chk->whoTo != NULL) &&
8476 				    (chk->whoTo != net)) {
8477 					/* Don't send the chunk on this net */
8478 					continue;
8479 				}
8480 				if (asoc->sctp_cmt_on_off == 0) {
8481 					if ((asoc->alternate) &&
8482 					    (asoc->alternate != net) &&
8483 					    (chk->whoTo == NULL)) {
8484 						continue;
8485 					} else if ((net != asoc->primary_destination) &&
8486 						    (asoc->alternate == NULL) &&
8487 					    (chk->whoTo == NULL)) {
8488 						continue;
8489 					}
8490 				}
8491 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8492 					/*-
8493 					 * strange, we have a chunk that is
8494 					 * to big for its destination and
8495 					 * yet no fragment ok flag.
8496 					 * Something went wrong when the
8497 					 * PMTU changed...we did not mark
8498 					 * this chunk for some reason?? I
8499 					 * will fix it here by letting IP
8500 					 * fragment it for now and printing
8501 					 * a warning. This really should not
8502 					 * happen ...
8503 					 */
8504 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8505 					    chk->send_size, mtu);
8506 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8507 				}
8508 				if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8509 				    ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) {
8510 					struct sctp_data_chunk *dchkh;
8511 
8512 					dchkh = mtod(chk->data, struct sctp_data_chunk *);
8513 					dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8514 				}
8515 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8516 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8517 					/* ok we will add this one */
8518 
8519 					/*
8520 					 * Add an AUTH chunk, if chunk
8521 					 * requires it, save the offset into
8522 					 * the chain for AUTH
8523 					 */
8524 					if (data_auth_reqd) {
8525 						if (auth == NULL) {
8526 							outchain = sctp_add_auth_chunk(outchain,
8527 							    &endoutchain,
8528 							    &auth,
8529 							    &auth_offset,
8530 							    stcb,
8531 							    SCTP_DATA);
8532 							auth_keyid = chk->auth_keyid;
8533 							override_ok = 0;
8534 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8535 						} else if (override_ok) {
8536 							/*
8537 							 * use this data's
8538 							 * keyid
8539 							 */
8540 							auth_keyid = chk->auth_keyid;
8541 							override_ok = 0;
8542 						} else if (auth_keyid != chk->auth_keyid) {
8543 							/*
8544 							 * different keyid,
8545 							 * so done bundling
8546 							 */
8547 							break;
8548 						}
8549 					}
8550 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8551 					    chk->send_size, chk->copy_by_ref);
8552 					if (outchain == NULL) {
8553 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8554 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8555 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8556 						}
8557 						*reason_code = 3;
8558 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8559 						return (ENOMEM);
8560 					}
8561 					/* upate our MTU size */
8562 					/* Do clear IP_DF ? */
8563 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8564 						no_fragmentflg = 0;
8565 					}
8566 					/* unsigned subtraction of mtu */
8567 					if (mtu > chk->send_size)
8568 						mtu -= chk->send_size;
8569 					else
8570 						mtu = 0;
8571 					/* unsigned subtraction of r_mtu */
8572 					if (r_mtu > chk->send_size)
8573 						r_mtu -= chk->send_size;
8574 					else
8575 						r_mtu = 0;
8576 
8577 					to_out += chk->send_size;
8578 					if ((to_out > mx_mtu) && no_fragmentflg) {
8579 #ifdef INVARIANTS
8580 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8581 #else
8582 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8583 						    mx_mtu, to_out);
8584 #endif
8585 					}
8586 					chk->window_probe = 0;
8587 					data_list[bundle_at++] = chk;
8588 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8589 						break;
8590 					}
8591 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8592 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8593 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8594 						} else {
8595 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8596 						}
8597 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8598 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8599 							/*
8600 							 * Count number of
8601 							 * user msg's that
8602 							 * were fragmented
8603 							 * we do this by
8604 							 * counting when we
8605 							 * see a LAST
8606 							 * fragment only.
8607 							 */
8608 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8609 					}
8610 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8611 						if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8612 							data_list[0]->window_probe = 1;
8613 							net->window_probe = 1;
8614 						}
8615 						break;
8616 					}
8617 				} else {
8618 					/*
8619 					 * Must be sent in order of the
8620 					 * TSN's (on a network)
8621 					 */
8622 					break;
8623 				}
8624 			}	/* for (chunk gather loop for this net) */
8625 		}		/* if asoc.state OPEN */
8626 no_data_fill:
8627 		/* Is there something to send for this destination? */
8628 		if (outchain) {
8629 			/* We may need to start a control timer or two */
8630 			if (asconf) {
8631 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8632 				    stcb, net);
8633 				/*
8634 				 * do NOT clear the asconf flag as it is
8635 				 * used to do appropriate source address
8636 				 * selection.
8637 				 */
8638 			}
8639 			if (cookie) {
8640 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8641 				cookie = 0;
8642 			}
8643 			/* must start a send timer if data is being sent */
8644 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8645 				/*
8646 				 * no timer running on this destination
8647 				 * restart it.
8648 				 */
8649 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8650 			}
8651 			/* Now send it, if there is anything to send :> */
8652 			if ((error = sctp_lowlevel_chunk_output(inp,
8653 			    stcb,
8654 			    net,
8655 			    (struct sockaddr *)&net->ro._l_addr,
8656 			    outchain,
8657 			    auth_offset,
8658 			    auth,
8659 			    auth_keyid,
8660 			    no_fragmentflg,
8661 			    bundle_at,
8662 			    asconf,
8663 			    inp->sctp_lport, stcb->rport,
8664 			    htonl(stcb->asoc.peer_vtag),
8665 			    net->port, NULL,
8666 			    0, 0,
8667 			    so_locked))) {
8668 				/* error, we could not output */
8669 				if (error == ENOBUFS) {
8670 					SCTP_STAT_INCR(sctps_lowlevelerr);
8671 					asoc->ifp_had_enobuf = 1;
8672 				}
8673 				if (from_where == 0) {
8674 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
8675 				}
8676 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8677 				if (hbflag) {
8678 					if (*now_filled == 0) {
8679 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8680 						*now_filled = 1;
8681 						*now = net->last_sent_time;
8682 					} else {
8683 						net->last_sent_time = *now;
8684 					}
8685 					hbflag = 0;
8686 				}
8687 				if (error == EHOSTUNREACH) {
8688 					/*
8689 					 * Destination went unreachable
8690 					 * during this send
8691 					 */
8692 					sctp_move_chunks_from_net(stcb, net);
8693 				}
8694 				*reason_code = 6;
8695 				/*-
8696 				 * I add this line to be paranoid. As far as
8697 				 * I can tell the continue, takes us back to
8698 				 * the top of the for, but just to make sure
8699 				 * I will reset these again here.
8700 				 */
8701 				ctl_cnt = bundle_at = 0;
8702 				continue;	/* This takes us back to the
8703 						 * for() for the nets. */
8704 			} else {
8705 				asoc->ifp_had_enobuf = 0;
8706 			}
8707 			endoutchain = NULL;
8708 			auth = NULL;
8709 			auth_offset = 0;
8710 			if (bundle_at || hbflag) {
8711 				/* For data/asconf and hb set time */
8712 				if (*now_filled == 0) {
8713 					(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8714 					*now_filled = 1;
8715 					*now = net->last_sent_time;
8716 				} else {
8717 					net->last_sent_time = *now;
8718 				}
8719 			}
8720 			if (!no_out_cnt) {
8721 				*num_out += (ctl_cnt + bundle_at);
8722 			}
8723 			if (bundle_at) {
8724 				/* setup for a RTO measurement */
8725 				tsns_sent = data_list[0]->rec.data.TSN_seq;
8726 				/* fill time if not already filled */
8727 				if (*now_filled == 0) {
8728 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8729 					*now_filled = 1;
8730 					*now = asoc->time_last_sent;
8731 				} else {
8732 					asoc->time_last_sent = *now;
8733 				}
8734 				if (net->rto_needed) {
8735 					data_list[0]->do_rtt = 1;
8736 					net->rto_needed = 0;
8737 				}
8738 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8739 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8740 			}
8741 			if (one_chunk) {
8742 				break;
8743 			}
8744 		}
8745 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8746 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8747 		}
8748 	}
8749 	if (old_start_at == NULL) {
8750 		old_start_at = start_at;
8751 		start_at = TAILQ_FIRST(&asoc->nets);
8752 		if (old_start_at)
8753 			goto again_one_more_time;
8754 	}
8755 	/*
8756 	 * At the end there should be no NON timed chunks hanging on this
8757 	 * queue.
8758 	 */
8759 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8760 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8761 	}
8762 	if ((*num_out == 0) && (*reason_code == 0)) {
8763 		*reason_code = 4;
8764 	} else {
8765 		*reason_code = 5;
8766 	}
8767 	sctp_clean_up_ctl(stcb, asoc, so_locked);
8768 	return (0);
8769 }
8770 
8771 void
8772 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8773 {
8774 	/*-
8775 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8776 	 * the control chunk queue.
8777 	 */
8778 	struct sctp_chunkhdr *hdr;
8779 	struct sctp_tmit_chunk *chk;
8780 	struct mbuf *mat;
8781 
8782 	SCTP_TCB_LOCK_ASSERT(stcb);
8783 	sctp_alloc_a_chunk(stcb, chk);
8784 	if (chk == NULL) {
8785 		/* no memory */
8786 		sctp_m_freem(op_err);
8787 		return;
8788 	}
8789 	chk->copy_by_ref = 0;
8790 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_DONTWAIT);
8791 	if (op_err == NULL) {
8792 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
8793 		return;
8794 	}
8795 	chk->send_size = 0;
8796 	mat = op_err;
8797 	while (mat != NULL) {
8798 		chk->send_size += SCTP_BUF_LEN(mat);
8799 		mat = SCTP_BUF_NEXT(mat);
8800 	}
8801 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8802 	chk->rec.chunk_id.can_take_data = 1;
8803 	chk->sent = SCTP_DATAGRAM_UNSENT;
8804 	chk->snd_count = 0;
8805 	chk->flags = 0;
8806 	chk->asoc = &stcb->asoc;
8807 	chk->data = op_err;
8808 	chk->whoTo = NULL;
8809 	hdr = mtod(op_err, struct sctp_chunkhdr *);
8810 	hdr->chunk_type = SCTP_OPERATION_ERROR;
8811 	hdr->chunk_flags = 0;
8812 	hdr->chunk_length = htons(chk->send_size);
8813 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
8814 	    chk,
8815 	    sctp_next);
8816 	chk->asoc->ctrl_queue_cnt++;
8817 }
8818 
8819 int
8820 sctp_send_cookie_echo(struct mbuf *m,
8821     int offset,
8822     struct sctp_tcb *stcb,
8823     struct sctp_nets *net)
8824 {
8825 	/*-
8826 	 * pull out the cookie and put it at the front of the control chunk
8827 	 * queue.
8828 	 */
8829 	int at;
8830 	struct mbuf *cookie;
8831 	struct sctp_paramhdr parm, *phdr;
8832 	struct sctp_chunkhdr *hdr;
8833 	struct sctp_tmit_chunk *chk;
8834 	uint16_t ptype, plen;
8835 
8836 	/* First find the cookie in the param area */
8837 	cookie = NULL;
8838 	at = offset + sizeof(struct sctp_init_chunk);
8839 
8840 	SCTP_TCB_LOCK_ASSERT(stcb);
8841 	do {
8842 		phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
8843 		if (phdr == NULL) {
8844 			return (-3);
8845 		}
8846 		ptype = ntohs(phdr->param_type);
8847 		plen = ntohs(phdr->param_length);
8848 		if (ptype == SCTP_STATE_COOKIE) {
8849 			int pad;
8850 
8851 			/* found the cookie */
8852 			if ((pad = (plen % 4))) {
8853 				plen += 4 - pad;
8854 			}
8855 			cookie = SCTP_M_COPYM(m, at, plen, M_DONTWAIT);
8856 			if (cookie == NULL) {
8857 				/* No memory */
8858 				return (-2);
8859 			}
8860 #ifdef SCTP_MBUF_LOGGING
8861 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8862 				struct mbuf *mat;
8863 
8864 				for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) {
8865 					if (SCTP_BUF_IS_EXTENDED(mat)) {
8866 						sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8867 					}
8868 				}
8869 			}
8870 #endif
8871 			break;
8872 		}
8873 		at += SCTP_SIZE32(plen);
8874 	} while (phdr);
8875 	if (cookie == NULL) {
8876 		/* Did not find the cookie */
8877 		return (-3);
8878 	}
8879 	/* ok, we got the cookie lets change it into a cookie echo chunk */
8880 
8881 	/* first the change from param to cookie */
8882 	hdr = mtod(cookie, struct sctp_chunkhdr *);
8883 	hdr->chunk_type = SCTP_COOKIE_ECHO;
8884 	hdr->chunk_flags = 0;
8885 	/* get the chunk stuff now and place it in the FRONT of the queue */
8886 	sctp_alloc_a_chunk(stcb, chk);
8887 	if (chk == NULL) {
8888 		/* no memory */
8889 		sctp_m_freem(cookie);
8890 		return (-5);
8891 	}
8892 	chk->copy_by_ref = 0;
8893 	chk->send_size = plen;
8894 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
8895 	chk->rec.chunk_id.can_take_data = 0;
8896 	chk->sent = SCTP_DATAGRAM_UNSENT;
8897 	chk->snd_count = 0;
8898 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
8899 	chk->asoc = &stcb->asoc;
8900 	chk->data = cookie;
8901 	chk->whoTo = net;
8902 	atomic_add_int(&chk->whoTo->ref_count, 1);
8903 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
8904 	chk->asoc->ctrl_queue_cnt++;
8905 	return (0);
8906 }
8907 
8908 void
8909 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
8910     struct mbuf *m,
8911     int offset,
8912     int chk_length,
8913     struct sctp_nets *net)
8914 {
8915 	/*
8916 	 * take a HB request and make it into a HB ack and send it.
8917 	 */
8918 	struct mbuf *outchain;
8919 	struct sctp_chunkhdr *chdr;
8920 	struct sctp_tmit_chunk *chk;
8921 
8922 
8923 	if (net == NULL)
8924 		/* must have a net pointer */
8925 		return;
8926 
8927 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_DONTWAIT);
8928 	if (outchain == NULL) {
8929 		/* gak out of memory */
8930 		return;
8931 	}
8932 #ifdef SCTP_MBUF_LOGGING
8933 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8934 		struct mbuf *mat;
8935 
8936 		for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) {
8937 			if (SCTP_BUF_IS_EXTENDED(mat)) {
8938 				sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8939 			}
8940 		}
8941 	}
8942 #endif
8943 	chdr = mtod(outchain, struct sctp_chunkhdr *);
8944 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
8945 	chdr->chunk_flags = 0;
8946 	if (chk_length % 4) {
8947 		/* need pad */
8948 		uint32_t cpthis = 0;
8949 		int padlen;
8950 
8951 		padlen = 4 - (chk_length % 4);
8952 		m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
8953 	}
8954 	sctp_alloc_a_chunk(stcb, chk);
8955 	if (chk == NULL) {
8956 		/* no memory */
8957 		sctp_m_freem(outchain);
8958 		return;
8959 	}
8960 	chk->copy_by_ref = 0;
8961 	chk->send_size = chk_length;
8962 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
8963 	chk->rec.chunk_id.can_take_data = 1;
8964 	chk->sent = SCTP_DATAGRAM_UNSENT;
8965 	chk->snd_count = 0;
8966 	chk->flags = 0;
8967 	chk->asoc = &stcb->asoc;
8968 	chk->data = outchain;
8969 	chk->whoTo = net;
8970 	atomic_add_int(&chk->whoTo->ref_count, 1);
8971 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8972 	chk->asoc->ctrl_queue_cnt++;
8973 }
8974 
8975 void
8976 sctp_send_cookie_ack(struct sctp_tcb *stcb)
8977 {
8978 	/* formulate and queue a cookie-ack back to sender */
8979 	struct mbuf *cookie_ack;
8980 	struct sctp_chunkhdr *hdr;
8981 	struct sctp_tmit_chunk *chk;
8982 
8983 	cookie_ack = NULL;
8984 	SCTP_TCB_LOCK_ASSERT(stcb);
8985 
8986 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_DONTWAIT, 1, MT_HEADER);
8987 	if (cookie_ack == NULL) {
8988 		/* no mbuf's */
8989 		return;
8990 	}
8991 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
8992 	sctp_alloc_a_chunk(stcb, chk);
8993 	if (chk == NULL) {
8994 		/* no memory */
8995 		sctp_m_freem(cookie_ack);
8996 		return;
8997 	}
8998 	chk->copy_by_ref = 0;
8999 	chk->send_size = sizeof(struct sctp_chunkhdr);
9000 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
9001 	chk->rec.chunk_id.can_take_data = 1;
9002 	chk->sent = SCTP_DATAGRAM_UNSENT;
9003 	chk->snd_count = 0;
9004 	chk->flags = 0;
9005 	chk->asoc = &stcb->asoc;
9006 	chk->data = cookie_ack;
9007 	if (chk->asoc->last_control_chunk_from != NULL) {
9008 		chk->whoTo = chk->asoc->last_control_chunk_from;
9009 		atomic_add_int(&chk->whoTo->ref_count, 1);
9010 	} else {
9011 		chk->whoTo = NULL;
9012 	}
9013 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
9014 	hdr->chunk_type = SCTP_COOKIE_ACK;
9015 	hdr->chunk_flags = 0;
9016 	hdr->chunk_length = htons(chk->send_size);
9017 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
9018 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9019 	chk->asoc->ctrl_queue_cnt++;
9020 	return;
9021 }
9022 
9023 
9024 void
9025 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
9026 {
9027 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
9028 	struct mbuf *m_shutdown_ack;
9029 	struct sctp_shutdown_ack_chunk *ack_cp;
9030 	struct sctp_tmit_chunk *chk;
9031 
9032 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
9033 	if (m_shutdown_ack == NULL) {
9034 		/* no mbuf's */
9035 		return;
9036 	}
9037 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9038 	sctp_alloc_a_chunk(stcb, chk);
9039 	if (chk == NULL) {
9040 		/* no memory */
9041 		sctp_m_freem(m_shutdown_ack);
9042 		return;
9043 	}
9044 	chk->copy_by_ref = 0;
9045 	chk->send_size = sizeof(struct sctp_chunkhdr);
9046 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9047 	chk->rec.chunk_id.can_take_data = 1;
9048 	chk->sent = SCTP_DATAGRAM_UNSENT;
9049 	chk->snd_count = 0;
9050 	chk->flags = 0;
9051 	chk->asoc = &stcb->asoc;
9052 	chk->data = m_shutdown_ack;
9053 	chk->whoTo = net;
9054 	if (chk->whoTo) {
9055 		atomic_add_int(&chk->whoTo->ref_count, 1);
9056 	}
9057 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9058 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9059 	ack_cp->ch.chunk_flags = 0;
9060 	ack_cp->ch.chunk_length = htons(chk->send_size);
9061 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9062 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9063 	chk->asoc->ctrl_queue_cnt++;
9064 	return;
9065 }
9066 
9067 void
9068 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9069 {
9070 	/* formulate and queue a SHUTDOWN to the sender */
9071 	struct mbuf *m_shutdown;
9072 	struct sctp_shutdown_chunk *shutdown_cp;
9073 	struct sctp_tmit_chunk *chk;
9074 
9075 	m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
9076 	if (m_shutdown == NULL) {
9077 		/* no mbuf's */
9078 		return;
9079 	}
9080 	SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9081 	sctp_alloc_a_chunk(stcb, chk);
9082 	if (chk == NULL) {
9083 		/* no memory */
9084 		sctp_m_freem(m_shutdown);
9085 		return;
9086 	}
9087 	chk->copy_by_ref = 0;
9088 	chk->send_size = sizeof(struct sctp_shutdown_chunk);
9089 	chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9090 	chk->rec.chunk_id.can_take_data = 1;
9091 	chk->sent = SCTP_DATAGRAM_UNSENT;
9092 	chk->snd_count = 0;
9093 	chk->flags = 0;
9094 	chk->asoc = &stcb->asoc;
9095 	chk->data = m_shutdown;
9096 	chk->whoTo = net;
9097 	if (chk->whoTo) {
9098 		atomic_add_int(&chk->whoTo->ref_count, 1);
9099 	}
9100 	shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9101 	shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9102 	shutdown_cp->ch.chunk_flags = 0;
9103 	shutdown_cp->ch.chunk_length = htons(chk->send_size);
9104 	shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9105 	SCTP_BUF_LEN(m_shutdown) = chk->send_size;
9106 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9107 	chk->asoc->ctrl_queue_cnt++;
9108 	return;
9109 }
9110 
9111 void
9112 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9113 {
9114 	/*
9115 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
9116 	 * should be queued on the assoc queue.
9117 	 */
9118 	struct sctp_tmit_chunk *chk;
9119 	struct mbuf *m_asconf;
9120 	int len;
9121 
9122 	SCTP_TCB_LOCK_ASSERT(stcb);
9123 
9124 	if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9125 	    (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9126 		/* can't send a new one if there is one in flight already */
9127 		return;
9128 	}
9129 	/* compose an ASCONF chunk, maximum length is PMTU */
9130 	m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9131 	if (m_asconf == NULL) {
9132 		return;
9133 	}
9134 	sctp_alloc_a_chunk(stcb, chk);
9135 	if (chk == NULL) {
9136 		/* no memory */
9137 		sctp_m_freem(m_asconf);
9138 		return;
9139 	}
9140 	chk->copy_by_ref = 0;
9141 	chk->data = m_asconf;
9142 	chk->send_size = len;
9143 	chk->rec.chunk_id.id = SCTP_ASCONF;
9144 	chk->rec.chunk_id.can_take_data = 0;
9145 	chk->sent = SCTP_DATAGRAM_UNSENT;
9146 	chk->snd_count = 0;
9147 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9148 	chk->asoc = &stcb->asoc;
9149 	chk->whoTo = net;
9150 	if (chk->whoTo) {
9151 		atomic_add_int(&chk->whoTo->ref_count, 1);
9152 	}
9153 	TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9154 	chk->asoc->ctrl_queue_cnt++;
9155 	return;
9156 }
9157 
9158 void
9159 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9160 {
9161 	/*
9162 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
9163 	 * must be stored in the tcb.
9164 	 */
9165 	struct sctp_tmit_chunk *chk;
9166 	struct sctp_asconf_ack *ack, *latest_ack;
9167 	struct mbuf *m_ack;
9168 	struct sctp_nets *net = NULL;
9169 
9170 	SCTP_TCB_LOCK_ASSERT(stcb);
9171 	/* Get the latest ASCONF-ACK */
9172 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9173 	if (latest_ack == NULL) {
9174 		return;
9175 	}
9176 	if (latest_ack->last_sent_to != NULL &&
9177 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9178 		/* we're doing a retransmission */
9179 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9180 		if (net == NULL) {
9181 			/* no alternate */
9182 			if (stcb->asoc.last_control_chunk_from == NULL) {
9183 				if (stcb->asoc.alternate) {
9184 					net = stcb->asoc.alternate;
9185 				} else {
9186 					net = stcb->asoc.primary_destination;
9187 				}
9188 			} else {
9189 				net = stcb->asoc.last_control_chunk_from;
9190 			}
9191 		}
9192 	} else {
9193 		/* normal case */
9194 		if (stcb->asoc.last_control_chunk_from == NULL) {
9195 			if (stcb->asoc.alternate) {
9196 				net = stcb->asoc.alternate;
9197 			} else {
9198 				net = stcb->asoc.primary_destination;
9199 			}
9200 		} else {
9201 			net = stcb->asoc.last_control_chunk_from;
9202 		}
9203 	}
9204 	latest_ack->last_sent_to = net;
9205 
9206 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9207 		if (ack->data == NULL) {
9208 			continue;
9209 		}
9210 		/* copy the asconf_ack */
9211 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_DONTWAIT);
9212 		if (m_ack == NULL) {
9213 			/* couldn't copy it */
9214 			return;
9215 		}
9216 #ifdef SCTP_MBUF_LOGGING
9217 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9218 			struct mbuf *mat;
9219 
9220 			for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9221 				if (SCTP_BUF_IS_EXTENDED(mat)) {
9222 					sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9223 				}
9224 			}
9225 		}
9226 #endif
9227 
9228 		sctp_alloc_a_chunk(stcb, chk);
9229 		if (chk == NULL) {
9230 			/* no memory */
9231 			if (m_ack)
9232 				sctp_m_freem(m_ack);
9233 			return;
9234 		}
9235 		chk->copy_by_ref = 0;
9236 
9237 		chk->whoTo = net;
9238 		if (chk->whoTo) {
9239 			atomic_add_int(&chk->whoTo->ref_count, 1);
9240 		}
9241 		chk->data = m_ack;
9242 		chk->send_size = 0;
9243 		/* Get size */
9244 		chk->send_size = ack->len;
9245 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9246 		chk->rec.chunk_id.can_take_data = 1;
9247 		chk->sent = SCTP_DATAGRAM_UNSENT;
9248 		chk->snd_count = 0;
9249 		chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;	/* XXX */
9250 		chk->asoc = &stcb->asoc;
9251 
9252 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9253 		chk->asoc->ctrl_queue_cnt++;
9254 	}
9255 	return;
9256 }
9257 
9258 
9259 static int
9260 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9261     struct sctp_tcb *stcb,
9262     struct sctp_association *asoc,
9263     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
9264 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9265     SCTP_UNUSED
9266 #endif
9267 )
9268 {
9269 	/*-
9270 	 * send out one MTU of retransmission. If fast_retransmit is
9271 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
9272 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
9273 	 * retransmit them by themselves.
9274 	 *
9275 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
9276 	 * marked for resend and bundle them all together (up to a MTU of
9277 	 * destination). The address to send to should have been
9278 	 * selected/changed where the retransmission was marked (i.e. in FR
9279 	 * or t3-timeout routines).
9280 	 */
9281 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9282 	struct sctp_tmit_chunk *chk, *fwd;
9283 	struct mbuf *m, *endofchain;
9284 	struct sctp_nets *net = NULL;
9285 	uint32_t tsns_sent = 0;
9286 	int no_fragmentflg, bundle_at, cnt_thru;
9287 	unsigned int mtu;
9288 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9289 	struct sctp_auth_chunk *auth = NULL;
9290 	uint32_t auth_offset = 0;
9291 	uint16_t auth_keyid;
9292 	int override_ok = 1;
9293 	int data_auth_reqd = 0;
9294 	uint32_t dmtu = 0;
9295 
9296 	SCTP_TCB_LOCK_ASSERT(stcb);
9297 	tmr_started = ctl_cnt = bundle_at = error = 0;
9298 	no_fragmentflg = 1;
9299 	fwd_tsn = 0;
9300 	*cnt_out = 0;
9301 	fwd = NULL;
9302 	endofchain = m = NULL;
9303 	auth_keyid = stcb->asoc.authinfo.active_keyid;
9304 #ifdef SCTP_AUDITING_ENABLED
9305 	sctp_audit_log(0xC3, 1);
9306 #endif
9307 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9308 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
9309 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9310 		    asoc->sent_queue_retran_cnt);
9311 		asoc->sent_queue_cnt = 0;
9312 		asoc->sent_queue_cnt_removeable = 0;
9313 		/* send back 0/0 so we enter normal transmission */
9314 		*cnt_out = 0;
9315 		return (0);
9316 	}
9317 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9318 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9319 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9320 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9321 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
9322 				continue;
9323 			}
9324 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9325 				if (chk != asoc->str_reset) {
9326 					/*
9327 					 * not eligible for retran if its
9328 					 * not ours
9329 					 */
9330 					continue;
9331 				}
9332 			}
9333 			ctl_cnt++;
9334 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9335 				fwd_tsn = 1;
9336 			}
9337 			/*
9338 			 * Add an AUTH chunk, if chunk requires it save the
9339 			 * offset into the chain for AUTH
9340 			 */
9341 			if ((auth == NULL) &&
9342 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9343 			    stcb->asoc.peer_auth_chunks))) {
9344 				m = sctp_add_auth_chunk(m, &endofchain,
9345 				    &auth, &auth_offset,
9346 				    stcb,
9347 				    chk->rec.chunk_id.id);
9348 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9349 			}
9350 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9351 			break;
9352 		}
9353 	}
9354 	one_chunk = 0;
9355 	cnt_thru = 0;
9356 	/* do we have control chunks to retransmit? */
9357 	if (m != NULL) {
9358 		/* Start a timer no matter if we suceed or fail */
9359 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9360 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9361 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF)
9362 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9363 		chk->snd_count++;	/* update our count */
9364 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9365 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9366 		    auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9367 		    no_fragmentflg, 0, 0,
9368 		    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9369 		    chk->whoTo->port, NULL,
9370 		    0, 0,
9371 		    so_locked))) {
9372 			SCTP_STAT_INCR(sctps_lowlevelerr);
9373 			return (error);
9374 		}
9375 		endofchain = NULL;
9376 		auth = NULL;
9377 		auth_offset = 0;
9378 		/*
9379 		 * We don't want to mark the net->sent time here since this
9380 		 * we use this for HB and retrans cannot measure RTT
9381 		 */
9382 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9383 		*cnt_out += 1;
9384 		chk->sent = SCTP_DATAGRAM_SENT;
9385 		sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9386 		if (fwd_tsn == 0) {
9387 			return (0);
9388 		} else {
9389 			/* Clean up the fwd-tsn list */
9390 			sctp_clean_up_ctl(stcb, asoc, so_locked);
9391 			return (0);
9392 		}
9393 	}
9394 	/*
9395 	 * Ok, it is just data retransmission we need to do or that and a
9396 	 * fwd-tsn with it all.
9397 	 */
9398 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
9399 		return (SCTP_RETRAN_DONE);
9400 	}
9401 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
9402 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
9403 		/* not yet open, resend the cookie and that is it */
9404 		return (1);
9405 	}
9406 #ifdef SCTP_AUDITING_ENABLED
9407 	sctp_auditing(20, inp, stcb, NULL);
9408 #endif
9409 	data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9410 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9411 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
9412 			/* No, not sent to this net or not ready for rtx */
9413 			continue;
9414 		}
9415 		if (chk->data == NULL) {
9416 			SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9417 			    chk->rec.data.TSN_seq, chk->snd_count, chk->sent);
9418 			continue;
9419 		}
9420 		if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9421 		    (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9422 			/* Gak, we have exceeded max unlucky retran, abort! */
9423 			SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
9424 			    chk->snd_count,
9425 			    SCTP_BASE_SYSCTL(sctp_max_retran_chunk));
9426 			atomic_add_int(&stcb->asoc.refcnt, 1);
9427 			sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked);
9428 			SCTP_TCB_LOCK(stcb);
9429 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
9430 			return (SCTP_RETRAN_EXIT);
9431 		}
9432 		/* pick up the net */
9433 		net = chk->whoTo;
9434 		switch (net->ro._l_addr.sa.sa_family) {
9435 #ifdef INET
9436 		case AF_INET:
9437 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9438 			break;
9439 #endif
9440 #ifdef INET6
9441 		case AF_INET6:
9442 			mtu = net->mtu - SCTP_MIN_OVERHEAD;
9443 			break;
9444 #endif
9445 		default:
9446 			/* TSNH */
9447 			mtu = net->mtu;
9448 			break;
9449 		}
9450 
9451 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9452 			/* No room in peers rwnd */
9453 			uint32_t tsn;
9454 
9455 			tsn = asoc->last_acked_seq + 1;
9456 			if (tsn == chk->rec.data.TSN_seq) {
9457 				/*
9458 				 * we make a special exception for this
9459 				 * case. The peer has no rwnd but is missing
9460 				 * the lowest chunk.. which is probably what
9461 				 * is holding up the rwnd.
9462 				 */
9463 				goto one_chunk_around;
9464 			}
9465 			return (1);
9466 		}
9467 one_chunk_around:
9468 		if (asoc->peers_rwnd < mtu) {
9469 			one_chunk = 1;
9470 			if ((asoc->peers_rwnd == 0) &&
9471 			    (asoc->total_flight == 0)) {
9472 				chk->window_probe = 1;
9473 				chk->whoTo->window_probe = 1;
9474 			}
9475 		}
9476 #ifdef SCTP_AUDITING_ENABLED
9477 		sctp_audit_log(0xC3, 2);
9478 #endif
9479 		bundle_at = 0;
9480 		m = NULL;
9481 		net->fast_retran_ip = 0;
9482 		if (chk->rec.data.doing_fast_retransmit == 0) {
9483 			/*
9484 			 * if no FR in progress skip destination that have
9485 			 * flight_size > cwnd.
9486 			 */
9487 			if (net->flight_size >= net->cwnd) {
9488 				continue;
9489 			}
9490 		} else {
9491 			/*
9492 			 * Mark the destination net to have FR recovery
9493 			 * limits put on it.
9494 			 */
9495 			*fr_done = 1;
9496 			net->fast_retran_ip = 1;
9497 		}
9498 
9499 		/*
9500 		 * if no AUTH is yet included and this chunk requires it,
9501 		 * make sure to account for it.  We don't apply the size
9502 		 * until the AUTH chunk is actually added below in case
9503 		 * there is no room for this chunk.
9504 		 */
9505 		if (data_auth_reqd && (auth == NULL)) {
9506 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9507 		} else
9508 			dmtu = 0;
9509 
9510 		if ((chk->send_size <= (mtu - dmtu)) ||
9511 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9512 			/* ok we will add this one */
9513 			if (data_auth_reqd) {
9514 				if (auth == NULL) {
9515 					m = sctp_add_auth_chunk(m,
9516 					    &endofchain,
9517 					    &auth,
9518 					    &auth_offset,
9519 					    stcb,
9520 					    SCTP_DATA);
9521 					auth_keyid = chk->auth_keyid;
9522 					override_ok = 0;
9523 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9524 				} else if (override_ok) {
9525 					auth_keyid = chk->auth_keyid;
9526 					override_ok = 0;
9527 				} else if (chk->auth_keyid != auth_keyid) {
9528 					/* different keyid, so done bundling */
9529 					break;
9530 				}
9531 			}
9532 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9533 			if (m == NULL) {
9534 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9535 				return (ENOMEM);
9536 			}
9537 			/* Do clear IP_DF ? */
9538 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9539 				no_fragmentflg = 0;
9540 			}
9541 			/* upate our MTU size */
9542 			if (mtu > (chk->send_size + dmtu))
9543 				mtu -= (chk->send_size + dmtu);
9544 			else
9545 				mtu = 0;
9546 			data_list[bundle_at++] = chk;
9547 			if (one_chunk && (asoc->total_flight <= 0)) {
9548 				SCTP_STAT_INCR(sctps_windowprobed);
9549 			}
9550 		}
9551 		if (one_chunk == 0) {
9552 			/*
9553 			 * now are there anymore forward from chk to pick
9554 			 * up?
9555 			 */
9556 			for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9557 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9558 					/* Nope, not for retran */
9559 					continue;
9560 				}
9561 				if (fwd->whoTo != net) {
9562 					/* Nope, not the net in question */
9563 					continue;
9564 				}
9565 				if (data_auth_reqd && (auth == NULL)) {
9566 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9567 				} else
9568 					dmtu = 0;
9569 				if (fwd->send_size <= (mtu - dmtu)) {
9570 					if (data_auth_reqd) {
9571 						if (auth == NULL) {
9572 							m = sctp_add_auth_chunk(m,
9573 							    &endofchain,
9574 							    &auth,
9575 							    &auth_offset,
9576 							    stcb,
9577 							    SCTP_DATA);
9578 							auth_keyid = fwd->auth_keyid;
9579 							override_ok = 0;
9580 							SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9581 						} else if (override_ok) {
9582 							auth_keyid = fwd->auth_keyid;
9583 							override_ok = 0;
9584 						} else if (fwd->auth_keyid != auth_keyid) {
9585 							/*
9586 							 * different keyid,
9587 							 * so done bundling
9588 							 */
9589 							break;
9590 						}
9591 					}
9592 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9593 					if (m == NULL) {
9594 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9595 						return (ENOMEM);
9596 					}
9597 					/* Do clear IP_DF ? */
9598 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9599 						no_fragmentflg = 0;
9600 					}
9601 					/* upate our MTU size */
9602 					if (mtu > (fwd->send_size + dmtu))
9603 						mtu -= (fwd->send_size + dmtu);
9604 					else
9605 						mtu = 0;
9606 					data_list[bundle_at++] = fwd;
9607 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9608 						break;
9609 					}
9610 				} else {
9611 					/* can't fit so we are done */
9612 					break;
9613 				}
9614 			}
9615 		}
9616 		/* Is there something to send for this destination? */
9617 		if (m) {
9618 			/*
9619 			 * No matter if we fail/or suceed we should start a
9620 			 * timer. A failure is like a lost IP packet :-)
9621 			 */
9622 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9623 				/*
9624 				 * no timer running on this destination
9625 				 * restart it.
9626 				 */
9627 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9628 				tmr_started = 1;
9629 			}
9630 			/* Now lets send it, if there is anything to send :> */
9631 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9632 			    (struct sockaddr *)&net->ro._l_addr, m,
9633 			    auth_offset, auth, auth_keyid,
9634 			    no_fragmentflg, 0, 0,
9635 			    inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9636 			    net->port, NULL,
9637 			    0, 0,
9638 			    so_locked))) {
9639 				/* error, we could not output */
9640 				SCTP_STAT_INCR(sctps_lowlevelerr);
9641 				return (error);
9642 			}
9643 			endofchain = NULL;
9644 			auth = NULL;
9645 			auth_offset = 0;
9646 			/* For HB's */
9647 			/*
9648 			 * We don't want to mark the net->sent time here
9649 			 * since this we use this for HB and retrans cannot
9650 			 * measure RTT
9651 			 */
9652 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9653 
9654 			/* For auto-close */
9655 			cnt_thru++;
9656 			if (*now_filled == 0) {
9657 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9658 				*now = asoc->time_last_sent;
9659 				*now_filled = 1;
9660 			} else {
9661 				asoc->time_last_sent = *now;
9662 			}
9663 			*cnt_out += bundle_at;
9664 #ifdef SCTP_AUDITING_ENABLED
9665 			sctp_audit_log(0xC4, bundle_at);
9666 #endif
9667 			if (bundle_at) {
9668 				tsns_sent = data_list[0]->rec.data.TSN_seq;
9669 			}
9670 			for (i = 0; i < bundle_at; i++) {
9671 				SCTP_STAT_INCR(sctps_sendretransdata);
9672 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
9673 				/*
9674 				 * When we have a revoked data, and we
9675 				 * retransmit it, then we clear the revoked
9676 				 * flag since this flag dictates if we
9677 				 * subtracted from the fs
9678 				 */
9679 				if (data_list[i]->rec.data.chunk_was_revoked) {
9680 					/* Deflate the cwnd */
9681 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9682 					data_list[i]->rec.data.chunk_was_revoked = 0;
9683 				}
9684 				data_list[i]->snd_count++;
9685 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9686 				/* record the time */
9687 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
9688 				if (data_list[i]->book_size_scale) {
9689 					/*
9690 					 * need to double the book size on
9691 					 * this one
9692 					 */
9693 					data_list[i]->book_size_scale = 0;
9694 					/*
9695 					 * Since we double the booksize, we
9696 					 * must also double the output queue
9697 					 * size, since this get shrunk when
9698 					 * we free by this amount.
9699 					 */
9700 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9701 					data_list[i]->book_size *= 2;
9702 
9703 
9704 				} else {
9705 					if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9706 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9707 						    asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9708 					}
9709 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9710 					    (uint32_t) (data_list[i]->send_size +
9711 					    SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9712 				}
9713 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9714 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9715 					    data_list[i]->whoTo->flight_size,
9716 					    data_list[i]->book_size,
9717 					    (uintptr_t) data_list[i]->whoTo,
9718 					    data_list[i]->rec.data.TSN_seq);
9719 				}
9720 				sctp_flight_size_increase(data_list[i]);
9721 				sctp_total_flight_increase(stcb, data_list[i]);
9722 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9723 					/* SWS sender side engages */
9724 					asoc->peers_rwnd = 0;
9725 				}
9726 				if ((i == 0) &&
9727 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
9728 					SCTP_STAT_INCR(sctps_sendfastretrans);
9729 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9730 					    (tmr_started == 0)) {
9731 						/*-
9732 						 * ok we just fast-retrans'd
9733 						 * the lowest TSN, i.e the
9734 						 * first on the list. In
9735 						 * this case we want to give
9736 						 * some more time to get a
9737 						 * SACK back without a
9738 						 * t3-expiring.
9739 						 */
9740 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9741 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
9742 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9743 					}
9744 				}
9745 			}
9746 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9747 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9748 			}
9749 #ifdef SCTP_AUDITING_ENABLED
9750 			sctp_auditing(21, inp, stcb, NULL);
9751 #endif
9752 		} else {
9753 			/* None will fit */
9754 			return (1);
9755 		}
9756 		if (asoc->sent_queue_retran_cnt <= 0) {
9757 			/* all done we have no more to retran */
9758 			asoc->sent_queue_retran_cnt = 0;
9759 			break;
9760 		}
9761 		if (one_chunk) {
9762 			/* No more room in rwnd */
9763 			return (1);
9764 		}
9765 		/* stop the for loop here. we sent out a packet */
9766 		break;
9767 	}
9768 	return (0);
9769 }
9770 
9771 static void
9772 sctp_timer_validation(struct sctp_inpcb *inp,
9773     struct sctp_tcb *stcb,
9774     struct sctp_association *asoc)
9775 {
9776 	struct sctp_nets *net;
9777 
9778 	/* Validate that a timer is running somewhere */
9779 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9780 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9781 			/* Here is a timer */
9782 			return;
9783 		}
9784 	}
9785 	SCTP_TCB_LOCK_ASSERT(stcb);
9786 	/* Gak, we did not have a timer somewhere */
9787 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
9788 	if (asoc->alternate) {
9789 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
9790 	} else {
9791 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
9792 	}
9793 	return;
9794 }
9795 
9796 void
9797 sctp_chunk_output(struct sctp_inpcb *inp,
9798     struct sctp_tcb *stcb,
9799     int from_where,
9800     int so_locked
9801 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9802     SCTP_UNUSED
9803 #endif
9804 )
9805 {
9806 	/*-
9807 	 * Ok this is the generic chunk service queue. we must do the
9808 	 * following:
9809 	 * - See if there are retransmits pending, if so we must
9810 	 *   do these first.
9811 	 * - Service the stream queue that is next, moving any
9812 	 *   message (note I must get a complete message i.e.
9813 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
9814 	 *   TSN's
9815 	 * - Check to see if the cwnd/rwnd allows any output, if so we
9816 	 *   go ahead and fomulate and send the low level chunks. Making sure
9817 	 *   to combine any control in the control chunk queue also.
9818 	 */
9819 	struct sctp_association *asoc;
9820 	struct sctp_nets *net;
9821 	int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0;
9822 	unsigned int burst_cnt = 0;
9823 	struct timeval now;
9824 	int now_filled = 0;
9825 	int nagle_on;
9826 	int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
9827 	int un_sent = 0;
9828 	int fr_done;
9829 	unsigned int tot_frs = 0;
9830 
9831 	asoc = &stcb->asoc;
9832 	/* The Nagle algorithm is only applied when handling a send call. */
9833 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
9834 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
9835 			nagle_on = 0;
9836 		} else {
9837 			nagle_on = 1;
9838 		}
9839 	} else {
9840 		nagle_on = 0;
9841 	}
9842 	SCTP_TCB_LOCK_ASSERT(stcb);
9843 
9844 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
9845 
9846 	if ((un_sent <= 0) &&
9847 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
9848 	    (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
9849 	    (asoc->sent_queue_retran_cnt == 0)) {
9850 		/* Nothing to do unless there is something to be sent left */
9851 		return;
9852 	}
9853 	/*
9854 	 * Do we have something to send, data or control AND a sack timer
9855 	 * running, if so piggy-back the sack.
9856 	 */
9857 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
9858 		sctp_send_sack(stcb, so_locked);
9859 		(void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
9860 	}
9861 	while (asoc->sent_queue_retran_cnt) {
9862 		/*-
9863 		 * Ok, it is retransmission time only, we send out only ONE
9864 		 * packet with a single call off to the retran code.
9865 		 */
9866 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
9867 			/*-
9868 			 * Special hook for handling cookiess discarded
9869 			 * by peer that carried data. Send cookie-ack only
9870 			 * and then the next call with get the retran's.
9871 			 */
9872 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9873 			    from_where,
9874 			    &now, &now_filled, frag_point, so_locked);
9875 			return;
9876 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
9877 			/* if its not from a HB then do it */
9878 			fr_done = 0;
9879 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
9880 			if (fr_done) {
9881 				tot_frs++;
9882 			}
9883 		} else {
9884 			/*
9885 			 * its from any other place, we don't allow retran
9886 			 * output (only control)
9887 			 */
9888 			ret = 1;
9889 		}
9890 		if (ret > 0) {
9891 			/* Can't send anymore */
9892 			/*-
9893 			 * now lets push out control by calling med-level
9894 			 * output once. this assures that we WILL send HB's
9895 			 * if queued too.
9896 			 */
9897 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9898 			    from_where,
9899 			    &now, &now_filled, frag_point, so_locked);
9900 #ifdef SCTP_AUDITING_ENABLED
9901 			sctp_auditing(8, inp, stcb, NULL);
9902 #endif
9903 			sctp_timer_validation(inp, stcb, asoc);
9904 			return;
9905 		}
9906 		if (ret < 0) {
9907 			/*-
9908 			 * The count was off.. retran is not happening so do
9909 			 * the normal retransmission.
9910 			 */
9911 #ifdef SCTP_AUDITING_ENABLED
9912 			sctp_auditing(9, inp, stcb, NULL);
9913 #endif
9914 			if (ret == SCTP_RETRAN_EXIT) {
9915 				return;
9916 			}
9917 			break;
9918 		}
9919 		if (from_where == SCTP_OUTPUT_FROM_T3) {
9920 			/* Only one transmission allowed out of a timeout */
9921 #ifdef SCTP_AUDITING_ENABLED
9922 			sctp_auditing(10, inp, stcb, NULL);
9923 #endif
9924 			/* Push out any control */
9925 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
9926 			    &now, &now_filled, frag_point, so_locked);
9927 			return;
9928 		}
9929 		if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
9930 			/* Hit FR burst limit */
9931 			return;
9932 		}
9933 		if ((num_out == 0) && (ret == 0)) {
9934 			/* No more retrans to send */
9935 			break;
9936 		}
9937 	}
9938 #ifdef SCTP_AUDITING_ENABLED
9939 	sctp_auditing(12, inp, stcb, NULL);
9940 #endif
9941 	/* Check for bad destinations, if they exist move chunks around. */
9942 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9943 		if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
9944 			/*-
9945 			 * if possible move things off of this address we
9946 			 * still may send below due to the dormant state but
9947 			 * we try to find an alternate address to send to
9948 			 * and if we have one we move all queued data on the
9949 			 * out wheel to this alternate address.
9950 			 */
9951 			if (net->ref_count > 1)
9952 				sctp_move_chunks_from_net(stcb, net);
9953 		} else {
9954 			/*-
9955 			 * if ((asoc->sat_network) || (net->addr_is_local))
9956 			 * { burst_limit = asoc->max_burst *
9957 			 * SCTP_SAT_NETWORK_BURST_INCR; }
9958 			 */
9959 			if (asoc->max_burst > 0) {
9960 				if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
9961 					if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
9962 						/*
9963 						 * JRS - Use the congestion
9964 						 * control given in the
9965 						 * congestion control module
9966 						 */
9967 						asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
9968 						if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9969 							sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
9970 						}
9971 						SCTP_STAT_INCR(sctps_maxburstqueued);
9972 					}
9973 					net->fast_retran_ip = 0;
9974 				} else {
9975 					if (net->flight_size == 0) {
9976 						/*
9977 						 * Should be decaying the
9978 						 * cwnd here
9979 						 */
9980 						;
9981 					}
9982 				}
9983 			}
9984 		}
9985 
9986 	}
9987 	burst_cnt = 0;
9988 	do {
9989 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
9990 		    &reason_code, 0, from_where,
9991 		    &now, &now_filled, frag_point, so_locked);
9992 		if (error) {
9993 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
9994 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9995 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
9996 			}
9997 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9998 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
9999 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
10000 			}
10001 			break;
10002 		}
10003 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
10004 
10005 		tot_out += num_out;
10006 		burst_cnt++;
10007 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10008 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
10009 			if (num_out == 0) {
10010 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
10011 			}
10012 		}
10013 		if (nagle_on) {
10014 			/*
10015 			 * When the Nagle algorithm is used, look at how
10016 			 * much is unsent, then if its smaller than an MTU
10017 			 * and we have data in flight we stop, except if we
10018 			 * are handling a fragmented user message.
10019 			 */
10020 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
10021 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
10022 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
10023 			    (stcb->asoc.total_flight > 0) &&
10024 			    ((stcb->asoc.locked_on_sending == NULL) ||
10025 			    sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
10026 				break;
10027 			}
10028 		}
10029 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
10030 		    TAILQ_EMPTY(&asoc->send_queue) &&
10031 		    stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
10032 			/* Nothing left to send */
10033 			break;
10034 		}
10035 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10036 			/* Nothing left to send */
10037 			break;
10038 		}
10039 	} while (num_out &&
10040 	    ((asoc->max_burst == 0) ||
10041 	    SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10042 	    (burst_cnt < asoc->max_burst)));
10043 
10044 	if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10045 		if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10046 			SCTP_STAT_INCR(sctps_maxburstqueued);
10047 			asoc->burst_limit_applied = 1;
10048 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10049 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10050 			}
10051 		} else {
10052 			asoc->burst_limit_applied = 0;
10053 		}
10054 	}
10055 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10056 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10057 	}
10058 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10059 	    tot_out);
10060 
10061 	/*-
10062 	 * Now we need to clean up the control chunk chain if a ECNE is on
10063 	 * it. It must be marked as UNSENT again so next call will continue
10064 	 * to send it until such time that we get a CWR, to remove it.
10065 	 */
10066 	if (stcb->asoc.ecn_echo_cnt_onq)
10067 		sctp_fix_ecn_echo(asoc);
10068 	return;
10069 }
10070 
10071 
10072 int
10073 sctp_output(
10074     struct sctp_inpcb *inp,
10075     struct mbuf *m,
10076     struct sockaddr *addr,
10077     struct mbuf *control,
10078     struct thread *p,
10079     int flags)
10080 {
10081 	if (inp == NULL) {
10082 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10083 		return (EINVAL);
10084 	}
10085 	if (inp->sctp_socket == NULL) {
10086 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10087 		return (EINVAL);
10088 	}
10089 	return (sctp_sosend(inp->sctp_socket,
10090 	    addr,
10091 	    (struct uio *)NULL,
10092 	    m,
10093 	    control,
10094 	    flags, p
10095 	    ));
10096 }
10097 
10098 void
10099 send_forward_tsn(struct sctp_tcb *stcb,
10100     struct sctp_association *asoc)
10101 {
10102 	struct sctp_tmit_chunk *chk;
10103 	struct sctp_forward_tsn_chunk *fwdtsn;
10104 	uint32_t advance_peer_ack_point;
10105 
10106 	SCTP_TCB_LOCK_ASSERT(stcb);
10107 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10108 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10109 			/* mark it to unsent */
10110 			chk->sent = SCTP_DATAGRAM_UNSENT;
10111 			chk->snd_count = 0;
10112 			/* Do we correct its output location? */
10113 			if (chk->whoTo) {
10114 				sctp_free_remote_addr(chk->whoTo);
10115 				chk->whoTo = NULL;
10116 			}
10117 			goto sctp_fill_in_rest;
10118 		}
10119 	}
10120 	/* Ok if we reach here we must build one */
10121 	sctp_alloc_a_chunk(stcb, chk);
10122 	if (chk == NULL) {
10123 		return;
10124 	}
10125 	asoc->fwd_tsn_cnt++;
10126 	chk->copy_by_ref = 0;
10127 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10128 	chk->rec.chunk_id.can_take_data = 0;
10129 	chk->asoc = asoc;
10130 	chk->whoTo = NULL;
10131 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
10132 	if (chk->data == NULL) {
10133 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10134 		return;
10135 	}
10136 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10137 	chk->sent = SCTP_DATAGRAM_UNSENT;
10138 	chk->snd_count = 0;
10139 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10140 	asoc->ctrl_queue_cnt++;
10141 sctp_fill_in_rest:
10142 	/*-
10143 	 * Here we go through and fill out the part that deals with
10144 	 * stream/seq of the ones we skip.
10145 	 */
10146 	SCTP_BUF_LEN(chk->data) = 0;
10147 	{
10148 		struct sctp_tmit_chunk *at, *tp1, *last;
10149 		struct sctp_strseq *strseq;
10150 		unsigned int cnt_of_space, i, ovh;
10151 		unsigned int space_needed;
10152 		unsigned int cnt_of_skipped = 0;
10153 
10154 		TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10155 			if (at->sent != SCTP_FORWARD_TSN_SKIP) {
10156 				/* no more to look at */
10157 				break;
10158 			}
10159 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10160 				/* We don't report these */
10161 				continue;
10162 			}
10163 			cnt_of_skipped++;
10164 		}
10165 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10166 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
10167 
10168 		cnt_of_space = M_TRAILINGSPACE(chk->data);
10169 
10170 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10171 			ovh = SCTP_MIN_OVERHEAD;
10172 		} else {
10173 			ovh = SCTP_MIN_V4_OVERHEAD;
10174 		}
10175 		if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10176 			/* trim to a mtu size */
10177 			cnt_of_space = asoc->smallest_mtu - ovh;
10178 		}
10179 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10180 			sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10181 			    0xff, 0, cnt_of_skipped,
10182 			    asoc->advanced_peer_ack_point);
10183 
10184 		}
10185 		advance_peer_ack_point = asoc->advanced_peer_ack_point;
10186 		if (cnt_of_space < space_needed) {
10187 			/*-
10188 			 * ok we must trim down the chunk by lowering the
10189 			 * advance peer ack point.
10190 			 */
10191 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10192 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10193 				    0xff, 0xff, cnt_of_space,
10194 				    space_needed);
10195 			}
10196 			cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10197 			cnt_of_skipped /= sizeof(struct sctp_strseq);
10198 			/*-
10199 			 * Go through and find the TSN that will be the one
10200 			 * we report.
10201 			 */
10202 			at = TAILQ_FIRST(&asoc->sent_queue);
10203 			if (at != NULL) {
10204 				for (i = 0; i < cnt_of_skipped; i++) {
10205 					tp1 = TAILQ_NEXT(at, sctp_next);
10206 					if (tp1 == NULL) {
10207 						break;
10208 					}
10209 					at = tp1;
10210 				}
10211 			}
10212 			if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10213 				sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10214 				    0xff, cnt_of_skipped, at->rec.data.TSN_seq,
10215 				    asoc->advanced_peer_ack_point);
10216 			}
10217 			last = at;
10218 			/*-
10219 			 * last now points to last one I can report, update
10220 			 * peer ack point
10221 			 */
10222 			if (last)
10223 				advance_peer_ack_point = last->rec.data.TSN_seq;
10224 			space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10225 			    cnt_of_skipped * sizeof(struct sctp_strseq);
10226 		}
10227 		chk->send_size = space_needed;
10228 		/* Setup the chunk */
10229 		fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10230 		fwdtsn->ch.chunk_length = htons(chk->send_size);
10231 		fwdtsn->ch.chunk_flags = 0;
10232 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10233 		fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10234 		SCTP_BUF_LEN(chk->data) = chk->send_size;
10235 		fwdtsn++;
10236 		/*-
10237 		 * Move pointer to after the fwdtsn and transfer to the
10238 		 * strseq pointer.
10239 		 */
10240 		strseq = (struct sctp_strseq *)fwdtsn;
10241 		/*-
10242 		 * Now populate the strseq list. This is done blindly
10243 		 * without pulling out duplicate stream info. This is
10244 		 * inefficent but won't harm the process since the peer will
10245 		 * look at these in sequence and will thus release anything.
10246 		 * It could mean we exceed the PMTU and chop off some that
10247 		 * we could have included.. but this is unlikely (aka 1432/4
10248 		 * would mean 300+ stream seq's would have to be reported in
10249 		 * one FWD-TSN. With a bit of work we can later FIX this to
10250 		 * optimize and pull out duplcates.. but it does add more
10251 		 * overhead. So for now... not!
10252 		 */
10253 		at = TAILQ_FIRST(&asoc->sent_queue);
10254 		for (i = 0; i < cnt_of_skipped; i++) {
10255 			tp1 = TAILQ_NEXT(at, sctp_next);
10256 			if (tp1 == NULL)
10257 				break;
10258 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10259 				/* We don't report these */
10260 				i--;
10261 				at = tp1;
10262 				continue;
10263 			}
10264 			if (at->rec.data.TSN_seq == advance_peer_ack_point) {
10265 				at->rec.data.fwd_tsn_cnt = 0;
10266 			}
10267 			strseq->stream = ntohs(at->rec.data.stream_number);
10268 			strseq->sequence = ntohs(at->rec.data.stream_seq);
10269 			strseq++;
10270 			at = tp1;
10271 		}
10272 	}
10273 	return;
10274 }
10275 
10276 void
10277 sctp_send_sack(struct sctp_tcb *stcb, int so_locked
10278 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10279     SCTP_UNUSED
10280 #endif
10281 )
10282 {
10283 	/*-
10284 	 * Queue up a SACK or NR-SACK in the control queue.
10285 	 * We must first check to see if a SACK or NR-SACK is
10286 	 * somehow on the control queue.
10287 	 * If so, we will take and and remove the old one.
10288 	 */
10289 	struct sctp_association *asoc;
10290 	struct sctp_tmit_chunk *chk, *a_chk;
10291 	struct sctp_sack_chunk *sack;
10292 	struct sctp_nr_sack_chunk *nr_sack;
10293 	struct sctp_gap_ack_block *gap_descriptor;
10294 	struct sack_track *selector;
10295 	int mergeable = 0;
10296 	int offset;
10297 	caddr_t limit;
10298 	uint32_t *dup;
10299 	int limit_reached = 0;
10300 	unsigned int i, siz, j;
10301 	unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10302 	int num_dups = 0;
10303 	int space_req;
10304 	uint32_t highest_tsn;
10305 	uint8_t flags;
10306 	uint8_t type;
10307 	uint8_t tsn_map;
10308 
10309 	if ((stcb->asoc.sctp_nr_sack_on_off == 1) &&
10310 	    (stcb->asoc.peer_supports_nr_sack == 1)) {
10311 		type = SCTP_NR_SELECTIVE_ACK;
10312 	} else {
10313 		type = SCTP_SELECTIVE_ACK;
10314 	}
10315 	a_chk = NULL;
10316 	asoc = &stcb->asoc;
10317 	SCTP_TCB_LOCK_ASSERT(stcb);
10318 	if (asoc->last_data_chunk_from == NULL) {
10319 		/* Hmm we never received anything */
10320 		return;
10321 	}
10322 	sctp_slide_mapping_arrays(stcb);
10323 	sctp_set_rwnd(stcb, asoc);
10324 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10325 		if (chk->rec.chunk_id.id == type) {
10326 			/* Hmm, found a sack already on queue, remove it */
10327 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10328 			asoc->ctrl_queue_cnt--;
10329 			a_chk = chk;
10330 			if (a_chk->data) {
10331 				sctp_m_freem(a_chk->data);
10332 				a_chk->data = NULL;
10333 			}
10334 			if (a_chk->whoTo) {
10335 				sctp_free_remote_addr(a_chk->whoTo);
10336 				a_chk->whoTo = NULL;
10337 			}
10338 			break;
10339 		}
10340 	}
10341 	if (a_chk == NULL) {
10342 		sctp_alloc_a_chunk(stcb, a_chk);
10343 		if (a_chk == NULL) {
10344 			/* No memory so we drop the idea, and set a timer */
10345 			if (stcb->asoc.delayed_ack) {
10346 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10347 				    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
10348 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10349 				    stcb->sctp_ep, stcb, NULL);
10350 			} else {
10351 				stcb->asoc.send_sack = 1;
10352 			}
10353 			return;
10354 		}
10355 		a_chk->copy_by_ref = 0;
10356 		a_chk->rec.chunk_id.id = type;
10357 		a_chk->rec.chunk_id.can_take_data = 1;
10358 	}
10359 	/* Clear our pkt counts */
10360 	asoc->data_pkts_seen = 0;
10361 
10362 	a_chk->asoc = asoc;
10363 	a_chk->snd_count = 0;
10364 	a_chk->send_size = 0;	/* fill in later */
10365 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
10366 	a_chk->whoTo = NULL;
10367 
10368 	if ((asoc->numduptsns) ||
10369 	    (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) {
10370 		/*-
10371 		 * Ok, we have some duplicates or the destination for the
10372 		 * sack is unreachable, lets see if we can select an
10373 		 * alternate than asoc->last_data_chunk_from
10374 		 */
10375 		if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) &&
10376 		    (asoc->used_alt_onsack > asoc->numnets)) {
10377 			/* We used an alt last time, don't this time */
10378 			a_chk->whoTo = NULL;
10379 		} else {
10380 			asoc->used_alt_onsack++;
10381 			a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10382 		}
10383 		if (a_chk->whoTo == NULL) {
10384 			/* Nope, no alternate */
10385 			a_chk->whoTo = asoc->last_data_chunk_from;
10386 			asoc->used_alt_onsack = 0;
10387 		}
10388 	} else {
10389 		/*
10390 		 * No duplicates so we use the last place we received data
10391 		 * from.
10392 		 */
10393 		asoc->used_alt_onsack = 0;
10394 		a_chk->whoTo = asoc->last_data_chunk_from;
10395 	}
10396 	if (a_chk->whoTo) {
10397 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
10398 	}
10399 	if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10400 		highest_tsn = asoc->highest_tsn_inside_map;
10401 	} else {
10402 		highest_tsn = asoc->highest_tsn_inside_nr_map;
10403 	}
10404 	if (highest_tsn == asoc->cumulative_tsn) {
10405 		/* no gaps */
10406 		if (type == SCTP_SELECTIVE_ACK) {
10407 			space_req = sizeof(struct sctp_sack_chunk);
10408 		} else {
10409 			space_req = sizeof(struct sctp_nr_sack_chunk);
10410 		}
10411 	} else {
10412 		/* gaps get a cluster */
10413 		space_req = MCLBYTES;
10414 	}
10415 	/* Ok now lets formulate a MBUF with our sack */
10416 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_DONTWAIT, 1, MT_DATA);
10417 	if ((a_chk->data == NULL) ||
10418 	    (a_chk->whoTo == NULL)) {
10419 		/* rats, no mbuf memory */
10420 		if (a_chk->data) {
10421 			/* was a problem with the destination */
10422 			sctp_m_freem(a_chk->data);
10423 			a_chk->data = NULL;
10424 		}
10425 		sctp_free_a_chunk(stcb, a_chk, so_locked);
10426 		/* sa_ignore NO_NULL_CHK */
10427 		if (stcb->asoc.delayed_ack) {
10428 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10429 			    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
10430 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10431 			    stcb->sctp_ep, stcb, NULL);
10432 		} else {
10433 			stcb->asoc.send_sack = 1;
10434 		}
10435 		return;
10436 	}
10437 	/* ok, lets go through and fill it in */
10438 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10439 	space = M_TRAILINGSPACE(a_chk->data);
10440 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10441 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10442 	}
10443 	limit = mtod(a_chk->data, caddr_t);
10444 	limit += space;
10445 
10446 	flags = 0;
10447 
10448 	if ((asoc->sctp_cmt_on_off > 0) &&
10449 	    SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10450 		/*-
10451 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10452 		 * received, then set high bit to 1, else 0. Reset
10453 		 * pkts_rcvd.
10454 		 */
10455 		flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10456 		asoc->cmt_dac_pkts_rcvd = 0;
10457 	}
10458 #ifdef SCTP_ASOCLOG_OF_TSNS
10459 	stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10460 	stcb->asoc.cumack_log_atsnt++;
10461 	if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10462 		stcb->asoc.cumack_log_atsnt = 0;
10463 	}
10464 #endif
10465 	/* reset the readers interpretation */
10466 	stcb->freed_by_sorcv_sincelast = 0;
10467 
10468 	if (type == SCTP_SELECTIVE_ACK) {
10469 		sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10470 		nr_sack = NULL;
10471 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10472 		if (highest_tsn > asoc->mapping_array_base_tsn) {
10473 			siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10474 		} else {
10475 			siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8;
10476 		}
10477 	} else {
10478 		sack = NULL;
10479 		nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10480 		gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10481 		if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10482 			siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10483 		} else {
10484 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10485 		}
10486 	}
10487 
10488 	if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10489 		offset = 1;
10490 	} else {
10491 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10492 	}
10493 	if (((type == SCTP_SELECTIVE_ACK) &&
10494 	    SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10495 	    ((type == SCTP_NR_SELECTIVE_ACK) &&
10496 	    SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10497 		/* we have a gap .. maybe */
10498 		for (i = 0; i < siz; i++) {
10499 			tsn_map = asoc->mapping_array[i];
10500 			if (type == SCTP_SELECTIVE_ACK) {
10501 				tsn_map |= asoc->nr_mapping_array[i];
10502 			}
10503 			if (i == 0) {
10504 				/*
10505 				 * Clear all bits corresponding to TSNs
10506 				 * smaller or equal to the cumulative TSN.
10507 				 */
10508 				tsn_map &= (~0 << (1 - offset));
10509 			}
10510 			selector = &sack_array[tsn_map];
10511 			if (mergeable && selector->right_edge) {
10512 				/*
10513 				 * Backup, left and right edges were ok to
10514 				 * merge.
10515 				 */
10516 				num_gap_blocks--;
10517 				gap_descriptor--;
10518 			}
10519 			if (selector->num_entries == 0)
10520 				mergeable = 0;
10521 			else {
10522 				for (j = 0; j < selector->num_entries; j++) {
10523 					if (mergeable && selector->right_edge) {
10524 						/*
10525 						 * do a merge by NOT setting
10526 						 * the left side
10527 						 */
10528 						mergeable = 0;
10529 					} else {
10530 						/*
10531 						 * no merge, set the left
10532 						 * side
10533 						 */
10534 						mergeable = 0;
10535 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
10536 					}
10537 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
10538 					num_gap_blocks++;
10539 					gap_descriptor++;
10540 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10541 						/* no more room */
10542 						limit_reached = 1;
10543 						break;
10544 					}
10545 				}
10546 				if (selector->left_edge) {
10547 					mergeable = 1;
10548 				}
10549 			}
10550 			if (limit_reached) {
10551 				/* Reached the limit stop */
10552 				break;
10553 			}
10554 			offset += 8;
10555 		}
10556 	}
10557 	if ((type == SCTP_NR_SELECTIVE_ACK) &&
10558 	    (limit_reached == 0)) {
10559 
10560 		mergeable = 0;
10561 
10562 		if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10563 			siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10564 		} else {
10565 			siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10566 		}
10567 
10568 		if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10569 			offset = 1;
10570 		} else {
10571 			offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10572 		}
10573 		if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10574 			/* we have a gap .. maybe */
10575 			for (i = 0; i < siz; i++) {
10576 				tsn_map = asoc->nr_mapping_array[i];
10577 				if (i == 0) {
10578 					/*
10579 					 * Clear all bits corresponding to
10580 					 * TSNs smaller or equal to the
10581 					 * cumulative TSN.
10582 					 */
10583 					tsn_map &= (~0 << (1 - offset));
10584 				}
10585 				selector = &sack_array[tsn_map];
10586 				if (mergeable && selector->right_edge) {
10587 					/*
10588 					 * Backup, left and right edges were
10589 					 * ok to merge.
10590 					 */
10591 					num_nr_gap_blocks--;
10592 					gap_descriptor--;
10593 				}
10594 				if (selector->num_entries == 0)
10595 					mergeable = 0;
10596 				else {
10597 					for (j = 0; j < selector->num_entries; j++) {
10598 						if (mergeable && selector->right_edge) {
10599 							/*
10600 							 * do a merge by NOT
10601 							 * setting the left
10602 							 * side
10603 							 */
10604 							mergeable = 0;
10605 						} else {
10606 							/*
10607 							 * no merge, set the
10608 							 * left side
10609 							 */
10610 							mergeable = 0;
10611 							gap_descriptor->start = htons((selector->gaps[j].start + offset));
10612 						}
10613 						gap_descriptor->end = htons((selector->gaps[j].end + offset));
10614 						num_nr_gap_blocks++;
10615 						gap_descriptor++;
10616 						if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10617 							/* no more room */
10618 							limit_reached = 1;
10619 							break;
10620 						}
10621 					}
10622 					if (selector->left_edge) {
10623 						mergeable = 1;
10624 					}
10625 				}
10626 				if (limit_reached) {
10627 					/* Reached the limit stop */
10628 					break;
10629 				}
10630 				offset += 8;
10631 			}
10632 		}
10633 	}
10634 	/* now we must add any dups we are going to report. */
10635 	if ((limit_reached == 0) && (asoc->numduptsns)) {
10636 		dup = (uint32_t *) gap_descriptor;
10637 		for (i = 0; i < asoc->numduptsns; i++) {
10638 			*dup = htonl(asoc->dup_tsns[i]);
10639 			dup++;
10640 			num_dups++;
10641 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10642 				/* no more room */
10643 				break;
10644 			}
10645 		}
10646 		asoc->numduptsns = 0;
10647 	}
10648 	/*
10649 	 * now that the chunk is prepared queue it to the control chunk
10650 	 * queue.
10651 	 */
10652 	if (type == SCTP_SELECTIVE_ACK) {
10653 		a_chk->send_size = sizeof(struct sctp_sack_chunk) +
10654 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10655 		    num_dups * sizeof(int32_t);
10656 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10657 		sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10658 		sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10659 		sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10660 		sack->sack.num_dup_tsns = htons(num_dups);
10661 		sack->ch.chunk_type = type;
10662 		sack->ch.chunk_flags = flags;
10663 		sack->ch.chunk_length = htons(a_chk->send_size);
10664 	} else {
10665 		a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) +
10666 		    (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10667 		    num_dups * sizeof(int32_t);
10668 		SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10669 		nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10670 		nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10671 		nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10672 		nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10673 		nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10674 		nr_sack->nr_sack.reserved = 0;
10675 		nr_sack->ch.chunk_type = type;
10676 		nr_sack->ch.chunk_flags = flags;
10677 		nr_sack->ch.chunk_length = htons(a_chk->send_size);
10678 	}
10679 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10680 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
10681 	asoc->ctrl_queue_cnt++;
10682 	asoc->send_sack = 0;
10683 	SCTP_STAT_INCR(sctps_sendsacks);
10684 	return;
10685 }
10686 
10687 void
10688 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
10689 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10690     SCTP_UNUSED
10691 #endif
10692 )
10693 {
10694 	struct mbuf *m_abort;
10695 	struct mbuf *m_out = NULL, *m_end = NULL;
10696 	struct sctp_abort_chunk *abort = NULL;
10697 	int sz;
10698 	uint32_t auth_offset = 0;
10699 	struct sctp_auth_chunk *auth = NULL;
10700 	struct sctp_nets *net;
10701 
10702 	/*-
10703 	 * Add an AUTH chunk, if chunk requires it and save the offset into
10704 	 * the chain for AUTH
10705 	 */
10706 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10707 	    stcb->asoc.peer_auth_chunks)) {
10708 		m_out = sctp_add_auth_chunk(m_out, &m_end, &auth, &auth_offset,
10709 		    stcb, SCTP_ABORT_ASSOCIATION);
10710 		SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10711 	}
10712 	SCTP_TCB_LOCK_ASSERT(stcb);
10713 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
10714 	if (m_abort == NULL) {
10715 		/* no mbuf's */
10716 		if (m_out)
10717 			sctp_m_freem(m_out);
10718 		return;
10719 	}
10720 	/* link in any error */
10721 	SCTP_BUF_NEXT(m_abort) = operr;
10722 	sz = 0;
10723 	if (operr) {
10724 		struct mbuf *n;
10725 
10726 		n = operr;
10727 		while (n) {
10728 			sz += SCTP_BUF_LEN(n);
10729 			n = SCTP_BUF_NEXT(n);
10730 		}
10731 	}
10732 	SCTP_BUF_LEN(m_abort) = sizeof(*abort);
10733 	if (m_out == NULL) {
10734 		/* NO Auth chunk prepended, so reserve space in front */
10735 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10736 		m_out = m_abort;
10737 	} else {
10738 		/* Put AUTH chunk at the front of the chain */
10739 		SCTP_BUF_NEXT(m_end) = m_abort;
10740 	}
10741 	if (stcb->asoc.alternate) {
10742 		net = stcb->asoc.alternate;
10743 	} else {
10744 		net = stcb->asoc.primary_destination;
10745 	}
10746 	/* fill in the ABORT chunk */
10747 	abort = mtod(m_abort, struct sctp_abort_chunk *);
10748 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10749 	abort->ch.chunk_flags = 0;
10750 	abort->ch.chunk_length = htons(sizeof(*abort) + sz);
10751 
10752 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10753 	    (struct sockaddr *)&net->ro._l_addr,
10754 	    m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
10755 	    stcb->sctp_ep->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
10756 	    stcb->asoc.primary_destination->port, NULL,
10757 	    0, 0,
10758 	    so_locked);
10759 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10760 }
10761 
10762 void
10763 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
10764     struct sctp_nets *net,
10765     int reflect_vtag)
10766 {
10767 	/* formulate and SEND a SHUTDOWN-COMPLETE */
10768 	struct mbuf *m_shutdown_comp;
10769 	struct sctp_shutdown_complete_chunk *shutdown_complete;
10770 	uint32_t vtag;
10771 	uint8_t flags;
10772 
10773 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_DONTWAIT, 1, MT_HEADER);
10774 	if (m_shutdown_comp == NULL) {
10775 		/* no mbuf's */
10776 		return;
10777 	}
10778 	if (reflect_vtag) {
10779 		flags = SCTP_HAD_NO_TCB;
10780 		vtag = stcb->asoc.my_vtag;
10781 	} else {
10782 		flags = 0;
10783 		vtag = stcb->asoc.peer_vtag;
10784 	}
10785 	shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
10786 	shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
10787 	shutdown_complete->ch.chunk_flags = flags;
10788 	shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
10789 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
10790 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10791 	    (struct sockaddr *)&net->ro._l_addr,
10792 	    m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
10793 	    stcb->sctp_ep->sctp_lport, stcb->rport,
10794 	    htonl(vtag),
10795 	    net->port, NULL,
10796 	    0, 0,
10797 	    SCTP_SO_NOT_LOCKED);
10798 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10799 	return;
10800 }
10801 
10802 static void
10803 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
10804     struct sctphdr *sh, uint32_t vtag,
10805     uint8_t type, struct mbuf *cause,
10806     uint8_t use_mflowid, uint32_t mflowid,
10807     uint32_t vrf_id, uint16_t port)
10808 {
10809 	struct mbuf *o_pak;
10810 	struct mbuf *mout;
10811 	struct sctphdr *shout;
10812 	struct sctp_chunkhdr *ch;
10813 	struct udphdr *udp;
10814 	int len, cause_len, padding_len, ret;
10815 
10816 #ifdef INET
10817 	struct sockaddr_in *src_sin, *dst_sin;
10818 	struct ip *ip;
10819 
10820 #endif
10821 #ifdef INET6
10822 	struct sockaddr_in6 *src_sin6, *dst_sin6;
10823 	struct ip6_hdr *ip6;
10824 
10825 #endif
10826 
10827 	/* Compute the length of the cause and add final padding. */
10828 	cause_len = 0;
10829 	if (cause != NULL) {
10830 		struct mbuf *m_at, *m_last = NULL;
10831 
10832 		for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
10833 			if (SCTP_BUF_NEXT(m_at) == NULL)
10834 				m_last = m_at;
10835 			cause_len += SCTP_BUF_LEN(m_at);
10836 		}
10837 		padding_len = cause_len % 4;
10838 		if (padding_len != 0) {
10839 			padding_len = 4 - padding_len;
10840 		}
10841 		if (padding_len != 0) {
10842 			if (sctp_add_pad_tombuf(m_last, padding_len)) {
10843 				sctp_m_freem(cause);
10844 				return;
10845 			}
10846 		}
10847 	} else {
10848 		padding_len = 0;
10849 	}
10850 	/* Get an mbuf for the header. */
10851 	len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
10852 	switch (dst->sa_family) {
10853 #ifdef INET
10854 	case AF_INET:
10855 		len += sizeof(struct ip);
10856 		break;
10857 #endif
10858 #ifdef INET6
10859 	case AF_INET6:
10860 		len += sizeof(struct ip6_hdr);
10861 		break;
10862 #endif
10863 	default:
10864 		break;
10865 	}
10866 	if (port) {
10867 		len += sizeof(struct udphdr);
10868 	}
10869 	mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_DONTWAIT, 1, MT_DATA);
10870 	if (mout == NULL) {
10871 		if (cause) {
10872 			sctp_m_freem(cause);
10873 		}
10874 		return;
10875 	}
10876 	SCTP_BUF_RESV_UF(mout, max_linkhdr);
10877 	SCTP_BUF_LEN(mout) = len;
10878 	SCTP_BUF_NEXT(mout) = cause;
10879 	if (use_mflowid != 0) {
10880 		mout->m_pkthdr.flowid = mflowid;
10881 		mout->m_flags |= M_FLOWID;
10882 	}
10883 #ifdef INET
10884 	ip = NULL;
10885 #endif
10886 #ifdef INET6
10887 	ip6 = NULL;
10888 #endif
10889 	switch (dst->sa_family) {
10890 #ifdef INET
10891 	case AF_INET:
10892 		src_sin = (struct sockaddr_in *)src;
10893 		dst_sin = (struct sockaddr_in *)dst;
10894 		ip = mtod(mout, struct ip *);
10895 		ip->ip_v = IPVERSION;
10896 		ip->ip_hl = (sizeof(struct ip) >> 2);
10897 		ip->ip_tos = 0;
10898 		ip->ip_id = ip_newid();
10899 		ip->ip_off = 0;
10900 		ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
10901 		if (port) {
10902 			ip->ip_p = IPPROTO_UDP;
10903 		} else {
10904 			ip->ip_p = IPPROTO_SCTP;
10905 		}
10906 		ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
10907 		ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
10908 		ip->ip_sum = 0;
10909 		len = sizeof(struct ip);
10910 		shout = (struct sctphdr *)((caddr_t)ip + len);
10911 		break;
10912 #endif
10913 #ifdef INET6
10914 	case AF_INET6:
10915 		src_sin6 = (struct sockaddr_in6 *)src;
10916 		dst_sin6 = (struct sockaddr_in6 *)dst;
10917 		ip6 = mtod(mout, struct ip6_hdr *);
10918 		ip6->ip6_flow = htonl(0x60000000);
10919 		if (V_ip6_auto_flowlabel) {
10920 			ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
10921 		}
10922 		ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
10923 		if (port) {
10924 			ip6->ip6_nxt = IPPROTO_UDP;
10925 		} else {
10926 			ip6->ip6_nxt = IPPROTO_SCTP;
10927 		}
10928 		ip6->ip6_src = dst_sin6->sin6_addr;
10929 		ip6->ip6_dst = src_sin6->sin6_addr;
10930 		len = sizeof(struct ip6_hdr);
10931 		shout = (struct sctphdr *)((caddr_t)ip6 + len);
10932 		break;
10933 #endif
10934 	default:
10935 		len = 0;
10936 		shout = mtod(mout, struct sctphdr *);
10937 		break;
10938 	}
10939 	if (port) {
10940 		if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
10941 			sctp_m_freem(mout);
10942 			return;
10943 		}
10944 		udp = (struct udphdr *)shout;
10945 		udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
10946 		udp->uh_dport = port;
10947 		udp->uh_sum = 0;
10948 		udp->uh_ulen = htons(sizeof(struct udphdr) +
10949 		    sizeof(struct sctphdr) +
10950 		    sizeof(struct sctp_chunkhdr) +
10951 		    cause_len + padding_len);
10952 		len += sizeof(struct udphdr);
10953 		shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
10954 	} else {
10955 		udp = NULL;
10956 	}
10957 	shout->src_port = sh->dest_port;
10958 	shout->dest_port = sh->src_port;
10959 	shout->checksum = 0;
10960 	if (vtag) {
10961 		shout->v_tag = htonl(vtag);
10962 	} else {
10963 		shout->v_tag = sh->v_tag;
10964 	}
10965 	len += sizeof(struct sctphdr);
10966 	ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
10967 	ch->chunk_type = type;
10968 	if (vtag) {
10969 		ch->chunk_flags = 0;
10970 	} else {
10971 		ch->chunk_flags = SCTP_HAD_NO_TCB;
10972 	}
10973 	ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len);
10974 	len += sizeof(struct sctp_chunkhdr);
10975 	len += cause_len + padding_len;
10976 
10977 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10978 		sctp_m_freem(mout);
10979 		return;
10980 	}
10981 	SCTP_ATTACH_CHAIN(o_pak, mout, len);
10982 	switch (dst->sa_family) {
10983 #ifdef INET
10984 	case AF_INET:
10985 		if (port) {
10986 			if (V_udp_cksum) {
10987 				udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
10988 			} else {
10989 				udp->uh_sum = 0;
10990 			}
10991 		}
10992 		ip->ip_len = htons(len);
10993 		if (port) {
10994 #if defined(SCTP_WITH_NO_CSUM)
10995 			SCTP_STAT_INCR(sctps_sendnocrc);
10996 #else
10997 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
10998 			SCTP_STAT_INCR(sctps_sendswcrc);
10999 #endif
11000 			if (V_udp_cksum) {
11001 				SCTP_ENABLE_UDP_CSUM(o_pak);
11002 			}
11003 		} else {
11004 #if defined(SCTP_WITH_NO_CSUM)
11005 			SCTP_STAT_INCR(sctps_sendnocrc);
11006 #else
11007 			mout->m_pkthdr.csum_flags = CSUM_SCTP;
11008 			mout->m_pkthdr.csum_data = 0;
11009 			SCTP_STAT_INCR(sctps_sendhwcrc);
11010 #endif
11011 		}
11012 #ifdef SCTP_PACKET_LOGGING
11013 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11014 			sctp_packet_log(o_pak);
11015 		}
11016 #endif
11017 		SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11018 		break;
11019 #endif
11020 #ifdef INET6
11021 	case AF_INET6:
11022 		ip6->ip6_plen = len - sizeof(struct ip6_hdr);
11023 		if (port) {
11024 #if defined(SCTP_WITH_NO_CSUM)
11025 			SCTP_STAT_INCR(sctps_sendnocrc);
11026 #else
11027 			shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11028 			SCTP_STAT_INCR(sctps_sendswcrc);
11029 #endif
11030 			if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11031 				udp->uh_sum = 0xffff;
11032 			}
11033 		} else {
11034 #if defined(SCTP_WITH_NO_CSUM)
11035 			SCTP_STAT_INCR(sctps_sendnocrc);
11036 #else
11037 			mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11038 			mout->m_pkthdr.csum_data = 0;
11039 			SCTP_STAT_INCR(sctps_sendhwcrc);
11040 #endif
11041 		}
11042 #ifdef SCTP_PACKET_LOGGING
11043 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11044 			sctp_packet_log(o_pak);
11045 		}
11046 #endif
11047 		SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11048 		break;
11049 #endif
11050 	default:
11051 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11052 		    dst->sa_family);
11053 		sctp_m_freem(mout);
11054 		SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11055 		return;
11056 	}
11057 	SCTP_STAT_INCR(sctps_sendpackets);
11058 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11059 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11060 	return;
11061 }
11062 
11063 void
11064 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11065     struct sctphdr *sh,
11066     uint8_t use_mflowid, uint32_t mflowid,
11067     uint32_t vrf_id, uint16_t port)
11068 {
11069 	sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11070 	    use_mflowid, mflowid,
11071 	    vrf_id, port);
11072 }
11073 
11074 void
11075 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
11076 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
11077     SCTP_UNUSED
11078 #endif
11079 )
11080 {
11081 	struct sctp_tmit_chunk *chk;
11082 	struct sctp_heartbeat_chunk *hb;
11083 	struct timeval now;
11084 
11085 	SCTP_TCB_LOCK_ASSERT(stcb);
11086 	if (net == NULL) {
11087 		return;
11088 	}
11089 	(void)SCTP_GETTIME_TIMEVAL(&now);
11090 	switch (net->ro._l_addr.sa.sa_family) {
11091 #ifdef INET
11092 	case AF_INET:
11093 		break;
11094 #endif
11095 #ifdef INET6
11096 	case AF_INET6:
11097 		break;
11098 #endif
11099 	default:
11100 		return;
11101 	}
11102 	sctp_alloc_a_chunk(stcb, chk);
11103 	if (chk == NULL) {
11104 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11105 		return;
11106 	}
11107 	chk->copy_by_ref = 0;
11108 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11109 	chk->rec.chunk_id.can_take_data = 1;
11110 	chk->asoc = &stcb->asoc;
11111 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11112 
11113 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
11114 	if (chk->data == NULL) {
11115 		sctp_free_a_chunk(stcb, chk, so_locked);
11116 		return;
11117 	}
11118 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11119 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11120 	chk->sent = SCTP_DATAGRAM_UNSENT;
11121 	chk->snd_count = 0;
11122 	chk->whoTo = net;
11123 	atomic_add_int(&chk->whoTo->ref_count, 1);
11124 	/* Now we have a mbuf that we can fill in with the details */
11125 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11126 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11127 	/* fill out chunk header */
11128 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11129 	hb->ch.chunk_flags = 0;
11130 	hb->ch.chunk_length = htons(chk->send_size);
11131 	/* Fill out hb parameter */
11132 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11133 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11134 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
11135 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11136 	/* Did our user request this one, put it in */
11137 	hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family;
11138 	hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11139 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11140 		/*
11141 		 * we only take from the entropy pool if the address is not
11142 		 * confirmed.
11143 		 */
11144 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11145 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11146 	} else {
11147 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11148 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11149 	}
11150 	switch (net->ro._l_addr.sa.sa_family) {
11151 #ifdef INET
11152 	case AF_INET:
11153 		memcpy(hb->heartbeat.hb_info.address,
11154 		    &net->ro._l_addr.sin.sin_addr,
11155 		    sizeof(net->ro._l_addr.sin.sin_addr));
11156 		break;
11157 #endif
11158 #ifdef INET6
11159 	case AF_INET6:
11160 		memcpy(hb->heartbeat.hb_info.address,
11161 		    &net->ro._l_addr.sin6.sin6_addr,
11162 		    sizeof(net->ro._l_addr.sin6.sin6_addr));
11163 		break;
11164 #endif
11165 	default:
11166 		return;
11167 		break;
11168 	}
11169 	net->hb_responded = 0;
11170 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11171 	stcb->asoc.ctrl_queue_cnt++;
11172 	SCTP_STAT_INCR(sctps_sendheartbeat);
11173 	return;
11174 }
11175 
11176 void
11177 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11178     uint32_t high_tsn)
11179 {
11180 	struct sctp_association *asoc;
11181 	struct sctp_ecne_chunk *ecne;
11182 	struct sctp_tmit_chunk *chk;
11183 
11184 	if (net == NULL) {
11185 		return;
11186 	}
11187 	asoc = &stcb->asoc;
11188 	SCTP_TCB_LOCK_ASSERT(stcb);
11189 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11190 		if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11191 			/* found a previous ECN_ECHO update it if needed */
11192 			uint32_t cnt, ctsn;
11193 
11194 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11195 			ctsn = ntohl(ecne->tsn);
11196 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11197 				ecne->tsn = htonl(high_tsn);
11198 				SCTP_STAT_INCR(sctps_queue_upd_ecne);
11199 			}
11200 			cnt = ntohl(ecne->num_pkts_since_cwr);
11201 			cnt++;
11202 			ecne->num_pkts_since_cwr = htonl(cnt);
11203 			return;
11204 		}
11205 	}
11206 	/* nope could not find one to update so we must build one */
11207 	sctp_alloc_a_chunk(stcb, chk);
11208 	if (chk == NULL) {
11209 		return;
11210 	}
11211 	chk->copy_by_ref = 0;
11212 	SCTP_STAT_INCR(sctps_queue_upd_ecne);
11213 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11214 	chk->rec.chunk_id.can_take_data = 0;
11215 	chk->asoc = &stcb->asoc;
11216 	chk->send_size = sizeof(struct sctp_ecne_chunk);
11217 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
11218 	if (chk->data == NULL) {
11219 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11220 		return;
11221 	}
11222 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11223 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11224 	chk->sent = SCTP_DATAGRAM_UNSENT;
11225 	chk->snd_count = 0;
11226 	chk->whoTo = net;
11227 	atomic_add_int(&chk->whoTo->ref_count, 1);
11228 
11229 	stcb->asoc.ecn_echo_cnt_onq++;
11230 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11231 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
11232 	ecne->ch.chunk_flags = 0;
11233 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11234 	ecne->tsn = htonl(high_tsn);
11235 	ecne->num_pkts_since_cwr = htonl(1);
11236 	TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11237 	asoc->ctrl_queue_cnt++;
11238 }
11239 
11240 void
11241 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11242     struct mbuf *m, int len, int iphlen, int bad_crc)
11243 {
11244 	struct sctp_association *asoc;
11245 	struct sctp_pktdrop_chunk *drp;
11246 	struct sctp_tmit_chunk *chk;
11247 	uint8_t *datap;
11248 	int was_trunc = 0;
11249 	int fullsz = 0;
11250 	long spc;
11251 	int offset;
11252 	struct sctp_chunkhdr *ch, chunk_buf;
11253 	unsigned int chk_length;
11254 
11255 	if (!stcb) {
11256 		return;
11257 	}
11258 	asoc = &stcb->asoc;
11259 	SCTP_TCB_LOCK_ASSERT(stcb);
11260 	if (asoc->peer_supports_pktdrop == 0) {
11261 		/*-
11262 		 * peer must declare support before I send one.
11263 		 */
11264 		return;
11265 	}
11266 	if (stcb->sctp_socket == NULL) {
11267 		return;
11268 	}
11269 	sctp_alloc_a_chunk(stcb, chk);
11270 	if (chk == NULL) {
11271 		return;
11272 	}
11273 	chk->copy_by_ref = 0;
11274 	len -= iphlen;
11275 	chk->send_size = len;
11276 	/* Validate that we do not have an ABORT in here. */
11277 	offset = iphlen + sizeof(struct sctphdr);
11278 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11279 	    sizeof(*ch), (uint8_t *) & chunk_buf);
11280 	while (ch != NULL) {
11281 		chk_length = ntohs(ch->chunk_length);
11282 		if (chk_length < sizeof(*ch)) {
11283 			/* break to abort land */
11284 			break;
11285 		}
11286 		switch (ch->chunk_type) {
11287 		case SCTP_PACKET_DROPPED:
11288 		case SCTP_ABORT_ASSOCIATION:
11289 		case SCTP_INITIATION_ACK:
11290 			/**
11291 			 * We don't respond with an PKT-DROP to an ABORT
11292 			 * or PKT-DROP. We also do not respond to an
11293 			 * INIT-ACK, because we can't know if the initiation
11294 			 * tag is correct or not.
11295 			 */
11296 			sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11297 			return;
11298 		default:
11299 			break;
11300 		}
11301 		offset += SCTP_SIZE32(chk_length);
11302 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11303 		    sizeof(*ch), (uint8_t *) & chunk_buf);
11304 	}
11305 
11306 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11307 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11308 		/*
11309 		 * only send 1 mtu worth, trim off the excess on the end.
11310 		 */
11311 		fullsz = len;
11312 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11313 		was_trunc = 1;
11314 	}
11315 	chk->asoc = &stcb->asoc;
11316 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
11317 	if (chk->data == NULL) {
11318 jump_out:
11319 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11320 		return;
11321 	}
11322 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11323 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11324 	if (drp == NULL) {
11325 		sctp_m_freem(chk->data);
11326 		chk->data = NULL;
11327 		goto jump_out;
11328 	}
11329 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11330 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11331 	chk->book_size_scale = 0;
11332 	if (was_trunc) {
11333 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11334 		drp->trunc_len = htons(fullsz);
11335 		/*
11336 		 * Len is already adjusted to size minus overhead above take
11337 		 * out the pkt_drop chunk itself from it.
11338 		 */
11339 		chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
11340 		len = chk->send_size;
11341 	} else {
11342 		/* no truncation needed */
11343 		drp->ch.chunk_flags = 0;
11344 		drp->trunc_len = htons(0);
11345 	}
11346 	if (bad_crc) {
11347 		drp->ch.chunk_flags |= SCTP_BADCRC;
11348 	}
11349 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11350 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11351 	chk->sent = SCTP_DATAGRAM_UNSENT;
11352 	chk->snd_count = 0;
11353 	if (net) {
11354 		/* we should hit here */
11355 		chk->whoTo = net;
11356 		atomic_add_int(&chk->whoTo->ref_count, 1);
11357 	} else {
11358 		chk->whoTo = NULL;
11359 	}
11360 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11361 	chk->rec.chunk_id.can_take_data = 1;
11362 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11363 	drp->ch.chunk_length = htons(chk->send_size);
11364 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11365 	if (spc < 0) {
11366 		spc = 0;
11367 	}
11368 	drp->bottle_bw = htonl(spc);
11369 	if (asoc->my_rwnd) {
11370 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
11371 		    asoc->size_on_all_streams +
11372 		    asoc->my_rwnd_control_len +
11373 		    stcb->sctp_socket->so_rcv.sb_cc);
11374 	} else {
11375 		/*-
11376 		 * If my rwnd is 0, possibly from mbuf depletion as well as
11377 		 * space used, tell the peer there is NO space aka onq == bw
11378 		 */
11379 		drp->current_onq = htonl(spc);
11380 	}
11381 	drp->reserved = 0;
11382 	datap = drp->data;
11383 	m_copydata(m, iphlen, len, (caddr_t)datap);
11384 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11385 	asoc->ctrl_queue_cnt++;
11386 }
11387 
11388 void
11389 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11390 {
11391 	struct sctp_association *asoc;
11392 	struct sctp_cwr_chunk *cwr;
11393 	struct sctp_tmit_chunk *chk;
11394 
11395 	SCTP_TCB_LOCK_ASSERT(stcb);
11396 	if (net == NULL) {
11397 		return;
11398 	}
11399 	asoc = &stcb->asoc;
11400 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11401 		if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11402 			/*
11403 			 * found a previous CWR queued to same destination
11404 			 * update it if needed
11405 			 */
11406 			uint32_t ctsn;
11407 
11408 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11409 			ctsn = ntohl(cwr->tsn);
11410 			if (SCTP_TSN_GT(high_tsn, ctsn)) {
11411 				cwr->tsn = htonl(high_tsn);
11412 			}
11413 			if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11414 				/* Make sure override is carried */
11415 				cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11416 			}
11417 			return;
11418 		}
11419 	}
11420 	sctp_alloc_a_chunk(stcb, chk);
11421 	if (chk == NULL) {
11422 		return;
11423 	}
11424 	chk->copy_by_ref = 0;
11425 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
11426 	chk->rec.chunk_id.can_take_data = 1;
11427 	chk->asoc = &stcb->asoc;
11428 	chk->send_size = sizeof(struct sctp_cwr_chunk);
11429 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
11430 	if (chk->data == NULL) {
11431 		sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11432 		return;
11433 	}
11434 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11435 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11436 	chk->sent = SCTP_DATAGRAM_UNSENT;
11437 	chk->snd_count = 0;
11438 	chk->whoTo = net;
11439 	atomic_add_int(&chk->whoTo->ref_count, 1);
11440 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11441 	cwr->ch.chunk_type = SCTP_ECN_CWR;
11442 	cwr->ch.chunk_flags = override;
11443 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11444 	cwr->tsn = htonl(high_tsn);
11445 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11446 	asoc->ctrl_queue_cnt++;
11447 }
11448 
11449 void
11450 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
11451     int number_entries, uint16_t * list,
11452     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11453 {
11454 	uint16_t len, old_len, i;
11455 	struct sctp_stream_reset_out_request *req_out;
11456 	struct sctp_chunkhdr *ch;
11457 
11458 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11459 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11460 
11461 	/* get to new offset for the param. */
11462 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11463 	/* now how long will this param be? */
11464 	len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11465 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11466 	req_out->ph.param_length = htons(len);
11467 	req_out->request_seq = htonl(seq);
11468 	req_out->response_seq = htonl(resp_seq);
11469 	req_out->send_reset_at_tsn = htonl(last_sent);
11470 	if (number_entries) {
11471 		for (i = 0; i < number_entries; i++) {
11472 			req_out->list_of_streams[i] = htons(list[i]);
11473 		}
11474 	}
11475 	if (SCTP_SIZE32(len) > len) {
11476 		/*-
11477 		 * Need to worry about the pad we may end up adding to the
11478 		 * end. This is easy since the struct is either aligned to 4
11479 		 * bytes or 2 bytes off.
11480 		 */
11481 		req_out->list_of_streams[number_entries] = 0;
11482 	}
11483 	/* now fix the chunk length */
11484 	ch->chunk_length = htons(len + old_len);
11485 	chk->book_size = len + old_len;
11486 	chk->book_size_scale = 0;
11487 	chk->send_size = SCTP_SIZE32(chk->book_size);
11488 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11489 	return;
11490 }
11491 
11492 static void
11493 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11494     int number_entries, uint16_t * list,
11495     uint32_t seq)
11496 {
11497 	uint16_t len, old_len, i;
11498 	struct sctp_stream_reset_in_request *req_in;
11499 	struct sctp_chunkhdr *ch;
11500 
11501 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11502 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11503 
11504 	/* get to new offset for the param. */
11505 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11506 	/* now how long will this param be? */
11507 	len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11508 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11509 	req_in->ph.param_length = htons(len);
11510 	req_in->request_seq = htonl(seq);
11511 	if (number_entries) {
11512 		for (i = 0; i < number_entries; i++) {
11513 			req_in->list_of_streams[i] = htons(list[i]);
11514 		}
11515 	}
11516 	if (SCTP_SIZE32(len) > len) {
11517 		/*-
11518 		 * Need to worry about the pad we may end up adding to the
11519 		 * end. This is easy since the struct is either aligned to 4
11520 		 * bytes or 2 bytes off.
11521 		 */
11522 		req_in->list_of_streams[number_entries] = 0;
11523 	}
11524 	/* now fix the chunk length */
11525 	ch->chunk_length = htons(len + old_len);
11526 	chk->book_size = len + old_len;
11527 	chk->book_size_scale = 0;
11528 	chk->send_size = SCTP_SIZE32(chk->book_size);
11529 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11530 	return;
11531 }
11532 
11533 static void
11534 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11535     uint32_t seq)
11536 {
11537 	uint16_t len, old_len;
11538 	struct sctp_stream_reset_tsn_request *req_tsn;
11539 	struct sctp_chunkhdr *ch;
11540 
11541 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11542 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11543 
11544 	/* get to new offset for the param. */
11545 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11546 	/* now how long will this param be? */
11547 	len = sizeof(struct sctp_stream_reset_tsn_request);
11548 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11549 	req_tsn->ph.param_length = htons(len);
11550 	req_tsn->request_seq = htonl(seq);
11551 
11552 	/* now fix the chunk length */
11553 	ch->chunk_length = htons(len + old_len);
11554 	chk->send_size = len + old_len;
11555 	chk->book_size = SCTP_SIZE32(chk->send_size);
11556 	chk->book_size_scale = 0;
11557 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11558 	return;
11559 }
11560 
11561 void
11562 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11563     uint32_t resp_seq, uint32_t result)
11564 {
11565 	uint16_t len, old_len;
11566 	struct sctp_stream_reset_response *resp;
11567 	struct sctp_chunkhdr *ch;
11568 
11569 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11570 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11571 
11572 	/* get to new offset for the param. */
11573 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11574 	/* now how long will this param be? */
11575 	len = sizeof(struct sctp_stream_reset_response);
11576 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11577 	resp->ph.param_length = htons(len);
11578 	resp->response_seq = htonl(resp_seq);
11579 	resp->result = ntohl(result);
11580 
11581 	/* now fix the chunk length */
11582 	ch->chunk_length = htons(len + old_len);
11583 	chk->book_size = len + old_len;
11584 	chk->book_size_scale = 0;
11585 	chk->send_size = SCTP_SIZE32(chk->book_size);
11586 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11587 	return;
11588 }
11589 
11590 void
11591 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11592     uint32_t resp_seq, uint32_t result,
11593     uint32_t send_una, uint32_t recv_next)
11594 {
11595 	uint16_t len, old_len;
11596 	struct sctp_stream_reset_response_tsn *resp;
11597 	struct sctp_chunkhdr *ch;
11598 
11599 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11600 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11601 
11602 	/* get to new offset for the param. */
11603 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11604 	/* now how long will this param be? */
11605 	len = sizeof(struct sctp_stream_reset_response_tsn);
11606 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11607 	resp->ph.param_length = htons(len);
11608 	resp->response_seq = htonl(resp_seq);
11609 	resp->result = htonl(result);
11610 	resp->senders_next_tsn = htonl(send_una);
11611 	resp->receivers_next_tsn = htonl(recv_next);
11612 
11613 	/* now fix the chunk length */
11614 	ch->chunk_length = htons(len + old_len);
11615 	chk->book_size = len + old_len;
11616 	chk->send_size = SCTP_SIZE32(chk->book_size);
11617 	chk->book_size_scale = 0;
11618 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11619 	return;
11620 }
11621 
11622 static void
11623 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
11624     uint32_t seq,
11625     uint16_t adding)
11626 {
11627 	uint16_t len, old_len;
11628 	struct sctp_chunkhdr *ch;
11629 	struct sctp_stream_reset_add_strm *addstr;
11630 
11631 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11632 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11633 
11634 	/* get to new offset for the param. */
11635 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11636 	/* now how long will this param be? */
11637 	len = sizeof(struct sctp_stream_reset_add_strm);
11638 
11639 	/* Fill it out. */
11640 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
11641 	addstr->ph.param_length = htons(len);
11642 	addstr->request_seq = htonl(seq);
11643 	addstr->number_of_streams = htons(adding);
11644 	addstr->reserved = 0;
11645 
11646 	/* now fix the chunk length */
11647 	ch->chunk_length = htons(len + old_len);
11648 	chk->send_size = len + old_len;
11649 	chk->book_size = SCTP_SIZE32(chk->send_size);
11650 	chk->book_size_scale = 0;
11651 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11652 	return;
11653 }
11654 
11655 static void
11656 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
11657     uint32_t seq,
11658     uint16_t adding)
11659 {
11660 	uint16_t len, old_len;
11661 	struct sctp_chunkhdr *ch;
11662 	struct sctp_stream_reset_add_strm *addstr;
11663 
11664 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11665 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11666 
11667 	/* get to new offset for the param. */
11668 	addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11669 	/* now how long will this param be? */
11670 	len = sizeof(struct sctp_stream_reset_add_strm);
11671 	/* Fill it out. */
11672 	addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
11673 	addstr->ph.param_length = htons(len);
11674 	addstr->request_seq = htonl(seq);
11675 	addstr->number_of_streams = htons(adding);
11676 	addstr->reserved = 0;
11677 
11678 	/* now fix the chunk length */
11679 	ch->chunk_length = htons(len + old_len);
11680 	chk->send_size = len + old_len;
11681 	chk->book_size = SCTP_SIZE32(chk->send_size);
11682 	chk->book_size_scale = 0;
11683 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11684 	return;
11685 }
11686 
11687 int
11688 sctp_send_str_reset_req(struct sctp_tcb *stcb,
11689     int number_entries, uint16_t * list,
11690     uint8_t send_out_req,
11691     uint8_t send_in_req,
11692     uint8_t send_tsn_req,
11693     uint8_t add_stream,
11694     uint16_t adding_o,
11695     uint16_t adding_i, uint8_t peer_asked)
11696 {
11697 
11698 	struct sctp_association *asoc;
11699 	struct sctp_tmit_chunk *chk;
11700 	struct sctp_chunkhdr *ch;
11701 	uint32_t seq;
11702 
11703 	asoc = &stcb->asoc;
11704 	if (asoc->stream_reset_outstanding) {
11705 		/*-
11706 		 * Already one pending, must get ACK back to clear the flag.
11707 		 */
11708 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
11709 		return (EBUSY);
11710 	}
11711 	if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) &&
11712 	    (add_stream == 0)) {
11713 		/* nothing to do */
11714 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11715 		return (EINVAL);
11716 	}
11717 	if (send_tsn_req && (send_out_req || send_in_req)) {
11718 		/* error, can't do that */
11719 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11720 		return (EINVAL);
11721 	}
11722 	sctp_alloc_a_chunk(stcb, chk);
11723 	if (chk == NULL) {
11724 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11725 		return (ENOMEM);
11726 	}
11727 	chk->copy_by_ref = 0;
11728 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11729 	chk->rec.chunk_id.can_take_data = 0;
11730 	chk->asoc = &stcb->asoc;
11731 	chk->book_size = sizeof(struct sctp_chunkhdr);
11732 	chk->send_size = SCTP_SIZE32(chk->book_size);
11733 	chk->book_size_scale = 0;
11734 
11735 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
11736 	if (chk->data == NULL) {
11737 		sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11738 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11739 		return (ENOMEM);
11740 	}
11741 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11742 
11743 	/* setup chunk parameters */
11744 	chk->sent = SCTP_DATAGRAM_UNSENT;
11745 	chk->snd_count = 0;
11746 	if (stcb->asoc.alternate) {
11747 		chk->whoTo = stcb->asoc.alternate;
11748 	} else {
11749 		chk->whoTo = stcb->asoc.primary_destination;
11750 	}
11751 	atomic_add_int(&chk->whoTo->ref_count, 1);
11752 	ch = mtod(chk->data, struct sctp_chunkhdr *);
11753 	ch->chunk_type = SCTP_STREAM_RESET;
11754 	ch->chunk_flags = 0;
11755 	ch->chunk_length = htons(chk->book_size);
11756 	SCTP_BUF_LEN(chk->data) = chk->send_size;
11757 
11758 	seq = stcb->asoc.str_reset_seq_out;
11759 	if (send_out_req) {
11760 		sctp_add_stream_reset_out(chk, number_entries, list,
11761 		    seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
11762 		asoc->stream_reset_out_is_outstanding = 1;
11763 		seq++;
11764 		asoc->stream_reset_outstanding++;
11765 	}
11766 	if ((add_stream & 1) &&
11767 	    ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
11768 		/* Need to allocate more */
11769 		struct sctp_stream_out *oldstream;
11770 		struct sctp_stream_queue_pending *sp, *nsp;
11771 		int i;
11772 
11773 		oldstream = stcb->asoc.strmout;
11774 		/* get some more */
11775 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
11776 		    ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
11777 		    SCTP_M_STRMO);
11778 		if (stcb->asoc.strmout == NULL) {
11779 			uint8_t x;
11780 
11781 			stcb->asoc.strmout = oldstream;
11782 			/* Turn off the bit */
11783 			x = add_stream & 0xfe;
11784 			add_stream = x;
11785 			goto skip_stuff;
11786 		}
11787 		/*
11788 		 * Ok now we proceed with copying the old out stuff and
11789 		 * initializing the new stuff.
11790 		 */
11791 		SCTP_TCB_SEND_LOCK(stcb);
11792 		stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1);
11793 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11794 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11795 			stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send;
11796 			stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
11797 			stcb->asoc.strmout[i].stream_no = i;
11798 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]);
11799 			/* now anything on those queues? */
11800 			TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
11801 				TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
11802 				TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
11803 			}
11804 			/* Now move assoc pointers too */
11805 			if (stcb->asoc.last_out_stream == &oldstream[i]) {
11806 				stcb->asoc.last_out_stream = &stcb->asoc.strmout[i];
11807 			}
11808 			if (stcb->asoc.locked_on_sending == &oldstream[i]) {
11809 				stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i];
11810 			}
11811 		}
11812 		/* now the new streams */
11813 		stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1);
11814 		for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
11815 			stcb->asoc.strmout[i].next_sequence_send = 0x0;
11816 			TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11817 			stcb->asoc.strmout[i].stream_no = i;
11818 			stcb->asoc.strmout[i].last_msg_incomplete = 0;
11819 			stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
11820 		}
11821 		stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
11822 		SCTP_FREE(oldstream, SCTP_M_STRMO);
11823 		SCTP_TCB_SEND_UNLOCK(stcb);
11824 	}
11825 skip_stuff:
11826 	if ((add_stream & 1) && (adding_o > 0)) {
11827 		asoc->strm_pending_add_size = adding_o;
11828 		asoc->peer_req_out = peer_asked;
11829 		sctp_add_an_out_stream(chk, seq, adding_o);
11830 		seq++;
11831 		asoc->stream_reset_outstanding++;
11832 	}
11833 	if ((add_stream & 2) && (adding_i > 0)) {
11834 		sctp_add_an_in_stream(chk, seq, adding_i);
11835 		seq++;
11836 		asoc->stream_reset_outstanding++;
11837 	}
11838 	if (send_in_req) {
11839 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
11840 		seq++;
11841 		asoc->stream_reset_outstanding++;
11842 	}
11843 	if (send_tsn_req) {
11844 		sctp_add_stream_reset_tsn(chk, seq);
11845 		asoc->stream_reset_outstanding++;
11846 	}
11847 	asoc->str_reset = chk;
11848 	/* insert the chunk for sending */
11849 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
11850 	    chk,
11851 	    sctp_next);
11852 	asoc->ctrl_queue_cnt++;
11853 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
11854 	return (0);
11855 }
11856 
11857 void
11858 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
11859     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11860     uint8_t use_mflowid, uint32_t mflowid,
11861     uint32_t vrf_id, uint16_t port)
11862 {
11863 	/* Don't respond to an ABORT with an ABORT. */
11864 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
11865 		if (cause)
11866 			sctp_m_freem(cause);
11867 		return;
11868 	}
11869 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
11870 	    use_mflowid, mflowid,
11871 	    vrf_id, port);
11872 	return;
11873 }
11874 
11875 void
11876 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
11877     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11878     uint8_t use_mflowid, uint32_t mflowid,
11879     uint32_t vrf_id, uint16_t port)
11880 {
11881 	sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
11882 	    use_mflowid, mflowid,
11883 	    vrf_id, port);
11884 	return;
11885 }
11886 
11887 static struct mbuf *
11888 sctp_copy_resume(struct uio *uio,
11889     int max_send_len,
11890     int user_marks_eor,
11891     int *error,
11892     uint32_t * sndout,
11893     struct mbuf **new_tail)
11894 {
11895 	struct mbuf *m;
11896 
11897 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
11898 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
11899 	if (m == NULL) {
11900 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11901 		*error = ENOMEM;
11902 	} else {
11903 		*sndout = m_length(m, NULL);
11904 		*new_tail = m_last(m);
11905 	}
11906 	return (m);
11907 }
11908 
11909 static int
11910 sctp_copy_one(struct sctp_stream_queue_pending *sp,
11911     struct uio *uio,
11912     int resv_upfront)
11913 {
11914 	int left;
11915 
11916 	left = sp->length;
11917 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
11918 	    resv_upfront, 0);
11919 	if (sp->data == NULL) {
11920 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11921 		return (ENOMEM);
11922 	}
11923 	sp->tail_mbuf = m_last(sp->data);
11924 	return (0);
11925 }
11926 
11927 
11928 
11929 static struct sctp_stream_queue_pending *
11930 sctp_copy_it_in(struct sctp_tcb *stcb,
11931     struct sctp_association *asoc,
11932     struct sctp_sndrcvinfo *srcv,
11933     struct uio *uio,
11934     struct sctp_nets *net,
11935     int max_send_len,
11936     int user_marks_eor,
11937     int *error)
11938 {
11939 	/*-
11940 	 * This routine must be very careful in its work. Protocol
11941 	 * processing is up and running so care must be taken to spl...()
11942 	 * when you need to do something that may effect the stcb/asoc. The
11943 	 * sb is locked however. When data is copied the protocol processing
11944 	 * should be enabled since this is a slower operation...
11945 	 */
11946 	struct sctp_stream_queue_pending *sp = NULL;
11947 	int resv_in_first;
11948 
11949 	*error = 0;
11950 	/* Now can we send this? */
11951 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
11952 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
11953 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
11954 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
11955 		/* got data while shutting down */
11956 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11957 		*error = ECONNRESET;
11958 		goto out_now;
11959 	}
11960 	sctp_alloc_a_strmoq(stcb, sp);
11961 	if (sp == NULL) {
11962 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11963 		*error = ENOMEM;
11964 		goto out_now;
11965 	}
11966 	sp->act_flags = 0;
11967 	sp->sender_all_done = 0;
11968 	sp->sinfo_flags = srcv->sinfo_flags;
11969 	sp->timetolive = srcv->sinfo_timetolive;
11970 	sp->ppid = srcv->sinfo_ppid;
11971 	sp->context = srcv->sinfo_context;
11972 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
11973 
11974 	sp->stream = srcv->sinfo_stream;
11975 	sp->length = min(uio->uio_resid, max_send_len);
11976 	if ((sp->length == (uint32_t) uio->uio_resid) &&
11977 	    ((user_marks_eor == 0) ||
11978 	    (srcv->sinfo_flags & SCTP_EOF) ||
11979 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
11980 		sp->msg_is_complete = 1;
11981 	} else {
11982 		sp->msg_is_complete = 0;
11983 	}
11984 	sp->sender_all_done = 0;
11985 	sp->some_taken = 0;
11986 	sp->put_last_out = 0;
11987 	resv_in_first = sizeof(struct sctp_data_chunk);
11988 	sp->data = sp->tail_mbuf = NULL;
11989 	if (sp->length == 0) {
11990 		*error = 0;
11991 		goto skip_copy;
11992 	}
11993 	if (srcv->sinfo_keynumber_valid) {
11994 		sp->auth_keyid = srcv->sinfo_keynumber;
11995 	} else {
11996 		sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
11997 	}
11998 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
11999 		sctp_auth_key_acquire(stcb, sp->auth_keyid);
12000 		sp->holds_key_ref = 1;
12001 	}
12002 	*error = sctp_copy_one(sp, uio, resv_in_first);
12003 skip_copy:
12004 	if (*error) {
12005 		sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
12006 		sp = NULL;
12007 	} else {
12008 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12009 			sp->net = net;
12010 			atomic_add_int(&sp->net->ref_count, 1);
12011 		} else {
12012 			sp->net = NULL;
12013 		}
12014 		sctp_set_prsctp_policy(sp);
12015 	}
12016 out_now:
12017 	return (sp);
12018 }
12019 
12020 
12021 int
12022 sctp_sosend(struct socket *so,
12023     struct sockaddr *addr,
12024     struct uio *uio,
12025     struct mbuf *top,
12026     struct mbuf *control,
12027     int flags,
12028     struct thread *p
12029 )
12030 {
12031 	int error, use_sndinfo = 0;
12032 	struct sctp_sndrcvinfo sndrcvninfo;
12033 	struct sockaddr *addr_to_use;
12034 
12035 #if defined(INET) && defined(INET6)
12036 	struct sockaddr_in sin;
12037 
12038 #endif
12039 
12040 	if (control) {
12041 		/* process cmsg snd/rcv info (maybe a assoc-id) */
12042 		if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control,
12043 		    sizeof(sndrcvninfo))) {
12044 			/* got one */
12045 			use_sndinfo = 1;
12046 		}
12047 	}
12048 	addr_to_use = addr;
12049 #if defined(INET) && defined(INET6)
12050 	if ((addr) && (addr->sa_family == AF_INET6)) {
12051 		struct sockaddr_in6 *sin6;
12052 
12053 		sin6 = (struct sockaddr_in6 *)addr;
12054 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12055 			in6_sin6_2_sin(&sin, sin6);
12056 			addr_to_use = (struct sockaddr *)&sin;
12057 		}
12058 	}
12059 #endif
12060 	error = sctp_lower_sosend(so, addr_to_use, uio, top,
12061 	    control,
12062 	    flags,
12063 	    use_sndinfo ? &sndrcvninfo : NULL
12064 	    ,p
12065 	    );
12066 	return (error);
12067 }
12068 
12069 
12070 int
12071 sctp_lower_sosend(struct socket *so,
12072     struct sockaddr *addr,
12073     struct uio *uio,
12074     struct mbuf *i_pak,
12075     struct mbuf *control,
12076     int flags,
12077     struct sctp_sndrcvinfo *srcv
12078     ,
12079     struct thread *p
12080 )
12081 {
12082 	unsigned int sndlen = 0, max_len;
12083 	int error, len;
12084 	struct mbuf *top = NULL;
12085 	int queue_only = 0, queue_only_for_init = 0;
12086 	int free_cnt_applied = 0;
12087 	int un_sent;
12088 	int now_filled = 0;
12089 	unsigned int inqueue_bytes = 0;
12090 	struct sctp_block_entry be;
12091 	struct sctp_inpcb *inp;
12092 	struct sctp_tcb *stcb = NULL;
12093 	struct timeval now;
12094 	struct sctp_nets *net;
12095 	struct sctp_association *asoc;
12096 	struct sctp_inpcb *t_inp;
12097 	int user_marks_eor;
12098 	int create_lock_applied = 0;
12099 	int nagle_applies = 0;
12100 	int some_on_control = 0;
12101 	int got_all_of_the_send = 0;
12102 	int hold_tcblock = 0;
12103 	int non_blocking = 0;
12104 	uint32_t local_add_more, local_soresv = 0;
12105 	uint16_t port;
12106 	uint16_t sinfo_flags;
12107 	sctp_assoc_t sinfo_assoc_id;
12108 
12109 	error = 0;
12110 	net = NULL;
12111 	stcb = NULL;
12112 	asoc = NULL;
12113 
12114 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12115 	if (inp == NULL) {
12116 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12117 		error = EINVAL;
12118 		if (i_pak) {
12119 			SCTP_RELEASE_PKT(i_pak);
12120 		}
12121 		return (error);
12122 	}
12123 	if ((uio == NULL) && (i_pak == NULL)) {
12124 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12125 		return (EINVAL);
12126 	}
12127 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12128 	atomic_add_int(&inp->total_sends, 1);
12129 	if (uio) {
12130 		if (uio->uio_resid < 0) {
12131 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12132 			return (EINVAL);
12133 		}
12134 		sndlen = uio->uio_resid;
12135 	} else {
12136 		top = SCTP_HEADER_TO_CHAIN(i_pak);
12137 		sndlen = SCTP_HEADER_LEN(i_pak);
12138 	}
12139 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
12140 	    (void *)addr,
12141 	    sndlen);
12142 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12143 	    (inp->sctp_socket->so_qlimit)) {
12144 		/* The listener can NOT send */
12145 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12146 		error = ENOTCONN;
12147 		goto out_unlocked;
12148 	}
12149 	/**
12150 	 * Pre-screen address, if one is given the sin-len
12151 	 * must be set correctly!
12152 	 */
12153 	if (addr) {
12154 		union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12155 
12156 		switch (raddr->sa.sa_family) {
12157 #ifdef INET
12158 		case AF_INET:
12159 			if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12160 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12161 				error = EINVAL;
12162 				goto out_unlocked;
12163 			}
12164 			port = raddr->sin.sin_port;
12165 			break;
12166 #endif
12167 #ifdef INET6
12168 		case AF_INET6:
12169 			if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12170 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12171 				error = EINVAL;
12172 				goto out_unlocked;
12173 			}
12174 			port = raddr->sin6.sin6_port;
12175 			break;
12176 #endif
12177 		default:
12178 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT);
12179 			error = EAFNOSUPPORT;
12180 			goto out_unlocked;
12181 		}
12182 	} else
12183 		port = 0;
12184 
12185 	if (srcv) {
12186 		sinfo_flags = srcv->sinfo_flags;
12187 		sinfo_assoc_id = srcv->sinfo_assoc_id;
12188 		if (INVALID_SINFO_FLAG(sinfo_flags) ||
12189 		    PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12190 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12191 			error = EINVAL;
12192 			goto out_unlocked;
12193 		}
12194 		if (srcv->sinfo_flags)
12195 			SCTP_STAT_INCR(sctps_sends_with_flags);
12196 	} else {
12197 		sinfo_flags = inp->def_send.sinfo_flags;
12198 		sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12199 	}
12200 	if (sinfo_flags & SCTP_SENDALL) {
12201 		/* its a sendall */
12202 		error = sctp_sendall(inp, uio, top, srcv);
12203 		top = NULL;
12204 		goto out_unlocked;
12205 	}
12206 	if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12207 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12208 		error = EINVAL;
12209 		goto out_unlocked;
12210 	}
12211 	/* now we must find the assoc */
12212 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12213 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12214 		SCTP_INP_RLOCK(inp);
12215 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
12216 		if (stcb) {
12217 			SCTP_TCB_LOCK(stcb);
12218 			hold_tcblock = 1;
12219 		}
12220 		SCTP_INP_RUNLOCK(inp);
12221 	} else if (sinfo_assoc_id) {
12222 		stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0);
12223 	} else if (addr) {
12224 		/*-
12225 		 * Since we did not use findep we must
12226 		 * increment it, and if we don't find a tcb
12227 		 * decrement it.
12228 		 */
12229 		SCTP_INP_WLOCK(inp);
12230 		SCTP_INP_INCR_REF(inp);
12231 		SCTP_INP_WUNLOCK(inp);
12232 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12233 		if (stcb == NULL) {
12234 			SCTP_INP_WLOCK(inp);
12235 			SCTP_INP_DECR_REF(inp);
12236 			SCTP_INP_WUNLOCK(inp);
12237 		} else {
12238 			hold_tcblock = 1;
12239 		}
12240 	}
12241 	if ((stcb == NULL) && (addr)) {
12242 		/* Possible implicit send? */
12243 		SCTP_ASOC_CREATE_LOCK(inp);
12244 		create_lock_applied = 1;
12245 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12246 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12247 			/* Should I really unlock ? */
12248 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12249 			error = EINVAL;
12250 			goto out_unlocked;
12251 
12252 		}
12253 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12254 		    (addr->sa_family == AF_INET6)) {
12255 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12256 			error = EINVAL;
12257 			goto out_unlocked;
12258 		}
12259 		SCTP_INP_WLOCK(inp);
12260 		SCTP_INP_INCR_REF(inp);
12261 		SCTP_INP_WUNLOCK(inp);
12262 		/* With the lock applied look again */
12263 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12264 		if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12265 			stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12266 		}
12267 		if (stcb == NULL) {
12268 			SCTP_INP_WLOCK(inp);
12269 			SCTP_INP_DECR_REF(inp);
12270 			SCTP_INP_WUNLOCK(inp);
12271 		} else {
12272 			hold_tcblock = 1;
12273 		}
12274 		if (error) {
12275 			goto out_unlocked;
12276 		}
12277 		if (t_inp != inp) {
12278 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12279 			error = ENOTCONN;
12280 			goto out_unlocked;
12281 		}
12282 	}
12283 	if (stcb == NULL) {
12284 		if (addr == NULL) {
12285 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12286 			error = ENOENT;
12287 			goto out_unlocked;
12288 		} else {
12289 			/* We must go ahead and start the INIT process */
12290 			uint32_t vrf_id;
12291 
12292 			if ((sinfo_flags & SCTP_ABORT) ||
12293 			    ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12294 				/*-
12295 				 * User asks to abort a non-existant assoc,
12296 				 * or EOF a non-existant assoc with no data
12297 				 */
12298 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12299 				error = ENOENT;
12300 				goto out_unlocked;
12301 			}
12302 			/* get an asoc/stcb struct */
12303 			vrf_id = inp->def_vrf_id;
12304 #ifdef INVARIANTS
12305 			if (create_lock_applied == 0) {
12306 				panic("Error, should hold create lock and I don't?");
12307 			}
12308 #endif
12309 			stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
12310 			    p
12311 			    );
12312 			if (stcb == NULL) {
12313 				/* Error is setup for us in the call */
12314 				goto out_unlocked;
12315 			}
12316 			if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
12317 				stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
12318 				/*
12319 				 * Set the connected flag so we can queue
12320 				 * data
12321 				 */
12322 				soisconnecting(so);
12323 			}
12324 			hold_tcblock = 1;
12325 			if (create_lock_applied) {
12326 				SCTP_ASOC_CREATE_UNLOCK(inp);
12327 				create_lock_applied = 0;
12328 			} else {
12329 				SCTP_PRINTF("Huh-3? create lock should have been on??\n");
12330 			}
12331 			/*
12332 			 * Turn on queue only flag to prevent data from
12333 			 * being sent
12334 			 */
12335 			queue_only = 1;
12336 			asoc = &stcb->asoc;
12337 			SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12338 			(void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
12339 
12340 			/* initialize authentication params for the assoc */
12341 			sctp_initialize_auth_params(inp, stcb);
12342 
12343 			if (control) {
12344 				if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12345 					sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7);
12346 					hold_tcblock = 0;
12347 					stcb = NULL;
12348 					goto out_unlocked;
12349 				}
12350 			}
12351 			/* out with the INIT */
12352 			queue_only_for_init = 1;
12353 			/*-
12354 			 * we may want to dig in after this call and adjust the MTU
12355 			 * value. It defaulted to 1500 (constant) but the ro
12356 			 * structure may now have an update and thus we may need to
12357 			 * change it BEFORE we append the message.
12358 			 */
12359 		}
12360 	} else
12361 		asoc = &stcb->asoc;
12362 	if (srcv == NULL)
12363 		srcv = (struct sctp_sndrcvinfo *)&asoc->def_send;
12364 	if (srcv->sinfo_flags & SCTP_ADDR_OVER) {
12365 		if (addr)
12366 			net = sctp_findnet(stcb, addr);
12367 		else
12368 			net = NULL;
12369 		if ((net == NULL) ||
12370 		    ((port != 0) && (port != stcb->rport))) {
12371 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12372 			error = EINVAL;
12373 			goto out_unlocked;
12374 		}
12375 	} else {
12376 		if (stcb->asoc.alternate) {
12377 			net = stcb->asoc.alternate;
12378 		} else {
12379 			net = stcb->asoc.primary_destination;
12380 		}
12381 	}
12382 	atomic_add_int(&stcb->total_sends, 1);
12383 	/* Keep the stcb from being freed under our feet */
12384 	atomic_add_int(&asoc->refcnt, 1);
12385 	free_cnt_applied = 1;
12386 
12387 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
12388 		if (sndlen > asoc->smallest_mtu) {
12389 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12390 			error = EMSGSIZE;
12391 			goto out_unlocked;
12392 		}
12393 	}
12394 	if (SCTP_SO_IS_NBIO(so)
12395 	    || (flags & MSG_NBIO)
12396 	    ) {
12397 		non_blocking = 1;
12398 	}
12399 	/* would we block? */
12400 	if (non_blocking) {
12401 		if (hold_tcblock == 0) {
12402 			SCTP_TCB_LOCK(stcb);
12403 			hold_tcblock = 1;
12404 		}
12405 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12406 		if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) ||
12407 		    (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12408 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
12409 			if (sndlen > SCTP_SB_LIMIT_SND(so))
12410 				error = EMSGSIZE;
12411 			else
12412 				error = EWOULDBLOCK;
12413 			goto out_unlocked;
12414 		}
12415 		stcb->asoc.sb_send_resv += sndlen;
12416 		SCTP_TCB_UNLOCK(stcb);
12417 		hold_tcblock = 0;
12418 	} else {
12419 		atomic_add_int(&stcb->asoc.sb_send_resv, sndlen);
12420 	}
12421 	local_soresv = sndlen;
12422 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12423 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12424 		error = ECONNRESET;
12425 		goto out_unlocked;
12426 	}
12427 	if (create_lock_applied) {
12428 		SCTP_ASOC_CREATE_UNLOCK(inp);
12429 		create_lock_applied = 0;
12430 	}
12431 	if (asoc->stream_reset_outstanding) {
12432 		/*
12433 		 * Can't queue any data while stream reset is underway.
12434 		 */
12435 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
12436 		error = EAGAIN;
12437 		goto out_unlocked;
12438 	}
12439 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12440 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12441 		queue_only = 1;
12442 	}
12443 	/* we are now done with all control */
12444 	if (control) {
12445 		sctp_m_freem(control);
12446 		control = NULL;
12447 	}
12448 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12449 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12450 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12451 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12452 		if (srcv->sinfo_flags & SCTP_ABORT) {
12453 			;
12454 		} else {
12455 			SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12456 			error = ECONNRESET;
12457 			goto out_unlocked;
12458 		}
12459 	}
12460 	/* Ok, we will attempt a msgsnd :> */
12461 	if (p) {
12462 		p->td_ru.ru_msgsnd++;
12463 	}
12464 	/* Are we aborting? */
12465 	if (srcv->sinfo_flags & SCTP_ABORT) {
12466 		struct mbuf *mm;
12467 		int tot_demand, tot_out = 0, max_out;
12468 
12469 		SCTP_STAT_INCR(sctps_sends_with_abort);
12470 		if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12471 		    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12472 			/* It has to be up before we abort */
12473 			/* how big is the user initiated abort? */
12474 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12475 			error = EINVAL;
12476 			goto out;
12477 		}
12478 		if (hold_tcblock) {
12479 			SCTP_TCB_UNLOCK(stcb);
12480 			hold_tcblock = 0;
12481 		}
12482 		if (top) {
12483 			struct mbuf *cntm = NULL;
12484 
12485 			mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAIT, 1, MT_DATA);
12486 			if (sndlen != 0) {
12487 				for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12488 					tot_out += SCTP_BUF_LEN(cntm);
12489 				}
12490 			}
12491 		} else {
12492 			/* Must fit in a MTU */
12493 			tot_out = sndlen;
12494 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12495 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12496 				/* To big */
12497 				SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12498 				error = EMSGSIZE;
12499 				goto out;
12500 			}
12501 			mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAIT, 1, MT_DATA);
12502 		}
12503 		if (mm == NULL) {
12504 			SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12505 			error = ENOMEM;
12506 			goto out;
12507 		}
12508 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12509 		max_out -= sizeof(struct sctp_abort_msg);
12510 		if (tot_out > max_out) {
12511 			tot_out = max_out;
12512 		}
12513 		if (mm) {
12514 			struct sctp_paramhdr *ph;
12515 
12516 			/* now move forward the data pointer */
12517 			ph = mtod(mm, struct sctp_paramhdr *);
12518 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12519 			ph->param_length = htons((sizeof(struct sctp_paramhdr) + tot_out));
12520 			ph++;
12521 			SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
12522 			if (top == NULL) {
12523 				error = uiomove((caddr_t)ph, (int)tot_out, uio);
12524 				if (error) {
12525 					/*-
12526 					 * Here if we can't get his data we
12527 					 * still abort we just don't get to
12528 					 * send the users note :-0
12529 					 */
12530 					sctp_m_freem(mm);
12531 					mm = NULL;
12532 				}
12533 			} else {
12534 				if (sndlen != 0) {
12535 					SCTP_BUF_NEXT(mm) = top;
12536 				}
12537 			}
12538 		}
12539 		if (hold_tcblock == 0) {
12540 			SCTP_TCB_LOCK(stcb);
12541 		}
12542 		atomic_add_int(&stcb->asoc.refcnt, -1);
12543 		free_cnt_applied = 0;
12544 		/* release this lock, otherwise we hang on ourselves */
12545 		sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED);
12546 		/* now relock the stcb so everything is sane */
12547 		hold_tcblock = 0;
12548 		stcb = NULL;
12549 		/*
12550 		 * In this case top is already chained to mm avoid double
12551 		 * free, since we free it below if top != NULL and driver
12552 		 * would free it after sending the packet out
12553 		 */
12554 		if (sndlen != 0) {
12555 			top = NULL;
12556 		}
12557 		goto out_unlocked;
12558 	}
12559 	/* Calculate the maximum we can send */
12560 	inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12561 	if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12562 		if (non_blocking) {
12563 			/* we already checked for non-blocking above. */
12564 			max_len = sndlen;
12565 		} else {
12566 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12567 		}
12568 	} else {
12569 		max_len = 0;
12570 	}
12571 	if (hold_tcblock) {
12572 		SCTP_TCB_UNLOCK(stcb);
12573 		hold_tcblock = 0;
12574 	}
12575 	/* Is the stream no. valid? */
12576 	if (srcv->sinfo_stream >= asoc->streamoutcnt) {
12577 		/* Invalid stream number */
12578 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12579 		error = EINVAL;
12580 		goto out_unlocked;
12581 	}
12582 	if (asoc->strmout == NULL) {
12583 		/* huh? software error */
12584 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12585 		error = EFAULT;
12586 		goto out_unlocked;
12587 	}
12588 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
12589 	if ((user_marks_eor == 0) &&
12590 	    (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
12591 		/* It will NEVER fit */
12592 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12593 		error = EMSGSIZE;
12594 		goto out_unlocked;
12595 	}
12596 	if ((uio == NULL) && user_marks_eor) {
12597 		/*-
12598 		 * We do not support eeor mode for
12599 		 * sending with mbuf chains (like sendfile).
12600 		 */
12601 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12602 		error = EINVAL;
12603 		goto out_unlocked;
12604 	}
12605 	if (user_marks_eor) {
12606 		local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
12607 	} else {
12608 		/*-
12609 		 * For non-eeor the whole message must fit in
12610 		 * the socket send buffer.
12611 		 */
12612 		local_add_more = sndlen;
12613 	}
12614 	len = 0;
12615 	if (non_blocking) {
12616 		goto skip_preblock;
12617 	}
12618 	if (((max_len <= local_add_more) &&
12619 	    (SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
12620 	    (max_len == 0) ||
12621 	    ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12622 		/* No room right now ! */
12623 		SOCKBUF_LOCK(&so->so_snd);
12624 		inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12625 		while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
12626 		    ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12627 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n",
12628 			    (unsigned int)SCTP_SB_LIMIT_SND(so),
12629 			    inqueue_bytes,
12630 			    local_add_more,
12631 			    stcb->asoc.stream_queue_cnt,
12632 			    stcb->asoc.chunks_on_out_queue,
12633 			    SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
12634 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12635 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
12636 			}
12637 			be.error = 0;
12638 			stcb->block_entry = &be;
12639 			error = sbwait(&so->so_snd);
12640 			stcb->block_entry = NULL;
12641 			if (error || so->so_error || be.error) {
12642 				if (error == 0) {
12643 					if (so->so_error)
12644 						error = so->so_error;
12645 					if (be.error) {
12646 						error = be.error;
12647 					}
12648 				}
12649 				SOCKBUF_UNLOCK(&so->so_snd);
12650 				goto out_unlocked;
12651 			}
12652 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12653 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12654 				    asoc, stcb->asoc.total_output_queue_size);
12655 			}
12656 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12657 				goto out_unlocked;
12658 			}
12659 			inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12660 		}
12661 		if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12662 			max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12663 		} else {
12664 			max_len = 0;
12665 		}
12666 		SOCKBUF_UNLOCK(&so->so_snd);
12667 	}
12668 skip_preblock:
12669 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12670 		goto out_unlocked;
12671 	}
12672 	/*
12673 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
12674 	 * case NOTE: uio will be null when top/mbuf is passed
12675 	 */
12676 	if (sndlen == 0) {
12677 		if (srcv->sinfo_flags & SCTP_EOF) {
12678 			got_all_of_the_send = 1;
12679 			goto dataless_eof;
12680 		} else {
12681 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12682 			error = EINVAL;
12683 			goto out;
12684 		}
12685 	}
12686 	if (top == NULL) {
12687 		struct sctp_stream_queue_pending *sp;
12688 		struct sctp_stream_out *strm;
12689 		uint32_t sndout;
12690 
12691 		SCTP_TCB_SEND_LOCK(stcb);
12692 		if ((asoc->stream_locked) &&
12693 		    (asoc->stream_locked_on != srcv->sinfo_stream)) {
12694 			SCTP_TCB_SEND_UNLOCK(stcb);
12695 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12696 			error = EINVAL;
12697 			goto out;
12698 		}
12699 		SCTP_TCB_SEND_UNLOCK(stcb);
12700 
12701 		strm = &stcb->asoc.strmout[srcv->sinfo_stream];
12702 		if (strm->last_msg_incomplete == 0) {
12703 	do_a_copy_in:
12704 			sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error);
12705 			if ((sp == NULL) || (error)) {
12706 				goto out;
12707 			}
12708 			SCTP_TCB_SEND_LOCK(stcb);
12709 			if (sp->msg_is_complete) {
12710 				strm->last_msg_incomplete = 0;
12711 				asoc->stream_locked = 0;
12712 			} else {
12713 				/*
12714 				 * Just got locked to this guy in case of an
12715 				 * interrupt.
12716 				 */
12717 				strm->last_msg_incomplete = 1;
12718 				asoc->stream_locked = 1;
12719 				asoc->stream_locked_on = srcv->sinfo_stream;
12720 				sp->sender_all_done = 0;
12721 			}
12722 			sctp_snd_sb_alloc(stcb, sp->length);
12723 			atomic_add_int(&asoc->stream_queue_cnt, 1);
12724 			if (srcv->sinfo_flags & SCTP_UNORDERED) {
12725 				SCTP_STAT_INCR(sctps_sends_with_unord);
12726 			}
12727 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
12728 			stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1);
12729 			SCTP_TCB_SEND_UNLOCK(stcb);
12730 		} else {
12731 			SCTP_TCB_SEND_LOCK(stcb);
12732 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
12733 			SCTP_TCB_SEND_UNLOCK(stcb);
12734 			if (sp == NULL) {
12735 				/* ???? Huh ??? last msg is gone */
12736 #ifdef INVARIANTS
12737 				panic("Warning: Last msg marked incomplete, yet nothing left?");
12738 #else
12739 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
12740 				strm->last_msg_incomplete = 0;
12741 #endif
12742 				goto do_a_copy_in;
12743 
12744 			}
12745 		}
12746 		while (uio->uio_resid > 0) {
12747 			/* How much room do we have? */
12748 			struct mbuf *new_tail, *mm;
12749 
12750 			if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12751 				max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
12752 			else
12753 				max_len = 0;
12754 
12755 			if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
12756 			    (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
12757 			    (uio->uio_resid && (uio->uio_resid <= (int)max_len))) {
12758 				sndout = 0;
12759 				new_tail = NULL;
12760 				if (hold_tcblock) {
12761 					SCTP_TCB_UNLOCK(stcb);
12762 					hold_tcblock = 0;
12763 				}
12764 				mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail);
12765 				if ((mm == NULL) || error) {
12766 					if (mm) {
12767 						sctp_m_freem(mm);
12768 					}
12769 					goto out;
12770 				}
12771 				/* Update the mbuf and count */
12772 				SCTP_TCB_SEND_LOCK(stcb);
12773 				if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12774 					/*
12775 					 * we need to get out. Peer probably
12776 					 * aborted.
12777 					 */
12778 					sctp_m_freem(mm);
12779 					if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
12780 						SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12781 						error = ECONNRESET;
12782 					}
12783 					SCTP_TCB_SEND_UNLOCK(stcb);
12784 					goto out;
12785 				}
12786 				if (sp->tail_mbuf) {
12787 					/* tack it to the end */
12788 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
12789 					sp->tail_mbuf = new_tail;
12790 				} else {
12791 					/* A stolen mbuf */
12792 					sp->data = mm;
12793 					sp->tail_mbuf = new_tail;
12794 				}
12795 				sctp_snd_sb_alloc(stcb, sndout);
12796 				atomic_add_int(&sp->length, sndout);
12797 				len += sndout;
12798 
12799 				/* Did we reach EOR? */
12800 				if ((uio->uio_resid == 0) &&
12801 				    ((user_marks_eor == 0) ||
12802 				    (srcv->sinfo_flags & SCTP_EOF) ||
12803 				    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12804 					sp->msg_is_complete = 1;
12805 				} else {
12806 					sp->msg_is_complete = 0;
12807 				}
12808 				SCTP_TCB_SEND_UNLOCK(stcb);
12809 			}
12810 			if (uio->uio_resid == 0) {
12811 				/* got it all? */
12812 				continue;
12813 			}
12814 			/* PR-SCTP? */
12815 			if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
12816 				/*
12817 				 * This is ugly but we must assure locking
12818 				 * order
12819 				 */
12820 				if (hold_tcblock == 0) {
12821 					SCTP_TCB_LOCK(stcb);
12822 					hold_tcblock = 1;
12823 				}
12824 				sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
12825 				inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12826 				if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12827 					max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12828 				else
12829 					max_len = 0;
12830 				if (max_len > 0) {
12831 					continue;
12832 				}
12833 				SCTP_TCB_UNLOCK(stcb);
12834 				hold_tcblock = 0;
12835 			}
12836 			/* wait for space now */
12837 			if (non_blocking) {
12838 				/* Non-blocking io in place out */
12839 				goto skip_out_eof;
12840 			}
12841 			/* What about the INIT, send it maybe */
12842 			if (queue_only_for_init) {
12843 				if (hold_tcblock == 0) {
12844 					SCTP_TCB_LOCK(stcb);
12845 					hold_tcblock = 1;
12846 				}
12847 				if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
12848 					/* a collision took us forward? */
12849 					queue_only = 0;
12850 				} else {
12851 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
12852 					SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12853 					queue_only = 1;
12854 				}
12855 			}
12856 			if ((net->flight_size > net->cwnd) &&
12857 			    (asoc->sctp_cmt_on_off == 0)) {
12858 				SCTP_STAT_INCR(sctps_send_cwnd_avoid);
12859 				queue_only = 1;
12860 			} else if (asoc->ifp_had_enobuf) {
12861 				SCTP_STAT_INCR(sctps_ifnomemqueued);
12862 				if (net->flight_size > (2 * net->mtu)) {
12863 					queue_only = 1;
12864 				}
12865 				asoc->ifp_had_enobuf = 0;
12866 			}
12867 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12868 			    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
12869 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
12870 			    (stcb->asoc.total_flight > 0) &&
12871 			    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
12872 			    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
12873 
12874 				/*-
12875 				 * Ok, Nagle is set on and we have data outstanding.
12876 				 * Don't send anything and let SACKs drive out the
12877 				 * data unless wen have a "full" segment to send.
12878 				 */
12879 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12880 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
12881 				}
12882 				SCTP_STAT_INCR(sctps_naglequeued);
12883 				nagle_applies = 1;
12884 			} else {
12885 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12886 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
12887 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
12888 				}
12889 				SCTP_STAT_INCR(sctps_naglesent);
12890 				nagle_applies = 0;
12891 			}
12892 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12893 
12894 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
12895 				    nagle_applies, un_sent);
12896 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
12897 				    stcb->asoc.total_flight,
12898 				    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
12899 			}
12900 			if (queue_only_for_init)
12901 				queue_only_for_init = 0;
12902 			if ((queue_only == 0) && (nagle_applies == 0)) {
12903 				/*-
12904 				 * need to start chunk output
12905 				 * before blocking.. note that if
12906 				 * a lock is already applied, then
12907 				 * the input via the net is happening
12908 				 * and I don't need to start output :-D
12909 				 */
12910 				if (hold_tcblock == 0) {
12911 					if (SCTP_TCB_TRYLOCK(stcb)) {
12912 						hold_tcblock = 1;
12913 						sctp_chunk_output(inp,
12914 						    stcb,
12915 						    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12916 					}
12917 				} else {
12918 					sctp_chunk_output(inp,
12919 					    stcb,
12920 					    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12921 				}
12922 				if (hold_tcblock == 1) {
12923 					SCTP_TCB_UNLOCK(stcb);
12924 					hold_tcblock = 0;
12925 				}
12926 			}
12927 			SOCKBUF_LOCK(&so->so_snd);
12928 			/*-
12929 			 * This is a bit strange, but I think it will
12930 			 * work. The total_output_queue_size is locked and
12931 			 * protected by the TCB_LOCK, which we just released.
12932 			 * There is a race that can occur between releasing it
12933 			 * above, and me getting the socket lock, where sacks
12934 			 * come in but we have not put the SB_WAIT on the
12935 			 * so_snd buffer to get the wakeup. After the LOCK
12936 			 * is applied the sack_processing will also need to
12937 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
12938 			 * once we have the socket buffer lock if we recheck the
12939 			 * size we KNOW we will get to sleep safely with the
12940 			 * wakeup flag in place.
12941 			 */
12942 			if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
12943 			    min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
12944 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12945 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
12946 					    asoc, uio->uio_resid);
12947 				}
12948 				be.error = 0;
12949 				stcb->block_entry = &be;
12950 				error = sbwait(&so->so_snd);
12951 				stcb->block_entry = NULL;
12952 
12953 				if (error || so->so_error || be.error) {
12954 					if (error == 0) {
12955 						if (so->so_error)
12956 							error = so->so_error;
12957 						if (be.error) {
12958 							error = be.error;
12959 						}
12960 					}
12961 					SOCKBUF_UNLOCK(&so->so_snd);
12962 					goto out_unlocked;
12963 				}
12964 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12965 					sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12966 					    asoc, stcb->asoc.total_output_queue_size);
12967 				}
12968 			}
12969 			SOCKBUF_UNLOCK(&so->so_snd);
12970 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12971 				goto out_unlocked;
12972 			}
12973 		}
12974 		SCTP_TCB_SEND_LOCK(stcb);
12975 		if (sp) {
12976 			if (sp->msg_is_complete == 0) {
12977 				strm->last_msg_incomplete = 1;
12978 				asoc->stream_locked = 1;
12979 				asoc->stream_locked_on = srcv->sinfo_stream;
12980 			} else {
12981 				sp->sender_all_done = 1;
12982 				strm->last_msg_incomplete = 0;
12983 				asoc->stream_locked = 0;
12984 			}
12985 		} else {
12986 			SCTP_PRINTF("Huh no sp TSNH?\n");
12987 			strm->last_msg_incomplete = 0;
12988 			asoc->stream_locked = 0;
12989 		}
12990 		SCTP_TCB_SEND_UNLOCK(stcb);
12991 		if (uio->uio_resid == 0) {
12992 			got_all_of_the_send = 1;
12993 		}
12994 	} else {
12995 		/* We send in a 0, since we do NOT have any locks */
12996 		error = sctp_msg_append(stcb, net, top, srcv, 0);
12997 		top = NULL;
12998 		if (srcv->sinfo_flags & SCTP_EOF) {
12999 			/*
13000 			 * This should only happen for Panda for the mbuf
13001 			 * send case, which does NOT yet support EEOR mode.
13002 			 * Thus, we can just set this flag to do the proper
13003 			 * EOF handling.
13004 			 */
13005 			got_all_of_the_send = 1;
13006 		}
13007 	}
13008 	if (error) {
13009 		goto out;
13010 	}
13011 dataless_eof:
13012 	/* EOF thing ? */
13013 	if ((srcv->sinfo_flags & SCTP_EOF) &&
13014 	    (got_all_of_the_send == 1)) {
13015 		int cnt;
13016 
13017 		SCTP_STAT_INCR(sctps_sends_with_eof);
13018 		error = 0;
13019 		if (hold_tcblock == 0) {
13020 			SCTP_TCB_LOCK(stcb);
13021 			hold_tcblock = 1;
13022 		}
13023 		cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED);
13024 		if (TAILQ_EMPTY(&asoc->send_queue) &&
13025 		    TAILQ_EMPTY(&asoc->sent_queue) &&
13026 		    (cnt == 0)) {
13027 			if (asoc->locked_on_sending) {
13028 				goto abort_anyway;
13029 			}
13030 			/* there is nothing queued to send, so I'm done... */
13031 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13032 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13033 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13034 				struct sctp_nets *netp;
13035 
13036 				if (stcb->asoc.alternate) {
13037 					netp = stcb->asoc.alternate;
13038 				} else {
13039 					netp = stcb->asoc.primary_destination;
13040 				}
13041 				/* only send SHUTDOWN the first time through */
13042 				sctp_send_shutdown(stcb, netp);
13043 				if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
13044 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13045 				}
13046 				SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
13047 				SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
13048 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13049 				    netp);
13050 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13051 				    asoc->primary_destination);
13052 			}
13053 		} else {
13054 			/*-
13055 			 * we still got (or just got) data to send, so set
13056 			 * SHUTDOWN_PENDING
13057 			 */
13058 			/*-
13059 			 * XXX sockets draft says that SCTP_EOF should be
13060 			 * sent with no data.  currently, we will allow user
13061 			 * data to be sent first and move to
13062 			 * SHUTDOWN-PENDING
13063 			 */
13064 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13065 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13066 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13067 				if (hold_tcblock == 0) {
13068 					SCTP_TCB_LOCK(stcb);
13069 					hold_tcblock = 1;
13070 				}
13071 				if (asoc->locked_on_sending) {
13072 					/* Locked to send out the data */
13073 					struct sctp_stream_queue_pending *sp;
13074 
13075 					sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
13076 					if (sp) {
13077 						if ((sp->length == 0) && (sp->msg_is_complete == 0))
13078 							asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
13079 					}
13080 				}
13081 				asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
13082 				if (TAILQ_EMPTY(&asoc->send_queue) &&
13083 				    TAILQ_EMPTY(&asoc->sent_queue) &&
13084 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13085 			abort_anyway:
13086 					if (free_cnt_applied) {
13087 						atomic_add_int(&stcb->asoc.refcnt, -1);
13088 						free_cnt_applied = 0;
13089 					}
13090 					sctp_abort_an_association(stcb->sctp_ep, stcb,
13091 					    NULL, SCTP_SO_LOCKED);
13092 					/*
13093 					 * now relock the stcb so everything
13094 					 * is sane
13095 					 */
13096 					hold_tcblock = 0;
13097 					stcb = NULL;
13098 					goto out;
13099 				}
13100 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13101 				    asoc->primary_destination);
13102 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13103 			}
13104 		}
13105 	}
13106 skip_out_eof:
13107 	if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
13108 		some_on_control = 1;
13109 	}
13110 	if (queue_only_for_init) {
13111 		if (hold_tcblock == 0) {
13112 			SCTP_TCB_LOCK(stcb);
13113 			hold_tcblock = 1;
13114 		}
13115 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13116 			/* a collision took us forward? */
13117 			queue_only = 0;
13118 		} else {
13119 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13120 			SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
13121 			queue_only = 1;
13122 		}
13123 	}
13124 	if ((net->flight_size > net->cwnd) &&
13125 	    (stcb->asoc.sctp_cmt_on_off == 0)) {
13126 		SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13127 		queue_only = 1;
13128 	} else if (asoc->ifp_had_enobuf) {
13129 		SCTP_STAT_INCR(sctps_ifnomemqueued);
13130 		if (net->flight_size > (2 * net->mtu)) {
13131 			queue_only = 1;
13132 		}
13133 		asoc->ifp_had_enobuf = 0;
13134 	}
13135 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13136 	    (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13137 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13138 	    (stcb->asoc.total_flight > 0) &&
13139 	    (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13140 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13141 		/*-
13142 		 * Ok, Nagle is set on and we have data outstanding.
13143 		 * Don't send anything and let SACKs drive out the
13144 		 * data unless wen have a "full" segment to send.
13145 		 */
13146 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13147 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13148 		}
13149 		SCTP_STAT_INCR(sctps_naglequeued);
13150 		nagle_applies = 1;
13151 	} else {
13152 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13153 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13154 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13155 		}
13156 		SCTP_STAT_INCR(sctps_naglesent);
13157 		nagle_applies = 0;
13158 	}
13159 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13160 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13161 		    nagle_applies, un_sent);
13162 		sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13163 		    stcb->asoc.total_flight,
13164 		    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13165 	}
13166 	if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
13167 		/* we can attempt to send too. */
13168 		if (hold_tcblock == 0) {
13169 			/*
13170 			 * If there is activity recv'ing sacks no need to
13171 			 * send
13172 			 */
13173 			if (SCTP_TCB_TRYLOCK(stcb)) {
13174 				sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13175 				hold_tcblock = 1;
13176 			}
13177 		} else {
13178 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13179 		}
13180 	} else if ((queue_only == 0) &&
13181 		    (stcb->asoc.peers_rwnd == 0) &&
13182 	    (stcb->asoc.total_flight == 0)) {
13183 		/* We get to have a probe outstanding */
13184 		if (hold_tcblock == 0) {
13185 			hold_tcblock = 1;
13186 			SCTP_TCB_LOCK(stcb);
13187 		}
13188 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13189 	} else if (some_on_control) {
13190 		int num_out, reason, frag_point;
13191 
13192 		/* Here we do control only */
13193 		if (hold_tcblock == 0) {
13194 			hold_tcblock = 1;
13195 			SCTP_TCB_LOCK(stcb);
13196 		}
13197 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
13198 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
13199 		    &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
13200 	}
13201 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13202 	    queue_only, stcb->asoc.peers_rwnd, un_sent,
13203 	    stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
13204 	    stcb->asoc.total_output_queue_size, error);
13205 
13206 out:
13207 out_unlocked:
13208 
13209 	if (local_soresv && stcb) {
13210 		atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen);
13211 	}
13212 	if (create_lock_applied) {
13213 		SCTP_ASOC_CREATE_UNLOCK(inp);
13214 	}
13215 	if ((stcb) && hold_tcblock) {
13216 		SCTP_TCB_UNLOCK(stcb);
13217 	}
13218 	if (stcb && free_cnt_applied) {
13219 		atomic_add_int(&stcb->asoc.refcnt, -1);
13220 	}
13221 #ifdef INVARIANTS
13222 	if (stcb) {
13223 		if (mtx_owned(&stcb->tcb_mtx)) {
13224 			panic("Leaving with tcb mtx owned?");
13225 		}
13226 		if (mtx_owned(&stcb->tcb_send_mtx)) {
13227 			panic("Leaving with tcb send mtx owned?");
13228 		}
13229 	}
13230 #endif
13231 #ifdef INVARIANTS
13232 	if (inp) {
13233 		sctp_validate_no_locks(inp);
13234 	} else {
13235 		SCTP_PRINTF("Warning - inp is NULL so cant validate locks\n");
13236 	}
13237 #endif
13238 	if (top) {
13239 		sctp_m_freem(top);
13240 	}
13241 	if (control) {
13242 		sctp_m_freem(control);
13243 	}
13244 	return (error);
13245 }
13246 
13247 
13248 /*
13249  * generate an AUTHentication chunk, if required
13250  */
13251 struct mbuf *
13252 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13253     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
13254     struct sctp_tcb *stcb, uint8_t chunk)
13255 {
13256 	struct mbuf *m_auth;
13257 	struct sctp_auth_chunk *auth;
13258 	int chunk_len;
13259 	struct mbuf *cn;
13260 
13261 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13262 	    (stcb == NULL))
13263 		return (m);
13264 
13265 	/* sysctl disabled auth? */
13266 	if (SCTP_BASE_SYSCTL(sctp_auth_disable))
13267 		return (m);
13268 
13269 	/* peer doesn't do auth... */
13270 	if (!stcb->asoc.peer_supports_auth) {
13271 		return (m);
13272 	}
13273 	/* does the requested chunk require auth? */
13274 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13275 		return (m);
13276 	}
13277 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_DONTWAIT, 1, MT_HEADER);
13278 	if (m_auth == NULL) {
13279 		/* no mbuf's */
13280 		return (m);
13281 	}
13282 	/* reserve some space if this will be the first mbuf */
13283 	if (m == NULL)
13284 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13285 	/* fill in the AUTH chunk details */
13286 	auth = mtod(m_auth, struct sctp_auth_chunk *);
13287 	bzero(auth, sizeof(*auth));
13288 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
13289 	auth->ch.chunk_flags = 0;
13290 	chunk_len = sizeof(*auth) +
13291 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13292 	auth->ch.chunk_length = htons(chunk_len);
13293 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13294 	/* key id and hmac digest will be computed and filled in upon send */
13295 
13296 	/* save the offset where the auth was inserted into the chain */
13297 	*offset = 0;
13298 	for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13299 		*offset += SCTP_BUF_LEN(cn);
13300 	}
13301 
13302 	/* update length and return pointer to the auth chunk */
13303 	SCTP_BUF_LEN(m_auth) = chunk_len;
13304 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13305 	if (auth_ret != NULL)
13306 		*auth_ret = auth;
13307 
13308 	return (m);
13309 }
13310 
13311 #ifdef INET6
13312 int
13313 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
13314 {
13315 	struct nd_prefix *pfx = NULL;
13316 	struct nd_pfxrouter *pfxrtr = NULL;
13317 	struct sockaddr_in6 gw6;
13318 
13319 	if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
13320 		return (0);
13321 
13322 	/* get prefix entry of address */
13323 	LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13324 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13325 			continue;
13326 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13327 		    &src6->sin6_addr, &pfx->ndpr_mask))
13328 			break;
13329 	}
13330 	/* no prefix entry in the prefix list */
13331 	if (pfx == NULL) {
13332 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13333 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13334 		return (0);
13335 	}
13336 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13337 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13338 
13339 	/* search installed gateway from prefix entry */
13340 	LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13341 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
13342 		gw6.sin6_family = AF_INET6;
13343 		gw6.sin6_len = sizeof(struct sockaddr_in6);
13344 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13345 		    sizeof(struct in6_addr));
13346 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13347 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13348 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13349 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13350 		if (sctp_cmpaddr((struct sockaddr *)&gw6,
13351 		    ro->ro_rt->rt_gateway)) {
13352 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13353 			return (1);
13354 		}
13355 	}
13356 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13357 	return (0);
13358 }
13359 
13360 #endif
13361 
13362 int
13363 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
13364 {
13365 #ifdef INET
13366 	struct sockaddr_in *sin, *mask;
13367 	struct ifaddr *ifa;
13368 	struct in_addr srcnetaddr, gwnetaddr;
13369 
13370 	if (ro == NULL || ro->ro_rt == NULL ||
13371 	    sifa->address.sa.sa_family != AF_INET) {
13372 		return (0);
13373 	}
13374 	ifa = (struct ifaddr *)sifa->ifa;
13375 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13376 	sin = (struct sockaddr_in *)&sifa->address.sin;
13377 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13378 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13379 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13380 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13381 
13382 	sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
13383 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13384 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13385 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13386 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13387 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13388 		return (1);
13389 	}
13390 #endif
13391 	return (0);
13392 }
13393