xref: /freebsd/sys/netinet/sctp_output.c (revision b28624fde638caadd4a89f50c9b7e7da0f98c4d2)
1 /*-
2  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * a) Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  *
10  * b) Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in
12  *   the documentation and/or other materials provided with the distribution.
13  *
14  * c) Neither the name of Cisco Systems, Inc. nor the names of its
15  *    contributors may be used to endorse or promote products derived
16  *    from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28  * THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 /* $KAME: sctp_output.c,v 1.46 2005/03/06 16:04:17 itojun Exp $	 */
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 
53 
54 
55 #define SCTP_MAX_GAPS_INARRAY 4
56 struct sack_track {
57 	uint8_t right_edge;	/* mergable on the right edge */
58 	uint8_t left_edge;	/* mergable on the left edge */
59 	uint8_t num_entries;
60 	uint8_t spare;
61 	struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
62 };
63 
64 struct sack_track sack_array[256] = {
65 	{0, 0, 0, 0,		/* 0x00 */
66 		{{0, 0},
67 		{0, 0},
68 		{0, 0},
69 		{0, 0}
70 		}
71 	},
72 	{1, 0, 1, 0,		/* 0x01 */
73 		{{0, 0},
74 		{0, 0},
75 		{0, 0},
76 		{0, 0}
77 		}
78 	},
79 	{0, 0, 1, 0,		/* 0x02 */
80 		{{1, 1},
81 		{0, 0},
82 		{0, 0},
83 		{0, 0}
84 		}
85 	},
86 	{1, 0, 1, 0,		/* 0x03 */
87 		{{0, 1},
88 		{0, 0},
89 		{0, 0},
90 		{0, 0}
91 		}
92 	},
93 	{0, 0, 1, 0,		/* 0x04 */
94 		{{2, 2},
95 		{0, 0},
96 		{0, 0},
97 		{0, 0}
98 		}
99 	},
100 	{1, 0, 2, 0,		/* 0x05 */
101 		{{0, 0},
102 		{2, 2},
103 		{0, 0},
104 		{0, 0}
105 		}
106 	},
107 	{0, 0, 1, 0,		/* 0x06 */
108 		{{1, 2},
109 		{0, 0},
110 		{0, 0},
111 		{0, 0}
112 		}
113 	},
114 	{1, 0, 1, 0,		/* 0x07 */
115 		{{0, 2},
116 		{0, 0},
117 		{0, 0},
118 		{0, 0}
119 		}
120 	},
121 	{0, 0, 1, 0,		/* 0x08 */
122 		{{3, 3},
123 		{0, 0},
124 		{0, 0},
125 		{0, 0}
126 		}
127 	},
128 	{1, 0, 2, 0,		/* 0x09 */
129 		{{0, 0},
130 		{3, 3},
131 		{0, 0},
132 		{0, 0}
133 		}
134 	},
135 	{0, 0, 2, 0,		/* 0x0a */
136 		{{1, 1},
137 		{3, 3},
138 		{0, 0},
139 		{0, 0}
140 		}
141 	},
142 	{1, 0, 2, 0,		/* 0x0b */
143 		{{0, 1},
144 		{3, 3},
145 		{0, 0},
146 		{0, 0}
147 		}
148 	},
149 	{0, 0, 1, 0,		/* 0x0c */
150 		{{2, 3},
151 		{0, 0},
152 		{0, 0},
153 		{0, 0}
154 		}
155 	},
156 	{1, 0, 2, 0,		/* 0x0d */
157 		{{0, 0},
158 		{2, 3},
159 		{0, 0},
160 		{0, 0}
161 		}
162 	},
163 	{0, 0, 1, 0,		/* 0x0e */
164 		{{1, 3},
165 		{0, 0},
166 		{0, 0},
167 		{0, 0}
168 		}
169 	},
170 	{1, 0, 1, 0,		/* 0x0f */
171 		{{0, 3},
172 		{0, 0},
173 		{0, 0},
174 		{0, 0}
175 		}
176 	},
177 	{0, 0, 1, 0,		/* 0x10 */
178 		{{4, 4},
179 		{0, 0},
180 		{0, 0},
181 		{0, 0}
182 		}
183 	},
184 	{1, 0, 2, 0,		/* 0x11 */
185 		{{0, 0},
186 		{4, 4},
187 		{0, 0},
188 		{0, 0}
189 		}
190 	},
191 	{0, 0, 2, 0,		/* 0x12 */
192 		{{1, 1},
193 		{4, 4},
194 		{0, 0},
195 		{0, 0}
196 		}
197 	},
198 	{1, 0, 2, 0,		/* 0x13 */
199 		{{0, 1},
200 		{4, 4},
201 		{0, 0},
202 		{0, 0}
203 		}
204 	},
205 	{0, 0, 2, 0,		/* 0x14 */
206 		{{2, 2},
207 		{4, 4},
208 		{0, 0},
209 		{0, 0}
210 		}
211 	},
212 	{1, 0, 3, 0,		/* 0x15 */
213 		{{0, 0},
214 		{2, 2},
215 		{4, 4},
216 		{0, 0}
217 		}
218 	},
219 	{0, 0, 2, 0,		/* 0x16 */
220 		{{1, 2},
221 		{4, 4},
222 		{0, 0},
223 		{0, 0}
224 		}
225 	},
226 	{1, 0, 2, 0,		/* 0x17 */
227 		{{0, 2},
228 		{4, 4},
229 		{0, 0},
230 		{0, 0}
231 		}
232 	},
233 	{0, 0, 1, 0,		/* 0x18 */
234 		{{3, 4},
235 		{0, 0},
236 		{0, 0},
237 		{0, 0}
238 		}
239 	},
240 	{1, 0, 2, 0,		/* 0x19 */
241 		{{0, 0},
242 		{3, 4},
243 		{0, 0},
244 		{0, 0}
245 		}
246 	},
247 	{0, 0, 2, 0,		/* 0x1a */
248 		{{1, 1},
249 		{3, 4},
250 		{0, 0},
251 		{0, 0}
252 		}
253 	},
254 	{1, 0, 2, 0,		/* 0x1b */
255 		{{0, 1},
256 		{3, 4},
257 		{0, 0},
258 		{0, 0}
259 		}
260 	},
261 	{0, 0, 1, 0,		/* 0x1c */
262 		{{2, 4},
263 		{0, 0},
264 		{0, 0},
265 		{0, 0}
266 		}
267 	},
268 	{1, 0, 2, 0,		/* 0x1d */
269 		{{0, 0},
270 		{2, 4},
271 		{0, 0},
272 		{0, 0}
273 		}
274 	},
275 	{0, 0, 1, 0,		/* 0x1e */
276 		{{1, 4},
277 		{0, 0},
278 		{0, 0},
279 		{0, 0}
280 		}
281 	},
282 	{1, 0, 1, 0,		/* 0x1f */
283 		{{0, 4},
284 		{0, 0},
285 		{0, 0},
286 		{0, 0}
287 		}
288 	},
289 	{0, 0, 1, 0,		/* 0x20 */
290 		{{5, 5},
291 		{0, 0},
292 		{0, 0},
293 		{0, 0}
294 		}
295 	},
296 	{1, 0, 2, 0,		/* 0x21 */
297 		{{0, 0},
298 		{5, 5},
299 		{0, 0},
300 		{0, 0}
301 		}
302 	},
303 	{0, 0, 2, 0,		/* 0x22 */
304 		{{1, 1},
305 		{5, 5},
306 		{0, 0},
307 		{0, 0}
308 		}
309 	},
310 	{1, 0, 2, 0,		/* 0x23 */
311 		{{0, 1},
312 		{5, 5},
313 		{0, 0},
314 		{0, 0}
315 		}
316 	},
317 	{0, 0, 2, 0,		/* 0x24 */
318 		{{2, 2},
319 		{5, 5},
320 		{0, 0},
321 		{0, 0}
322 		}
323 	},
324 	{1, 0, 3, 0,		/* 0x25 */
325 		{{0, 0},
326 		{2, 2},
327 		{5, 5},
328 		{0, 0}
329 		}
330 	},
331 	{0, 0, 2, 0,		/* 0x26 */
332 		{{1, 2},
333 		{5, 5},
334 		{0, 0},
335 		{0, 0}
336 		}
337 	},
338 	{1, 0, 2, 0,		/* 0x27 */
339 		{{0, 2},
340 		{5, 5},
341 		{0, 0},
342 		{0, 0}
343 		}
344 	},
345 	{0, 0, 2, 0,		/* 0x28 */
346 		{{3, 3},
347 		{5, 5},
348 		{0, 0},
349 		{0, 0}
350 		}
351 	},
352 	{1, 0, 3, 0,		/* 0x29 */
353 		{{0, 0},
354 		{3, 3},
355 		{5, 5},
356 		{0, 0}
357 		}
358 	},
359 	{0, 0, 3, 0,		/* 0x2a */
360 		{{1, 1},
361 		{3, 3},
362 		{5, 5},
363 		{0, 0}
364 		}
365 	},
366 	{1, 0, 3, 0,		/* 0x2b */
367 		{{0, 1},
368 		{3, 3},
369 		{5, 5},
370 		{0, 0}
371 		}
372 	},
373 	{0, 0, 2, 0,		/* 0x2c */
374 		{{2, 3},
375 		{5, 5},
376 		{0, 0},
377 		{0, 0}
378 		}
379 	},
380 	{1, 0, 3, 0,		/* 0x2d */
381 		{{0, 0},
382 		{2, 3},
383 		{5, 5},
384 		{0, 0}
385 		}
386 	},
387 	{0, 0, 2, 0,		/* 0x2e */
388 		{{1, 3},
389 		{5, 5},
390 		{0, 0},
391 		{0, 0}
392 		}
393 	},
394 	{1, 0, 2, 0,		/* 0x2f */
395 		{{0, 3},
396 		{5, 5},
397 		{0, 0},
398 		{0, 0}
399 		}
400 	},
401 	{0, 0, 1, 0,		/* 0x30 */
402 		{{4, 5},
403 		{0, 0},
404 		{0, 0},
405 		{0, 0}
406 		}
407 	},
408 	{1, 0, 2, 0,		/* 0x31 */
409 		{{0, 0},
410 		{4, 5},
411 		{0, 0},
412 		{0, 0}
413 		}
414 	},
415 	{0, 0, 2, 0,		/* 0x32 */
416 		{{1, 1},
417 		{4, 5},
418 		{0, 0},
419 		{0, 0}
420 		}
421 	},
422 	{1, 0, 2, 0,		/* 0x33 */
423 		{{0, 1},
424 		{4, 5},
425 		{0, 0},
426 		{0, 0}
427 		}
428 	},
429 	{0, 0, 2, 0,		/* 0x34 */
430 		{{2, 2},
431 		{4, 5},
432 		{0, 0},
433 		{0, 0}
434 		}
435 	},
436 	{1, 0, 3, 0,		/* 0x35 */
437 		{{0, 0},
438 		{2, 2},
439 		{4, 5},
440 		{0, 0}
441 		}
442 	},
443 	{0, 0, 2, 0,		/* 0x36 */
444 		{{1, 2},
445 		{4, 5},
446 		{0, 0},
447 		{0, 0}
448 		}
449 	},
450 	{1, 0, 2, 0,		/* 0x37 */
451 		{{0, 2},
452 		{4, 5},
453 		{0, 0},
454 		{0, 0}
455 		}
456 	},
457 	{0, 0, 1, 0,		/* 0x38 */
458 		{{3, 5},
459 		{0, 0},
460 		{0, 0},
461 		{0, 0}
462 		}
463 	},
464 	{1, 0, 2, 0,		/* 0x39 */
465 		{{0, 0},
466 		{3, 5},
467 		{0, 0},
468 		{0, 0}
469 		}
470 	},
471 	{0, 0, 2, 0,		/* 0x3a */
472 		{{1, 1},
473 		{3, 5},
474 		{0, 0},
475 		{0, 0}
476 		}
477 	},
478 	{1, 0, 2, 0,		/* 0x3b */
479 		{{0, 1},
480 		{3, 5},
481 		{0, 0},
482 		{0, 0}
483 		}
484 	},
485 	{0, 0, 1, 0,		/* 0x3c */
486 		{{2, 5},
487 		{0, 0},
488 		{0, 0},
489 		{0, 0}
490 		}
491 	},
492 	{1, 0, 2, 0,		/* 0x3d */
493 		{{0, 0},
494 		{2, 5},
495 		{0, 0},
496 		{0, 0}
497 		}
498 	},
499 	{0, 0, 1, 0,		/* 0x3e */
500 		{{1, 5},
501 		{0, 0},
502 		{0, 0},
503 		{0, 0}
504 		}
505 	},
506 	{1, 0, 1, 0,		/* 0x3f */
507 		{{0, 5},
508 		{0, 0},
509 		{0, 0},
510 		{0, 0}
511 		}
512 	},
513 	{0, 0, 1, 0,		/* 0x40 */
514 		{{6, 6},
515 		{0, 0},
516 		{0, 0},
517 		{0, 0}
518 		}
519 	},
520 	{1, 0, 2, 0,		/* 0x41 */
521 		{{0, 0},
522 		{6, 6},
523 		{0, 0},
524 		{0, 0}
525 		}
526 	},
527 	{0, 0, 2, 0,		/* 0x42 */
528 		{{1, 1},
529 		{6, 6},
530 		{0, 0},
531 		{0, 0}
532 		}
533 	},
534 	{1, 0, 2, 0,		/* 0x43 */
535 		{{0, 1},
536 		{6, 6},
537 		{0, 0},
538 		{0, 0}
539 		}
540 	},
541 	{0, 0, 2, 0,		/* 0x44 */
542 		{{2, 2},
543 		{6, 6},
544 		{0, 0},
545 		{0, 0}
546 		}
547 	},
548 	{1, 0, 3, 0,		/* 0x45 */
549 		{{0, 0},
550 		{2, 2},
551 		{6, 6},
552 		{0, 0}
553 		}
554 	},
555 	{0, 0, 2, 0,		/* 0x46 */
556 		{{1, 2},
557 		{6, 6},
558 		{0, 0},
559 		{0, 0}
560 		}
561 	},
562 	{1, 0, 2, 0,		/* 0x47 */
563 		{{0, 2},
564 		{6, 6},
565 		{0, 0},
566 		{0, 0}
567 		}
568 	},
569 	{0, 0, 2, 0,		/* 0x48 */
570 		{{3, 3},
571 		{6, 6},
572 		{0, 0},
573 		{0, 0}
574 		}
575 	},
576 	{1, 0, 3, 0,		/* 0x49 */
577 		{{0, 0},
578 		{3, 3},
579 		{6, 6},
580 		{0, 0}
581 		}
582 	},
583 	{0, 0, 3, 0,		/* 0x4a */
584 		{{1, 1},
585 		{3, 3},
586 		{6, 6},
587 		{0, 0}
588 		}
589 	},
590 	{1, 0, 3, 0,		/* 0x4b */
591 		{{0, 1},
592 		{3, 3},
593 		{6, 6},
594 		{0, 0}
595 		}
596 	},
597 	{0, 0, 2, 0,		/* 0x4c */
598 		{{2, 3},
599 		{6, 6},
600 		{0, 0},
601 		{0, 0}
602 		}
603 	},
604 	{1, 0, 3, 0,		/* 0x4d */
605 		{{0, 0},
606 		{2, 3},
607 		{6, 6},
608 		{0, 0}
609 		}
610 	},
611 	{0, 0, 2, 0,		/* 0x4e */
612 		{{1, 3},
613 		{6, 6},
614 		{0, 0},
615 		{0, 0}
616 		}
617 	},
618 	{1, 0, 2, 0,		/* 0x4f */
619 		{{0, 3},
620 		{6, 6},
621 		{0, 0},
622 		{0, 0}
623 		}
624 	},
625 	{0, 0, 2, 0,		/* 0x50 */
626 		{{4, 4},
627 		{6, 6},
628 		{0, 0},
629 		{0, 0}
630 		}
631 	},
632 	{1, 0, 3, 0,		/* 0x51 */
633 		{{0, 0},
634 		{4, 4},
635 		{6, 6},
636 		{0, 0}
637 		}
638 	},
639 	{0, 0, 3, 0,		/* 0x52 */
640 		{{1, 1},
641 		{4, 4},
642 		{6, 6},
643 		{0, 0}
644 		}
645 	},
646 	{1, 0, 3, 0,		/* 0x53 */
647 		{{0, 1},
648 		{4, 4},
649 		{6, 6},
650 		{0, 0}
651 		}
652 	},
653 	{0, 0, 3, 0,		/* 0x54 */
654 		{{2, 2},
655 		{4, 4},
656 		{6, 6},
657 		{0, 0}
658 		}
659 	},
660 	{1, 0, 4, 0,		/* 0x55 */
661 		{{0, 0},
662 		{2, 2},
663 		{4, 4},
664 		{6, 6}
665 		}
666 	},
667 	{0, 0, 3, 0,		/* 0x56 */
668 		{{1, 2},
669 		{4, 4},
670 		{6, 6},
671 		{0, 0}
672 		}
673 	},
674 	{1, 0, 3, 0,		/* 0x57 */
675 		{{0, 2},
676 		{4, 4},
677 		{6, 6},
678 		{0, 0}
679 		}
680 	},
681 	{0, 0, 2, 0,		/* 0x58 */
682 		{{3, 4},
683 		{6, 6},
684 		{0, 0},
685 		{0, 0}
686 		}
687 	},
688 	{1, 0, 3, 0,		/* 0x59 */
689 		{{0, 0},
690 		{3, 4},
691 		{6, 6},
692 		{0, 0}
693 		}
694 	},
695 	{0, 0, 3, 0,		/* 0x5a */
696 		{{1, 1},
697 		{3, 4},
698 		{6, 6},
699 		{0, 0}
700 		}
701 	},
702 	{1, 0, 3, 0,		/* 0x5b */
703 		{{0, 1},
704 		{3, 4},
705 		{6, 6},
706 		{0, 0}
707 		}
708 	},
709 	{0, 0, 2, 0,		/* 0x5c */
710 		{{2, 4},
711 		{6, 6},
712 		{0, 0},
713 		{0, 0}
714 		}
715 	},
716 	{1, 0, 3, 0,		/* 0x5d */
717 		{{0, 0},
718 		{2, 4},
719 		{6, 6},
720 		{0, 0}
721 		}
722 	},
723 	{0, 0, 2, 0,		/* 0x5e */
724 		{{1, 4},
725 		{6, 6},
726 		{0, 0},
727 		{0, 0}
728 		}
729 	},
730 	{1, 0, 2, 0,		/* 0x5f */
731 		{{0, 4},
732 		{6, 6},
733 		{0, 0},
734 		{0, 0}
735 		}
736 	},
737 	{0, 0, 1, 0,		/* 0x60 */
738 		{{5, 6},
739 		{0, 0},
740 		{0, 0},
741 		{0, 0}
742 		}
743 	},
744 	{1, 0, 2, 0,		/* 0x61 */
745 		{{0, 0},
746 		{5, 6},
747 		{0, 0},
748 		{0, 0}
749 		}
750 	},
751 	{0, 0, 2, 0,		/* 0x62 */
752 		{{1, 1},
753 		{5, 6},
754 		{0, 0},
755 		{0, 0}
756 		}
757 	},
758 	{1, 0, 2, 0,		/* 0x63 */
759 		{{0, 1},
760 		{5, 6},
761 		{0, 0},
762 		{0, 0}
763 		}
764 	},
765 	{0, 0, 2, 0,		/* 0x64 */
766 		{{2, 2},
767 		{5, 6},
768 		{0, 0},
769 		{0, 0}
770 		}
771 	},
772 	{1, 0, 3, 0,		/* 0x65 */
773 		{{0, 0},
774 		{2, 2},
775 		{5, 6},
776 		{0, 0}
777 		}
778 	},
779 	{0, 0, 2, 0,		/* 0x66 */
780 		{{1, 2},
781 		{5, 6},
782 		{0, 0},
783 		{0, 0}
784 		}
785 	},
786 	{1, 0, 2, 0,		/* 0x67 */
787 		{{0, 2},
788 		{5, 6},
789 		{0, 0},
790 		{0, 0}
791 		}
792 	},
793 	{0, 0, 2, 0,		/* 0x68 */
794 		{{3, 3},
795 		{5, 6},
796 		{0, 0},
797 		{0, 0}
798 		}
799 	},
800 	{1, 0, 3, 0,		/* 0x69 */
801 		{{0, 0},
802 		{3, 3},
803 		{5, 6},
804 		{0, 0}
805 		}
806 	},
807 	{0, 0, 3, 0,		/* 0x6a */
808 		{{1, 1},
809 		{3, 3},
810 		{5, 6},
811 		{0, 0}
812 		}
813 	},
814 	{1, 0, 3, 0,		/* 0x6b */
815 		{{0, 1},
816 		{3, 3},
817 		{5, 6},
818 		{0, 0}
819 		}
820 	},
821 	{0, 0, 2, 0,		/* 0x6c */
822 		{{2, 3},
823 		{5, 6},
824 		{0, 0},
825 		{0, 0}
826 		}
827 	},
828 	{1, 0, 3, 0,		/* 0x6d */
829 		{{0, 0},
830 		{2, 3},
831 		{5, 6},
832 		{0, 0}
833 		}
834 	},
835 	{0, 0, 2, 0,		/* 0x6e */
836 		{{1, 3},
837 		{5, 6},
838 		{0, 0},
839 		{0, 0}
840 		}
841 	},
842 	{1, 0, 2, 0,		/* 0x6f */
843 		{{0, 3},
844 		{5, 6},
845 		{0, 0},
846 		{0, 0}
847 		}
848 	},
849 	{0, 0, 1, 0,		/* 0x70 */
850 		{{4, 6},
851 		{0, 0},
852 		{0, 0},
853 		{0, 0}
854 		}
855 	},
856 	{1, 0, 2, 0,		/* 0x71 */
857 		{{0, 0},
858 		{4, 6},
859 		{0, 0},
860 		{0, 0}
861 		}
862 	},
863 	{0, 0, 2, 0,		/* 0x72 */
864 		{{1, 1},
865 		{4, 6},
866 		{0, 0},
867 		{0, 0}
868 		}
869 	},
870 	{1, 0, 2, 0,		/* 0x73 */
871 		{{0, 1},
872 		{4, 6},
873 		{0, 0},
874 		{0, 0}
875 		}
876 	},
877 	{0, 0, 2, 0,		/* 0x74 */
878 		{{2, 2},
879 		{4, 6},
880 		{0, 0},
881 		{0, 0}
882 		}
883 	},
884 	{1, 0, 3, 0,		/* 0x75 */
885 		{{0, 0},
886 		{2, 2},
887 		{4, 6},
888 		{0, 0}
889 		}
890 	},
891 	{0, 0, 2, 0,		/* 0x76 */
892 		{{1, 2},
893 		{4, 6},
894 		{0, 0},
895 		{0, 0}
896 		}
897 	},
898 	{1, 0, 2, 0,		/* 0x77 */
899 		{{0, 2},
900 		{4, 6},
901 		{0, 0},
902 		{0, 0}
903 		}
904 	},
905 	{0, 0, 1, 0,		/* 0x78 */
906 		{{3, 6},
907 		{0, 0},
908 		{0, 0},
909 		{0, 0}
910 		}
911 	},
912 	{1, 0, 2, 0,		/* 0x79 */
913 		{{0, 0},
914 		{3, 6},
915 		{0, 0},
916 		{0, 0}
917 		}
918 	},
919 	{0, 0, 2, 0,		/* 0x7a */
920 		{{1, 1},
921 		{3, 6},
922 		{0, 0},
923 		{0, 0}
924 		}
925 	},
926 	{1, 0, 2, 0,		/* 0x7b */
927 		{{0, 1},
928 		{3, 6},
929 		{0, 0},
930 		{0, 0}
931 		}
932 	},
933 	{0, 0, 1, 0,		/* 0x7c */
934 		{{2, 6},
935 		{0, 0},
936 		{0, 0},
937 		{0, 0}
938 		}
939 	},
940 	{1, 0, 2, 0,		/* 0x7d */
941 		{{0, 0},
942 		{2, 6},
943 		{0, 0},
944 		{0, 0}
945 		}
946 	},
947 	{0, 0, 1, 0,		/* 0x7e */
948 		{{1, 6},
949 		{0, 0},
950 		{0, 0},
951 		{0, 0}
952 		}
953 	},
954 	{1, 0, 1, 0,		/* 0x7f */
955 		{{0, 6},
956 		{0, 0},
957 		{0, 0},
958 		{0, 0}
959 		}
960 	},
961 	{0, 1, 1, 0,		/* 0x80 */
962 		{{7, 7},
963 		{0, 0},
964 		{0, 0},
965 		{0, 0}
966 		}
967 	},
968 	{1, 1, 2, 0,		/* 0x81 */
969 		{{0, 0},
970 		{7, 7},
971 		{0, 0},
972 		{0, 0}
973 		}
974 	},
975 	{0, 1, 2, 0,		/* 0x82 */
976 		{{1, 1},
977 		{7, 7},
978 		{0, 0},
979 		{0, 0}
980 		}
981 	},
982 	{1, 1, 2, 0,		/* 0x83 */
983 		{{0, 1},
984 		{7, 7},
985 		{0, 0},
986 		{0, 0}
987 		}
988 	},
989 	{0, 1, 2, 0,		/* 0x84 */
990 		{{2, 2},
991 		{7, 7},
992 		{0, 0},
993 		{0, 0}
994 		}
995 	},
996 	{1, 1, 3, 0,		/* 0x85 */
997 		{{0, 0},
998 		{2, 2},
999 		{7, 7},
1000 		{0, 0}
1001 		}
1002 	},
1003 	{0, 1, 2, 0,		/* 0x86 */
1004 		{{1, 2},
1005 		{7, 7},
1006 		{0, 0},
1007 		{0, 0}
1008 		}
1009 	},
1010 	{1, 1, 2, 0,		/* 0x87 */
1011 		{{0, 2},
1012 		{7, 7},
1013 		{0, 0},
1014 		{0, 0}
1015 		}
1016 	},
1017 	{0, 1, 2, 0,		/* 0x88 */
1018 		{{3, 3},
1019 		{7, 7},
1020 		{0, 0},
1021 		{0, 0}
1022 		}
1023 	},
1024 	{1, 1, 3, 0,		/* 0x89 */
1025 		{{0, 0},
1026 		{3, 3},
1027 		{7, 7},
1028 		{0, 0}
1029 		}
1030 	},
1031 	{0, 1, 3, 0,		/* 0x8a */
1032 		{{1, 1},
1033 		{3, 3},
1034 		{7, 7},
1035 		{0, 0}
1036 		}
1037 	},
1038 	{1, 1, 3, 0,		/* 0x8b */
1039 		{{0, 1},
1040 		{3, 3},
1041 		{7, 7},
1042 		{0, 0}
1043 		}
1044 	},
1045 	{0, 1, 2, 0,		/* 0x8c */
1046 		{{2, 3},
1047 		{7, 7},
1048 		{0, 0},
1049 		{0, 0}
1050 		}
1051 	},
1052 	{1, 1, 3, 0,		/* 0x8d */
1053 		{{0, 0},
1054 		{2, 3},
1055 		{7, 7},
1056 		{0, 0}
1057 		}
1058 	},
1059 	{0, 1, 2, 0,		/* 0x8e */
1060 		{{1, 3},
1061 		{7, 7},
1062 		{0, 0},
1063 		{0, 0}
1064 		}
1065 	},
1066 	{1, 1, 2, 0,		/* 0x8f */
1067 		{{0, 3},
1068 		{7, 7},
1069 		{0, 0},
1070 		{0, 0}
1071 		}
1072 	},
1073 	{0, 1, 2, 0,		/* 0x90 */
1074 		{{4, 4},
1075 		{7, 7},
1076 		{0, 0},
1077 		{0, 0}
1078 		}
1079 	},
1080 	{1, 1, 3, 0,		/* 0x91 */
1081 		{{0, 0},
1082 		{4, 4},
1083 		{7, 7},
1084 		{0, 0}
1085 		}
1086 	},
1087 	{0, 1, 3, 0,		/* 0x92 */
1088 		{{1, 1},
1089 		{4, 4},
1090 		{7, 7},
1091 		{0, 0}
1092 		}
1093 	},
1094 	{1, 1, 3, 0,		/* 0x93 */
1095 		{{0, 1},
1096 		{4, 4},
1097 		{7, 7},
1098 		{0, 0}
1099 		}
1100 	},
1101 	{0, 1, 3, 0,		/* 0x94 */
1102 		{{2, 2},
1103 		{4, 4},
1104 		{7, 7},
1105 		{0, 0}
1106 		}
1107 	},
1108 	{1, 1, 4, 0,		/* 0x95 */
1109 		{{0, 0},
1110 		{2, 2},
1111 		{4, 4},
1112 		{7, 7}
1113 		}
1114 	},
1115 	{0, 1, 3, 0,		/* 0x96 */
1116 		{{1, 2},
1117 		{4, 4},
1118 		{7, 7},
1119 		{0, 0}
1120 		}
1121 	},
1122 	{1, 1, 3, 0,		/* 0x97 */
1123 		{{0, 2},
1124 		{4, 4},
1125 		{7, 7},
1126 		{0, 0}
1127 		}
1128 	},
1129 	{0, 1, 2, 0,		/* 0x98 */
1130 		{{3, 4},
1131 		{7, 7},
1132 		{0, 0},
1133 		{0, 0}
1134 		}
1135 	},
1136 	{1, 1, 3, 0,		/* 0x99 */
1137 		{{0, 0},
1138 		{3, 4},
1139 		{7, 7},
1140 		{0, 0}
1141 		}
1142 	},
1143 	{0, 1, 3, 0,		/* 0x9a */
1144 		{{1, 1},
1145 		{3, 4},
1146 		{7, 7},
1147 		{0, 0}
1148 		}
1149 	},
1150 	{1, 1, 3, 0,		/* 0x9b */
1151 		{{0, 1},
1152 		{3, 4},
1153 		{7, 7},
1154 		{0, 0}
1155 		}
1156 	},
1157 	{0, 1, 2, 0,		/* 0x9c */
1158 		{{2, 4},
1159 		{7, 7},
1160 		{0, 0},
1161 		{0, 0}
1162 		}
1163 	},
1164 	{1, 1, 3, 0,		/* 0x9d */
1165 		{{0, 0},
1166 		{2, 4},
1167 		{7, 7},
1168 		{0, 0}
1169 		}
1170 	},
1171 	{0, 1, 2, 0,		/* 0x9e */
1172 		{{1, 4},
1173 		{7, 7},
1174 		{0, 0},
1175 		{0, 0}
1176 		}
1177 	},
1178 	{1, 1, 2, 0,		/* 0x9f */
1179 		{{0, 4},
1180 		{7, 7},
1181 		{0, 0},
1182 		{0, 0}
1183 		}
1184 	},
1185 	{0, 1, 2, 0,		/* 0xa0 */
1186 		{{5, 5},
1187 		{7, 7},
1188 		{0, 0},
1189 		{0, 0}
1190 		}
1191 	},
1192 	{1, 1, 3, 0,		/* 0xa1 */
1193 		{{0, 0},
1194 		{5, 5},
1195 		{7, 7},
1196 		{0, 0}
1197 		}
1198 	},
1199 	{0, 1, 3, 0,		/* 0xa2 */
1200 		{{1, 1},
1201 		{5, 5},
1202 		{7, 7},
1203 		{0, 0}
1204 		}
1205 	},
1206 	{1, 1, 3, 0,		/* 0xa3 */
1207 		{{0, 1},
1208 		{5, 5},
1209 		{7, 7},
1210 		{0, 0}
1211 		}
1212 	},
1213 	{0, 1, 3, 0,		/* 0xa4 */
1214 		{{2, 2},
1215 		{5, 5},
1216 		{7, 7},
1217 		{0, 0}
1218 		}
1219 	},
1220 	{1, 1, 4, 0,		/* 0xa5 */
1221 		{{0, 0},
1222 		{2, 2},
1223 		{5, 5},
1224 		{7, 7}
1225 		}
1226 	},
1227 	{0, 1, 3, 0,		/* 0xa6 */
1228 		{{1, 2},
1229 		{5, 5},
1230 		{7, 7},
1231 		{0, 0}
1232 		}
1233 	},
1234 	{1, 1, 3, 0,		/* 0xa7 */
1235 		{{0, 2},
1236 		{5, 5},
1237 		{7, 7},
1238 		{0, 0}
1239 		}
1240 	},
1241 	{0, 1, 3, 0,		/* 0xa8 */
1242 		{{3, 3},
1243 		{5, 5},
1244 		{7, 7},
1245 		{0, 0}
1246 		}
1247 	},
1248 	{1, 1, 4, 0,		/* 0xa9 */
1249 		{{0, 0},
1250 		{3, 3},
1251 		{5, 5},
1252 		{7, 7}
1253 		}
1254 	},
1255 	{0, 1, 4, 0,		/* 0xaa */
1256 		{{1, 1},
1257 		{3, 3},
1258 		{5, 5},
1259 		{7, 7}
1260 		}
1261 	},
1262 	{1, 1, 4, 0,		/* 0xab */
1263 		{{0, 1},
1264 		{3, 3},
1265 		{5, 5},
1266 		{7, 7}
1267 		}
1268 	},
1269 	{0, 1, 3, 0,		/* 0xac */
1270 		{{2, 3},
1271 		{5, 5},
1272 		{7, 7},
1273 		{0, 0}
1274 		}
1275 	},
1276 	{1, 1, 4, 0,		/* 0xad */
1277 		{{0, 0},
1278 		{2, 3},
1279 		{5, 5},
1280 		{7, 7}
1281 		}
1282 	},
1283 	{0, 1, 3, 0,		/* 0xae */
1284 		{{1, 3},
1285 		{5, 5},
1286 		{7, 7},
1287 		{0, 0}
1288 		}
1289 	},
1290 	{1, 1, 3, 0,		/* 0xaf */
1291 		{{0, 3},
1292 		{5, 5},
1293 		{7, 7},
1294 		{0, 0}
1295 		}
1296 	},
1297 	{0, 1, 2, 0,		/* 0xb0 */
1298 		{{4, 5},
1299 		{7, 7},
1300 		{0, 0},
1301 		{0, 0}
1302 		}
1303 	},
1304 	{1, 1, 3, 0,		/* 0xb1 */
1305 		{{0, 0},
1306 		{4, 5},
1307 		{7, 7},
1308 		{0, 0}
1309 		}
1310 	},
1311 	{0, 1, 3, 0,		/* 0xb2 */
1312 		{{1, 1},
1313 		{4, 5},
1314 		{7, 7},
1315 		{0, 0}
1316 		}
1317 	},
1318 	{1, 1, 3, 0,		/* 0xb3 */
1319 		{{0, 1},
1320 		{4, 5},
1321 		{7, 7},
1322 		{0, 0}
1323 		}
1324 	},
1325 	{0, 1, 3, 0,		/* 0xb4 */
1326 		{{2, 2},
1327 		{4, 5},
1328 		{7, 7},
1329 		{0, 0}
1330 		}
1331 	},
1332 	{1, 1, 4, 0,		/* 0xb5 */
1333 		{{0, 0},
1334 		{2, 2},
1335 		{4, 5},
1336 		{7, 7}
1337 		}
1338 	},
1339 	{0, 1, 3, 0,		/* 0xb6 */
1340 		{{1, 2},
1341 		{4, 5},
1342 		{7, 7},
1343 		{0, 0}
1344 		}
1345 	},
1346 	{1, 1, 3, 0,		/* 0xb7 */
1347 		{{0, 2},
1348 		{4, 5},
1349 		{7, 7},
1350 		{0, 0}
1351 		}
1352 	},
1353 	{0, 1, 2, 0,		/* 0xb8 */
1354 		{{3, 5},
1355 		{7, 7},
1356 		{0, 0},
1357 		{0, 0}
1358 		}
1359 	},
1360 	{1, 1, 3, 0,		/* 0xb9 */
1361 		{{0, 0},
1362 		{3, 5},
1363 		{7, 7},
1364 		{0, 0}
1365 		}
1366 	},
1367 	{0, 1, 3, 0,		/* 0xba */
1368 		{{1, 1},
1369 		{3, 5},
1370 		{7, 7},
1371 		{0, 0}
1372 		}
1373 	},
1374 	{1, 1, 3, 0,		/* 0xbb */
1375 		{{0, 1},
1376 		{3, 5},
1377 		{7, 7},
1378 		{0, 0}
1379 		}
1380 	},
1381 	{0, 1, 2, 0,		/* 0xbc */
1382 		{{2, 5},
1383 		{7, 7},
1384 		{0, 0},
1385 		{0, 0}
1386 		}
1387 	},
1388 	{1, 1, 3, 0,		/* 0xbd */
1389 		{{0, 0},
1390 		{2, 5},
1391 		{7, 7},
1392 		{0, 0}
1393 		}
1394 	},
1395 	{0, 1, 2, 0,		/* 0xbe */
1396 		{{1, 5},
1397 		{7, 7},
1398 		{0, 0},
1399 		{0, 0}
1400 		}
1401 	},
1402 	{1, 1, 2, 0,		/* 0xbf */
1403 		{{0, 5},
1404 		{7, 7},
1405 		{0, 0},
1406 		{0, 0}
1407 		}
1408 	},
1409 	{0, 1, 1, 0,		/* 0xc0 */
1410 		{{6, 7},
1411 		{0, 0},
1412 		{0, 0},
1413 		{0, 0}
1414 		}
1415 	},
1416 	{1, 1, 2, 0,		/* 0xc1 */
1417 		{{0, 0},
1418 		{6, 7},
1419 		{0, 0},
1420 		{0, 0}
1421 		}
1422 	},
1423 	{0, 1, 2, 0,		/* 0xc2 */
1424 		{{1, 1},
1425 		{6, 7},
1426 		{0, 0},
1427 		{0, 0}
1428 		}
1429 	},
1430 	{1, 1, 2, 0,		/* 0xc3 */
1431 		{{0, 1},
1432 		{6, 7},
1433 		{0, 0},
1434 		{0, 0}
1435 		}
1436 	},
1437 	{0, 1, 2, 0,		/* 0xc4 */
1438 		{{2, 2},
1439 		{6, 7},
1440 		{0, 0},
1441 		{0, 0}
1442 		}
1443 	},
1444 	{1, 1, 3, 0,		/* 0xc5 */
1445 		{{0, 0},
1446 		{2, 2},
1447 		{6, 7},
1448 		{0, 0}
1449 		}
1450 	},
1451 	{0, 1, 2, 0,		/* 0xc6 */
1452 		{{1, 2},
1453 		{6, 7},
1454 		{0, 0},
1455 		{0, 0}
1456 		}
1457 	},
1458 	{1, 1, 2, 0,		/* 0xc7 */
1459 		{{0, 2},
1460 		{6, 7},
1461 		{0, 0},
1462 		{0, 0}
1463 		}
1464 	},
1465 	{0, 1, 2, 0,		/* 0xc8 */
1466 		{{3, 3},
1467 		{6, 7},
1468 		{0, 0},
1469 		{0, 0}
1470 		}
1471 	},
1472 	{1, 1, 3, 0,		/* 0xc9 */
1473 		{{0, 0},
1474 		{3, 3},
1475 		{6, 7},
1476 		{0, 0}
1477 		}
1478 	},
1479 	{0, 1, 3, 0,		/* 0xca */
1480 		{{1, 1},
1481 		{3, 3},
1482 		{6, 7},
1483 		{0, 0}
1484 		}
1485 	},
1486 	{1, 1, 3, 0,		/* 0xcb */
1487 		{{0, 1},
1488 		{3, 3},
1489 		{6, 7},
1490 		{0, 0}
1491 		}
1492 	},
1493 	{0, 1, 2, 0,		/* 0xcc */
1494 		{{2, 3},
1495 		{6, 7},
1496 		{0, 0},
1497 		{0, 0}
1498 		}
1499 	},
1500 	{1, 1, 3, 0,		/* 0xcd */
1501 		{{0, 0},
1502 		{2, 3},
1503 		{6, 7},
1504 		{0, 0}
1505 		}
1506 	},
1507 	{0, 1, 2, 0,		/* 0xce */
1508 		{{1, 3},
1509 		{6, 7},
1510 		{0, 0},
1511 		{0, 0}
1512 		}
1513 	},
1514 	{1, 1, 2, 0,		/* 0xcf */
1515 		{{0, 3},
1516 		{6, 7},
1517 		{0, 0},
1518 		{0, 0}
1519 		}
1520 	},
1521 	{0, 1, 2, 0,		/* 0xd0 */
1522 		{{4, 4},
1523 		{6, 7},
1524 		{0, 0},
1525 		{0, 0}
1526 		}
1527 	},
1528 	{1, 1, 3, 0,		/* 0xd1 */
1529 		{{0, 0},
1530 		{4, 4},
1531 		{6, 7},
1532 		{0, 0}
1533 		}
1534 	},
1535 	{0, 1, 3, 0,		/* 0xd2 */
1536 		{{1, 1},
1537 		{4, 4},
1538 		{6, 7},
1539 		{0, 0}
1540 		}
1541 	},
1542 	{1, 1, 3, 0,		/* 0xd3 */
1543 		{{0, 1},
1544 		{4, 4},
1545 		{6, 7},
1546 		{0, 0}
1547 		}
1548 	},
1549 	{0, 1, 3, 0,		/* 0xd4 */
1550 		{{2, 2},
1551 		{4, 4},
1552 		{6, 7},
1553 		{0, 0}
1554 		}
1555 	},
1556 	{1, 1, 4, 0,		/* 0xd5 */
1557 		{{0, 0},
1558 		{2, 2},
1559 		{4, 4},
1560 		{6, 7}
1561 		}
1562 	},
1563 	{0, 1, 3, 0,		/* 0xd6 */
1564 		{{1, 2},
1565 		{4, 4},
1566 		{6, 7},
1567 		{0, 0}
1568 		}
1569 	},
1570 	{1, 1, 3, 0,		/* 0xd7 */
1571 		{{0, 2},
1572 		{4, 4},
1573 		{6, 7},
1574 		{0, 0}
1575 		}
1576 	},
1577 	{0, 1, 2, 0,		/* 0xd8 */
1578 		{{3, 4},
1579 		{6, 7},
1580 		{0, 0},
1581 		{0, 0}
1582 		}
1583 	},
1584 	{1, 1, 3, 0,		/* 0xd9 */
1585 		{{0, 0},
1586 		{3, 4},
1587 		{6, 7},
1588 		{0, 0}
1589 		}
1590 	},
1591 	{0, 1, 3, 0,		/* 0xda */
1592 		{{1, 1},
1593 		{3, 4},
1594 		{6, 7},
1595 		{0, 0}
1596 		}
1597 	},
1598 	{1, 1, 3, 0,		/* 0xdb */
1599 		{{0, 1},
1600 		{3, 4},
1601 		{6, 7},
1602 		{0, 0}
1603 		}
1604 	},
1605 	{0, 1, 2, 0,		/* 0xdc */
1606 		{{2, 4},
1607 		{6, 7},
1608 		{0, 0},
1609 		{0, 0}
1610 		}
1611 	},
1612 	{1, 1, 3, 0,		/* 0xdd */
1613 		{{0, 0},
1614 		{2, 4},
1615 		{6, 7},
1616 		{0, 0}
1617 		}
1618 	},
1619 	{0, 1, 2, 0,		/* 0xde */
1620 		{{1, 4},
1621 		{6, 7},
1622 		{0, 0},
1623 		{0, 0}
1624 		}
1625 	},
1626 	{1, 1, 2, 0,		/* 0xdf */
1627 		{{0, 4},
1628 		{6, 7},
1629 		{0, 0},
1630 		{0, 0}
1631 		}
1632 	},
1633 	{0, 1, 1, 0,		/* 0xe0 */
1634 		{{5, 7},
1635 		{0, 0},
1636 		{0, 0},
1637 		{0, 0}
1638 		}
1639 	},
1640 	{1, 1, 2, 0,		/* 0xe1 */
1641 		{{0, 0},
1642 		{5, 7},
1643 		{0, 0},
1644 		{0, 0}
1645 		}
1646 	},
1647 	{0, 1, 2, 0,		/* 0xe2 */
1648 		{{1, 1},
1649 		{5, 7},
1650 		{0, 0},
1651 		{0, 0}
1652 		}
1653 	},
1654 	{1, 1, 2, 0,		/* 0xe3 */
1655 		{{0, 1},
1656 		{5, 7},
1657 		{0, 0},
1658 		{0, 0}
1659 		}
1660 	},
1661 	{0, 1, 2, 0,		/* 0xe4 */
1662 		{{2, 2},
1663 		{5, 7},
1664 		{0, 0},
1665 		{0, 0}
1666 		}
1667 	},
1668 	{1, 1, 3, 0,		/* 0xe5 */
1669 		{{0, 0},
1670 		{2, 2},
1671 		{5, 7},
1672 		{0, 0}
1673 		}
1674 	},
1675 	{0, 1, 2, 0,		/* 0xe6 */
1676 		{{1, 2},
1677 		{5, 7},
1678 		{0, 0},
1679 		{0, 0}
1680 		}
1681 	},
1682 	{1, 1, 2, 0,		/* 0xe7 */
1683 		{{0, 2},
1684 		{5, 7},
1685 		{0, 0},
1686 		{0, 0}
1687 		}
1688 	},
1689 	{0, 1, 2, 0,		/* 0xe8 */
1690 		{{3, 3},
1691 		{5, 7},
1692 		{0, 0},
1693 		{0, 0}
1694 		}
1695 	},
1696 	{1, 1, 3, 0,		/* 0xe9 */
1697 		{{0, 0},
1698 		{3, 3},
1699 		{5, 7},
1700 		{0, 0}
1701 		}
1702 	},
1703 	{0, 1, 3, 0,		/* 0xea */
1704 		{{1, 1},
1705 		{3, 3},
1706 		{5, 7},
1707 		{0, 0}
1708 		}
1709 	},
1710 	{1, 1, 3, 0,		/* 0xeb */
1711 		{{0, 1},
1712 		{3, 3},
1713 		{5, 7},
1714 		{0, 0}
1715 		}
1716 	},
1717 	{0, 1, 2, 0,		/* 0xec */
1718 		{{2, 3},
1719 		{5, 7},
1720 		{0, 0},
1721 		{0, 0}
1722 		}
1723 	},
1724 	{1, 1, 3, 0,		/* 0xed */
1725 		{{0, 0},
1726 		{2, 3},
1727 		{5, 7},
1728 		{0, 0}
1729 		}
1730 	},
1731 	{0, 1, 2, 0,		/* 0xee */
1732 		{{1, 3},
1733 		{5, 7},
1734 		{0, 0},
1735 		{0, 0}
1736 		}
1737 	},
1738 	{1, 1, 2, 0,		/* 0xef */
1739 		{{0, 3},
1740 		{5, 7},
1741 		{0, 0},
1742 		{0, 0}
1743 		}
1744 	},
1745 	{0, 1, 1, 0,		/* 0xf0 */
1746 		{{4, 7},
1747 		{0, 0},
1748 		{0, 0},
1749 		{0, 0}
1750 		}
1751 	},
1752 	{1, 1, 2, 0,		/* 0xf1 */
1753 		{{0, 0},
1754 		{4, 7},
1755 		{0, 0},
1756 		{0, 0}
1757 		}
1758 	},
1759 	{0, 1, 2, 0,		/* 0xf2 */
1760 		{{1, 1},
1761 		{4, 7},
1762 		{0, 0},
1763 		{0, 0}
1764 		}
1765 	},
1766 	{1, 1, 2, 0,		/* 0xf3 */
1767 		{{0, 1},
1768 		{4, 7},
1769 		{0, 0},
1770 		{0, 0}
1771 		}
1772 	},
1773 	{0, 1, 2, 0,		/* 0xf4 */
1774 		{{2, 2},
1775 		{4, 7},
1776 		{0, 0},
1777 		{0, 0}
1778 		}
1779 	},
1780 	{1, 1, 3, 0,		/* 0xf5 */
1781 		{{0, 0},
1782 		{2, 2},
1783 		{4, 7},
1784 		{0, 0}
1785 		}
1786 	},
1787 	{0, 1, 2, 0,		/* 0xf6 */
1788 		{{1, 2},
1789 		{4, 7},
1790 		{0, 0},
1791 		{0, 0}
1792 		}
1793 	},
1794 	{1, 1, 2, 0,		/* 0xf7 */
1795 		{{0, 2},
1796 		{4, 7},
1797 		{0, 0},
1798 		{0, 0}
1799 		}
1800 	},
1801 	{0, 1, 1, 0,		/* 0xf8 */
1802 		{{3, 7},
1803 		{0, 0},
1804 		{0, 0},
1805 		{0, 0}
1806 		}
1807 	},
1808 	{1, 1, 2, 0,		/* 0xf9 */
1809 		{{0, 0},
1810 		{3, 7},
1811 		{0, 0},
1812 		{0, 0}
1813 		}
1814 	},
1815 	{0, 1, 2, 0,		/* 0xfa */
1816 		{{1, 1},
1817 		{3, 7},
1818 		{0, 0},
1819 		{0, 0}
1820 		}
1821 	},
1822 	{1, 1, 2, 0,		/* 0xfb */
1823 		{{0, 1},
1824 		{3, 7},
1825 		{0, 0},
1826 		{0, 0}
1827 		}
1828 	},
1829 	{0, 1, 1, 0,		/* 0xfc */
1830 		{{2, 7},
1831 		{0, 0},
1832 		{0, 0},
1833 		{0, 0}
1834 		}
1835 	},
1836 	{1, 1, 2, 0,		/* 0xfd */
1837 		{{0, 0},
1838 		{2, 7},
1839 		{0, 0},
1840 		{0, 0}
1841 		}
1842 	},
1843 	{0, 1, 1, 0,		/* 0xfe */
1844 		{{1, 7},
1845 		{0, 0},
1846 		{0, 0},
1847 		{0, 0}
1848 		}
1849 	},
1850 	{1, 1, 1, 0,		/* 0xff */
1851 		{{0, 7},
1852 		{0, 0},
1853 		{0, 0},
1854 		{0, 0}
1855 		}
1856 	}
1857 };
1858 
1859 
1860 int
1861 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1862     int ipv4_addr_legal,
1863     int ipv6_addr_legal,
1864     int loopback_scope,
1865     int ipv4_local_scope,
1866     int local_scope,
1867     int site_scope,
1868     int do_update)
1869 {
1870 	if ((loopback_scope == 0) &&
1871 	    (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1872 		/*
1873 		 * skip loopback if not in scope *
1874 		 */
1875 		return (0);
1876 	}
1877 	if ((ifa->address.sa.sa_family == AF_INET) && ipv4_addr_legal) {
1878 		struct sockaddr_in *sin;
1879 
1880 		sin = (struct sockaddr_in *)&ifa->address.sin;
1881 		if (sin->sin_addr.s_addr == 0) {
1882 			/* not in scope , unspecified */
1883 			return (0);
1884 		}
1885 		if ((ipv4_local_scope == 0) &&
1886 		    (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1887 			/* private address not in scope */
1888 			return (0);
1889 		}
1890 	} else if ((ifa->address.sa.sa_family == AF_INET6) && ipv6_addr_legal) {
1891 		struct sockaddr_in6 *sin6;
1892 
1893 		/*
1894 		 * Must update the flags,  bummer, which means any IFA locks
1895 		 * must now be applied HERE <->
1896 		 */
1897 		if (do_update) {
1898 			sctp_gather_internal_ifa_flags(ifa);
1899 		}
1900 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1901 			return (0);
1902 		}
1903 		/* ok to use deprecated addresses? */
1904 		sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1905 		if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1906 			/* skip unspecifed addresses */
1907 			return (0);
1908 		}
1909 		if (		/* (local_scope == 0) && */
1910 		    (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1911 			return (0);
1912 		}
1913 		if ((site_scope == 0) &&
1914 		    (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1915 			return (0);
1916 		}
1917 	} else {
1918 		return (0);
1919 	}
1920 	return (1);
1921 }
1922 
1923 static struct mbuf *
1924 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa)
1925 {
1926 	struct sctp_paramhdr *parmh;
1927 	struct mbuf *mret;
1928 	int len;
1929 
1930 	if (ifa->address.sa.sa_family == AF_INET) {
1931 		len = sizeof(struct sctp_ipv4addr_param);
1932 	} else if (ifa->address.sa.sa_family == AF_INET6) {
1933 		len = sizeof(struct sctp_ipv6addr_param);
1934 	} else {
1935 		/* unknown type */
1936 		return (m);
1937 	}
1938 	if (M_TRAILINGSPACE(m) >= len) {
1939 		/* easy side we just drop it on the end */
1940 		parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1941 		mret = m;
1942 	} else {
1943 		/* Need more space */
1944 		mret = m;
1945 		while (SCTP_BUF_NEXT(mret) != NULL) {
1946 			mret = SCTP_BUF_NEXT(mret);
1947 		}
1948 		SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(len, 0, M_DONTWAIT, 1, MT_DATA);
1949 		if (SCTP_BUF_NEXT(mret) == NULL) {
1950 			/* We are hosed, can't add more addresses */
1951 			return (m);
1952 		}
1953 		mret = SCTP_BUF_NEXT(mret);
1954 		parmh = mtod(mret, struct sctp_paramhdr *);
1955 	}
1956 	/* now add the parameter */
1957 	if (ifa->address.sa.sa_family == AF_INET) {
1958 		struct sctp_ipv4addr_param *ipv4p;
1959 		struct sockaddr_in *sin;
1960 
1961 		sin = (struct sockaddr_in *)&ifa->address.sin;
1962 		ipv4p = (struct sctp_ipv4addr_param *)parmh;
1963 		parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1964 		parmh->param_length = htons(len);
1965 		ipv4p->addr = sin->sin_addr.s_addr;
1966 		SCTP_BUF_LEN(mret) += len;
1967 	} else if (ifa->address.sa.sa_family == AF_INET6) {
1968 		struct sctp_ipv6addr_param *ipv6p;
1969 		struct sockaddr_in6 *sin6;
1970 
1971 		sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1972 		ipv6p = (struct sctp_ipv6addr_param *)parmh;
1973 		parmh->param_type = htons(SCTP_IPV6_ADDRESS);
1974 		parmh->param_length = htons(len);
1975 		memcpy(ipv6p->addr, &sin6->sin6_addr,
1976 		    sizeof(ipv6p->addr));
1977 		/* clear embedded scope in the address */
1978 		in6_clearscope((struct in6_addr *)ipv6p->addr);
1979 		SCTP_BUF_LEN(mret) += len;
1980 	} else {
1981 		return (m);
1982 	}
1983 	return (mret);
1984 }
1985 
1986 
1987 struct mbuf *
1988 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_scoping *scope,
1989     struct mbuf *m_at, int cnt_inits_to)
1990 {
1991 	struct sctp_vrf *vrf = NULL;
1992 	int cnt, limit_out = 0, total_count;
1993 	uint32_t vrf_id;
1994 
1995 	vrf_id = inp->def_vrf_id;
1996 	SCTP_IPI_ADDR_LOCK();
1997 	vrf = sctp_find_vrf(vrf_id);
1998 	if (vrf == NULL) {
1999 		SCTP_IPI_ADDR_UNLOCK();
2000 		return (m_at);
2001 	}
2002 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2003 		struct sctp_ifa *sctp_ifap;
2004 		struct sctp_ifn *sctp_ifnp;
2005 
2006 		cnt = cnt_inits_to;
2007 		if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2008 			limit_out = 1;
2009 			cnt = SCTP_ADDRESS_LIMIT;
2010 			goto skip_count;
2011 		}
2012 		LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2013 			if ((scope->loopback_scope == 0) &&
2014 			    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2015 				/*
2016 				 * Skip loopback devices if loopback_scope
2017 				 * not set
2018 				 */
2019 				continue;
2020 			}
2021 			LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2022 				if (sctp_is_address_in_scope(sctp_ifap,
2023 				    scope->ipv4_addr_legal,
2024 				    scope->ipv6_addr_legal,
2025 				    scope->loopback_scope,
2026 				    scope->ipv4_local_scope,
2027 				    scope->local_scope,
2028 				    scope->site_scope, 1) == 0) {
2029 					continue;
2030 				}
2031 				cnt++;
2032 				if (cnt > SCTP_ADDRESS_LIMIT) {
2033 					break;
2034 				}
2035 			}
2036 			if (cnt > SCTP_ADDRESS_LIMIT) {
2037 				break;
2038 			}
2039 		}
2040 skip_count:
2041 		if (cnt > 1) {
2042 			total_count = 0;
2043 			LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2044 				cnt = 0;
2045 				if ((scope->loopback_scope == 0) &&
2046 				    SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2047 					/*
2048 					 * Skip loopback devices if
2049 					 * loopback_scope not set
2050 					 */
2051 					continue;
2052 				}
2053 				LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2054 					if (sctp_is_address_in_scope(sctp_ifap,
2055 					    scope->ipv4_addr_legal,
2056 					    scope->ipv6_addr_legal,
2057 					    scope->loopback_scope,
2058 					    scope->ipv4_local_scope,
2059 					    scope->local_scope,
2060 					    scope->site_scope, 0) == 0) {
2061 						continue;
2062 					}
2063 					m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap);
2064 					if (limit_out) {
2065 						cnt++;
2066 						total_count++;
2067 						if (cnt >= 2) {
2068 							/*
2069 							 * two from each
2070 							 * address
2071 							 */
2072 							break;
2073 						}
2074 						if (total_count > SCTP_ADDRESS_LIMIT) {
2075 							/* No more addresses */
2076 							break;
2077 						}
2078 					}
2079 				}
2080 			}
2081 		}
2082 	} else {
2083 		struct sctp_laddr *laddr;
2084 
2085 		cnt = cnt_inits_to;
2086 		/* First, how many ? */
2087 		LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2088 			if (laddr->ifa == NULL) {
2089 				continue;
2090 			}
2091 			if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2092 				/*
2093 				 * Address being deleted by the system, dont
2094 				 * list.
2095 				 */
2096 				continue;
2097 			if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2098 				/*
2099 				 * Address being deleted on this ep don't
2100 				 * list.
2101 				 */
2102 				continue;
2103 			}
2104 			if (sctp_is_address_in_scope(laddr->ifa,
2105 			    scope->ipv4_addr_legal,
2106 			    scope->ipv6_addr_legal,
2107 			    scope->loopback_scope,
2108 			    scope->ipv4_local_scope,
2109 			    scope->local_scope,
2110 			    scope->site_scope, 1) == 0) {
2111 				continue;
2112 			}
2113 			cnt++;
2114 		}
2115 		if (cnt > SCTP_ADDRESS_LIMIT) {
2116 			limit_out = 1;
2117 		}
2118 		/*
2119 		 * To get through a NAT we only list addresses if we have
2120 		 * more than one. That way if you just bind a single address
2121 		 * we let the source of the init dictate our address.
2122 		 */
2123 		if (cnt > 1) {
2124 			LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2125 				cnt = 0;
2126 				if (laddr->ifa == NULL) {
2127 					continue;
2128 				}
2129 				if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2130 					continue;
2131 
2132 				if (sctp_is_address_in_scope(laddr->ifa,
2133 				    scope->ipv4_addr_legal,
2134 				    scope->ipv6_addr_legal,
2135 				    scope->loopback_scope,
2136 				    scope->ipv4_local_scope,
2137 				    scope->local_scope,
2138 				    scope->site_scope, 0) == 0) {
2139 					continue;
2140 				}
2141 				m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa);
2142 				cnt++;
2143 				if (cnt >= SCTP_ADDRESS_LIMIT) {
2144 					break;
2145 				}
2146 			}
2147 		}
2148 	}
2149 	SCTP_IPI_ADDR_UNLOCK();
2150 	return (m_at);
2151 }
2152 
2153 static struct sctp_ifa *
2154 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2155     uint8_t dest_is_loop,
2156     uint8_t dest_is_priv,
2157     sa_family_t fam)
2158 {
2159 	uint8_t dest_is_global = 0;
2160 
2161 	/* dest_is_priv is true if destination is a private address */
2162 	/* dest_is_loop is true if destination is a loopback addresses */
2163 
2164 	/*
2165 	 * Here we determine if its a preferred address. A preferred address
2166 	 * means it is the same scope or higher scope then the destination.
2167 	 * L = loopback, P = private, G = global
2168 	 * ----------------------------------------- src    |  dest | result
2169 	 * ---------------------------------------- L     |    L  |    yes
2170 	 * ----------------------------------------- P     |    L  |
2171 	 * yes-v4 no-v6 ----------------------------------------- G     |
2172 	 * L  |    yes-v4 no-v6 ----------------------------------------- L
2173 	 * |    P  |    no ----------------------------------------- P     |
2174 	 * P  |    yes ----------------------------------------- G     |
2175 	 * P  |    no ----------------------------------------- L     |    G
2176 	 * |    no ----------------------------------------- P     |    G  |
2177 	 * no ----------------------------------------- G     |    G  |
2178 	 * yes -----------------------------------------
2179 	 */
2180 
2181 	if (ifa->address.sa.sa_family != fam) {
2182 		/* forget mis-matched family */
2183 		return (NULL);
2184 	}
2185 	if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2186 		dest_is_global = 1;
2187 	}
2188 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2189 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2190 	/* Ok the address may be ok */
2191 	if (fam == AF_INET6) {
2192 		/* ok to use deprecated addresses? */
2193 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2194 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2195 			return (NULL);
2196 		}
2197 		if (ifa->src_is_priv) {
2198 			if (dest_is_loop) {
2199 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2200 				return (NULL);
2201 			}
2202 		}
2203 		if (ifa->src_is_glob) {
2204 			if (dest_is_loop) {
2205 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2206 				return (NULL);
2207 			}
2208 		}
2209 	}
2210 	/*
2211 	 * Now that we know what is what, implement or table this could in
2212 	 * theory be done slicker (it used to be), but this is
2213 	 * straightforward and easier to validate :-)
2214 	 */
2215 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2216 	    ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2217 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2218 	    dest_is_loop, dest_is_priv, dest_is_global);
2219 
2220 	if ((ifa->src_is_loop) && (dest_is_priv)) {
2221 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2222 		return (NULL);
2223 	}
2224 	if ((ifa->src_is_glob) && (dest_is_priv)) {
2225 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2226 		return (NULL);
2227 	}
2228 	if ((ifa->src_is_loop) && (dest_is_global)) {
2229 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2230 		return (NULL);
2231 	}
2232 	if ((ifa->src_is_priv) && (dest_is_global)) {
2233 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2234 		return (NULL);
2235 	}
2236 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2237 	/* its a preferred address */
2238 	return (ifa);
2239 }
2240 
2241 static struct sctp_ifa *
2242 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2243     uint8_t dest_is_loop,
2244     uint8_t dest_is_priv,
2245     sa_family_t fam)
2246 {
2247 	uint8_t dest_is_global = 0;
2248 
2249 
2250 	/*
2251 	 * Here we determine if its a acceptable address. A acceptable
2252 	 * address means it is the same scope or higher scope but we can
2253 	 * allow for NAT which means its ok to have a global dest and a
2254 	 * private src.
2255 	 *
2256 	 * L = loopback, P = private, G = global
2257 	 * ----------------------------------------- src    |  dest | result
2258 	 * ----------------------------------------- L     |   L   |    yes
2259 	 * ----------------------------------------- P     |   L   |
2260 	 * yes-v4 no-v6 ----------------------------------------- G     |
2261 	 * L   |    yes ----------------------------------------- L     |
2262 	 * P   |    no ----------------------------------------- P     |   P
2263 	 * |    yes ----------------------------------------- G     |   P
2264 	 * |    yes - May not work -----------------------------------------
2265 	 * L     |   G   |    no ----------------------------------------- P
2266 	 * |   G   |    yes - May not work
2267 	 * ----------------------------------------- G     |   G   |    yes
2268 	 * -----------------------------------------
2269 	 */
2270 
2271 	if (ifa->address.sa.sa_family != fam) {
2272 		/* forget non matching family */
2273 		return (NULL);
2274 	}
2275 	/* Ok the address may be ok */
2276 	if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2277 		dest_is_global = 1;
2278 	}
2279 	if (fam == AF_INET6) {
2280 		/* ok to use deprecated addresses? */
2281 		if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2282 			return (NULL);
2283 		}
2284 		if (ifa->src_is_priv) {
2285 			/* Special case, linklocal to loop */
2286 			if (dest_is_loop)
2287 				return (NULL);
2288 		}
2289 	}
2290 	/*
2291 	 * Now that we know what is what, implement our table. This could in
2292 	 * theory be done slicker (it used to be), but this is
2293 	 * straightforward and easier to validate :-)
2294 	 */
2295 	if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2296 		return (NULL);
2297 	}
2298 	if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2299 		return (NULL);
2300 	}
2301 	/* its an acceptable address */
2302 	return (ifa);
2303 }
2304 
2305 int
2306 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2307 {
2308 	struct sctp_laddr *laddr;
2309 
2310 	if (stcb == NULL) {
2311 		/* There are no restrictions, no TCB :-) */
2312 		return (0);
2313 	}
2314 	LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2315 		if (laddr->ifa == NULL) {
2316 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2317 			    __FUNCTION__);
2318 			continue;
2319 		}
2320 		if (laddr->ifa == ifa) {
2321 			/* Yes it is on the list */
2322 			return (1);
2323 		}
2324 	}
2325 	return (0);
2326 }
2327 
2328 
2329 int
2330 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2331 {
2332 	struct sctp_laddr *laddr;
2333 
2334 	if (ifa == NULL)
2335 		return (0);
2336 	LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2337 		if (laddr->ifa == NULL) {
2338 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2339 			    __FUNCTION__);
2340 			continue;
2341 		}
2342 		if ((laddr->ifa == ifa) && laddr->action == 0)
2343 			/* same pointer */
2344 			return (1);
2345 	}
2346 	return (0);
2347 }
2348 
2349 
2350 
2351 static struct sctp_ifa *
2352 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2353     sctp_route_t * ro,
2354     uint32_t vrf_id,
2355     int non_asoc_addr_ok,
2356     uint8_t dest_is_priv,
2357     uint8_t dest_is_loop,
2358     sa_family_t fam)
2359 {
2360 	struct sctp_laddr *laddr, *starting_point;
2361 	void *ifn;
2362 	int resettotop = 0;
2363 	struct sctp_ifn *sctp_ifn;
2364 	struct sctp_ifa *sctp_ifa, *sifa;
2365 	struct sctp_vrf *vrf;
2366 	uint32_t ifn_index;
2367 
2368 	vrf = sctp_find_vrf(vrf_id);
2369 	if (vrf == NULL)
2370 		return (NULL);
2371 
2372 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2373 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2374 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2375 	/*
2376 	 * first question, is the ifn we will emit on in our list, if so, we
2377 	 * want such an address. Note that we first looked for a preferred
2378 	 * address.
2379 	 */
2380 	if (sctp_ifn) {
2381 		/* is a preferred one on the interface we route out? */
2382 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2383 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2384 			    (non_asoc_addr_ok == 0))
2385 				continue;
2386 			sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2387 			    dest_is_loop,
2388 			    dest_is_priv, fam);
2389 			if (sifa == NULL)
2390 				continue;
2391 			if (sctp_is_addr_in_ep(inp, sifa)) {
2392 				atomic_add_int(&sifa->refcount, 1);
2393 				return (sifa);
2394 			}
2395 		}
2396 	}
2397 	/*
2398 	 * ok, now we now need to find one on the list of the addresses. We
2399 	 * can't get one on the emitting interface so let's find first a
2400 	 * preferred one. If not that an acceptable one otherwise... we
2401 	 * return NULL.
2402 	 */
2403 	starting_point = inp->next_addr_touse;
2404 once_again:
2405 	if (inp->next_addr_touse == NULL) {
2406 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2407 		resettotop = 1;
2408 	}
2409 	for (laddr = inp->next_addr_touse; laddr;
2410 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2411 		if (laddr->ifa == NULL) {
2412 			/* address has been removed */
2413 			continue;
2414 		}
2415 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2416 			/* address is being deleted */
2417 			continue;
2418 		}
2419 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2420 		    dest_is_priv, fam);
2421 		if (sifa == NULL)
2422 			continue;
2423 		atomic_add_int(&sifa->refcount, 1);
2424 		return (sifa);
2425 	}
2426 	if (resettotop == 0) {
2427 		inp->next_addr_touse = NULL;
2428 		goto once_again;
2429 	}
2430 	inp->next_addr_touse = starting_point;
2431 	resettotop = 0;
2432 once_again_too:
2433 	if (inp->next_addr_touse == NULL) {
2434 		inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2435 		resettotop = 1;
2436 	}
2437 	/* ok, what about an acceptable address in the inp */
2438 	for (laddr = inp->next_addr_touse; laddr;
2439 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2440 		if (laddr->ifa == NULL) {
2441 			/* address has been removed */
2442 			continue;
2443 		}
2444 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2445 			/* address is being deleted */
2446 			continue;
2447 		}
2448 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2449 		    dest_is_priv, fam);
2450 		if (sifa == NULL)
2451 			continue;
2452 		atomic_add_int(&sifa->refcount, 1);
2453 		return (sifa);
2454 	}
2455 	if (resettotop == 0) {
2456 		inp->next_addr_touse = NULL;
2457 		goto once_again_too;
2458 	}
2459 	/*
2460 	 * no address bound can be a source for the destination we are in
2461 	 * trouble
2462 	 */
2463 	return (NULL);
2464 }
2465 
2466 
2467 
2468 static struct sctp_ifa *
2469 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2470     struct sctp_tcb *stcb,
2471     struct sctp_nets *net,
2472     sctp_route_t * ro,
2473     uint32_t vrf_id,
2474     uint8_t dest_is_priv,
2475     uint8_t dest_is_loop,
2476     int non_asoc_addr_ok,
2477     sa_family_t fam)
2478 {
2479 	struct sctp_laddr *laddr, *starting_point;
2480 	void *ifn;
2481 	struct sctp_ifn *sctp_ifn;
2482 	struct sctp_ifa *sctp_ifa, *sifa;
2483 	uint8_t start_at_beginning = 0;
2484 	struct sctp_vrf *vrf;
2485 	uint32_t ifn_index;
2486 
2487 	/*
2488 	 * first question, is the ifn we will emit on in our list, if so, we
2489 	 * want that one.
2490 	 */
2491 	vrf = sctp_find_vrf(vrf_id);
2492 	if (vrf == NULL)
2493 		return (NULL);
2494 
2495 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2496 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2497 	sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2498 
2499 	/*
2500 	 * first question, is the ifn we will emit on in our list?  If so,
2501 	 * we want that one. First we look for a preferred. Second, we go
2502 	 * for an acceptable.
2503 	 */
2504 	if (sctp_ifn) {
2505 		/* first try for a preferred address on the ep */
2506 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2507 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2508 				continue;
2509 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2510 				sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2511 				if (sifa == NULL)
2512 					continue;
2513 				if ((non_asoc_addr_ok == 0) &&
2514 				    (sctp_is_addr_restricted(stcb, sifa))) {
2515 					/* on the no-no list */
2516 					continue;
2517 				}
2518 				atomic_add_int(&sifa->refcount, 1);
2519 				return (sifa);
2520 			}
2521 		}
2522 		/* next try for an acceptable address on the ep */
2523 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2524 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2525 				continue;
2526 			if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2527 				sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2528 				if (sifa == NULL)
2529 					continue;
2530 				if ((non_asoc_addr_ok == 0) &&
2531 				    (sctp_is_addr_restricted(stcb, sifa))) {
2532 					/* on the no-no list */
2533 					continue;
2534 				}
2535 				atomic_add_int(&sifa->refcount, 1);
2536 				return (sifa);
2537 			}
2538 		}
2539 
2540 	}
2541 	/*
2542 	 * if we can't find one like that then we must look at all addresses
2543 	 * bound to pick one at first preferable then secondly acceptable.
2544 	 */
2545 	starting_point = stcb->asoc.last_used_address;
2546 sctp_from_the_top:
2547 	if (stcb->asoc.last_used_address == NULL) {
2548 		start_at_beginning = 1;
2549 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2550 	}
2551 	/* search beginning with the last used address */
2552 	for (laddr = stcb->asoc.last_used_address; laddr;
2553 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2554 		if (laddr->ifa == NULL) {
2555 			/* address has been removed */
2556 			continue;
2557 		}
2558 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2559 			/* address is being deleted */
2560 			continue;
2561 		}
2562 		sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2563 		if (sifa == NULL)
2564 			continue;
2565 		if ((non_asoc_addr_ok == 0) &&
2566 		    (sctp_is_addr_restricted(stcb, sifa))) {
2567 			/* on the no-no list */
2568 			continue;
2569 		}
2570 		stcb->asoc.last_used_address = laddr;
2571 		atomic_add_int(&sifa->refcount, 1);
2572 		return (sifa);
2573 	}
2574 	if (start_at_beginning == 0) {
2575 		stcb->asoc.last_used_address = NULL;
2576 		goto sctp_from_the_top;
2577 	}
2578 	/* now try for any higher scope than the destination */
2579 	stcb->asoc.last_used_address = starting_point;
2580 	start_at_beginning = 0;
2581 sctp_from_the_top2:
2582 	if (stcb->asoc.last_used_address == NULL) {
2583 		start_at_beginning = 1;
2584 		stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2585 	}
2586 	/* search beginning with the last used address */
2587 	for (laddr = stcb->asoc.last_used_address; laddr;
2588 	    laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2589 		if (laddr->ifa == NULL) {
2590 			/* address has been removed */
2591 			continue;
2592 		}
2593 		if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2594 			/* address is being deleted */
2595 			continue;
2596 		}
2597 		sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2598 		    dest_is_priv, fam);
2599 		if (sifa == NULL)
2600 			continue;
2601 		if ((non_asoc_addr_ok == 0) &&
2602 		    (sctp_is_addr_restricted(stcb, sifa))) {
2603 			/* on the no-no list */
2604 			continue;
2605 		}
2606 		stcb->asoc.last_used_address = laddr;
2607 		atomic_add_int(&sifa->refcount, 1);
2608 		return (sifa);
2609 	}
2610 	if (start_at_beginning == 0) {
2611 		stcb->asoc.last_used_address = NULL;
2612 		goto sctp_from_the_top2;
2613 	}
2614 	return (NULL);
2615 }
2616 
2617 static struct sctp_ifa *
2618 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2619     struct sctp_tcb *stcb,
2620     int non_asoc_addr_ok,
2621     uint8_t dest_is_loop,
2622     uint8_t dest_is_priv,
2623     int addr_wanted,
2624     sa_family_t fam,
2625     sctp_route_t * ro
2626 )
2627 {
2628 	struct sctp_ifa *ifa, *sifa;
2629 	int num_eligible_addr = 0;
2630 
2631 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2632 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2633 		    (non_asoc_addr_ok == 0))
2634 			continue;
2635 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2636 		    dest_is_priv, fam);
2637 		if (sifa == NULL)
2638 			continue;
2639 		/*
2640 		 * Check if the IPv6 address matches to next-hop. In the
2641 		 * mobile case, old IPv6 address may be not deleted from the
2642 		 * interface. Then, the interface has previous and new
2643 		 * addresses.  We should use one corresponding to the
2644 		 * next-hop.  (by micchie)
2645 		 */
2646 		if (stcb && fam == AF_INET6 &&
2647 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2648 			if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2649 			    == 0) {
2650 				continue;
2651 			}
2652 		}
2653 		/* Avoid topologically incorrect IPv4 address */
2654 		if (stcb && fam == AF_INET &&
2655 		    sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2656 			if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2657 				continue;
2658 			}
2659 		}
2660 		if (stcb) {
2661 			if ((non_asoc_addr_ok == 0) &&
2662 			    sctp_is_addr_restricted(stcb, sifa)) {
2663 				/*
2664 				 * It is restricted for some reason..
2665 				 * probably not yet added.
2666 				 */
2667 				continue;
2668 			}
2669 		}
2670 		if (num_eligible_addr >= addr_wanted) {
2671 			return (sifa);
2672 		}
2673 		num_eligible_addr++;
2674 	}
2675 	return (NULL);
2676 }
2677 
2678 
2679 static int
2680 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2681     struct sctp_tcb *stcb,
2682     int non_asoc_addr_ok,
2683     uint8_t dest_is_loop,
2684     uint8_t dest_is_priv,
2685     sa_family_t fam)
2686 {
2687 	struct sctp_ifa *ifa, *sifa;
2688 	int num_eligible_addr = 0;
2689 
2690 	LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2691 		if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2692 		    (non_asoc_addr_ok == 0)) {
2693 			continue;
2694 		}
2695 		sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2696 		    dest_is_priv, fam);
2697 		if (sifa == NULL) {
2698 			continue;
2699 		}
2700 		if (stcb) {
2701 			if ((non_asoc_addr_ok == 0) &&
2702 			    sctp_is_addr_restricted(stcb, sifa)) {
2703 				/*
2704 				 * It is restricted for some reason..
2705 				 * probably not yet added.
2706 				 */
2707 				continue;
2708 			}
2709 		}
2710 		num_eligible_addr++;
2711 	}
2712 	return (num_eligible_addr);
2713 }
2714 
2715 static struct sctp_ifa *
2716 sctp_choose_boundall(struct sctp_inpcb *inp,
2717     struct sctp_tcb *stcb,
2718     struct sctp_nets *net,
2719     sctp_route_t * ro,
2720     uint32_t vrf_id,
2721     uint8_t dest_is_priv,
2722     uint8_t dest_is_loop,
2723     int non_asoc_addr_ok,
2724     sa_family_t fam)
2725 {
2726 	int cur_addr_num = 0, num_preferred = 0;
2727 	void *ifn;
2728 	struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2729 	struct sctp_ifa *sctp_ifa, *sifa;
2730 	uint32_t ifn_index;
2731 	struct sctp_vrf *vrf;
2732 
2733 	/*-
2734 	 * For boundall we can use any address in the association.
2735 	 * If non_asoc_addr_ok is set we can use any address (at least in
2736 	 * theory). So we look for preferred addresses first. If we find one,
2737 	 * we use it. Otherwise we next try to get an address on the
2738 	 * interface, which we should be able to do (unless non_asoc_addr_ok
2739 	 * is false and we are routed out that way). In these cases where we
2740 	 * can't use the address of the interface we go through all the
2741 	 * ifn's looking for an address we can use and fill that in. Punting
2742 	 * means we send back address 0, which will probably cause problems
2743 	 * actually since then IP will fill in the address of the route ifn,
2744 	 * which means we probably already rejected it.. i.e. here comes an
2745 	 * abort :-<.
2746 	 */
2747 	vrf = sctp_find_vrf(vrf_id);
2748 	if (vrf == NULL)
2749 		return (NULL);
2750 
2751 	ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2752 	ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2753 	emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2754 	if (sctp_ifn == NULL) {
2755 		/* ?? We don't have this guy ?? */
2756 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
2757 		goto bound_all_plan_b;
2758 	}
2759 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
2760 	    ifn_index, sctp_ifn->ifn_name);
2761 
2762 	if (net) {
2763 		cur_addr_num = net->indx_of_eligible_next_to_use;
2764 	}
2765 	num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
2766 	    stcb,
2767 	    non_asoc_addr_ok,
2768 	    dest_is_loop,
2769 	    dest_is_priv, fam);
2770 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
2771 	    num_preferred, sctp_ifn->ifn_name);
2772 	if (num_preferred == 0) {
2773 		/*
2774 		 * no eligible addresses, we must use some other interface
2775 		 * address if we can find one.
2776 		 */
2777 		goto bound_all_plan_b;
2778 	}
2779 	/*
2780 	 * Ok we have num_eligible_addr set with how many we can use, this
2781 	 * may vary from call to call due to addresses being deprecated
2782 	 * etc..
2783 	 */
2784 	if (cur_addr_num >= num_preferred) {
2785 		cur_addr_num = 0;
2786 	}
2787 	/*
2788 	 * select the nth address from the list (where cur_addr_num is the
2789 	 * nth) and 0 is the first one, 1 is the second one etc...
2790 	 */
2791 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
2792 
2793 	sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2794 	    dest_is_priv, cur_addr_num, fam, ro);
2795 
2796 	/* if sctp_ifa is NULL something changed??, fall to plan b. */
2797 	if (sctp_ifa) {
2798 		atomic_add_int(&sctp_ifa->refcount, 1);
2799 		if (net) {
2800 			/* save off where the next one we will want */
2801 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2802 		}
2803 		return (sctp_ifa);
2804 	}
2805 	/*
2806 	 * plan_b: Look at all interfaces and find a preferred address. If
2807 	 * no preferred fall through to plan_c.
2808 	 */
2809 bound_all_plan_b:
2810 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
2811 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
2812 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
2813 		    sctp_ifn->ifn_name);
2814 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
2815 			/* wrong base scope */
2816 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
2817 			continue;
2818 		}
2819 		if ((sctp_ifn == looked_at) && looked_at) {
2820 			/* already looked at this guy */
2821 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
2822 			continue;
2823 		}
2824 		num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok,
2825 		    dest_is_loop, dest_is_priv, fam);
2826 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2827 		    "Found ifn:%p %d preferred source addresses\n",
2828 		    ifn, num_preferred);
2829 		if (num_preferred == 0) {
2830 			/* None on this interface. */
2831 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n");
2832 			continue;
2833 		}
2834 		SCTPDBG(SCTP_DEBUG_OUTPUT2,
2835 		    "num preferred:%d on interface:%p cur_addr_num:%d\n",
2836 		    num_preferred, sctp_ifn, cur_addr_num);
2837 
2838 		/*
2839 		 * Ok we have num_eligible_addr set with how many we can
2840 		 * use, this may vary from call to call due to addresses
2841 		 * being deprecated etc..
2842 		 */
2843 		if (cur_addr_num >= num_preferred) {
2844 			cur_addr_num = 0;
2845 		}
2846 		sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2847 		    dest_is_priv, cur_addr_num, fam, ro);
2848 		if (sifa == NULL)
2849 			continue;
2850 		if (net) {
2851 			net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2852 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
2853 			    cur_addr_num);
2854 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
2855 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
2856 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
2857 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
2858 		}
2859 		atomic_add_int(&sifa->refcount, 1);
2860 		return (sifa);
2861 
2862 	}
2863 
2864 	/* plan_c: do we have an acceptable address on the emit interface */
2865 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
2866 	if (emit_ifn == NULL) {
2867 		goto plan_d;
2868 	}
2869 	LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
2870 		if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2871 		    (non_asoc_addr_ok == 0))
2872 			continue;
2873 		sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
2874 		    dest_is_priv, fam);
2875 		if (sifa == NULL)
2876 			continue;
2877 		if (stcb) {
2878 			if ((non_asoc_addr_ok == 0) &&
2879 			    sctp_is_addr_restricted(stcb, sifa)) {
2880 				/*
2881 				 * It is restricted for some reason..
2882 				 * probably not yet added.
2883 				 */
2884 				continue;
2885 			}
2886 		}
2887 		atomic_add_int(&sifa->refcount, 1);
2888 		return (sifa);
2889 	}
2890 plan_d:
2891 	/*
2892 	 * plan_d: We are in trouble. No preferred address on the emit
2893 	 * interface. And not even a preferred address on all interfaces. Go
2894 	 * out and see if we can find an acceptable address somewhere
2895 	 * amongst all interfaces.
2896 	 */
2897 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D\n");
2898 	LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
2899 		if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
2900 			/* wrong base scope */
2901 			continue;
2902 		}
2903 		if ((sctp_ifn == looked_at) && looked_at)
2904 			/* already looked at this guy */
2905 			continue;
2906 
2907 		LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2908 			if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2909 			    (non_asoc_addr_ok == 0))
2910 				continue;
2911 			sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
2912 			    dest_is_loop,
2913 			    dest_is_priv, fam);
2914 			if (sifa == NULL)
2915 				continue;
2916 			if (stcb) {
2917 				if ((non_asoc_addr_ok == 0) &&
2918 				    sctp_is_addr_restricted(stcb, sifa)) {
2919 					/*
2920 					 * It is restricted for some
2921 					 * reason.. probably not yet added.
2922 					 */
2923 					continue;
2924 				}
2925 			}
2926 			atomic_add_int(&sifa->refcount, 1);
2927 			return (sifa);
2928 		}
2929 	}
2930 	/*
2931 	 * Ok we can find NO address to source from that is not on our
2932 	 * restricted list and non_asoc_address is NOT ok, or it is on our
2933 	 * restricted list. We can't source to it :-(
2934 	 */
2935 	return (NULL);
2936 }
2937 
2938 
2939 
2940 /* tcb may be NULL */
2941 struct sctp_ifa *
2942 sctp_source_address_selection(struct sctp_inpcb *inp,
2943     struct sctp_tcb *stcb,
2944     sctp_route_t * ro,
2945     struct sctp_nets *net,
2946     int non_asoc_addr_ok, uint32_t vrf_id)
2947 {
2948 	struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
2949 	struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
2950 	struct sctp_ifa *answer;
2951 	uint8_t dest_is_priv, dest_is_loop;
2952 	sa_family_t fam;
2953 
2954 	/*-
2955 	 * Rules: - Find the route if needed, cache if I can. - Look at
2956 	 * interface address in route, Is it in the bound list. If so we
2957 	 * have the best source. - If not we must rotate amongst the
2958 	 * addresses.
2959 	 *
2960 	 * Cavets and issues
2961 	 *
2962 	 * Do we need to pay attention to scope. We can have a private address
2963 	 * or a global address we are sourcing or sending to. So if we draw
2964 	 * it out
2965 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
2966 	 * For V4
2967          *------------------------------------------
2968 	 *      source     *      dest  *  result
2969 	 * -----------------------------------------
2970 	 * <a>  Private    *    Global  *  NAT
2971 	 * -----------------------------------------
2972 	 * <b>  Private    *    Private *  No problem
2973 	 * -----------------------------------------
2974          * <c>  Global     *    Private *  Huh, How will this work?
2975 	 * -----------------------------------------
2976          * <d>  Global     *    Global  *  No Problem
2977          *------------------------------------------
2978 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
2979 	 * For V6
2980          *------------------------------------------
2981 	 *      source     *      dest  *  result
2982 	 * -----------------------------------------
2983 	 * <a>  Linklocal  *    Global  *
2984 	 * -----------------------------------------
2985 	 * <b>  Linklocal  * Linklocal  *  No problem
2986 	 * -----------------------------------------
2987          * <c>  Global     * Linklocal  *  Huh, How will this work?
2988 	 * -----------------------------------------
2989          * <d>  Global     *    Global  *  No Problem
2990          *------------------------------------------
2991 	 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
2992          *
2993 	 * And then we add to that what happens if there are multiple addresses
2994 	 * assigned to an interface. Remember the ifa on a ifn is a linked
2995 	 * list of addresses. So one interface can have more than one IP
2996 	 * address. What happens if we have both a private and a global
2997 	 * address? Do we then use context of destination to sort out which
2998 	 * one is best? And what about NAT's sending P->G may get you a NAT
2999 	 * translation, or should you select the G thats on the interface in
3000 	 * preference.
3001 	 *
3002 	 * Decisions:
3003 	 *
3004 	 * - count the number of addresses on the interface.
3005          * - if it is one, no problem except case <c>.
3006          *   For <a> we will assume a NAT out there.
3007 	 * - if there are more than one, then we need to worry about scope P
3008 	 *   or G. We should prefer G -> G and P -> P if possible.
3009 	 *   Then as a secondary fall back to mixed types G->P being a last
3010 	 *   ditch one.
3011          * - The above all works for bound all, but bound specific we need to
3012 	 *   use the same concept but instead only consider the bound
3013 	 *   addresses. If the bound set is NOT assigned to the interface then
3014 	 *   we must use rotation amongst the bound addresses..
3015 	 */
3016 	if (ro->ro_rt == NULL) {
3017 		/*
3018 		 * Need a route to cache.
3019 		 */
3020 		SCTP_RTALLOC(ro, vrf_id);
3021 	}
3022 	if (ro->ro_rt == NULL) {
3023 		return (NULL);
3024 	}
3025 	fam = to->sin_family;
3026 	dest_is_priv = dest_is_loop = 0;
3027 	/* Setup our scopes for the destination */
3028 	if (fam == AF_INET) {
3029 		/* Scope based on outbound address */
3030 		if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3031 			dest_is_priv = 1;
3032 		} else if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3033 			dest_is_loop = 1;
3034 			if (net != NULL) {
3035 				/* mark it as local */
3036 				net->addr_is_local = 1;
3037 			}
3038 		}
3039 	} else if (fam == AF_INET6) {
3040 		/* Scope based on outbound address */
3041 		if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr)) {
3042 			/*
3043 			 * If the route goes to the loopback address OR the
3044 			 * address is a loopback address, we are loopback
3045 			 * scope. But we don't use dest_is_priv (link local
3046 			 * addresses).
3047 			 */
3048 			dest_is_loop = 1;
3049 			if (net != NULL) {
3050 				/* mark it as local */
3051 				net->addr_is_local = 1;
3052 			}
3053 		} else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3054 			dest_is_priv = 1;
3055 		}
3056 	}
3057 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3058 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)to);
3059 	SCTP_IPI_ADDR_LOCK();
3060 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3061 		/*
3062 		 * Bound all case
3063 		 */
3064 		answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id,
3065 		    dest_is_priv, dest_is_loop,
3066 		    non_asoc_addr_ok, fam);
3067 		SCTP_IPI_ADDR_UNLOCK();
3068 		return (answer);
3069 	}
3070 	/*
3071 	 * Subset bound case
3072 	 */
3073 	if (stcb) {
3074 		answer = sctp_choose_boundspecific_stcb(inp, stcb, net, ro,
3075 		    vrf_id, dest_is_priv,
3076 		    dest_is_loop,
3077 		    non_asoc_addr_ok, fam);
3078 	} else {
3079 		answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3080 		    non_asoc_addr_ok,
3081 		    dest_is_priv,
3082 		    dest_is_loop, fam);
3083 	}
3084 	SCTP_IPI_ADDR_UNLOCK();
3085 	return (answer);
3086 }
3087 
3088 static int
3089 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, int cpsize)
3090 {
3091 	struct cmsghdr cmh;
3092 	int tlen, at;
3093 
3094 	tlen = SCTP_BUF_LEN(control);
3095 	at = 0;
3096 	/*
3097 	 * Independent of how many mbufs, find the c_type inside the control
3098 	 * structure and copy out the data.
3099 	 */
3100 	while (at < tlen) {
3101 		if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3102 			/* not enough room for one more we are done. */
3103 			return (0);
3104 		}
3105 		m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3106 		if (((int)cmh.cmsg_len + at) > tlen) {
3107 			/*
3108 			 * this is real messed up since there is not enough
3109 			 * data here to cover the cmsg header. We are done.
3110 			 */
3111 			return (0);
3112 		}
3113 		if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3114 		    (c_type == cmh.cmsg_type)) {
3115 			/* found the one we want, copy it out */
3116 			at += CMSG_ALIGN(sizeof(struct cmsghdr));
3117 			if ((int)(cmh.cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr))) < cpsize) {
3118 				/*
3119 				 * space of cmsg_len after header not big
3120 				 * enough
3121 				 */
3122 				return (0);
3123 			}
3124 			m_copydata(control, at, cpsize, data);
3125 			return (1);
3126 		} else {
3127 			at += CMSG_ALIGN(cmh.cmsg_len);
3128 			if (cmh.cmsg_len == 0) {
3129 				break;
3130 			}
3131 		}
3132 	}
3133 	/* not found */
3134 	return (0);
3135 }
3136 
3137 static struct mbuf *
3138 sctp_add_cookie(struct sctp_inpcb *inp, struct mbuf *init, int init_offset,
3139     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3140 {
3141 	struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3142 	struct sctp_state_cookie *stc;
3143 	struct sctp_paramhdr *ph;
3144 	uint8_t *foo;
3145 	int sig_offset;
3146 	uint16_t cookie_sz;
3147 
3148 	mret = NULL;
3149 	mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3150 	    sizeof(struct sctp_paramhdr)), 0,
3151 	    M_DONTWAIT, 1, MT_DATA);
3152 	if (mret == NULL) {
3153 		return (NULL);
3154 	}
3155 	copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_DONTWAIT);
3156 	if (copy_init == NULL) {
3157 		sctp_m_freem(mret);
3158 		return (NULL);
3159 	}
3160 	copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3161 	    M_DONTWAIT);
3162 	if (copy_initack == NULL) {
3163 		sctp_m_freem(mret);
3164 		sctp_m_freem(copy_init);
3165 		return (NULL);
3166 	}
3167 	/* easy side we just drop it on the end */
3168 	ph = mtod(mret, struct sctp_paramhdr *);
3169 	SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3170 	    sizeof(struct sctp_paramhdr);
3171 	stc = (struct sctp_state_cookie *)((caddr_t)ph +
3172 	    sizeof(struct sctp_paramhdr));
3173 	ph->param_type = htons(SCTP_STATE_COOKIE);
3174 	ph->param_length = 0;	/* fill in at the end */
3175 	/* Fill in the stc cookie data */
3176 	memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3177 
3178 	/* tack the INIT and then the INIT-ACK onto the chain */
3179 	cookie_sz = 0;
3180 	m_at = mret;
3181 	for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3182 		cookie_sz += SCTP_BUF_LEN(m_at);
3183 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3184 			SCTP_BUF_NEXT(m_at) = copy_init;
3185 			break;
3186 		}
3187 	}
3188 
3189 	for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3190 		cookie_sz += SCTP_BUF_LEN(m_at);
3191 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3192 			SCTP_BUF_NEXT(m_at) = copy_initack;
3193 			break;
3194 		}
3195 	}
3196 
3197 	for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3198 		cookie_sz += SCTP_BUF_LEN(m_at);
3199 		if (SCTP_BUF_NEXT(m_at) == NULL) {
3200 			break;
3201 		}
3202 	}
3203 	sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_DONTWAIT, 1, MT_DATA);
3204 	if (sig == NULL) {
3205 		/* no space, so free the entire chain */
3206 		sctp_m_freem(mret);
3207 		return (NULL);
3208 	}
3209 	SCTP_BUF_LEN(sig) = 0;
3210 	SCTP_BUF_NEXT(m_at) = sig;
3211 	sig_offset = 0;
3212 	foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3213 	memset(foo, 0, SCTP_SIGNATURE_SIZE);
3214 	*signature = foo;
3215 	SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3216 	cookie_sz += SCTP_SIGNATURE_SIZE;
3217 	ph->param_length = htons(cookie_sz);
3218 	return (mret);
3219 }
3220 
3221 
3222 static uint8_t
3223 sctp_get_ect(struct sctp_tcb *stcb,
3224     struct sctp_tmit_chunk *chk)
3225 {
3226 	uint8_t this_random;
3227 
3228 	/* Huh? */
3229 	if (sctp_ecn_enable == 0)
3230 		return (0);
3231 
3232 	if (sctp_ecn_nonce == 0)
3233 		/* no nonce, always return ECT0 */
3234 		return (SCTP_ECT0_BIT);
3235 
3236 	if (stcb->asoc.peer_supports_ecn_nonce == 0) {
3237 		/* Peer does NOT support it, so we send a ECT0 only */
3238 		return (SCTP_ECT0_BIT);
3239 	}
3240 	if (chk == NULL)
3241 		return (SCTP_ECT0_BIT);
3242 
3243 	if ((stcb->asoc.hb_random_idx > 3) ||
3244 	    ((stcb->asoc.hb_random_idx == 3) &&
3245 	    (stcb->asoc.hb_ect_randombit > 7))) {
3246 		uint32_t rndval;
3247 
3248 warp_drive_sa:
3249 		rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
3250 		memcpy(stcb->asoc.hb_random_values, &rndval,
3251 		    sizeof(stcb->asoc.hb_random_values));
3252 		this_random = stcb->asoc.hb_random_values[0];
3253 		stcb->asoc.hb_random_idx = 0;
3254 		stcb->asoc.hb_ect_randombit = 0;
3255 	} else {
3256 		if (stcb->asoc.hb_ect_randombit > 7) {
3257 			stcb->asoc.hb_ect_randombit = 0;
3258 			stcb->asoc.hb_random_idx++;
3259 			if (stcb->asoc.hb_random_idx > 3) {
3260 				goto warp_drive_sa;
3261 			}
3262 		}
3263 		this_random = stcb->asoc.hb_random_values[stcb->asoc.hb_random_idx];
3264 	}
3265 	if ((this_random >> stcb->asoc.hb_ect_randombit) & 0x01) {
3266 		if (chk != NULL)
3267 			/* ECN Nonce stuff */
3268 			chk->rec.data.ect_nonce = SCTP_ECT1_BIT;
3269 		stcb->asoc.hb_ect_randombit++;
3270 		return (SCTP_ECT1_BIT);
3271 	} else {
3272 		stcb->asoc.hb_ect_randombit++;
3273 		return (SCTP_ECT0_BIT);
3274 	}
3275 }
3276 
3277 static int
3278 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3279     struct sctp_tcb *stcb,	/* may be NULL */
3280     struct sctp_nets *net,
3281     struct sockaddr *to,
3282     struct mbuf *m,
3283     uint32_t auth_offset,
3284     struct sctp_auth_chunk *auth,
3285     int nofragment_flag,
3286     int ecn_ok,
3287     struct sctp_tmit_chunk *chk,
3288     int out_of_asoc_ok,
3289     int so_locked
3290 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3291     SCTP_UNUSED
3292 #endif
3293 )
3294 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3295 {
3296 	/*
3297 	 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet
3298 	 * header WITH an SCTPHDR but no IP header, endpoint inp and sa
3299 	 * structure: - fill in the HMAC digest of any AUTH chunk in the
3300 	 * packet. - calculate and fill in the SCTP checksum. - prepend an
3301 	 * IP address header. - if boundall use INADDR_ANY. - if
3302 	 * boundspecific do source address selection. - set fragmentation
3303 	 * option for ipV4. - On return from IP output, check/adjust mtu
3304 	 * size of output interface and smallest_mtu size as well.
3305 	 */
3306 	/* Will need ifdefs around this */
3307 	struct mbuf *o_pak;
3308 	struct mbuf *newm;
3309 	struct sctphdr *sctphdr;
3310 	int packet_length;
3311 	uint32_t csum;
3312 	int ret;
3313 	uint32_t vrf_id;
3314 	sctp_route_t *ro = NULL;
3315 
3316 	if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
3317 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
3318 		sctp_m_freem(m);
3319 		return (EFAULT);
3320 	}
3321 	if (stcb) {
3322 		vrf_id = stcb->asoc.vrf_id;
3323 	} else {
3324 		vrf_id = inp->def_vrf_id;
3325 	}
3326 
3327 	/* fill in the HMAC digest for any AUTH chunk in the packet */
3328 	if ((auth != NULL) && (stcb != NULL)) {
3329 		sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb);
3330 	}
3331 	/* Calculate the csum and fill in the length of the packet */
3332 	sctphdr = mtod(m, struct sctphdr *);
3333 	if (sctp_no_csum_on_loopback &&
3334 	    (stcb) &&
3335 	    (to->sa_family == AF_INET) &&
3336 	    (stcb->asoc.loopback_scope)) {
3337 		sctphdr->checksum = 0;
3338 		/*
3339 		 * This can probably now be taken out since my audit shows
3340 		 * no more bad pktlen's coming in. But we will wait a while
3341 		 * yet.
3342 		 */
3343 		packet_length = sctp_calculate_len(m);
3344 	} else {
3345 		sctphdr->checksum = 0;
3346 		csum = sctp_calculate_sum(m, &packet_length, 0);
3347 		sctphdr->checksum = csum;
3348 	}
3349 
3350 	if (to->sa_family == AF_INET) {
3351 		struct ip *ip = NULL;
3352 		sctp_route_t iproute;
3353 		uint8_t tos_value;
3354 
3355 		newm = sctp_get_mbuf_for_msg(sizeof(struct ip), 1, M_DONTWAIT, 1, MT_DATA);
3356 		if (newm == NULL) {
3357 			sctp_m_freem(m);
3358 			SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3359 			return (ENOMEM);
3360 		}
3361 		SCTP_ALIGN_TO_END(newm, sizeof(struct ip));
3362 		SCTP_BUF_LEN(newm) = sizeof(struct ip);
3363 		packet_length += sizeof(struct ip);
3364 		SCTP_BUF_NEXT(newm) = m;
3365 		m = newm;
3366 		ip = mtod(m, struct ip *);
3367 		ip->ip_v = IPVERSION;
3368 		ip->ip_hl = (sizeof(struct ip) >> 2);
3369 		if (net) {
3370 			tos_value = net->tos_flowlabel & 0x000000ff;
3371 		} else {
3372 			tos_value = inp->ip_inp.inp.inp_ip_tos;
3373 		}
3374 		if (nofragment_flag) {
3375 #if defined(WITH_CONVERT_IP_OFF) || defined(__FreeBSD__) || defined(__APPLE__)
3376 			ip->ip_off = IP_DF;
3377 #else
3378 			ip->ip_off = htons(IP_DF);
3379 #endif
3380 		} else
3381 			ip->ip_off = 0;
3382 
3383 		/* FreeBSD has a function for ip_id's */
3384 		ip->ip_id = ip_newid();
3385 
3386 		ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
3387 		ip->ip_len = packet_length;
3388 		if (stcb) {
3389 			if ((stcb->asoc.ecn_allowed) && ecn_ok) {
3390 				/* Enable ECN */
3391 				ip->ip_tos = ((u_char)(tos_value & 0xfc) | sctp_get_ect(stcb, chk));
3392 			} else {
3393 				/* No ECN */
3394 				ip->ip_tos = (u_char)(tos_value & 0xfc);
3395 			}
3396 		} else {
3397 			/* no association at all */
3398 			ip->ip_tos = (tos_value & 0xfc);
3399 		}
3400 		ip->ip_p = IPPROTO_SCTP;
3401 		ip->ip_sum = 0;
3402 		if (net == NULL) {
3403 			ro = &iproute;
3404 			memset(&iproute, 0, sizeof(iproute));
3405 			memcpy(&ro->ro_dst, to, to->sa_len);
3406 		} else {
3407 			ro = (sctp_route_t *) & net->ro;
3408 		}
3409 		/* Now the address selection part */
3410 		ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
3411 
3412 		/* call the routine to select the src address */
3413 		if (net) {
3414 			if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
3415 				sctp_free_ifa(net->ro._s_addr);
3416 				net->ro._s_addr = NULL;
3417 				net->src_addr_selected = 0;
3418 				if (ro->ro_rt) {
3419 					RTFREE(ro->ro_rt);
3420 					ro->ro_rt = NULL;
3421 				}
3422 			}
3423 			if (net->src_addr_selected == 0) {
3424 				if (out_of_asoc_ok) {
3425 					/* do not cache */
3426 					goto temp_v4_src;
3427 				}
3428 				/* Cache the source address */
3429 				net->ro._s_addr = sctp_source_address_selection(inp, stcb,
3430 				    ro, net, out_of_asoc_ok,
3431 				    vrf_id);
3432 				net->src_addr_selected = 1;
3433 			}
3434 			if (net->ro._s_addr == NULL) {
3435 				/* No route to host */
3436 				net->src_addr_selected = 0;
3437 				goto no_route;
3438 			}
3439 			ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
3440 		} else {
3441 			struct sctp_ifa *_lsrc;
3442 
3443 	temp_v4_src:
3444 			_lsrc = sctp_source_address_selection(inp, stcb, ro,
3445 			    net,
3446 			    out_of_asoc_ok,
3447 			    vrf_id);
3448 			if (_lsrc == NULL) {
3449 				goto no_route;
3450 			}
3451 			ip->ip_src = _lsrc->address.sin.sin_addr;
3452 			sctp_free_ifa(_lsrc);
3453 		}
3454 
3455 		/*
3456 		 * If source address selection fails and we find no route
3457 		 * then the ip_output should fail as well with a
3458 		 * NO_ROUTE_TO_HOST type error. We probably should catch
3459 		 * that somewhere and abort the association right away
3460 		 * (assuming this is an INIT being sent).
3461 		 */
3462 		if ((ro->ro_rt == NULL)) {
3463 			/*
3464 			 * src addr selection failed to find a route (or
3465 			 * valid source addr), so we can't get there from
3466 			 * here (yet)!
3467 			 */
3468 	no_route:
3469 			SCTPDBG(SCTP_DEBUG_OUTPUT1,
3470 			    "%s: dropped packet - no valid source addr\n",
3471 			    __FUNCTION__);
3472 			if (net) {
3473 				SCTPDBG(SCTP_DEBUG_OUTPUT1,
3474 				    "Destination was ");
3475 				SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1,
3476 				    &net->ro._l_addr.sa);
3477 				if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3478 					if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3479 						SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", net);
3480 						sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3481 						    stcb,
3482 						    SCTP_FAILED_THRESHOLD,
3483 						    (void *)net,
3484 						    so_locked);
3485 						net->dest_state &= ~SCTP_ADDR_REACHABLE;
3486 						net->dest_state |= SCTP_ADDR_NOT_REACHABLE;
3487 						/*
3488 						 * JRS 5/14/07 - If a
3489 						 * destination is
3490 						 * unreachable, the PF bit
3491 						 * is turned off.  This
3492 						 * allows an unambiguous use
3493 						 * of the PF bit for
3494 						 * destinations that are
3495 						 * reachable but potentially
3496 						 * failed. If the
3497 						 * destination is set to the
3498 						 * unreachable state, also
3499 						 * set the destination to
3500 						 * the PF state.
3501 						 */
3502 						/*
3503 						 * Add debug message here if
3504 						 * destination is not in PF
3505 						 * state.
3506 						 */
3507 						/*
3508 						 * Stop any running T3
3509 						 * timers here?
3510 						 */
3511 						if (sctp_cmt_on_off && sctp_cmt_pf) {
3512 							net->dest_state &= ~SCTP_ADDR_PF;
3513 							SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination %p moved from PF to unreachable.\n",
3514 							    net);
3515 						}
3516 					}
3517 				}
3518 				if (stcb) {
3519 					if (net == stcb->asoc.primary_destination) {
3520 						/* need a new primary */
3521 						struct sctp_nets *alt;
3522 
3523 						alt = sctp_find_alternate_net(stcb, net, 0);
3524 						if (alt != net) {
3525 							if (sctp_set_primary_addr(stcb,
3526 							    (struct sockaddr *)NULL,
3527 							    alt) == 0) {
3528 								net->dest_state |= SCTP_ADDR_WAS_PRIMARY;
3529 								if (net->ro._s_addr) {
3530 									sctp_free_ifa(net->ro._s_addr);
3531 									net->ro._s_addr = NULL;
3532 								}
3533 								net->src_addr_selected = 0;
3534 							}
3535 						}
3536 					}
3537 				}
3538 			}
3539 			SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
3540 			sctp_m_freem(m);
3541 			return (EHOSTUNREACH);
3542 		}
3543 		if (ro != &iproute) {
3544 			memcpy(&iproute, ro, sizeof(*ro));
3545 		}
3546 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
3547 		    (uint32_t) (ntohl(ip->ip_src.s_addr)));
3548 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
3549 		    (uint32_t) (ntohl(ip->ip_dst.s_addr)));
3550 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
3551 		    ro->ro_rt);
3552 
3553 		if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
3554 			/* failed to prepend data, give up */
3555 			SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3556 			sctp_m_freem(m);
3557 			return (ENOMEM);
3558 		}
3559 #ifdef  SCTP_PACKET_LOGGING
3560 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
3561 			sctp_packet_log(m, packet_length);
3562 #endif
3563 		SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
3564 
3565 		/* send it out.  table id is taken from stcb */
3566 		SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
3567 
3568 		SCTP_STAT_INCR(sctps_sendpackets);
3569 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
3570 		if (ret)
3571 			SCTP_STAT_INCR(sctps_senderrors);
3572 
3573 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
3574 		if (net == NULL) {
3575 			/* free tempy routes */
3576 			if (ro->ro_rt) {
3577 				RTFREE(ro->ro_rt);
3578 				ro->ro_rt = NULL;
3579 			}
3580 		} else {
3581 			/* PMTU check versus smallest asoc MTU goes here */
3582 			if ((ro->ro_rt != NULL) &&
3583 			    (net->ro._s_addr)) {
3584 				uint32_t mtu;
3585 
3586 				mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
3587 				if (mtu &&
3588 				    (stcb->asoc.smallest_mtu > mtu)) {
3589 #ifdef SCTP_PRINT_FOR_B_AND_M
3590 					SCTP_PRINTF("sctp_mtu_size_reset called after ip_output mtu-change:%d\n",
3591 					    mtu);
3592 #endif
3593 					sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
3594 					net->mtu = mtu;
3595 				}
3596 			} else if (ro->ro_rt == NULL) {
3597 				/* route was freed */
3598 				if (net->ro._s_addr &&
3599 				    net->src_addr_selected) {
3600 					sctp_free_ifa(net->ro._s_addr);
3601 					net->ro._s_addr = NULL;
3602 				}
3603 				net->src_addr_selected = 0;
3604 			}
3605 		}
3606 		return (ret);
3607 	}
3608 #ifdef INET6
3609 	else if (to->sa_family == AF_INET6) {
3610 		uint32_t flowlabel;
3611 		struct ip6_hdr *ip6h;
3612 		struct route_in6 ip6route;
3613 		struct ifnet *ifp;
3614 		u_char flowTop;
3615 		uint16_t flowBottom;
3616 		u_char tosBottom, tosTop;
3617 		struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
3618 		int prev_scope = 0;
3619 		struct sockaddr_in6 lsa6_storage;
3620 		int error;
3621 		u_short prev_port = 0;
3622 
3623 		if (net != NULL) {
3624 			flowlabel = net->tos_flowlabel;
3625 		} else {
3626 			flowlabel = ((struct in6pcb *)inp)->in6p_flowinfo;
3627 		}
3628 
3629 		newm = sctp_get_mbuf_for_msg(sizeof(struct ip6_hdr), 1, M_DONTWAIT, 1, MT_DATA);
3630 		if (newm == NULL) {
3631 			sctp_m_freem(m);
3632 			SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3633 			return (ENOMEM);
3634 		}
3635 		SCTP_ALIGN_TO_END(newm, sizeof(struct ip6_hdr));
3636 		SCTP_BUF_LEN(newm) = sizeof(struct ip6_hdr);
3637 		packet_length += sizeof(struct ip6_hdr);
3638 		SCTP_BUF_NEXT(newm) = m;
3639 		m = newm;
3640 
3641 		ip6h = mtod(m, struct ip6_hdr *);
3642 		/*
3643 		 * We assume here that inp_flow is in host byte order within
3644 		 * the TCB!
3645 		 */
3646 		flowBottom = flowlabel & 0x0000ffff;
3647 		flowTop = ((flowlabel & 0x000f0000) >> 16);
3648 		tosTop = (((flowlabel & 0xf0) >> 4) | IPV6_VERSION);
3649 		/* protect *sin6 from overwrite */
3650 		sin6 = (struct sockaddr_in6 *)to;
3651 		tmp = *sin6;
3652 		sin6 = &tmp;
3653 
3654 		/* KAME hack: embed scopeid */
3655 		if (sa6_embedscope(sin6, ip6_use_defzone) != 0) {
3656 			SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
3657 			return (EINVAL);
3658 		}
3659 		if (net == NULL) {
3660 			memset(&ip6route, 0, sizeof(ip6route));
3661 			ro = (sctp_route_t *) & ip6route;
3662 			memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
3663 		} else {
3664 			ro = (sctp_route_t *) & net->ro;
3665 		}
3666 		if (stcb != NULL) {
3667 			if ((stcb->asoc.ecn_allowed) && ecn_ok) {
3668 				/* Enable ECN */
3669 				tosBottom = (((((struct in6pcb *)inp)->in6p_flowinfo & 0x0c) | sctp_get_ect(stcb, chk)) << 4);
3670 			} else {
3671 				/* No ECN */
3672 				tosBottom = ((((struct in6pcb *)inp)->in6p_flowinfo & 0x0c) << 4);
3673 			}
3674 		} else {
3675 			/* we could get no asoc if it is a O-O-T-B packet */
3676 			tosBottom = ((((struct in6pcb *)inp)->in6p_flowinfo & 0x0c) << 4);
3677 		}
3678 		ip6h->ip6_flow = htonl(((tosTop << 24) | ((tosBottom | flowTop) << 16) | flowBottom));
3679 		ip6h->ip6_nxt = IPPROTO_SCTP;
3680 		ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr));
3681 		ip6h->ip6_dst = sin6->sin6_addr;
3682 
3683 		/*
3684 		 * Add SRC address selection here: we can only reuse to a
3685 		 * limited degree the kame src-addr-sel, since we can try
3686 		 * their selection but it may not be bound.
3687 		 */
3688 		bzero(&lsa6_tmp, sizeof(lsa6_tmp));
3689 		lsa6_tmp.sin6_family = AF_INET6;
3690 		lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
3691 		lsa6 = &lsa6_tmp;
3692 		if (net) {
3693 			if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
3694 				sctp_free_ifa(net->ro._s_addr);
3695 				net->ro._s_addr = NULL;
3696 				net->src_addr_selected = 0;
3697 				if (ro->ro_rt) {
3698 					RTFREE(ro->ro_rt);
3699 					ro->ro_rt = NULL;
3700 				}
3701 			}
3702 			if (net->src_addr_selected == 0) {
3703 				if (out_of_asoc_ok) {
3704 					/* do not cache */
3705 					goto temp_v6_src;
3706 				}
3707 				/* Cache the source address */
3708 				net->ro._s_addr = sctp_source_address_selection(inp,
3709 				    stcb,
3710 				    ro,
3711 				    net,
3712 				    out_of_asoc_ok,
3713 				    vrf_id);
3714 				net->src_addr_selected = 1;
3715 			}
3716 			if (net->ro._s_addr == NULL) {
3717 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
3718 				net->src_addr_selected = 0;
3719 				goto no_route;
3720 			}
3721 			lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
3722 		} else {
3723 			struct sctp_ifa *_lsrc;
3724 
3725 	temp_v6_src:
3726 			_lsrc = sctp_source_address_selection(inp, stcb, ro,
3727 			    net,
3728 			    out_of_asoc_ok,
3729 			    vrf_id);
3730 			if (_lsrc == NULL) {
3731 				goto no_route;
3732 			}
3733 			lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
3734 			sctp_free_ifa(_lsrc);
3735 		}
3736 		lsa6->sin6_port = inp->sctp_lport;
3737 
3738 		if ((ro->ro_rt == NULL)) {
3739 			/*
3740 			 * src addr selection failed to find a route (or
3741 			 * valid source addr), so we can't get there from
3742 			 * here!
3743 			 */
3744 			goto no_route;
3745 		}
3746 		/*
3747 		 * XXX: sa6 may not have a valid sin6_scope_id in the
3748 		 * non-SCOPEDROUTING case.
3749 		 */
3750 		bzero(&lsa6_storage, sizeof(lsa6_storage));
3751 		lsa6_storage.sin6_family = AF_INET6;
3752 		lsa6_storage.sin6_len = sizeof(lsa6_storage);
3753 		if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
3754 			SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
3755 			sctp_m_freem(m);
3756 			return (error);
3757 		}
3758 		/* XXX */
3759 		lsa6_storage.sin6_addr = lsa6->sin6_addr;
3760 		lsa6_storage.sin6_port = inp->sctp_lport;
3761 		lsa6 = &lsa6_storage;
3762 		ip6h->ip6_src = lsa6->sin6_addr;
3763 
3764 		/*
3765 		 * We set the hop limit now since there is a good chance
3766 		 * that our ro pointer is now filled
3767 		 */
3768 		ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
3769 		ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
3770 
3771 #ifdef SCTP_DEBUG
3772 		/* Copy to be sure something bad is not happening */
3773 		sin6->sin6_addr = ip6h->ip6_dst;
3774 		lsa6->sin6_addr = ip6h->ip6_src;
3775 #endif
3776 
3777 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
3778 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
3779 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
3780 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
3781 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
3782 		if (net) {
3783 			sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
3784 			/* preserve the port and scope for link local send */
3785 			prev_scope = sin6->sin6_scope_id;
3786 			prev_port = sin6->sin6_port;
3787 		}
3788 		if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
3789 			/* failed to prepend data, give up */
3790 			sctp_m_freem(m);
3791 			SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3792 			return (ENOMEM);
3793 		}
3794 #ifdef  SCTP_PACKET_LOGGING
3795 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
3796 			sctp_packet_log(m, packet_length);
3797 #endif
3798 		SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
3799 
3800 		/* send it out. table id is taken from stcb */
3801 		SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp,
3802 		    stcb, vrf_id);
3803 
3804 		if (net) {
3805 			/* for link local this must be done */
3806 			sin6->sin6_scope_id = prev_scope;
3807 			sin6->sin6_port = prev_port;
3808 		}
3809 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
3810 		SCTP_STAT_INCR(sctps_sendpackets);
3811 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
3812 		if (ret) {
3813 			SCTP_STAT_INCR(sctps_senderrors);
3814 		}
3815 		if (net == NULL) {
3816 			/* Now if we had a temp route free it */
3817 			if (ro->ro_rt) {
3818 				RTFREE(ro->ro_rt);
3819 			}
3820 		} else {
3821 			/* PMTU check versus smallest asoc MTU goes here */
3822 			if (ro->ro_rt == NULL) {
3823 				/* Route was freed */
3824 				if (net->ro._s_addr &&
3825 				    net->src_addr_selected) {
3826 					sctp_free_ifa(net->ro._s_addr);
3827 					net->ro._s_addr = NULL;
3828 				}
3829 				net->src_addr_selected = 0;
3830 			}
3831 			if ((ro->ro_rt != NULL) &&
3832 			    (net->ro._s_addr)) {
3833 				uint32_t mtu;
3834 
3835 				mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
3836 				if (mtu &&
3837 				    (stcb->asoc.smallest_mtu > mtu)) {
3838 #ifdef SCTP_PRINT_FOR_B_AND_M
3839 					SCTP_PRINTF("sctp_mtu_size_reset called after ip6_output mtu-change:%d\n",
3840 					    mtu);
3841 #endif
3842 					sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
3843 					net->mtu = mtu;
3844 				}
3845 			} else if (ifp) {
3846 				if (ND_IFINFO(ifp)->linkmtu &&
3847 				    (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
3848 #ifdef SCTP_PRINT_FOR_B_AND_M
3849 					SCTP_PRINTF("sctp_mtu_size_reset called via ifp ND_IFINFO() linkmtu:%d\n",
3850 					    ND_IFINFO(ifp)->linkmtu);
3851 #endif
3852 					sctp_mtu_size_reset(inp,
3853 					    &stcb->asoc,
3854 					    ND_IFINFO(ifp)->linkmtu);
3855 				}
3856 			}
3857 		}
3858 		return (ret);
3859 	}
3860 #endif
3861 	else {
3862 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
3863 		    ((struct sockaddr *)to)->sa_family);
3864 		sctp_m_freem(m);
3865 		SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
3866 		return (EFAULT);
3867 	}
3868 }
3869 
3870 
3871 void
3872 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
3873 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3874     SCTP_UNUSED
3875 #endif
3876 )
3877 {
3878 	struct mbuf *m, *m_at, *mp_last;
3879 	struct sctp_nets *net;
3880 	struct sctp_init_msg *initm;
3881 	struct sctp_supported_addr_param *sup_addr;
3882 	struct sctp_ecn_supported_param *ecn;
3883 	struct sctp_prsctp_supported_param *prsctp;
3884 	struct sctp_ecn_nonce_supported_param *ecn_nonce;
3885 	struct sctp_supported_chunk_types_param *pr_supported;
3886 	int cnt_inits_to = 0;
3887 	int padval, ret;
3888 	int num_ext;
3889 	int p_len;
3890 
3891 	/* INIT's always go to the primary (and usually ONLY address) */
3892 	mp_last = NULL;
3893 	net = stcb->asoc.primary_destination;
3894 	if (net == NULL) {
3895 		net = TAILQ_FIRST(&stcb->asoc.nets);
3896 		if (net == NULL) {
3897 			/* TSNH */
3898 			return;
3899 		}
3900 		/* we confirm any address we send an INIT to */
3901 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
3902 		(void)sctp_set_primary_addr(stcb, NULL, net);
3903 	} else {
3904 		/* we confirm any address we send an INIT to */
3905 		net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
3906 	}
3907 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
3908 	if (((struct sockaddr *)&(net->ro._l_addr))->sa_family == AF_INET6) {
3909 		/*
3910 		 * special hook, if we are sending to link local it will not
3911 		 * show up in our private address count.
3912 		 */
3913 		struct sockaddr_in6 *sin6l;
3914 
3915 		sin6l = &net->ro._l_addr.sin6;
3916 		if (IN6_IS_ADDR_LINKLOCAL(&sin6l->sin6_addr))
3917 			cnt_inits_to = 1;
3918 	}
3919 	if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
3920 		/* This case should not happen */
3921 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
3922 		return;
3923 	}
3924 	/* start the INIT timer */
3925 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
3926 
3927 	m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_DONTWAIT, 1, MT_DATA);
3928 	if (m == NULL) {
3929 		/* No memory, INIT timer will re-attempt. */
3930 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
3931 		return;
3932 	}
3933 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_msg);
3934 	/*
3935 	 * assume peer supports asconf in order to be able to queue local
3936 	 * address changes while an INIT is in flight and before the assoc
3937 	 * is established.
3938 	 */
3939 	stcb->asoc.peer_supports_asconf = 1;
3940 	/* Now lets put the SCTP header in place */
3941 	initm = mtod(m, struct sctp_init_msg *);
3942 	initm->sh.src_port = inp->sctp_lport;
3943 	initm->sh.dest_port = stcb->rport;
3944 	initm->sh.v_tag = 0;
3945 	initm->sh.checksum = 0;	/* calculate later */
3946 	/* now the chunk header */
3947 	initm->msg.ch.chunk_type = SCTP_INITIATION;
3948 	initm->msg.ch.chunk_flags = 0;
3949 	/* fill in later from mbuf we build */
3950 	initm->msg.ch.chunk_length = 0;
3951 	/* place in my tag */
3952 	initm->msg.init.initiate_tag = htonl(stcb->asoc.my_vtag);
3953 	/* set up some of the credits. */
3954 	initm->msg.init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(inp->sctp_socket),
3955 	    SCTP_MINIMAL_RWND));
3956 
3957 	initm->msg.init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
3958 	initm->msg.init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
3959 	initm->msg.init.initial_tsn = htonl(stcb->asoc.init_seq_number);
3960 	/* now the address restriction */
3961 	sup_addr = (struct sctp_supported_addr_param *)((caddr_t)initm +
3962 	    sizeof(*initm));
3963 	sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
3964 	/* we support 2 types IPv6/IPv4 */
3965 	sup_addr->ph.param_length = htons(sizeof(*sup_addr) +
3966 	    sizeof(uint16_t));
3967 	sup_addr->addr_type[0] = htons(SCTP_IPV4_ADDRESS);
3968 	sup_addr->addr_type[1] = htons(SCTP_IPV6_ADDRESS);
3969 	SCTP_BUF_LEN(m) += sizeof(*sup_addr) + sizeof(uint16_t);
3970 
3971 	if (inp->sctp_ep.adaptation_layer_indicator) {
3972 		struct sctp_adaptation_layer_indication *ali;
3973 
3974 		ali = (struct sctp_adaptation_layer_indication *)(
3975 		    (caddr_t)sup_addr + sizeof(*sup_addr) + sizeof(uint16_t));
3976 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
3977 		ali->ph.param_length = htons(sizeof(*ali));
3978 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
3979 		SCTP_BUF_LEN(m) += sizeof(*ali);
3980 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali +
3981 		    sizeof(*ali));
3982 	} else {
3983 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)sup_addr +
3984 		    sizeof(*sup_addr) + sizeof(uint16_t));
3985 	}
3986 
3987 	/* now any cookie time extensions */
3988 	if (stcb->asoc.cookie_preserve_req) {
3989 		struct sctp_cookie_perserve_param *cookie_preserve;
3990 
3991 		cookie_preserve = (struct sctp_cookie_perserve_param *)(ecn);
3992 		cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
3993 		cookie_preserve->ph.param_length = htons(
3994 		    sizeof(*cookie_preserve));
3995 		cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
3996 		SCTP_BUF_LEN(m) += sizeof(*cookie_preserve);
3997 		ecn = (struct sctp_ecn_supported_param *)(
3998 		    (caddr_t)cookie_preserve + sizeof(*cookie_preserve));
3999 		stcb->asoc.cookie_preserve_req = 0;
4000 	}
4001 	/* ECN parameter */
4002 	if (sctp_ecn_enable == 1) {
4003 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
4004 		ecn->ph.param_length = htons(sizeof(*ecn));
4005 		SCTP_BUF_LEN(m) += sizeof(*ecn);
4006 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
4007 		    sizeof(*ecn));
4008 	} else {
4009 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
4010 	}
4011 	/* And now tell the peer we do pr-sctp */
4012 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
4013 	prsctp->ph.param_length = htons(sizeof(*prsctp));
4014 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
4015 
4016 	/* And now tell the peer we do all the extensions */
4017 	pr_supported = (struct sctp_supported_chunk_types_param *)
4018 	    ((caddr_t)prsctp + sizeof(*prsctp));
4019 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4020 	num_ext = 0;
4021 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4022 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4023 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4024 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4025 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4026 	if (!sctp_auth_disable)
4027 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4028 	p_len = sizeof(*pr_supported) + num_ext;
4029 	pr_supported->ph.param_length = htons(p_len);
4030 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
4031 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4032 
4033 	/* ECN nonce: And now tell the peer we support ECN nonce */
4034 	if (sctp_ecn_nonce) {
4035 		ecn_nonce = (struct sctp_ecn_nonce_supported_param *)
4036 		    ((caddr_t)pr_supported + SCTP_SIZE32(p_len));
4037 		ecn_nonce->ph.param_type = htons(SCTP_ECN_NONCE_SUPPORTED);
4038 		ecn_nonce->ph.param_length = htons(sizeof(*ecn_nonce));
4039 		SCTP_BUF_LEN(m) += sizeof(*ecn_nonce);
4040 	}
4041 	/* add authentication parameters */
4042 	if (!sctp_auth_disable) {
4043 		struct sctp_auth_random *randp;
4044 		struct sctp_auth_hmac_algo *hmacs;
4045 		struct sctp_auth_chunk_list *chunks;
4046 
4047 		/* attach RANDOM parameter, if available */
4048 		if (stcb->asoc.authinfo.random != NULL) {
4049 			randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4050 			p_len = sizeof(*randp) + stcb->asoc.authinfo.random_len;
4051 #ifdef SCTP_AUTH_DRAFT_04
4052 			randp->ph.param_type = htons(SCTP_RANDOM);
4053 			randp->ph.param_length = htons(p_len);
4054 			bcopy(stcb->asoc.authinfo.random->key,
4055 			    randp->random_data,
4056 			    stcb->asoc.authinfo.random_len);
4057 #else
4058 			/* random key already contains the header */
4059 			bcopy(stcb->asoc.authinfo.random->key, randp, p_len);
4060 #endif
4061 			/* zero out any padding required */
4062 			bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
4063 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4064 		}
4065 		/* add HMAC_ALGO parameter */
4066 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4067 		p_len = sctp_serialize_hmaclist(stcb->asoc.local_hmacs,
4068 		    (uint8_t *) hmacs->hmac_ids);
4069 		if (p_len > 0) {
4070 			p_len += sizeof(*hmacs);
4071 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4072 			hmacs->ph.param_length = htons(p_len);
4073 			/* zero out any padding required */
4074 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
4075 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4076 		}
4077 		/* add CHUNKS parameter */
4078 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
4079 		p_len = sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks,
4080 		    chunks->chunk_types);
4081 		if (p_len > 0) {
4082 			p_len += sizeof(*chunks);
4083 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4084 			chunks->ph.param_length = htons(p_len);
4085 			/* zero out any padding required */
4086 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
4087 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
4088 		}
4089 	}
4090 	m_at = m;
4091 	/* now the addresses */
4092 	{
4093 		struct sctp_scoping scp;
4094 
4095 		/*
4096 		 * To optimize this we could put the scoping stuff into a
4097 		 * structure and remove the individual uint8's from the
4098 		 * assoc structure. Then we could just sifa in the address
4099 		 * within the stcb.. but for now this is a quick hack to get
4100 		 * the address stuff teased apart.
4101 		 */
4102 		scp.ipv4_addr_legal = stcb->asoc.ipv4_addr_legal;
4103 		scp.ipv6_addr_legal = stcb->asoc.ipv6_addr_legal;
4104 		scp.loopback_scope = stcb->asoc.loopback_scope;
4105 		scp.ipv4_local_scope = stcb->asoc.ipv4_local_scope;
4106 		scp.local_scope = stcb->asoc.local_scope;
4107 		scp.site_scope = stcb->asoc.site_scope;
4108 
4109 		m_at = sctp_add_addresses_to_i_ia(inp, &scp, m_at, cnt_inits_to);
4110 	}
4111 
4112 	/* calulate the size and update pkt header and chunk header */
4113 	p_len = 0;
4114 	for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
4115 		if (SCTP_BUF_NEXT(m_at) == NULL)
4116 			mp_last = m_at;
4117 		p_len += SCTP_BUF_LEN(m_at);
4118 	}
4119 	initm->msg.ch.chunk_length = htons((p_len - sizeof(struct sctphdr)));
4120 	/*
4121 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
4122 	 * here since the timer will drive a retranmission.
4123 	 */
4124 
4125 	/* I don't expect this to execute but we will be safe here */
4126 	padval = p_len % 4;
4127 	if ((padval) && (mp_last)) {
4128 		/*
4129 		 * The compiler worries that mp_last may not be set even
4130 		 * though I think it is impossible :-> however we add
4131 		 * mp_last here just in case.
4132 		 */
4133 		ret = sctp_add_pad_tombuf(mp_last, (4 - padval));
4134 		if (ret) {
4135 			/* Houston we have a problem, no space */
4136 			sctp_m_freem(m);
4137 			return;
4138 		}
4139 		p_len += padval;
4140 	}
4141 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4142 	ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4143 	    (struct sockaddr *)&net->ro._l_addr,
4144 	    m, 0, NULL, 0, 0, NULL, 0, so_locked);
4145 	SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4146 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4147 	sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4148 	(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4149 }
4150 
4151 struct mbuf *
4152 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4153     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp)
4154 {
4155 	/*
4156 	 * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4157 	 * being equal to the beginning of the params i.e. (iphlen +
4158 	 * sizeof(struct sctp_init_msg) parse through the parameters to the
4159 	 * end of the mbuf verifying that all parameters are known.
4160 	 *
4161 	 * For unknown parameters build and return a mbuf with
4162 	 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4163 	 * processing this chunk stop, and set *abort_processing to 1.
4164 	 *
4165 	 * By having param_offset be pre-set to where parameters begin it is
4166 	 * hoped that this routine may be reused in the future by new
4167 	 * features.
4168 	 */
4169 	struct sctp_paramhdr *phdr, params;
4170 
4171 	struct mbuf *mat, *op_err;
4172 	char tempbuf[SCTP_PARAM_BUFFER_SIZE];
4173 	int at, limit, pad_needed;
4174 	uint16_t ptype, plen, padded_size;
4175 	int err_at;
4176 
4177 	*abort_processing = 0;
4178 	mat = in_initpkt;
4179 	err_at = 0;
4180 	limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4181 	at = param_offset;
4182 	op_err = NULL;
4183 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4184 	phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4185 	while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4186 		ptype = ntohs(phdr->param_type);
4187 		plen = ntohs(phdr->param_length);
4188 		if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
4189 			/* wacked parameter */
4190 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
4191 			goto invalid_size;
4192 		}
4193 		limit -= SCTP_SIZE32(plen);
4194 		/*-
4195 		 * All parameters for all chunks that we know/understand are
4196 		 * listed here. We process them other places and make
4197 		 * appropriate stop actions per the upper bits. However this
4198 		 * is the generic routine processor's can call to get back
4199 		 * an operr.. to either incorporate (init-ack) or send.
4200 		 */
4201 		padded_size = SCTP_SIZE32(plen);
4202 		switch (ptype) {
4203 			/* Param's with variable size */
4204 		case SCTP_HEARTBEAT_INFO:
4205 		case SCTP_STATE_COOKIE:
4206 		case SCTP_UNRECOG_PARAM:
4207 		case SCTP_ERROR_CAUSE_IND:
4208 			/* ok skip fwd */
4209 			at += padded_size;
4210 			break;
4211 			/* Param's with variable size within a range */
4212 		case SCTP_CHUNK_LIST:
4213 		case SCTP_SUPPORTED_CHUNK_EXT:
4214 			if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
4215 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
4216 				goto invalid_size;
4217 			}
4218 			at += padded_size;
4219 			break;
4220 		case SCTP_SUPPORTED_ADDRTYPE:
4221 			if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
4222 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
4223 				goto invalid_size;
4224 			}
4225 			at += padded_size;
4226 			break;
4227 		case SCTP_RANDOM:
4228 			if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
4229 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
4230 				goto invalid_size;
4231 			}
4232 			at += padded_size;
4233 			break;
4234 		case SCTP_SET_PRIM_ADDR:
4235 		case SCTP_DEL_IP_ADDRESS:
4236 		case SCTP_ADD_IP_ADDRESS:
4237 			if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
4238 			    (padded_size != sizeof(struct sctp_asconf_addr_param))) {
4239 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
4240 				goto invalid_size;
4241 			}
4242 			at += padded_size;
4243 			break;
4244 			/* Param's with a fixed size */
4245 		case SCTP_IPV4_ADDRESS:
4246 			if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
4247 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
4248 				goto invalid_size;
4249 			}
4250 			at += padded_size;
4251 			break;
4252 		case SCTP_IPV6_ADDRESS:
4253 			if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
4254 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
4255 				goto invalid_size;
4256 			}
4257 			at += padded_size;
4258 			break;
4259 		case SCTP_COOKIE_PRESERVE:
4260 			if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
4261 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
4262 				goto invalid_size;
4263 			}
4264 			at += padded_size;
4265 			break;
4266 		case SCTP_ECN_NONCE_SUPPORTED:
4267 		case SCTP_PRSCTP_SUPPORTED:
4268 			if (padded_size != sizeof(struct sctp_paramhdr)) {
4269 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecnnonce/prsctp %d\n", plen);
4270 				goto invalid_size;
4271 			}
4272 			at += padded_size;
4273 			break;
4274 		case SCTP_ECN_CAPABLE:
4275 			if (padded_size != sizeof(struct sctp_ecn_supported_param)) {
4276 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
4277 				goto invalid_size;
4278 			}
4279 			at += padded_size;
4280 			break;
4281 		case SCTP_ULP_ADAPTATION:
4282 			if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
4283 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
4284 				goto invalid_size;
4285 			}
4286 			at += padded_size;
4287 			break;
4288 		case SCTP_SUCCESS_REPORT:
4289 			if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
4290 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
4291 				goto invalid_size;
4292 			}
4293 			at += padded_size;
4294 			break;
4295 		case SCTP_HOSTNAME_ADDRESS:
4296 			{
4297 				/* We can NOT handle HOST NAME addresses!! */
4298 				int l_len;
4299 
4300 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
4301 				*abort_processing = 1;
4302 				if (op_err == NULL) {
4303 					/* Ok need to try to get a mbuf */
4304 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4305 					l_len += plen;
4306 					l_len += sizeof(struct sctp_paramhdr);
4307 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
4308 					if (op_err) {
4309 						SCTP_BUF_LEN(op_err) = 0;
4310 						/*
4311 						 * pre-reserve space for ip
4312 						 * and sctp header  and
4313 						 * chunk hdr
4314 						 */
4315 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
4316 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
4317 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
4318 					}
4319 				}
4320 				if (op_err) {
4321 					/* If we have space */
4322 					struct sctp_paramhdr s;
4323 
4324 					if (err_at % 4) {
4325 						uint32_t cpthis = 0;
4326 
4327 						pad_needed = 4 - (err_at % 4);
4328 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
4329 						err_at += pad_needed;
4330 					}
4331 					s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
4332 					s.param_length = htons(sizeof(s) + plen);
4333 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
4334 					err_at += sizeof(s);
4335 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
4336 					if (phdr == NULL) {
4337 						sctp_m_freem(op_err);
4338 						/*
4339 						 * we are out of memory but
4340 						 * we still need to have a
4341 						 * look at what to do (the
4342 						 * system is in trouble
4343 						 * though).
4344 						 */
4345 						return (NULL);
4346 					}
4347 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
4348 					err_at += plen;
4349 				}
4350 				return (op_err);
4351 				break;
4352 			}
4353 		default:
4354 			/*
4355 			 * we do not recognize the parameter figure out what
4356 			 * we do.
4357 			 */
4358 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
4359 			if ((ptype & 0x4000) == 0x4000) {
4360 				/* Report bit is set?? */
4361 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
4362 				if (op_err == NULL) {
4363 					int l_len;
4364 
4365 					/* Ok need to try to get an mbuf */
4366 					l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4367 					l_len += plen;
4368 					l_len += sizeof(struct sctp_paramhdr);
4369 					op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
4370 					if (op_err) {
4371 						SCTP_BUF_LEN(op_err) = 0;
4372 						SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
4373 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
4374 						SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
4375 					}
4376 				}
4377 				if (op_err) {
4378 					/* If we have space */
4379 					struct sctp_paramhdr s;
4380 
4381 					if (err_at % 4) {
4382 						uint32_t cpthis = 0;
4383 
4384 						pad_needed = 4 - (err_at % 4);
4385 						m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
4386 						err_at += pad_needed;
4387 					}
4388 					s.param_type = htons(SCTP_UNRECOG_PARAM);
4389 					s.param_length = htons(sizeof(s) + plen);
4390 					m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
4391 					err_at += sizeof(s);
4392 					if (plen > sizeof(tempbuf)) {
4393 						plen = sizeof(tempbuf);
4394 					}
4395 					phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
4396 					if (phdr == NULL) {
4397 						sctp_m_freem(op_err);
4398 						/*
4399 						 * we are out of memory but
4400 						 * we still need to have a
4401 						 * look at what to do (the
4402 						 * system is in trouble
4403 						 * though).
4404 						 */
4405 						op_err = NULL;
4406 						goto more_processing;
4407 					}
4408 					m_copyback(op_err, err_at, plen, (caddr_t)phdr);
4409 					err_at += plen;
4410 				}
4411 			}
4412 	more_processing:
4413 			if ((ptype & 0x8000) == 0x0000) {
4414 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
4415 				return (op_err);
4416 			} else {
4417 				/* skip this chunk and continue processing */
4418 				SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
4419 				at += SCTP_SIZE32(plen);
4420 			}
4421 			break;
4422 
4423 		}
4424 		phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4425 	}
4426 	return (op_err);
4427 invalid_size:
4428 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
4429 	*abort_processing = 1;
4430 	if ((op_err == NULL) && phdr) {
4431 		int l_len;
4432 
4433 		l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4434 		l_len += (2 * sizeof(struct sctp_paramhdr));
4435 		op_err = sctp_get_mbuf_for_msg(l_len, 0, M_DONTWAIT, 1, MT_DATA);
4436 		if (op_err) {
4437 			SCTP_BUF_LEN(op_err) = 0;
4438 			SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
4439 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
4440 			SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
4441 		}
4442 	}
4443 	if ((op_err) && phdr) {
4444 		struct sctp_paramhdr s;
4445 
4446 		if (err_at % 4) {
4447 			uint32_t cpthis = 0;
4448 
4449 			pad_needed = 4 - (err_at % 4);
4450 			m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
4451 			err_at += pad_needed;
4452 		}
4453 		s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
4454 		s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
4455 		m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
4456 		err_at += sizeof(s);
4457 		/* Only copy back the p-hdr that caused the issue */
4458 		m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
4459 	}
4460 	return (op_err);
4461 }
4462 
4463 static int
4464 sctp_are_there_new_addresses(struct sctp_association *asoc,
4465     struct mbuf *in_initpkt, int iphlen, int offset)
4466 {
4467 	/*
4468 	 * Given a INIT packet, look through the packet to verify that there
4469 	 * are NO new addresses. As we go through the parameters add reports
4470 	 * of any un-understood parameters that require an error.  Also we
4471 	 * must return (1) to drop the packet if we see a un-understood
4472 	 * parameter that tells us to drop the chunk.
4473 	 */
4474 	struct sockaddr_in sin4, *sa4;
4475 	struct sockaddr_in6 sin6, *sa6;
4476 	struct sockaddr *sa_touse;
4477 	struct sockaddr *sa;
4478 	struct sctp_paramhdr *phdr, params;
4479 	struct ip *iph;
4480 	struct mbuf *mat;
4481 	uint16_t ptype, plen;
4482 	int err_at;
4483 	uint8_t fnd;
4484 	struct sctp_nets *net;
4485 
4486 	memset(&sin4, 0, sizeof(sin4));
4487 	memset(&sin6, 0, sizeof(sin6));
4488 	sin4.sin_family = AF_INET;
4489 	sin4.sin_len = sizeof(sin4);
4490 	sin6.sin6_family = AF_INET6;
4491 	sin6.sin6_len = sizeof(sin6);
4492 
4493 	sa_touse = NULL;
4494 	/* First what about the src address of the pkt ? */
4495 	iph = mtod(in_initpkt, struct ip *);
4496 	if (iph->ip_v == IPVERSION) {
4497 		/* source addr is IPv4 */
4498 		sin4.sin_addr = iph->ip_src;
4499 		sa_touse = (struct sockaddr *)&sin4;
4500 	} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
4501 		/* source addr is IPv6 */
4502 		struct ip6_hdr *ip6h;
4503 
4504 		ip6h = mtod(in_initpkt, struct ip6_hdr *);
4505 		sin6.sin6_addr = ip6h->ip6_src;
4506 		sa_touse = (struct sockaddr *)&sin6;
4507 	} else {
4508 		return (1);
4509 	}
4510 
4511 	fnd = 0;
4512 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4513 		sa = (struct sockaddr *)&net->ro._l_addr;
4514 		if (sa->sa_family == sa_touse->sa_family) {
4515 			if (sa->sa_family == AF_INET) {
4516 				sa4 = (struct sockaddr_in *)sa;
4517 				if (sa4->sin_addr.s_addr ==
4518 				    sin4.sin_addr.s_addr) {
4519 					fnd = 1;
4520 					break;
4521 				}
4522 			} else if (sa->sa_family == AF_INET6) {
4523 				sa6 = (struct sockaddr_in6 *)sa;
4524 				if (SCTP6_ARE_ADDR_EQUAL(&sa6->sin6_addr,
4525 				    &sin6.sin6_addr)) {
4526 					fnd = 1;
4527 					break;
4528 				}
4529 			}
4530 		}
4531 	}
4532 	if (fnd == 0) {
4533 		/* New address added! no need to look futher. */
4534 		return (1);
4535 	}
4536 	/* Ok so far lets munge through the rest of the packet */
4537 	mat = in_initpkt;
4538 	err_at = 0;
4539 	sa_touse = NULL;
4540 	offset += sizeof(struct sctp_init_chunk);
4541 	phdr = sctp_get_next_param(mat, offset, &params, sizeof(params));
4542 	while (phdr) {
4543 		ptype = ntohs(phdr->param_type);
4544 		plen = ntohs(phdr->param_length);
4545 		if (ptype == SCTP_IPV4_ADDRESS) {
4546 			struct sctp_ipv4addr_param *p4, p4_buf;
4547 
4548 			phdr = sctp_get_next_param(mat, offset,
4549 			    (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
4550 			if (plen != sizeof(struct sctp_ipv4addr_param) ||
4551 			    phdr == NULL) {
4552 				return (1);
4553 			}
4554 			p4 = (struct sctp_ipv4addr_param *)phdr;
4555 			sin4.sin_addr.s_addr = p4->addr;
4556 			sa_touse = (struct sockaddr *)&sin4;
4557 		} else if (ptype == SCTP_IPV6_ADDRESS) {
4558 			struct sctp_ipv6addr_param *p6, p6_buf;
4559 
4560 			phdr = sctp_get_next_param(mat, offset,
4561 			    (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
4562 			if (plen != sizeof(struct sctp_ipv6addr_param) ||
4563 			    phdr == NULL) {
4564 				return (1);
4565 			}
4566 			p6 = (struct sctp_ipv6addr_param *)phdr;
4567 			memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
4568 			    sizeof(p6->addr));
4569 			sa_touse = (struct sockaddr *)&sin4;
4570 		}
4571 		if (sa_touse) {
4572 			/* ok, sa_touse points to one to check */
4573 			fnd = 0;
4574 			TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4575 				sa = (struct sockaddr *)&net->ro._l_addr;
4576 				if (sa->sa_family != sa_touse->sa_family) {
4577 					continue;
4578 				}
4579 				if (sa->sa_family == AF_INET) {
4580 					sa4 = (struct sockaddr_in *)sa;
4581 					if (sa4->sin_addr.s_addr ==
4582 					    sin4.sin_addr.s_addr) {
4583 						fnd = 1;
4584 						break;
4585 					}
4586 				} else if (sa->sa_family == AF_INET6) {
4587 					sa6 = (struct sockaddr_in6 *)sa;
4588 					if (SCTP6_ARE_ADDR_EQUAL(
4589 					    &sa6->sin6_addr, &sin6.sin6_addr)) {
4590 						fnd = 1;
4591 						break;
4592 					}
4593 				}
4594 			}
4595 			if (!fnd) {
4596 				/* New addr added! no need to look further */
4597 				return (1);
4598 			}
4599 		}
4600 		offset += SCTP_SIZE32(plen);
4601 		phdr = sctp_get_next_param(mat, offset, &params, sizeof(params));
4602 	}
4603 	return (0);
4604 }
4605 
4606 /*
4607  * Given a MBUF chain that was sent into us containing an INIT. Build a
4608  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
4609  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
4610  * message (i.e. the struct sctp_init_msg).
4611  */
4612 void
4613 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
4614     struct mbuf *init_pkt, int iphlen, int offset, struct sctphdr *sh,
4615     struct sctp_init_chunk *init_chk, uint32_t vrf_id)
4616 {
4617 	struct sctp_association *asoc;
4618 	struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last;
4619 	struct sctp_init_msg *initackm_out;
4620 	struct sctp_ecn_supported_param *ecn;
4621 	struct sctp_prsctp_supported_param *prsctp;
4622 	struct sctp_ecn_nonce_supported_param *ecn_nonce;
4623 	struct sctp_supported_chunk_types_param *pr_supported;
4624 	struct sockaddr_storage store;
4625 	struct sockaddr_in *sin;
4626 	struct sockaddr_in6 *sin6;
4627 	sctp_route_t *ro;
4628 	struct ip *iph;
4629 	struct ip6_hdr *ip6;
4630 	struct sockaddr *to;
4631 	struct sctp_state_cookie stc;
4632 	struct sctp_nets *net = NULL;
4633 	uint8_t *signature = NULL;
4634 	int cnt_inits_to = 0;
4635 	uint16_t his_limit, i_want;
4636 	int abort_flag, padval;
4637 	int num_ext;
4638 	int p_len;
4639 
4640 	if (stcb)
4641 		asoc = &stcb->asoc;
4642 	else
4643 		asoc = NULL;
4644 	mp_last = NULL;
4645 	if ((asoc != NULL) &&
4646 	    (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
4647 	    (sctp_are_there_new_addresses(asoc, init_pkt, iphlen, offset))) {
4648 		/* new addresses, out of here in non-cookie-wait states */
4649 		/*
4650 		 * Send a ABORT, we don't add the new address error clause
4651 		 * though we even set the T bit and copy in the 0 tag.. this
4652 		 * looks no different than if no listener was present.
4653 		 */
4654 		sctp_send_abort(init_pkt, iphlen, sh, 0, NULL, vrf_id);
4655 		return;
4656 	}
4657 	abort_flag = 0;
4658 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
4659 	    (offset + sizeof(struct sctp_init_chunk)),
4660 	    &abort_flag, (struct sctp_chunkhdr *)init_chk);
4661 	if (abort_flag) {
4662 		sctp_send_abort(init_pkt, iphlen, sh,
4663 		    init_chk->init.initiate_tag, op_err, vrf_id);
4664 		return;
4665 	}
4666 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
4667 	if (m == NULL) {
4668 		/* No memory, INIT timer will re-attempt. */
4669 		if (op_err)
4670 			sctp_m_freem(op_err);
4671 		return;
4672 	}
4673 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_msg);
4674 
4675 	/* the time I built cookie */
4676 	(void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
4677 
4678 	/* populate any tie tags */
4679 	if (asoc != NULL) {
4680 		/* unlock before tag selections */
4681 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
4682 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
4683 		stc.cookie_life = asoc->cookie_life;
4684 		net = asoc->primary_destination;
4685 	} else {
4686 		stc.tie_tag_my_vtag = 0;
4687 		stc.tie_tag_peer_vtag = 0;
4688 		/* life I will award this cookie */
4689 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
4690 	}
4691 
4692 	/* copy in the ports for later check */
4693 	stc.myport = sh->dest_port;
4694 	stc.peerport = sh->src_port;
4695 
4696 	/*
4697 	 * If we wanted to honor cookie life extentions, we would add to
4698 	 * stc.cookie_life. For now we should NOT honor any extension
4699 	 */
4700 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
4701 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
4702 		struct inpcb *in_inp;
4703 
4704 		/* Its a V6 socket */
4705 		in_inp = (struct inpcb *)inp;
4706 		stc.ipv6_addr_legal = 1;
4707 		/* Now look at the binding flag to see if V4 will be legal */
4708 		if (SCTP_IPV6_V6ONLY(in_inp) == 0) {
4709 			stc.ipv4_addr_legal = 1;
4710 		} else {
4711 			/* V4 addresses are NOT legal on the association */
4712 			stc.ipv4_addr_legal = 0;
4713 		}
4714 	} else {
4715 		/* Its a V4 socket, no - V6 */
4716 		stc.ipv4_addr_legal = 1;
4717 		stc.ipv6_addr_legal = 0;
4718 	}
4719 
4720 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
4721 	stc.ipv4_scope = 1;
4722 #else
4723 	stc.ipv4_scope = 0;
4724 #endif
4725 	/* now for scope setup */
4726 	memset((caddr_t)&store, 0, sizeof(store));
4727 	sin = (struct sockaddr_in *)&store;
4728 	sin6 = (struct sockaddr_in6 *)&store;
4729 	if (net == NULL) {
4730 		to = (struct sockaddr *)&store;
4731 		iph = mtod(init_pkt, struct ip *);
4732 		if (iph->ip_v == IPVERSION) {
4733 			struct sctp_ifa *addr;
4734 			sctp_route_t iproute;
4735 
4736 			sin->sin_family = AF_INET;
4737 			sin->sin_len = sizeof(struct sockaddr_in);
4738 			sin->sin_port = sh->src_port;
4739 			sin->sin_addr = iph->ip_src;
4740 			/* lookup address */
4741 			stc.address[0] = sin->sin_addr.s_addr;
4742 			stc.address[1] = 0;
4743 			stc.address[2] = 0;
4744 			stc.address[3] = 0;
4745 			stc.addr_type = SCTP_IPV4_ADDRESS;
4746 			/* local from address */
4747 			memset(&iproute, 0, sizeof(iproute));
4748 			ro = &iproute;
4749 			memcpy(&ro->ro_dst, sin, sizeof(*sin));
4750 			addr = sctp_source_address_selection(inp, NULL,
4751 			    ro, NULL, 0,
4752 			    vrf_id);
4753 			if (addr == NULL)
4754 				return;
4755 
4756 			if (ro->ro_rt) {
4757 				RTFREE(ro->ro_rt);
4758 				ro->ro_rt = NULL;
4759 			}
4760 			stc.laddress[0] = addr->address.sin.sin_addr.s_addr;
4761 			stc.laddress[1] = 0;
4762 			stc.laddress[2] = 0;
4763 			stc.laddress[3] = 0;
4764 			stc.laddr_type = SCTP_IPV4_ADDRESS;
4765 			/* scope_id is only for v6 */
4766 			stc.scope_id = 0;
4767 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
4768 			if (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr)) {
4769 				stc.ipv4_scope = 1;
4770 			}
4771 #else
4772 			stc.ipv4_scope = 1;
4773 #endif				/* SCTP_DONT_DO_PRIVADDR_SCOPE */
4774 			/* Must use the address in this case */
4775 			if (sctp_is_address_on_local_host((struct sockaddr *)sin, vrf_id)) {
4776 				stc.loopback_scope = 1;
4777 				stc.ipv4_scope = 1;
4778 				stc.site_scope = 1;
4779 				stc.local_scope = 0;
4780 			}
4781 			sctp_free_ifa(addr);
4782 		} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
4783 			struct sctp_ifa *addr;
4784 			struct route_in6 iproute6;
4785 
4786 			ip6 = mtod(init_pkt, struct ip6_hdr *);
4787 			sin6->sin6_family = AF_INET6;
4788 			sin6->sin6_len = sizeof(struct sockaddr_in6);
4789 			sin6->sin6_port = sh->src_port;
4790 			sin6->sin6_addr = ip6->ip6_src;
4791 			/* lookup address */
4792 			memcpy(&stc.address, &sin6->sin6_addr,
4793 			    sizeof(struct in6_addr));
4794 			sin6->sin6_scope_id = 0;
4795 			stc.addr_type = SCTP_IPV6_ADDRESS;
4796 			stc.scope_id = 0;
4797 			if (sctp_is_address_on_local_host((struct sockaddr *)sin6, vrf_id)) {
4798 				stc.loopback_scope = 1;
4799 				stc.local_scope = 0;
4800 				stc.site_scope = 1;
4801 				stc.ipv4_scope = 1;
4802 			} else if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
4803 				/*
4804 				 * If the new destination is a LINK_LOCAL we
4805 				 * must have common both site and local
4806 				 * scope. Don't set local scope though since
4807 				 * we must depend on the source to be added
4808 				 * implicitly. We cannot assure just because
4809 				 * we share one link that all links are
4810 				 * common.
4811 				 */
4812 				stc.local_scope = 0;
4813 				stc.site_scope = 1;
4814 				stc.ipv4_scope = 1;
4815 				/*
4816 				 * we start counting for the private address
4817 				 * stuff at 1. since the link local we
4818 				 * source from won't show up in our scoped
4819 				 * count.
4820 				 */
4821 				cnt_inits_to = 1;
4822 				/* pull out the scope_id from incoming pkt */
4823 				/* FIX ME: does this have scope from rcvif? */
4824 				(void)sa6_recoverscope(sin6);
4825 
4826 				sa6_embedscope(sin6, ip6_use_defzone);
4827 				stc.scope_id = sin6->sin6_scope_id;
4828 			} else if (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr)) {
4829 				/*
4830 				 * If the new destination is SITE_LOCAL then
4831 				 * we must have site scope in common.
4832 				 */
4833 				stc.site_scope = 1;
4834 			}
4835 			/* local from address */
4836 			memset(&iproute6, 0, sizeof(iproute6));
4837 			ro = (sctp_route_t *) & iproute6;
4838 			memcpy(&ro->ro_dst, sin6, sizeof(*sin6));
4839 			addr = sctp_source_address_selection(inp, NULL,
4840 			    ro, NULL, 0, vrf_id);
4841 			if (addr == NULL)
4842 				return;
4843 
4844 			if (ro->ro_rt) {
4845 				RTFREE(ro->ro_rt);
4846 				ro->ro_rt = NULL;
4847 			}
4848 			memcpy(&stc.laddress, &addr->address.sin6.sin6_addr, sizeof(struct in6_addr));
4849 			stc.laddr_type = SCTP_IPV6_ADDRESS;
4850 			sctp_free_ifa(addr);
4851 		}
4852 	} else {
4853 		/* set the scope per the existing tcb */
4854 		struct sctp_nets *lnet;
4855 
4856 		stc.loopback_scope = asoc->loopback_scope;
4857 		stc.ipv4_scope = asoc->ipv4_local_scope;
4858 		stc.site_scope = asoc->site_scope;
4859 		stc.local_scope = asoc->local_scope;
4860 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
4861 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
4862 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
4863 					/*
4864 					 * if we have a LL address, start
4865 					 * counting at 1.
4866 					 */
4867 					cnt_inits_to = 1;
4868 				}
4869 			}
4870 		}
4871 
4872 		/* use the net pointer */
4873 		to = (struct sockaddr *)&net->ro._l_addr;
4874 		if (to->sa_family == AF_INET) {
4875 			sin = (struct sockaddr_in *)to;
4876 			stc.address[0] = sin->sin_addr.s_addr;
4877 			stc.address[1] = 0;
4878 			stc.address[2] = 0;
4879 			stc.address[3] = 0;
4880 			stc.addr_type = SCTP_IPV4_ADDRESS;
4881 			if (net->src_addr_selected == 0) {
4882 				/*
4883 				 * strange case here, the INIT should have
4884 				 * did the selection.
4885 				 */
4886 				net->ro._s_addr = sctp_source_address_selection(inp,
4887 				    stcb, (sctp_route_t *) & net->ro,
4888 				    net, 0, vrf_id);
4889 				if (net->ro._s_addr == NULL)
4890 					return;
4891 
4892 				net->src_addr_selected = 1;
4893 
4894 			}
4895 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
4896 			stc.laddress[1] = 0;
4897 			stc.laddress[2] = 0;
4898 			stc.laddress[3] = 0;
4899 			stc.laddr_type = SCTP_IPV4_ADDRESS;
4900 		} else if (to->sa_family == AF_INET6) {
4901 			sin6 = (struct sockaddr_in6 *)to;
4902 			memcpy(&stc.address, &sin6->sin6_addr,
4903 			    sizeof(struct in6_addr));
4904 			stc.addr_type = SCTP_IPV6_ADDRESS;
4905 			if (net->src_addr_selected == 0) {
4906 				/*
4907 				 * strange case here, the INIT should have
4908 				 * did the selection.
4909 				 */
4910 				net->ro._s_addr = sctp_source_address_selection(inp,
4911 				    stcb, (sctp_route_t *) & net->ro,
4912 				    net, 0, vrf_id);
4913 				if (net->ro._s_addr == NULL)
4914 					return;
4915 
4916 				net->src_addr_selected = 1;
4917 			}
4918 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
4919 			    sizeof(struct in6_addr));
4920 			stc.laddr_type = SCTP_IPV6_ADDRESS;
4921 		}
4922 	}
4923 	/* Now lets put the SCTP header in place */
4924 	initackm_out = mtod(m, struct sctp_init_msg *);
4925 	initackm_out->sh.src_port = inp->sctp_lport;
4926 	initackm_out->sh.dest_port = sh->src_port;
4927 	initackm_out->sh.v_tag = init_chk->init.initiate_tag;
4928 	/* Save it off for quick ref */
4929 	stc.peers_vtag = init_chk->init.initiate_tag;
4930 	initackm_out->sh.checksum = 0;	/* calculate later */
4931 	/* who are we */
4932 	memcpy(stc.identification, SCTP_VERSION_STRING,
4933 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
4934 	/* now the chunk header */
4935 	initackm_out->msg.ch.chunk_type = SCTP_INITIATION_ACK;
4936 	initackm_out->msg.ch.chunk_flags = 0;
4937 	/* fill in later from mbuf we build */
4938 	initackm_out->msg.ch.chunk_length = 0;
4939 	/* place in my tag */
4940 	if ((asoc != NULL) &&
4941 	    ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
4942 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
4943 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
4944 		/* re-use the v-tags and init-seq here */
4945 		initackm_out->msg.init.initiate_tag = htonl(asoc->my_vtag);
4946 		initackm_out->msg.init.initial_tsn = htonl(asoc->init_seq_number);
4947 	} else {
4948 		uint32_t vtag, itsn;
4949 
4950 		if (asoc) {
4951 			atomic_add_int(&asoc->refcnt, 1);
4952 			SCTP_TCB_UNLOCK(stcb);
4953 			vtag = sctp_select_a_tag(inp);
4954 			initackm_out->msg.init.initiate_tag = htonl(vtag);
4955 			/* get a TSN to use too */
4956 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
4957 			initackm_out->msg.init.initial_tsn = htonl(itsn);
4958 			SCTP_TCB_LOCK(stcb);
4959 			atomic_add_int(&asoc->refcnt, -1);
4960 		} else {
4961 			vtag = sctp_select_a_tag(inp);
4962 			initackm_out->msg.init.initiate_tag = htonl(vtag);
4963 			/* get a TSN to use too */
4964 			initackm_out->msg.init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
4965 		}
4966 	}
4967 	/* save away my tag to */
4968 	stc.my_vtag = initackm_out->msg.init.initiate_tag;
4969 
4970 	/* set up some of the credits. */
4971 	initackm_out->msg.init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(inp->sctp_socket), SCTP_MINIMAL_RWND));
4972 	/* set what I want */
4973 	his_limit = ntohs(init_chk->init.num_inbound_streams);
4974 	/* choose what I want */
4975 	if (asoc != NULL) {
4976 		if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
4977 			i_want = asoc->streamoutcnt;
4978 		} else {
4979 			i_want = inp->sctp_ep.pre_open_stream_count;
4980 		}
4981 	} else {
4982 		i_want = inp->sctp_ep.pre_open_stream_count;
4983 	}
4984 	if (his_limit < i_want) {
4985 		/* I Want more :< */
4986 		initackm_out->msg.init.num_outbound_streams = init_chk->init.num_inbound_streams;
4987 	} else {
4988 		/* I can have what I want :> */
4989 		initackm_out->msg.init.num_outbound_streams = htons(i_want);
4990 	}
4991 	/* tell him his limt. */
4992 	initackm_out->msg.init.num_inbound_streams =
4993 	    htons(inp->sctp_ep.max_open_streams_intome);
4994 	/* setup the ECN pointer */
4995 
4996 	if (inp->sctp_ep.adaptation_layer_indicator) {
4997 		struct sctp_adaptation_layer_indication *ali;
4998 
4999 		ali = (struct sctp_adaptation_layer_indication *)(
5000 		    (caddr_t)initackm_out + sizeof(*initackm_out));
5001 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5002 		ali->ph.param_length = htons(sizeof(*ali));
5003 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5004 		SCTP_BUF_LEN(m) += sizeof(*ali);
5005 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali +
5006 		    sizeof(*ali));
5007 	} else {
5008 		ecn = (struct sctp_ecn_supported_param *)(
5009 		    (caddr_t)initackm_out + sizeof(*initackm_out));
5010 	}
5011 
5012 	/* ECN parameter */
5013 	if (sctp_ecn_enable == 1) {
5014 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5015 		ecn->ph.param_length = htons(sizeof(*ecn));
5016 		SCTP_BUF_LEN(m) += sizeof(*ecn);
5017 
5018 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5019 		    sizeof(*ecn));
5020 	} else {
5021 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5022 	}
5023 	/* And now tell the peer we do  pr-sctp */
5024 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5025 	prsctp->ph.param_length = htons(sizeof(*prsctp));
5026 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
5027 
5028 	/* And now tell the peer we do all the extensions */
5029 	pr_supported = (struct sctp_supported_chunk_types_param *)
5030 	    ((caddr_t)prsctp + sizeof(*prsctp));
5031 
5032 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5033 	num_ext = 0;
5034 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5035 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5036 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5037 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5038 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5039 	if (!sctp_auth_disable)
5040 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5041 	p_len = sizeof(*pr_supported) + num_ext;
5042 	pr_supported->ph.param_length = htons(p_len);
5043 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5044 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5045 
5046 	/* ECN nonce: And now tell the peer we support ECN nonce */
5047 	if (sctp_ecn_nonce) {
5048 		ecn_nonce = (struct sctp_ecn_nonce_supported_param *)
5049 		    ((caddr_t)pr_supported + SCTP_SIZE32(p_len));
5050 		ecn_nonce->ph.param_type = htons(SCTP_ECN_NONCE_SUPPORTED);
5051 		ecn_nonce->ph.param_length = htons(sizeof(*ecn_nonce));
5052 		SCTP_BUF_LEN(m) += sizeof(*ecn_nonce);
5053 	}
5054 	/* add authentication parameters */
5055 	if (!sctp_auth_disable) {
5056 		struct sctp_auth_random *randp;
5057 		struct sctp_auth_hmac_algo *hmacs;
5058 		struct sctp_auth_chunk_list *chunks;
5059 		uint16_t random_len;
5060 
5061 		/* generate and add RANDOM parameter */
5062 		random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5063 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5064 		randp->ph.param_type = htons(SCTP_RANDOM);
5065 		p_len = sizeof(*randp) + random_len;
5066 		randp->ph.param_length = htons(p_len);
5067 		SCTP_READ_RANDOM(randp->random_data, random_len);
5068 		/* zero out any padding required */
5069 		bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5070 		SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5071 
5072 		/* add HMAC_ALGO parameter */
5073 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5074 		p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5075 		    (uint8_t *) hmacs->hmac_ids);
5076 		if (p_len > 0) {
5077 			p_len += sizeof(*hmacs);
5078 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5079 			hmacs->ph.param_length = htons(p_len);
5080 			/* zero out any padding required */
5081 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5082 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5083 		}
5084 		/* add CHUNKS parameter */
5085 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5086 		p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5087 		    chunks->chunk_types);
5088 		if (p_len > 0) {
5089 			p_len += sizeof(*chunks);
5090 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5091 			chunks->ph.param_length = htons(p_len);
5092 			/* zero out any padding required */
5093 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5094 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5095 		}
5096 	}
5097 	m_at = m;
5098 	/* now the addresses */
5099 	{
5100 		struct sctp_scoping scp;
5101 
5102 		/*
5103 		 * To optimize this we could put the scoping stuff into a
5104 		 * structure and remove the individual uint8's from the stc
5105 		 * structure. Then we could just sifa in the address within
5106 		 * the stc.. but for now this is a quick hack to get the
5107 		 * address stuff teased apart.
5108 		 */
5109 		scp.ipv4_addr_legal = stc.ipv4_addr_legal;
5110 		scp.ipv6_addr_legal = stc.ipv6_addr_legal;
5111 		scp.loopback_scope = stc.loopback_scope;
5112 		scp.ipv4_local_scope = stc.ipv4_scope;
5113 		scp.local_scope = stc.local_scope;
5114 		scp.site_scope = stc.site_scope;
5115 		m_at = sctp_add_addresses_to_i_ia(inp, &scp, m_at, cnt_inits_to);
5116 	}
5117 
5118 	/* tack on the operational error if present */
5119 	if (op_err) {
5120 		struct mbuf *ol;
5121 		int llen;
5122 
5123 		llen = 0;
5124 		ol = op_err;
5125 		while (ol) {
5126 			llen += SCTP_BUF_LEN(ol);
5127 			ol = SCTP_BUF_NEXT(ol);
5128 		}
5129 		if (llen % 4) {
5130 			/* must add a pad to the param */
5131 			uint32_t cpthis = 0;
5132 			int padlen;
5133 
5134 			padlen = 4 - (llen % 4);
5135 			m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
5136 		}
5137 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5138 			m_at = SCTP_BUF_NEXT(m_at);
5139 		}
5140 		SCTP_BUF_NEXT(m_at) = op_err;
5141 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5142 			m_at = SCTP_BUF_NEXT(m_at);
5143 		}
5144 	}
5145 	/* pre-calulate the size and update pkt header and chunk header */
5146 	p_len = 0;
5147 	for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5148 		p_len += SCTP_BUF_LEN(m_tmp);
5149 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5150 			/* m_tmp should now point to last one */
5151 			break;
5152 		}
5153 	}
5154 
5155 	/* Now we must build a cookie */
5156 	m_cookie = sctp_add_cookie(inp, init_pkt, offset, m,
5157 	    sizeof(struct sctphdr), &stc, &signature);
5158 	if (m_cookie == NULL) {
5159 		/* memory problem */
5160 		sctp_m_freem(m);
5161 		return;
5162 	}
5163 	/* Now append the cookie to the end and update the space/size */
5164 	SCTP_BUF_NEXT(m_tmp) = m_cookie;
5165 
5166 	for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5167 		p_len += SCTP_BUF_LEN(m_tmp);
5168 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5169 			/* m_tmp should now point to last one */
5170 			mp_last = m_tmp;
5171 			break;
5172 		}
5173 	}
5174 	/*
5175 	 * Place in the size, but we don't include the last pad (if any) in
5176 	 * the INIT-ACK.
5177 	 */
5178 	initackm_out->msg.ch.chunk_length = htons((p_len - sizeof(struct sctphdr)));
5179 
5180 	/*
5181 	 * Time to sign the cookie, we don't sign over the cookie signature
5182 	 * though thus we set trailer.
5183 	 */
5184 	(void)sctp_hmac_m(SCTP_HMAC,
5185 	    (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
5186 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
5187 	    (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
5188 	/*
5189 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
5190 	 * here since the timer will drive a retranmission.
5191 	 */
5192 	padval = p_len % 4;
5193 	if ((padval) && (mp_last)) {
5194 		/* see my previous comments on mp_last */
5195 		int ret;
5196 
5197 		ret = sctp_add_pad_tombuf(mp_last, (4 - padval));
5198 		if (ret) {
5199 			/* Houston we have a problem, no space */
5200 			sctp_m_freem(m);
5201 			return;
5202 		}
5203 		p_len += padval;
5204 	}
5205 	(void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
5206 	    NULL, 0, SCTP_SO_NOT_LOCKED);
5207 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
5208 }
5209 
5210 
5211 void
5212 sctp_insert_on_wheel(struct sctp_tcb *stcb,
5213     struct sctp_association *asoc,
5214     struct sctp_stream_out *strq, int holds_lock)
5215 {
5216 	struct sctp_stream_out *stre, *strn;
5217 
5218 	if (holds_lock == 0) {
5219 		SCTP_TCB_SEND_LOCK(stcb);
5220 	}
5221 	if ((strq->next_spoke.tqe_next) ||
5222 	    (strq->next_spoke.tqe_prev)) {
5223 		/* already on wheel */
5224 		goto outof_here;
5225 	}
5226 	stre = TAILQ_FIRST(&asoc->out_wheel);
5227 	if (stre == NULL) {
5228 		/* only one on wheel */
5229 		TAILQ_INSERT_HEAD(&asoc->out_wheel, strq, next_spoke);
5230 		goto outof_here;
5231 	}
5232 	for (; stre; stre = strn) {
5233 		strn = TAILQ_NEXT(stre, next_spoke);
5234 		if (stre->stream_no > strq->stream_no) {
5235 			TAILQ_INSERT_BEFORE(stre, strq, next_spoke);
5236 			goto outof_here;
5237 		} else if (stre->stream_no == strq->stream_no) {
5238 			/* huh, should not happen */
5239 			goto outof_here;
5240 		} else if (strn == NULL) {
5241 			/* next one is null */
5242 			TAILQ_INSERT_AFTER(&asoc->out_wheel, stre, strq,
5243 			    next_spoke);
5244 		}
5245 	}
5246 outof_here:
5247 	if (holds_lock == 0) {
5248 		SCTP_TCB_SEND_UNLOCK(stcb);
5249 	}
5250 }
5251 
5252 static void
5253 sctp_remove_from_wheel(struct sctp_tcb *stcb,
5254     struct sctp_association *asoc,
5255     struct sctp_stream_out *strq)
5256 {
5257 	/* take off and then setup so we know it is not on the wheel */
5258 	SCTP_TCB_SEND_LOCK(stcb);
5259 	if (TAILQ_FIRST(&strq->outqueue)) {
5260 		/* more was added */
5261 		SCTP_TCB_SEND_UNLOCK(stcb);
5262 		return;
5263 	}
5264 	TAILQ_REMOVE(&asoc->out_wheel, strq, next_spoke);
5265 	strq->next_spoke.tqe_next = NULL;
5266 	strq->next_spoke.tqe_prev = NULL;
5267 	SCTP_TCB_SEND_UNLOCK(stcb);
5268 }
5269 
5270 static void
5271 sctp_prune_prsctp(struct sctp_tcb *stcb,
5272     struct sctp_association *asoc,
5273     struct sctp_sndrcvinfo *srcv,
5274     int dataout)
5275 {
5276 	int freed_spc = 0;
5277 	struct sctp_tmit_chunk *chk, *nchk;
5278 
5279 	SCTP_TCB_LOCK_ASSERT(stcb);
5280 	if ((asoc->peer_supports_prsctp) &&
5281 	    (asoc->sent_queue_cnt_removeable > 0)) {
5282 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
5283 			/*
5284 			 * Look for chunks marked with the PR_SCTP flag AND
5285 			 * the buffer space flag. If the one being sent is
5286 			 * equal or greater priority then purge the old one
5287 			 * and free some space.
5288 			 */
5289 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
5290 				/*
5291 				 * This one is PR-SCTP AND buffer space
5292 				 * limited type
5293 				 */
5294 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5295 					/*
5296 					 * Lower numbers equates to higher
5297 					 * priority so if the one we are
5298 					 * looking at has a larger or equal
5299 					 * priority we want to drop the data
5300 					 * and NOT retransmit it.
5301 					 */
5302 					if (chk->data) {
5303 						/*
5304 						 * We release the book_size
5305 						 * if the mbuf is here
5306 						 */
5307 						int ret_spc;
5308 						int cause;
5309 
5310 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
5311 							cause = SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT;
5312 						else
5313 							cause = SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_UNSENT;
5314 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
5315 						    cause,
5316 						    &asoc->sent_queue, SCTP_SO_LOCKED);
5317 						freed_spc += ret_spc;
5318 						if (freed_spc >= dataout) {
5319 							return;
5320 						}
5321 					}	/* if chunk was present */
5322 				}	/* if of sufficent priority */
5323 			}	/* if chunk has enabled */
5324 		}		/* tailqforeach */
5325 
5326 		chk = TAILQ_FIRST(&asoc->send_queue);
5327 		while (chk) {
5328 			nchk = TAILQ_NEXT(chk, sctp_next);
5329 			/* Here we must move to the sent queue and mark */
5330 			if (PR_SCTP_TTL_ENABLED(chk->flags)) {
5331 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5332 					if (chk->data) {
5333 						/*
5334 						 * We release the book_size
5335 						 * if the mbuf is here
5336 						 */
5337 						int ret_spc;
5338 
5339 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
5340 						    SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_UNSENT,
5341 						    &asoc->send_queue, SCTP_SO_LOCKED);
5342 
5343 						freed_spc += ret_spc;
5344 						if (freed_spc >= dataout) {
5345 							return;
5346 						}
5347 					}	/* end if chk->data */
5348 				}	/* end if right class */
5349 			}	/* end if chk pr-sctp */
5350 			chk = nchk;
5351 		}		/* end while (chk) */
5352 	}			/* if enabled in asoc */
5353 }
5354 
5355 int
5356 sctp_get_frag_point(struct sctp_tcb *stcb,
5357     struct sctp_association *asoc)
5358 {
5359 	int siz, ovh;
5360 
5361 	/*
5362 	 * For endpoints that have both v6 and v4 addresses we must reserve
5363 	 * room for the ipv6 header, for those that are only dealing with V4
5364 	 * we use a larger frag point.
5365 	 */
5366 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5367 		ovh = SCTP_MED_OVERHEAD;
5368 	} else {
5369 		ovh = SCTP_MED_V4_OVERHEAD;
5370 	}
5371 
5372 	if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
5373 		siz = asoc->smallest_mtu - ovh;
5374 	else
5375 		siz = (stcb->asoc.sctp_frag_point - ovh);
5376 	/*
5377 	 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
5378 	 */
5379 	/* A data chunk MUST fit in a cluster */
5380 	/* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
5381 	/* } */
5382 
5383 	/* adjust for an AUTH chunk if DATA requires auth */
5384 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
5385 		siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
5386 
5387 	if (siz % 4) {
5388 		/* make it an even word boundary please */
5389 		siz -= (siz % 4);
5390 	}
5391 	return (siz);
5392 }
5393 
5394 static void
5395 sctp_set_prsctp_policy(struct sctp_tcb *stcb,
5396     struct sctp_stream_queue_pending *sp)
5397 {
5398 	sp->pr_sctp_on = 0;
5399 	if (stcb->asoc.peer_supports_prsctp) {
5400 		/*
5401 		 * We assume that the user wants PR_SCTP_TTL if the user
5402 		 * provides a positive lifetime but does not specify any
5403 		 * PR_SCTP policy. This is a BAD assumption and causes
5404 		 * problems at least with the U-Vancovers MPI folks. I will
5405 		 * change this to be no policy means NO PR-SCTP.
5406 		 */
5407 		if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
5408 			sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
5409 			sp->pr_sctp_on = 1;
5410 		} else {
5411 			return;
5412 		}
5413 		switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
5414 		case CHUNK_FLAGS_PR_SCTP_BUF:
5415 			/*
5416 			 * Time to live is a priority stored in tv_sec when
5417 			 * doing the buffer drop thing.
5418 			 */
5419 			sp->ts.tv_sec = sp->timetolive;
5420 			sp->ts.tv_usec = 0;
5421 			break;
5422 		case CHUNK_FLAGS_PR_SCTP_TTL:
5423 			{
5424 				struct timeval tv;
5425 
5426 				(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
5427 				tv.tv_sec = sp->timetolive / 1000;
5428 				tv.tv_usec = (sp->timetolive * 1000) % 1000000;
5429 				timevaladd(&sp->ts, &tv);
5430 			}
5431 			break;
5432 		case CHUNK_FLAGS_PR_SCTP_RTX:
5433 			/*
5434 			 * Time to live is a the number or retransmissions
5435 			 * stored in tv_sec.
5436 			 */
5437 			sp->ts.tv_sec = sp->timetolive;
5438 			sp->ts.tv_usec = 0;
5439 			break;
5440 		default:
5441 			SCTPDBG(SCTP_DEBUG_USRREQ1,
5442 			    "Unknown PR_SCTP policy %u.\n",
5443 			    PR_SCTP_POLICY(sp->sinfo_flags));
5444 			break;
5445 		}
5446 	}
5447 }
5448 
5449 static int
5450 sctp_msg_append(struct sctp_tcb *stcb,
5451     struct sctp_nets *net,
5452     struct mbuf *m,
5453     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
5454 {
5455 	int error = 0, holds_lock;
5456 	struct mbuf *at;
5457 	struct sctp_stream_queue_pending *sp = NULL;
5458 	struct sctp_stream_out *strm;
5459 
5460 	/*
5461 	 * Given an mbuf chain, put it into the association send queue and
5462 	 * place it on the wheel
5463 	 */
5464 	holds_lock = hold_stcb_lock;
5465 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
5466 		/* Invalid stream number */
5467 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
5468 		error = EINVAL;
5469 		goto out_now;
5470 	}
5471 	if ((stcb->asoc.stream_locked) &&
5472 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
5473 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
5474 		error = EAGAIN;
5475 		goto out_now;
5476 	}
5477 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
5478 	/* Now can we send this? */
5479 	if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
5480 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
5481 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
5482 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
5483 		/* got data while shutting down */
5484 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
5485 		error = ECONNRESET;
5486 		goto out_now;
5487 	}
5488 	sctp_alloc_a_strmoq(stcb, sp);
5489 	if (sp == NULL) {
5490 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
5491 		error = ENOMEM;
5492 		goto out_now;
5493 	}
5494 	sp->sinfo_flags = srcv->sinfo_flags;
5495 	sp->timetolive = srcv->sinfo_timetolive;
5496 	sp->ppid = srcv->sinfo_ppid;
5497 	sp->context = srcv->sinfo_context;
5498 	sp->strseq = 0;
5499 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
5500 		sp->net = net;
5501 		sp->addr_over = 1;
5502 	} else {
5503 		sp->net = stcb->asoc.primary_destination;
5504 		sp->addr_over = 0;
5505 	}
5506 	atomic_add_int(&sp->net->ref_count, 1);
5507 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
5508 	sp->stream = srcv->sinfo_stream;
5509 	sp->msg_is_complete = 1;
5510 	sp->sender_all_done = 1;
5511 	sp->some_taken = 0;
5512 	sp->data = m;
5513 	sp->tail_mbuf = NULL;
5514 	sp->length = 0;
5515 	at = m;
5516 	sctp_set_prsctp_policy(stcb, sp);
5517 	/*
5518 	 * We could in theory (for sendall) sifa the length in, but we would
5519 	 * still have to hunt through the chain since we need to setup the
5520 	 * tail_mbuf
5521 	 */
5522 	while (at) {
5523 		if (SCTP_BUF_NEXT(at) == NULL)
5524 			sp->tail_mbuf = at;
5525 		sp->length += SCTP_BUF_LEN(at);
5526 		at = SCTP_BUF_NEXT(at);
5527 	}
5528 	SCTP_TCB_SEND_LOCK(stcb);
5529 	sctp_snd_sb_alloc(stcb, sp->length);
5530 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
5531 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
5532 	if ((srcv->sinfo_flags & SCTP_UNORDERED) == 0) {
5533 		sp->strseq = strm->next_sequence_sent;
5534 		strm->next_sequence_sent++;
5535 	}
5536 	if ((strm->next_spoke.tqe_next == NULL) &&
5537 	    (strm->next_spoke.tqe_prev == NULL)) {
5538 		/* Not on wheel, insert */
5539 		sctp_insert_on_wheel(stcb, &stcb->asoc, strm, 1);
5540 	}
5541 	m = NULL;
5542 	SCTP_TCB_SEND_UNLOCK(stcb);
5543 out_now:
5544 	if (m) {
5545 		sctp_m_freem(m);
5546 	}
5547 	return (error);
5548 }
5549 
5550 
5551 static struct mbuf *
5552 sctp_copy_mbufchain(struct mbuf *clonechain,
5553     struct mbuf *outchain,
5554     struct mbuf **endofchain,
5555     int can_take_mbuf,
5556     int sizeofcpy,
5557     uint8_t copy_by_ref)
5558 {
5559 	struct mbuf *m;
5560 	struct mbuf *appendchain;
5561 	caddr_t cp;
5562 	int len;
5563 
5564 	if (endofchain == NULL) {
5565 		/* error */
5566 error_out:
5567 		if (outchain)
5568 			sctp_m_freem(outchain);
5569 		return (NULL);
5570 	}
5571 	if (can_take_mbuf) {
5572 		appendchain = clonechain;
5573 	} else {
5574 		if (!copy_by_ref &&
5575 		    (sizeofcpy <= (int)((((sctp_mbuf_threshold_count - 1) * MLEN) + MHLEN)))
5576 		    ) {
5577 			/* Its not in a cluster */
5578 			if (*endofchain == NULL) {
5579 				/* lets get a mbuf cluster */
5580 				if (outchain == NULL) {
5581 					/* This is the general case */
5582 			new_mbuf:
5583 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
5584 					if (outchain == NULL) {
5585 						goto error_out;
5586 					}
5587 					SCTP_BUF_LEN(outchain) = 0;
5588 					*endofchain = outchain;
5589 					/* get the prepend space */
5590 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
5591 				} else {
5592 					/*
5593 					 * We really should not get a NULL
5594 					 * in endofchain
5595 					 */
5596 					/* find end */
5597 					m = outchain;
5598 					while (m) {
5599 						if (SCTP_BUF_NEXT(m) == NULL) {
5600 							*endofchain = m;
5601 							break;
5602 						}
5603 						m = SCTP_BUF_NEXT(m);
5604 					}
5605 					/* sanity */
5606 					if (*endofchain == NULL) {
5607 						/*
5608 						 * huh, TSNH XXX maybe we
5609 						 * should panic
5610 						 */
5611 						sctp_m_freem(outchain);
5612 						goto new_mbuf;
5613 					}
5614 				}
5615 				/* get the new end of length */
5616 				len = M_TRAILINGSPACE(*endofchain);
5617 			} else {
5618 				/* how much is left at the end? */
5619 				len = M_TRAILINGSPACE(*endofchain);
5620 			}
5621 			/* Find the end of the data, for appending */
5622 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
5623 
5624 			/* Now lets copy it out */
5625 			if (len >= sizeofcpy) {
5626 				/* It all fits, copy it in */
5627 				m_copydata(clonechain, 0, sizeofcpy, cp);
5628 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
5629 			} else {
5630 				/* fill up the end of the chain */
5631 				if (len > 0) {
5632 					m_copydata(clonechain, 0, len, cp);
5633 					SCTP_BUF_LEN((*endofchain)) += len;
5634 					/* now we need another one */
5635 					sizeofcpy -= len;
5636 				}
5637 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
5638 				if (m == NULL) {
5639 					/* We failed */
5640 					goto error_out;
5641 				}
5642 				SCTP_BUF_NEXT((*endofchain)) = m;
5643 				*endofchain = m;
5644 				cp = mtod((*endofchain), caddr_t);
5645 				m_copydata(clonechain, len, sizeofcpy, cp);
5646 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
5647 			}
5648 			return (outchain);
5649 		} else {
5650 			/* copy the old fashion way */
5651 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_DONTWAIT);
5652 		}
5653 	}
5654 	if (appendchain == NULL) {
5655 		/* error */
5656 		if (outchain)
5657 			sctp_m_freem(outchain);
5658 		return (NULL);
5659 	}
5660 	if (outchain) {
5661 		/* tack on to the end */
5662 		if (*endofchain != NULL) {
5663 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
5664 		} else {
5665 			m = outchain;
5666 			while (m) {
5667 				if (SCTP_BUF_NEXT(m) == NULL) {
5668 					SCTP_BUF_NEXT(m) = appendchain;
5669 					break;
5670 				}
5671 				m = SCTP_BUF_NEXT(m);
5672 			}
5673 		}
5674 		/*
5675 		 * save off the end and update the end-chain postion
5676 		 */
5677 		m = appendchain;
5678 		while (m) {
5679 			if (SCTP_BUF_NEXT(m) == NULL) {
5680 				*endofchain = m;
5681 				break;
5682 			}
5683 			m = SCTP_BUF_NEXT(m);
5684 		}
5685 		return (outchain);
5686 	} else {
5687 		/* save off the end and update the end-chain postion */
5688 		m = appendchain;
5689 		while (m) {
5690 			if (SCTP_BUF_NEXT(m) == NULL) {
5691 				*endofchain = m;
5692 				break;
5693 			}
5694 			m = SCTP_BUF_NEXT(m);
5695 		}
5696 		return (appendchain);
5697 	}
5698 }
5699 
5700 int
5701 sctp_med_chunk_output(struct sctp_inpcb *inp,
5702     struct sctp_tcb *stcb,
5703     struct sctp_association *asoc,
5704     int *num_out,
5705     int *reason_code,
5706     int control_only, int *cwnd_full, int from_where,
5707     struct timeval *now, int *now_filled, int frag_point, int so_locked
5708 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
5709     SCTP_UNUSED
5710 #endif
5711 );
5712 
5713 static void
5714 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
5715     uint32_t val)
5716 {
5717 	struct sctp_copy_all *ca;
5718 	struct mbuf *m;
5719 	int ret = 0;
5720 	int added_control = 0;
5721 	int un_sent, do_chunk_output = 1;
5722 	struct sctp_association *asoc;
5723 
5724 	ca = (struct sctp_copy_all *)ptr;
5725 	if (ca->m == NULL) {
5726 		return;
5727 	}
5728 	if (ca->inp != inp) {
5729 		/* TSNH */
5730 		return;
5731 	}
5732 	if ((ca->m) && ca->sndlen) {
5733 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_DONTWAIT);
5734 		if (m == NULL) {
5735 			/* can't copy so we are done */
5736 			ca->cnt_failed++;
5737 			return;
5738 		}
5739 	} else {
5740 		m = NULL;
5741 	}
5742 	SCTP_TCB_LOCK_ASSERT(stcb);
5743 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
5744 		/* Abort this assoc with m as the user defined reason */
5745 		if (m) {
5746 			struct sctp_paramhdr *ph;
5747 
5748 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_DONTWAIT);
5749 			if (m) {
5750 				ph = mtod(m, struct sctp_paramhdr *);
5751 				ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
5752 				ph->param_length = htons(ca->sndlen);
5753 			}
5754 			/*
5755 			 * We add one here to keep the assoc from
5756 			 * dis-appearing on us.
5757 			 */
5758 			atomic_add_int(&stcb->asoc.refcnt, 1);
5759 			sctp_abort_an_association(inp, stcb,
5760 			    SCTP_RESPONSE_TO_USER_REQ,
5761 			    m, SCTP_SO_NOT_LOCKED);
5762 			/*
5763 			 * sctp_abort_an_association calls sctp_free_asoc()
5764 			 * free association will NOT free it since we
5765 			 * incremented the refcnt .. we do this to prevent
5766 			 * it being freed and things getting tricky since we
5767 			 * could end up (from free_asoc) calling inpcb_free
5768 			 * which would get a recursive lock call to the
5769 			 * iterator lock.. But as a consequence of that the
5770 			 * stcb will return to us un-locked.. since
5771 			 * free_asoc returns with either no TCB or the TCB
5772 			 * unlocked, we must relock.. to unlock in the
5773 			 * iterator timer :-0
5774 			 */
5775 			SCTP_TCB_LOCK(stcb);
5776 			atomic_add_int(&stcb->asoc.refcnt, -1);
5777 			goto no_chunk_output;
5778 		}
5779 	} else {
5780 		if (m) {
5781 			ret = sctp_msg_append(stcb, stcb->asoc.primary_destination, m,
5782 			    &ca->sndrcv, 1);
5783 		}
5784 		asoc = &stcb->asoc;
5785 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
5786 			/* shutdown this assoc */
5787 			int cnt;
5788 
5789 			cnt = sctp_is_there_unsent_data(stcb);
5790 
5791 			if (TAILQ_EMPTY(&asoc->send_queue) &&
5792 			    TAILQ_EMPTY(&asoc->sent_queue) &&
5793 			    (cnt == 0)) {
5794 				if (asoc->locked_on_sending) {
5795 					goto abort_anyway;
5796 				}
5797 				/*
5798 				 * there is nothing queued to send, so I'm
5799 				 * done...
5800 				 */
5801 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
5802 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
5803 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
5804 					/*
5805 					 * only send SHUTDOWN the first time
5806 					 * through
5807 					 */
5808 					sctp_send_shutdown(stcb, stcb->asoc.primary_destination);
5809 					if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
5810 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
5811 					}
5812 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
5813 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
5814 					    asoc->primary_destination);
5815 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
5816 					    asoc->primary_destination);
5817 					added_control = 1;
5818 					do_chunk_output = 0;
5819 				}
5820 			} else {
5821 				/*
5822 				 * we still got (or just got) data to send,
5823 				 * so set SHUTDOWN_PENDING
5824 				 */
5825 				/*
5826 				 * XXX sockets draft says that SCTP_EOF
5827 				 * should be sent with no data.  currently,
5828 				 * we will allow user data to be sent first
5829 				 * and move to SHUTDOWN-PENDING
5830 				 */
5831 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
5832 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
5833 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
5834 					if (asoc->locked_on_sending) {
5835 						/*
5836 						 * Locked to send out the
5837 						 * data
5838 						 */
5839 						struct sctp_stream_queue_pending *sp;
5840 
5841 						sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
5842 						if (sp) {
5843 							if ((sp->length == 0) && (sp->msg_is_complete == 0))
5844 								asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
5845 						}
5846 					}
5847 					asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
5848 					if (TAILQ_EMPTY(&asoc->send_queue) &&
5849 					    TAILQ_EMPTY(&asoc->sent_queue) &&
5850 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
5851 				abort_anyway:
5852 						atomic_add_int(&stcb->asoc.refcnt, 1);
5853 						sctp_abort_an_association(stcb->sctp_ep, stcb,
5854 						    SCTP_RESPONSE_TO_USER_REQ,
5855 						    NULL, SCTP_SO_NOT_LOCKED);
5856 						atomic_add_int(&stcb->asoc.refcnt, -1);
5857 						goto no_chunk_output;
5858 					}
5859 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
5860 					    asoc->primary_destination);
5861 				}
5862 			}
5863 
5864 		}
5865 	}
5866 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
5867 	    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) * sizeof(struct sctp_data_chunk)));
5868 
5869 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
5870 	    (stcb->asoc.total_flight > 0) &&
5871 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
5872 	    ) {
5873 		do_chunk_output = 0;
5874 	}
5875 	if (do_chunk_output)
5876 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
5877 	else if (added_control) {
5878 		int num_out = 0, reason = 0, cwnd_full = 0, now_filled = 0;
5879 		struct timeval now;
5880 		int frag_point;
5881 
5882 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
5883 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
5884 		    &reason, 1, &cwnd_full, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
5885 	}
5886 no_chunk_output:
5887 	if (ret) {
5888 		ca->cnt_failed++;
5889 	} else {
5890 		ca->cnt_sent++;
5891 	}
5892 }
5893 
5894 static void
5895 sctp_sendall_completes(void *ptr, uint32_t val)
5896 {
5897 	struct sctp_copy_all *ca;
5898 
5899 	ca = (struct sctp_copy_all *)ptr;
5900 	/*
5901 	 * Do a notify here? Kacheong suggests that the notify be done at
5902 	 * the send time.. so you would push up a notification if any send
5903 	 * failed. Don't know if this is feasable since the only failures we
5904 	 * have is "memory" related and if you cannot get an mbuf to send
5905 	 * the data you surely can't get an mbuf to send up to notify the
5906 	 * user you can't send the data :->
5907 	 */
5908 
5909 	/* now free everything */
5910 	sctp_m_freem(ca->m);
5911 	SCTP_FREE(ca, SCTP_M_COPYAL);
5912 }
5913 
5914 
5915 #define	MC_ALIGN(m, len) do {						\
5916 	SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1));	\
5917 } while (0)
5918 
5919 
5920 
5921 static struct mbuf *
5922 sctp_copy_out_all(struct uio *uio, int len)
5923 {
5924 	struct mbuf *ret, *at;
5925 	int left, willcpy, cancpy, error;
5926 
5927 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAIT, 1, MT_DATA);
5928 	if (ret == NULL) {
5929 		/* TSNH */
5930 		return (NULL);
5931 	}
5932 	left = len;
5933 	SCTP_BUF_LEN(ret) = 0;
5934 	/* save space for the data chunk header */
5935 	cancpy = M_TRAILINGSPACE(ret);
5936 	willcpy = min(cancpy, left);
5937 	at = ret;
5938 	while (left > 0) {
5939 		/* Align data to the end */
5940 		error = uiomove(mtod(at, caddr_t), willcpy, uio);
5941 		if (error) {
5942 	err_out_now:
5943 			sctp_m_freem(at);
5944 			return (NULL);
5945 		}
5946 		SCTP_BUF_LEN(at) = willcpy;
5947 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
5948 		left -= willcpy;
5949 		if (left > 0) {
5950 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAIT, 1, MT_DATA);
5951 			if (SCTP_BUF_NEXT(at) == NULL) {
5952 				goto err_out_now;
5953 			}
5954 			at = SCTP_BUF_NEXT(at);
5955 			SCTP_BUF_LEN(at) = 0;
5956 			cancpy = M_TRAILINGSPACE(at);
5957 			willcpy = min(cancpy, left);
5958 		}
5959 	}
5960 	return (ret);
5961 }
5962 
5963 static int
5964 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
5965     struct sctp_sndrcvinfo *srcv)
5966 {
5967 	int ret;
5968 	struct sctp_copy_all *ca;
5969 
5970 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
5971 	    SCTP_M_COPYAL);
5972 	if (ca == NULL) {
5973 		sctp_m_freem(m);
5974 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
5975 		return (ENOMEM);
5976 	}
5977 	memset(ca, 0, sizeof(struct sctp_copy_all));
5978 
5979 	ca->inp = inp;
5980 	memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
5981 	/*
5982 	 * take off the sendall flag, it would be bad if we failed to do
5983 	 * this :-0
5984 	 */
5985 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
5986 	/* get length and mbuf chain */
5987 	if (uio) {
5988 		ca->sndlen = uio->uio_resid;
5989 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
5990 		if (ca->m == NULL) {
5991 			SCTP_FREE(ca, SCTP_M_COPYAL);
5992 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
5993 			return (ENOMEM);
5994 		}
5995 	} else {
5996 		/* Gather the length of the send */
5997 		struct mbuf *mat;
5998 
5999 		mat = m;
6000 		ca->sndlen = 0;
6001 		while (m) {
6002 			ca->sndlen += SCTP_BUF_LEN(m);
6003 			m = SCTP_BUF_NEXT(m);
6004 		}
6005 		ca->m = mat;
6006 	}
6007 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6008 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6009 	    SCTP_ASOC_ANY_STATE,
6010 	    (void *)ca, 0,
6011 	    sctp_sendall_completes, inp, 1);
6012 	if (ret) {
6013 		SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6014 		SCTP_FREE(ca, SCTP_M_COPYAL);
6015 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6016 		return (EFAULT);
6017 	}
6018 	return (0);
6019 }
6020 
6021 
6022 void
6023 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6024 {
6025 	struct sctp_tmit_chunk *chk, *nchk;
6026 
6027 	chk = TAILQ_FIRST(&asoc->control_send_queue);
6028 	while (chk) {
6029 		nchk = TAILQ_NEXT(chk, sctp_next);
6030 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6031 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6032 			if (chk->data) {
6033 				sctp_m_freem(chk->data);
6034 				chk->data = NULL;
6035 			}
6036 			asoc->ctrl_queue_cnt--;
6037 			sctp_free_a_chunk(stcb, chk);
6038 		}
6039 		chk = nchk;
6040 	}
6041 }
6042 
6043 void
6044 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6045 {
6046 	struct sctp_association *asoc;
6047 	struct sctp_tmit_chunk *chk, *chk_tmp;
6048 
6049 	asoc = &stcb->asoc;
6050 	for (chk = TAILQ_FIRST(&asoc->control_send_queue); chk != NULL;
6051 	    chk = chk_tmp) {
6052 		/* get next chk */
6053 		chk_tmp = TAILQ_NEXT(chk, sctp_next);
6054 		/* find SCTP_ASCONF chunk in queue (only one ever in queue) */
6055 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6056 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6057 			if (chk->data) {
6058 				sctp_m_freem(chk->data);
6059 				chk->data = NULL;
6060 			}
6061 			asoc->ctrl_queue_cnt--;
6062 			sctp_free_a_chunk(stcb, chk);
6063 		}
6064 	}
6065 }
6066 
6067 
6068 static void
6069 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6070 
6071     struct sctp_association *asoc,
6072     struct sctp_tmit_chunk **data_list,
6073     int bundle_at,
6074     struct sctp_nets *net)
6075 {
6076 	int i;
6077 	struct sctp_tmit_chunk *tp1;
6078 
6079 	for (i = 0; i < bundle_at; i++) {
6080 		/* off of the send queue */
6081 		if (i) {
6082 			/*
6083 			 * Any chunk NOT 0 you zap the time chunk 0 gets
6084 			 * zapped or set based on if a RTO measurment is
6085 			 * needed.
6086 			 */
6087 			data_list[i]->do_rtt = 0;
6088 		}
6089 		/* record time */
6090 		data_list[i]->sent_rcv_time = net->last_sent_time;
6091 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6092 		TAILQ_REMOVE(&asoc->send_queue,
6093 		    data_list[i],
6094 		    sctp_next);
6095 		/* on to the sent queue */
6096 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6097 		if ((tp1) && (compare_with_wrap(tp1->rec.data.TSN_seq,
6098 		    data_list[i]->rec.data.TSN_seq, MAX_TSN))) {
6099 			struct sctp_tmit_chunk *tpp;
6100 
6101 			/* need to move back */
6102 	back_up_more:
6103 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6104 			if (tpp == NULL) {
6105 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6106 				goto all_done;
6107 			}
6108 			tp1 = tpp;
6109 			if (compare_with_wrap(tp1->rec.data.TSN_seq,
6110 			    data_list[i]->rec.data.TSN_seq, MAX_TSN)) {
6111 				goto back_up_more;
6112 			}
6113 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6114 		} else {
6115 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
6116 			    data_list[i],
6117 			    sctp_next);
6118 		}
6119 all_done:
6120 		/* This does not lower until the cum-ack passes it */
6121 		asoc->sent_queue_cnt++;
6122 		asoc->send_queue_cnt--;
6123 		if ((asoc->peers_rwnd <= 0) &&
6124 		    (asoc->total_flight == 0) &&
6125 		    (bundle_at == 1)) {
6126 			/* Mark the chunk as being a window probe */
6127 			SCTP_STAT_INCR(sctps_windowprobed);
6128 		}
6129 #ifdef SCTP_AUDITING_ENABLED
6130 		sctp_audit_log(0xC2, 3);
6131 #endif
6132 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
6133 		data_list[i]->snd_count = 1;
6134 		data_list[i]->rec.data.chunk_was_revoked = 0;
6135 		if (sctp_logging_level & SCTP_FLIGHT_LOGGING_ENABLE) {
6136 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
6137 			    data_list[i]->whoTo->flight_size,
6138 			    data_list[i]->book_size,
6139 			    (uintptr_t) data_list[i]->whoTo,
6140 			    data_list[i]->rec.data.TSN_seq);
6141 		}
6142 		sctp_flight_size_increase(data_list[i]);
6143 		sctp_total_flight_increase(stcb, data_list[i]);
6144 		if (sctp_logging_level & SCTP_LOG_RWND_ENABLE) {
6145 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
6146 			    asoc->peers_rwnd, data_list[i]->send_size, sctp_peer_chunk_oh);
6147 		}
6148 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
6149 		    (uint32_t) (data_list[i]->send_size + sctp_peer_chunk_oh));
6150 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
6151 			/* SWS sender side engages */
6152 			asoc->peers_rwnd = 0;
6153 		}
6154 	}
6155 }
6156 
6157 static void
6158 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc)
6159 {
6160 	struct sctp_tmit_chunk *chk, *nchk;
6161 
6162 	for (chk = TAILQ_FIRST(&asoc->control_send_queue);
6163 	    chk; chk = nchk) {
6164 		nchk = TAILQ_NEXT(chk, sctp_next);
6165 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
6166 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
6167 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
6168 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
6169 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
6170 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
6171 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
6172 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
6173 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
6174 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
6175 			/* Stray chunks must be cleaned up */
6176 	clean_up_anyway:
6177 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6178 			if (chk->data) {
6179 				sctp_m_freem(chk->data);
6180 				chk->data = NULL;
6181 			}
6182 			asoc->ctrl_queue_cnt--;
6183 			sctp_free_a_chunk(stcb, chk);
6184 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
6185 			/* special handling, we must look into the param */
6186 			if (chk != asoc->str_reset) {
6187 				goto clean_up_anyway;
6188 			}
6189 		}
6190 	}
6191 }
6192 
6193 
6194 static int
6195 sctp_can_we_split_this(struct sctp_tcb *stcb,
6196     struct sctp_stream_queue_pending *sp,
6197     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
6198 {
6199 	/*
6200 	 * Make a decision on if I should split a msg into multiple parts.
6201 	 * This is only asked of incomplete messages.
6202 	 */
6203 	if (eeor_on) {
6204 		/*
6205 		 * If we are doing EEOR we need to always send it if its the
6206 		 * entire thing, since it might be all the guy is putting in
6207 		 * the hopper.
6208 		 */
6209 		if (goal_mtu >= sp->length) {
6210 			/*-
6211 			 * If we have data outstanding,
6212 			 * we get another chance when the sack
6213 			 * arrives to transmit - wait for more data
6214 			 */
6215 			if (stcb->asoc.total_flight == 0) {
6216 				/*
6217 				 * If nothing is in flight, we zero the
6218 				 * packet counter.
6219 				 */
6220 				return (sp->length);
6221 			}
6222 			return (0);
6223 
6224 		} else {
6225 			/* You can fill the rest */
6226 			return (goal_mtu);
6227 		}
6228 	}
6229 	/*-
6230 	 * For those strange folk that make the send buffer
6231 	 * smaller than our fragmentation point, we can't
6232 	 * get a full msg in so we have to allow splitting.
6233 	 */
6234 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
6235 		return (sp->length);
6236 	}
6237 	if ((sp->length <= goal_mtu) ||
6238 	    ((sp->length - goal_mtu) < sctp_min_residual)) {
6239 		/* Sub-optimial residual don't split in non-eeor mode. */
6240 		return (0);
6241 	}
6242 	/*
6243 	 * If we reach here sp->length is larger than the goal_mtu. Do we
6244 	 * wish to split it for the sake of packet putting together?
6245 	 */
6246 	if (goal_mtu >= min(sctp_min_split_point, frag_point)) {
6247 		/* Its ok to split it */
6248 		return (min(goal_mtu, frag_point));
6249 	}
6250 	/* Nope, can't split */
6251 	return (0);
6252 
6253 }
6254 
6255 static uint32_t
6256 sctp_move_to_outqueue(struct sctp_tcb *stcb, struct sctp_nets *net,
6257     struct sctp_stream_out *strq,
6258     uint32_t goal_mtu,
6259     uint32_t frag_point,
6260     int *locked,
6261     int *giveup,
6262     int eeor_mode,
6263     int *bail)
6264 {
6265 	/* Move from the stream to the send_queue keeping track of the total */
6266 	struct sctp_association *asoc;
6267 	struct sctp_stream_queue_pending *sp;
6268 	struct sctp_tmit_chunk *chk;
6269 	struct sctp_data_chunk *dchkh;
6270 	uint32_t to_move;
6271 	uint8_t rcv_flags = 0;
6272 	uint8_t some_taken;
6273 	uint8_t send_lock_up = 0;
6274 
6275 	SCTP_TCB_LOCK_ASSERT(stcb);
6276 	asoc = &stcb->asoc;
6277 one_more_time:
6278 	/* sa_ignore FREED_MEMORY */
6279 	sp = TAILQ_FIRST(&strq->outqueue);
6280 	if (sp == NULL) {
6281 		*locked = 0;
6282 		SCTP_TCB_SEND_LOCK(stcb);
6283 		sp = TAILQ_FIRST(&strq->outqueue);
6284 		if (sp) {
6285 			SCTP_TCB_SEND_UNLOCK(stcb);
6286 			goto one_more_time;
6287 		}
6288 		if (strq->last_msg_incomplete) {
6289 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
6290 			    strq->stream_no,
6291 			    strq->last_msg_incomplete);
6292 			strq->last_msg_incomplete = 0;
6293 		}
6294 		SCTP_TCB_SEND_UNLOCK(stcb);
6295 		return (0);
6296 	}
6297 	if (sp->msg_is_complete) {
6298 		if (sp->length == 0) {
6299 			if (sp->sender_all_done) {
6300 				/*
6301 				 * We are doing differed cleanup. Last time
6302 				 * through when we took all the data the
6303 				 * sender_all_done was not set.
6304 				 */
6305 				if (sp->put_last_out == 0) {
6306 					SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
6307 					SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
6308 					    sp->sender_all_done,
6309 					    sp->length,
6310 					    sp->msg_is_complete,
6311 					    sp->put_last_out,
6312 					    send_lock_up);
6313 				}
6314 				if (TAILQ_NEXT(sp, next) == NULL) {
6315 					SCTP_TCB_SEND_LOCK(stcb);
6316 					send_lock_up = 1;
6317 				}
6318 				atomic_subtract_int(&asoc->stream_queue_cnt, 1);
6319 				TAILQ_REMOVE(&strq->outqueue, sp, next);
6320 				sctp_free_remote_addr(sp->net);
6321 				if (sp->data) {
6322 					sctp_m_freem(sp->data);
6323 					sp->data = NULL;
6324 				}
6325 				sctp_free_a_strmoq(stcb, sp);
6326 
6327 				/* we can't be locked to it */
6328 				*locked = 0;
6329 				stcb->asoc.locked_on_sending = NULL;
6330 				if (send_lock_up) {
6331 					SCTP_TCB_SEND_UNLOCK(stcb);
6332 					send_lock_up = 0;
6333 				}
6334 				/* back to get the next msg */
6335 				goto one_more_time;
6336 			} else {
6337 				/*
6338 				 * sender just finished this but still holds
6339 				 * a reference
6340 				 */
6341 				*locked = 1;
6342 				*giveup = 1;
6343 				return (0);
6344 			}
6345 		}
6346 	} else {
6347 		/* is there some to get */
6348 		if (sp->length == 0) {
6349 			/* no */
6350 			*locked = 1;
6351 			*giveup = 1;
6352 			return (0);
6353 		}
6354 	}
6355 	some_taken = sp->some_taken;
6356 	if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
6357 		sp->msg_is_complete = 1;
6358 	}
6359 re_look:
6360 	if (sp->msg_is_complete) {
6361 		/* The message is complete */
6362 		to_move = min(sp->length, frag_point);
6363 		if (to_move == sp->length) {
6364 			/* All of it fits in the MTU */
6365 			if (sp->some_taken) {
6366 				rcv_flags |= SCTP_DATA_LAST_FRAG;
6367 				sp->put_last_out = 1;
6368 			} else {
6369 				rcv_flags |= SCTP_DATA_NOT_FRAG;
6370 				sp->put_last_out = 1;
6371 			}
6372 		} else {
6373 			/* Not all of it fits, we fragment */
6374 			if (sp->some_taken == 0) {
6375 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
6376 			}
6377 			sp->some_taken = 1;
6378 		}
6379 	} else {
6380 		to_move = sctp_can_we_split_this(stcb, sp, goal_mtu,
6381 		    frag_point, eeor_mode);
6382 		if (to_move) {
6383 			/*-
6384 			 * We use a snapshot of length in case it
6385 			 * is expanding during the compare.
6386 			 */
6387 			uint32_t llen;
6388 
6389 			llen = sp->length;
6390 			if (to_move >= llen) {
6391 				to_move = llen;
6392 				if (send_lock_up == 0) {
6393 					/*-
6394 					 * We are taking all of an incomplete msg
6395 					 * thus we need a send lock.
6396 					 */
6397 					SCTP_TCB_SEND_LOCK(stcb);
6398 					send_lock_up = 1;
6399 					if (sp->msg_is_complete) {
6400 						/*
6401 						 * the sender finished the
6402 						 * msg
6403 						 */
6404 						goto re_look;
6405 					}
6406 				}
6407 			}
6408 			if (sp->some_taken == 0) {
6409 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
6410 				sp->some_taken = 1;
6411 			}
6412 		} else {
6413 			/* Nothing to take. */
6414 			if (sp->some_taken) {
6415 				*locked = 1;
6416 			}
6417 			*giveup = 1;
6418 			return (0);
6419 		}
6420 	}
6421 
6422 	/* If we reach here, we can copy out a chunk */
6423 	sctp_alloc_a_chunk(stcb, chk);
6424 	if (chk == NULL) {
6425 		/* No chunk memory */
6426 out_gu:
6427 		if (send_lock_up) {
6428 			/* sa_ignore NO_NULL_CHK */
6429 			SCTP_TCB_SEND_UNLOCK(stcb);
6430 			send_lock_up = 0;
6431 		}
6432 		*giveup = 1;
6433 		return (0);
6434 	}
6435 	/*
6436 	 * Setup for unordered if needed by looking at the user sent info
6437 	 * flags.
6438 	 */
6439 	if (sp->sinfo_flags & SCTP_UNORDERED) {
6440 		rcv_flags |= SCTP_DATA_UNORDERED;
6441 	}
6442 	/* clear out the chunk before setting up */
6443 	memset(chk, 0, sizeof(*chk));
6444 	chk->rec.data.rcv_flags = rcv_flags;
6445 	if (SCTP_BUF_IS_EXTENDED(sp->data)) {
6446 		chk->copy_by_ref = 1;
6447 	} else {
6448 		chk->copy_by_ref = 0;
6449 	}
6450 	if (to_move >= sp->length) {
6451 		/* we can steal the whole thing */
6452 		chk->data = sp->data;
6453 		chk->last_mbuf = sp->tail_mbuf;
6454 		/* register the stealing */
6455 		sp->data = sp->tail_mbuf = NULL;
6456 	} else {
6457 		struct mbuf *m;
6458 
6459 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_DONTWAIT);
6460 		chk->last_mbuf = NULL;
6461 		if (chk->data == NULL) {
6462 			sp->some_taken = some_taken;
6463 			sctp_free_a_chunk(stcb, chk);
6464 			*bail = 1;
6465 			goto out_gu;
6466 		}
6467 		/* Pull off the data */
6468 		m_adj(sp->data, to_move);
6469 		/* Now lets work our way down and compact it */
6470 		m = sp->data;
6471 		while (m && (SCTP_BUF_LEN(m) == 0)) {
6472 			sp->data = SCTP_BUF_NEXT(m);
6473 			SCTP_BUF_NEXT(m) = NULL;
6474 			if (sp->tail_mbuf == m) {
6475 				/*-
6476 				 * Freeing tail? TSNH since
6477 				 * we supposedly were taking less
6478 				 * than the sp->length.
6479 				 */
6480 #ifdef INVARIANTS
6481 				panic("Huh, freing tail? - TSNH");
6482 #else
6483 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
6484 				sp->tail_mbuf = sp->data = NULL;
6485 				sp->length = 0;
6486 #endif
6487 
6488 			}
6489 			sctp_m_free(m);
6490 			m = sp->data;
6491 		}
6492 	}
6493 	if (to_move > sp->length) {
6494 		/*- This should not happen either
6495 		 * since we always lower to_move to the size
6496 		 * of sp->length if its larger.
6497 		 */
6498 #ifdef INVARIANTS
6499 		panic("Huh, how can to_move be larger?");
6500 #else
6501 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
6502 		sp->length = 0;
6503 #endif
6504 	} else {
6505 		atomic_subtract_int(&sp->length, to_move);
6506 	}
6507 	if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
6508 		/* Not enough room for a chunk header, get some */
6509 		struct mbuf *m;
6510 
6511 		m = sctp_get_mbuf_for_msg(1, 0, M_DONTWAIT, 0, MT_DATA);
6512 		if (m == NULL) {
6513 			/*
6514 			 * we're in trouble here. _PREPEND below will free
6515 			 * all the data if there is no leading space, so we
6516 			 * must put the data back and restore.
6517 			 */
6518 			if (send_lock_up == 0) {
6519 				SCTP_TCB_SEND_LOCK(stcb);
6520 				send_lock_up = 1;
6521 			}
6522 			if (chk->data == NULL) {
6523 				/* unsteal the data */
6524 				sp->data = chk->data;
6525 				sp->tail_mbuf = chk->last_mbuf;
6526 			} else {
6527 				struct mbuf *m_tmp;
6528 
6529 				/* reassemble the data */
6530 				m_tmp = sp->data;
6531 				sp->data = chk->data;
6532 				SCTP_BUF_NEXT(sp->data) = m_tmp;
6533 			}
6534 			sp->some_taken = some_taken;
6535 			atomic_add_int(&sp->length, to_move);
6536 			chk->data = NULL;
6537 			*bail = 1;
6538 			sctp_free_a_chunk(stcb, chk);
6539 			goto out_gu;
6540 		} else {
6541 			SCTP_BUF_LEN(m) = 0;
6542 			SCTP_BUF_NEXT(m) = chk->data;
6543 			chk->data = m;
6544 			M_ALIGN(chk->data, 4);
6545 		}
6546 	}
6547 	SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_DONTWAIT);
6548 	if (chk->data == NULL) {
6549 		/* HELP, TSNH since we assured it would not above? */
6550 #ifdef INVARIANTS
6551 		panic("prepend failes HELP?");
6552 #else
6553 		SCTP_PRINTF("prepend fails HELP?\n");
6554 		sctp_free_a_chunk(stcb, chk);
6555 #endif
6556 		*bail = 1;
6557 		goto out_gu;
6558 	}
6559 	sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
6560 	chk->book_size = chk->send_size = (to_move +
6561 	    sizeof(struct sctp_data_chunk));
6562 	chk->book_size_scale = 0;
6563 	chk->sent = SCTP_DATAGRAM_UNSENT;
6564 
6565 	/*
6566 	 * get last_mbuf and counts of mb useage This is ugly but hopefully
6567 	 * its only one mbuf.
6568 	 */
6569 	if (chk->last_mbuf == NULL) {
6570 		chk->last_mbuf = chk->data;
6571 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
6572 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
6573 		}
6574 	}
6575 	chk->flags = 0;
6576 	chk->asoc = &stcb->asoc;
6577 	chk->pad_inplace = 0;
6578 	chk->no_fr_allowed = 0;
6579 	chk->rec.data.stream_seq = sp->strseq;
6580 	chk->rec.data.stream_number = sp->stream;
6581 	chk->rec.data.payloadtype = sp->ppid;
6582 	chk->rec.data.context = sp->context;
6583 	chk->rec.data.doing_fast_retransmit = 0;
6584 	chk->rec.data.ect_nonce = 0;	/* ECN Nonce */
6585 
6586 	chk->rec.data.timetodrop = sp->ts;
6587 	chk->flags = sp->act_flags;
6588 	chk->addr_over = sp->addr_over;
6589 
6590 	chk->whoTo = net;
6591 	atomic_add_int(&chk->whoTo->ref_count, 1);
6592 
6593 	chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
6594 #ifdef SCTP_LOG_SENDING_STR
6595 	sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
6596 	    (uintptr_t) stcb, (uintptr_t) sp,
6597 	    (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
6598 	    chk->rec.data.TSN_seq);
6599 #endif
6600 
6601 	dchkh = mtod(chk->data, struct sctp_data_chunk *);
6602 	/*
6603 	 * Put the rest of the things in place now. Size was done earlier in
6604 	 * previous loop prior to padding.
6605 	 */
6606 
6607 #ifdef SCTP_ASOCLOG_OF_TSNS
6608 	SCTP_TCB_LOCK_ASSERT(stcb);
6609 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
6610 		asoc->tsn_out_at = 0;
6611 		asoc->tsn_out_wrapped = 1;
6612 	}
6613 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
6614 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
6615 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
6616 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
6617 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
6618 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
6619 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
6620 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
6621 	asoc->tsn_out_at++;
6622 #endif
6623 
6624 	dchkh->ch.chunk_type = SCTP_DATA;
6625 	dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
6626 	dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
6627 	dchkh->dp.stream_id = htons(strq->stream_no);
6628 	dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
6629 	dchkh->dp.protocol_id = chk->rec.data.payloadtype;
6630 	dchkh->ch.chunk_length = htons(chk->send_size);
6631 	/* Now advance the chk->send_size by the actual pad needed. */
6632 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
6633 		/* need a pad */
6634 		struct mbuf *lm;
6635 		int pads;
6636 
6637 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
6638 		if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
6639 			chk->pad_inplace = 1;
6640 		}
6641 		if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
6642 			/* pad added an mbuf */
6643 			chk->last_mbuf = lm;
6644 		}
6645 		chk->send_size += pads;
6646 	}
6647 	/* We only re-set the policy if it is on */
6648 	if (sp->pr_sctp_on) {
6649 		sctp_set_prsctp_policy(stcb, sp);
6650 		asoc->pr_sctp_cnt++;
6651 		chk->pr_sctp_on = 1;
6652 	} else {
6653 		chk->pr_sctp_on = 0;
6654 	}
6655 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
6656 		/* All done pull and kill the message */
6657 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
6658 		if (sp->put_last_out == 0) {
6659 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
6660 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
6661 			    sp->sender_all_done,
6662 			    sp->length,
6663 			    sp->msg_is_complete,
6664 			    sp->put_last_out,
6665 			    send_lock_up);
6666 		}
6667 		if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
6668 			SCTP_TCB_SEND_LOCK(stcb);
6669 			send_lock_up = 1;
6670 		}
6671 		TAILQ_REMOVE(&strq->outqueue, sp, next);
6672 		sctp_free_remote_addr(sp->net);
6673 		if (sp->data) {
6674 			sctp_m_freem(sp->data);
6675 			sp->data = NULL;
6676 		}
6677 		sctp_free_a_strmoq(stcb, sp);
6678 
6679 		/* we can't be locked to it */
6680 		*locked = 0;
6681 		stcb->asoc.locked_on_sending = NULL;
6682 	} else {
6683 		/* more to go, we are locked */
6684 		*locked = 1;
6685 	}
6686 	asoc->chunks_on_out_queue++;
6687 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
6688 	asoc->send_queue_cnt++;
6689 	if (send_lock_up) {
6690 		SCTP_TCB_SEND_UNLOCK(stcb);
6691 		send_lock_up = 0;
6692 	}
6693 	return (to_move);
6694 }
6695 
6696 
6697 static struct sctp_stream_out *
6698 sctp_select_a_stream(struct sctp_tcb *stcb, struct sctp_association *asoc)
6699 {
6700 	struct sctp_stream_out *strq;
6701 
6702 	/* Find the next stream to use */
6703 	if (asoc->last_out_stream == NULL) {
6704 		strq = asoc->last_out_stream = TAILQ_FIRST(&asoc->out_wheel);
6705 		if (asoc->last_out_stream == NULL) {
6706 			/* huh nothing on the wheel, TSNH */
6707 			return (NULL);
6708 		}
6709 		goto done_it;
6710 	}
6711 	strq = TAILQ_NEXT(asoc->last_out_stream, next_spoke);
6712 done_it:
6713 	if (strq == NULL) {
6714 		strq = asoc->last_out_stream = TAILQ_FIRST(&asoc->out_wheel);
6715 	}
6716 	/* Save off the last stream */
6717 	asoc->last_out_stream = strq;
6718 	return (strq);
6719 
6720 }
6721 
6722 static void
6723 sctp_fill_outqueue(struct sctp_tcb *stcb,
6724     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now)
6725 {
6726 	struct sctp_association *asoc;
6727 	struct sctp_stream_out *strq, *strqn, *strqt;
6728 	int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
6729 	int locked, giveup;
6730 	struct sctp_stream_queue_pending *sp;
6731 
6732 	SCTP_TCB_LOCK_ASSERT(stcb);
6733 	asoc = &stcb->asoc;
6734 #ifdef INET6
6735 	if (net->ro._l_addr.sin6.sin6_family == AF_INET6) {
6736 		goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
6737 	} else {
6738 		/* ?? not sure what else to do */
6739 		goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
6740 	}
6741 #else
6742 	goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
6743 	mtu_fromwheel = 0;
6744 #endif
6745 	/* Need an allowance for the data chunk header too */
6746 	goal_mtu -= sizeof(struct sctp_data_chunk);
6747 
6748 	/* must make even word boundary */
6749 	goal_mtu &= 0xfffffffc;
6750 	if (asoc->locked_on_sending) {
6751 		/* We are stuck on one stream until the message completes. */
6752 		strqn = strq = asoc->locked_on_sending;
6753 		locked = 1;
6754 	} else {
6755 		strqn = strq = sctp_select_a_stream(stcb, asoc);
6756 		locked = 0;
6757 	}
6758 
6759 	while ((goal_mtu > 0) && strq) {
6760 		sp = TAILQ_FIRST(&strq->outqueue);
6761 		/*
6762 		 * If CMT is off, we must validate that the stream in
6763 		 * question has the first item pointed towards are network
6764 		 * destionation requested by the caller. Note that if we
6765 		 * turn out to be locked to a stream (assigning TSN's then
6766 		 * we must stop, since we cannot look for another stream
6767 		 * with data to send to that destination). In CMT's case, by
6768 		 * skipping this check, we will send one data packet towards
6769 		 * the requested net.
6770 		 */
6771 		if (sp == NULL) {
6772 			break;
6773 		}
6774 		if ((sp->net != net) && (sctp_cmt_on_off == 0)) {
6775 			/* none for this network */
6776 			if (locked) {
6777 				break;
6778 			} else {
6779 				strq = sctp_select_a_stream(stcb, asoc);
6780 				if (strq == NULL)
6781 					/* none left */
6782 					break;
6783 				if (strqn == strq) {
6784 					/* I have circled */
6785 					break;
6786 				}
6787 				continue;
6788 			}
6789 		}
6790 		giveup = 0;
6791 		bail = 0;
6792 		moved_how_much = sctp_move_to_outqueue(stcb, net, strq, goal_mtu, frag_point, &locked,
6793 		    &giveup, eeor_mode, &bail);
6794 		asoc->last_out_stream = strq;
6795 		if (locked) {
6796 			asoc->locked_on_sending = strq;
6797 			if ((moved_how_much == 0) || (giveup) || bail)
6798 				/* no more to move for now */
6799 				break;
6800 		} else {
6801 			asoc->locked_on_sending = NULL;
6802 			strqt = sctp_select_a_stream(stcb, asoc);
6803 			if (TAILQ_FIRST(&strq->outqueue) == NULL) {
6804 				if (strq == strqn) {
6805 					/* Must move start to next one */
6806 					strqn = TAILQ_NEXT(asoc->last_out_stream, next_spoke);
6807 					if (strqn == NULL) {
6808 						strqn = TAILQ_FIRST(&asoc->out_wheel);
6809 						if (strqn == NULL) {
6810 							break;
6811 						}
6812 					}
6813 				}
6814 				sctp_remove_from_wheel(stcb, asoc, strq);
6815 			}
6816 			if ((giveup) || bail) {
6817 				break;
6818 			}
6819 			strq = strqt;
6820 			if (strq == NULL) {
6821 				break;
6822 			}
6823 		}
6824 		total_moved += moved_how_much;
6825 		goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
6826 		goal_mtu &= 0xfffffffc;
6827 	}
6828 	if (bail)
6829 		*quit_now = 1;
6830 
6831 	if (total_moved == 0) {
6832 		if ((sctp_cmt_on_off == 0) &&
6833 		    (net == stcb->asoc.primary_destination)) {
6834 			/* ran dry for primary network net */
6835 			SCTP_STAT_INCR(sctps_primary_randry);
6836 		} else if (sctp_cmt_on_off) {
6837 			/* ran dry with CMT on */
6838 			SCTP_STAT_INCR(sctps_cmt_randry);
6839 		}
6840 	}
6841 }
6842 
6843 void
6844 sctp_fix_ecn_echo(struct sctp_association *asoc)
6845 {
6846 	struct sctp_tmit_chunk *chk;
6847 
6848 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
6849 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
6850 			chk->sent = SCTP_DATAGRAM_UNSENT;
6851 		}
6852 	}
6853 }
6854 
6855 static void
6856 sctp_move_to_an_alt(struct sctp_tcb *stcb,
6857     struct sctp_association *asoc,
6858     struct sctp_nets *net)
6859 {
6860 	struct sctp_tmit_chunk *chk;
6861 	struct sctp_nets *a_net;
6862 
6863 	SCTP_TCB_LOCK_ASSERT(stcb);
6864 	/*
6865 	 * JRS 5/14/07 - If CMT PF is turned on, find an alternate
6866 	 * destination using the PF algorithm for finding alternate
6867 	 * destinations.
6868 	 */
6869 	if (sctp_cmt_on_off && sctp_cmt_pf) {
6870 		a_net = sctp_find_alternate_net(stcb, net, 2);
6871 	} else {
6872 		a_net = sctp_find_alternate_net(stcb, net, 0);
6873 	}
6874 	if ((a_net != net) &&
6875 	    ((a_net->dest_state & SCTP_ADDR_REACHABLE) == SCTP_ADDR_REACHABLE)) {
6876 		/*
6877 		 * We only proceed if a valid alternate is found that is not
6878 		 * this one and is reachable. Here we must move all chunks
6879 		 * queued in the send queue off of the destination address
6880 		 * to our alternate.
6881 		 */
6882 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
6883 			if (chk->whoTo == net) {
6884 				/* Move the chunk to our alternate */
6885 				sctp_free_remote_addr(chk->whoTo);
6886 				chk->whoTo = a_net;
6887 				atomic_add_int(&a_net->ref_count, 1);
6888 			}
6889 		}
6890 	}
6891 }
6892 
6893 int
6894 sctp_med_chunk_output(struct sctp_inpcb *inp,
6895     struct sctp_tcb *stcb,
6896     struct sctp_association *asoc,
6897     int *num_out,
6898     int *reason_code,
6899     int control_only, int *cwnd_full, int from_where,
6900     struct timeval *now, int *now_filled, int frag_point, int so_locked
6901 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6902     SCTP_UNUSED
6903 #endif
6904 )
6905 {
6906 	/*
6907 	 * Ok this is the generic chunk service queue. we must do the
6908 	 * following: - Service the stream queue that is next, moving any
6909 	 * message (note I must get a complete message i.e. FIRST/MIDDLE and
6910 	 * LAST to the out queue in one pass) and assigning TSN's - Check to
6911 	 * see if the cwnd/rwnd allows any output, if so we go ahead and
6912 	 * fomulate and send the low level chunks. Making sure to combine
6913 	 * any control in the control chunk queue also.
6914 	 */
6915 	struct sctp_nets *net;
6916 	struct mbuf *outchain, *endoutchain;
6917 	struct sctp_tmit_chunk *chk, *nchk;
6918 	struct sctphdr *shdr;
6919 
6920 	/* temp arrays for unlinking */
6921 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
6922 	int no_fragmentflg, error;
6923 	int one_chunk, hbflag, skip_data_for_this_net;
6924 	int asconf, cookie, no_out_cnt;
6925 	int bundle_at, ctl_cnt, no_data_chunks, cwnd_full_ind, eeor_mode;
6926 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
6927 	struct sctp_nets *start_at, *old_startat = NULL, *send_start_at;
6928 	int tsns_sent = 0;
6929 	uint32_t auth_offset = 0;
6930 	struct sctp_auth_chunk *auth = NULL;
6931 
6932 	/*
6933 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
6934 	 * destination.
6935 	 */
6936 	int pf_hbflag = 0;
6937 	int quit_now = 0;
6938 
6939 	*num_out = 0;
6940 	cwnd_full_ind = 0;
6941 
6942 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
6943 	    (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
6944 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
6945 		eeor_mode = 1;
6946 	} else {
6947 		eeor_mode = 0;
6948 	}
6949 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
6950 	/*
6951 	 * First lets prime the pump. For each destination, if there is room
6952 	 * in the flight size, attempt to pull an MTU's worth out of the
6953 	 * stream queues into the general send_queue
6954 	 */
6955 #ifdef SCTP_AUDITING_ENABLED
6956 	sctp_audit_log(0xC2, 2);
6957 #endif
6958 	SCTP_TCB_LOCK_ASSERT(stcb);
6959 	hbflag = 0;
6960 	if ((control_only) || (asoc->stream_reset_outstanding))
6961 		no_data_chunks = 1;
6962 	else
6963 		no_data_chunks = 0;
6964 
6965 	/* Nothing to possible to send? */
6966 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
6967 	    TAILQ_EMPTY(&asoc->send_queue) &&
6968 	    TAILQ_EMPTY(&asoc->out_wheel)) {
6969 		*reason_code = 9;
6970 		return (0);
6971 	}
6972 	if (asoc->peers_rwnd == 0) {
6973 		/* No room in peers rwnd */
6974 		*cwnd_full = 1;
6975 		*reason_code = 1;
6976 		if (asoc->total_flight > 0) {
6977 			/* we are allowed one chunk in flight */
6978 			no_data_chunks = 1;
6979 		}
6980 	}
6981 	if ((no_data_chunks == 0) && (!TAILQ_EMPTY(&asoc->out_wheel))) {
6982 		if (sctp_cmt_on_off) {
6983 			/*
6984 			 * for CMT we start at the next one past the one we
6985 			 * last added data to.
6986 			 */
6987 			if (TAILQ_FIRST(&asoc->send_queue) != NULL) {
6988 				goto skip_the_fill_from_streams;
6989 			}
6990 			if (asoc->last_net_data_came_from) {
6991 				net = TAILQ_NEXT(asoc->last_net_data_came_from, sctp_next);
6992 				if (net == NULL) {
6993 					net = TAILQ_FIRST(&asoc->nets);
6994 				}
6995 			} else {
6996 				/* back to start */
6997 				net = TAILQ_FIRST(&asoc->nets);
6998 			}
6999 
7000 			/*
7001 			 * JRI-TODO: CMT-MPI. Simply set the first
7002 			 * destination (net) to be optimized for the next
7003 			 * message to be pulled out of the outwheel. 1. peek
7004 			 * at outwheel 2. If large message, set net =
7005 			 * highest_cwnd 3. If small message, set net =
7006 			 * lowest rtt
7007 			 */
7008 		} else {
7009 			net = asoc->primary_destination;
7010 			if (net == NULL) {
7011 				/* TSNH */
7012 				net = TAILQ_FIRST(&asoc->nets);
7013 			}
7014 		}
7015 		start_at = net;
7016 
7017 one_more_time:
7018 		for (; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7019 			net->window_probe = 0;
7020 			if (old_startat && (old_startat == net)) {
7021 				break;
7022 			}
7023 			/*
7024 			 * JRI: if dest is unreachable or unconfirmed, do
7025 			 * not send data to it
7026 			 */
7027 			if ((net->dest_state & SCTP_ADDR_NOT_REACHABLE) || (net->dest_state & SCTP_ADDR_UNCONFIRMED)) {
7028 				continue;
7029 			}
7030 			/*
7031 			 * JRI: if dest is in PF state, do not send data to
7032 			 * it
7033 			 */
7034 			if (sctp_cmt_on_off && sctp_cmt_pf && (net->dest_state & SCTP_ADDR_PF)) {
7035 				continue;
7036 			}
7037 			if ((sctp_cmt_on_off == 0) && (net->ref_count < 2)) {
7038 				/* nothing can be in queue for this guy */
7039 				continue;
7040 			}
7041 			if (net->flight_size >= net->cwnd) {
7042 				/* skip this network, no room */
7043 				cwnd_full_ind++;
7044 				continue;
7045 			}
7046 			/*
7047 			 * JRI : this for loop we are in takes in each net,
7048 			 * if its's got space in cwnd and has data sent to
7049 			 * it (when CMT is off) then it calls
7050 			 * sctp_fill_outqueue for the net. This gets data on
7051 			 * the send queue for that network.
7052 			 *
7053 			 * In sctp_fill_outqueue TSN's are assigned and data is
7054 			 * copied out of the stream buffers. Note mostly
7055 			 * copy by reference (we hope).
7056 			 */
7057 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7058 				sctp_log_cwnd(stcb, net, 0, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7059 			}
7060 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now);
7061 			if (quit_now) {
7062 				/* memory alloc failure */
7063 				no_data_chunks = 1;
7064 				goto skip_the_fill_from_streams;
7065 			}
7066 		}
7067 		if (start_at != TAILQ_FIRST(&asoc->nets)) {
7068 			/* got to pick up the beginning stuff. */
7069 			old_startat = start_at;
7070 			start_at = net = TAILQ_FIRST(&asoc->nets);
7071 			if (old_startat)
7072 				goto one_more_time;
7073 		}
7074 	}
7075 skip_the_fill_from_streams:
7076 	*cwnd_full = cwnd_full_ind;
7077 
7078 	/* now service each destination and send out what we can for it */
7079 	/* Nothing to send? */
7080 	if ((TAILQ_FIRST(&asoc->control_send_queue) == NULL) &&
7081 	    (TAILQ_FIRST(&asoc->send_queue) == NULL)) {
7082 		*reason_code = 8;
7083 		return (0);
7084 	}
7085 	if (no_data_chunks) {
7086 		chk = TAILQ_FIRST(&asoc->control_send_queue);
7087 	} else {
7088 		chk = TAILQ_FIRST(&asoc->send_queue);
7089 	}
7090 	if (chk) {
7091 		send_start_at = chk->whoTo;
7092 	} else {
7093 		send_start_at = TAILQ_FIRST(&asoc->nets);
7094 	}
7095 	old_startat = NULL;
7096 again_one_more_time:
7097 	for (net = send_start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7098 		/* how much can we send? */
7099 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7100 		if (old_startat && (old_startat == net)) {
7101 			/* through list ocmpletely. */
7102 			break;
7103 		}
7104 		tsns_sent = 0;
7105 		if (net->ref_count < 2) {
7106 			/*
7107 			 * Ref-count of 1 so we cannot have data or control
7108 			 * queued to this address. Skip it.
7109 			 */
7110 			continue;
7111 		}
7112 		ctl_cnt = bundle_at = 0;
7113 		endoutchain = outchain = NULL;
7114 		no_fragmentflg = 1;
7115 		one_chunk = 0;
7116 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
7117 			skip_data_for_this_net = 1;
7118 		} else {
7119 			skip_data_for_this_net = 0;
7120 		}
7121 		if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
7122 			/*
7123 			 * if we have a route and an ifp check to see if we
7124 			 * have room to send to this guy
7125 			 */
7126 			struct ifnet *ifp;
7127 
7128 			ifp = net->ro.ro_rt->rt_ifp;
7129 			if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
7130 				SCTP_STAT_INCR(sctps_ifnomemqueued);
7131 				if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
7132 					sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
7133 				}
7134 				continue;
7135 			}
7136 		}
7137 		if (((struct sockaddr *)&net->ro._l_addr)->sa_family == AF_INET) {
7138 			mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7139 		} else {
7140 			mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7141 		}
7142 		mx_mtu = mtu;
7143 		to_out = 0;
7144 		if (mtu > asoc->peers_rwnd) {
7145 			if (asoc->total_flight > 0) {
7146 				/* We have a packet in flight somewhere */
7147 				r_mtu = asoc->peers_rwnd;
7148 			} else {
7149 				/* We are always allowed to send one MTU out */
7150 				one_chunk = 1;
7151 				r_mtu = mtu;
7152 			}
7153 		} else {
7154 			r_mtu = mtu;
7155 		}
7156 		/************************/
7157 		/* Control transmission */
7158 		/************************/
7159 		/* Now first lets go through the control queue */
7160 		for (chk = TAILQ_FIRST(&asoc->control_send_queue);
7161 		    chk; chk = nchk) {
7162 			nchk = TAILQ_NEXT(chk, sctp_next);
7163 			if (chk->whoTo != net) {
7164 				/*
7165 				 * No, not sent to the network we are
7166 				 * looking at
7167 				 */
7168 				continue;
7169 			}
7170 			if (chk->data == NULL) {
7171 				continue;
7172 			}
7173 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
7174 				/*
7175 				 * It must be unsent. Cookies and ASCONF's
7176 				 * hang around but there timers will force
7177 				 * when marked for resend.
7178 				 */
7179 				continue;
7180 			}
7181 			/*
7182 			 * if no AUTH is yet included and this chunk
7183 			 * requires it, make sure to account for it.  We
7184 			 * don't apply the size until the AUTH chunk is
7185 			 * actually added below in case there is no room for
7186 			 * this chunk. NOTE: we overload the use of "omtu"
7187 			 * here
7188 			 */
7189 			if ((auth == NULL) &&
7190 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7191 			    stcb->asoc.peer_auth_chunks)) {
7192 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7193 			} else
7194 				omtu = 0;
7195 			/* Here we do NOT factor the r_mtu */
7196 			if ((chk->send_size < (int)(mtu - omtu)) ||
7197 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
7198 				/*
7199 				 * We probably should glom the mbuf chain
7200 				 * from the chk->data for control but the
7201 				 * problem is it becomes yet one more level
7202 				 * of tracking to do if for some reason
7203 				 * output fails. Then I have got to
7204 				 * reconstruct the merged control chain.. el
7205 				 * yucko.. for now we take the easy way and
7206 				 * do the copy
7207 				 */
7208 				/*
7209 				 * Add an AUTH chunk, if chunk requires it
7210 				 * save the offset into the chain for AUTH
7211 				 */
7212 				if ((auth == NULL) &&
7213 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7214 				    stcb->asoc.peer_auth_chunks))) {
7215 					outchain = sctp_add_auth_chunk(outchain,
7216 					    &endoutchain,
7217 					    &auth,
7218 					    &auth_offset,
7219 					    stcb,
7220 					    chk->rec.chunk_id.id);
7221 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7222 				}
7223 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
7224 				    (int)chk->rec.chunk_id.can_take_data,
7225 				    chk->send_size, chk->copy_by_ref);
7226 				if (outchain == NULL) {
7227 					*reason_code = 8;
7228 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7229 					return (ENOMEM);
7230 				}
7231 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7232 				/* update our MTU size */
7233 				if (mtu > (chk->send_size + omtu))
7234 					mtu -= (chk->send_size + omtu);
7235 				else
7236 					mtu = 0;
7237 				to_out += (chk->send_size + omtu);
7238 				/* Do clear IP_DF ? */
7239 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7240 					no_fragmentflg = 0;
7241 				}
7242 				if (chk->rec.chunk_id.can_take_data)
7243 					chk->data = NULL;
7244 				/* Mark things to be removed, if needed */
7245 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7246 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
7247 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
7248 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
7249 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
7250 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
7251 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
7252 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
7253 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
7254 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
7255 
7256 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
7257 						hbflag = 1;
7258 						/*
7259 						 * JRS 5/14/07 - Set the
7260 						 * flag to say a heartbeat
7261 						 * is being sent.
7262 						 */
7263 						pf_hbflag = 1;
7264 					}
7265 					/* remove these chunks at the end */
7266 					if (chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) {
7267 						/* turn off the timer */
7268 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
7269 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
7270 							    inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
7271 						}
7272 					}
7273 					ctl_cnt++;
7274 				} else {
7275 					/*
7276 					 * Other chunks, since they have
7277 					 * timers running (i.e. COOKIE or
7278 					 * ASCONF) we just "trust" that it
7279 					 * gets sent or retransmitted.
7280 					 */
7281 					ctl_cnt++;
7282 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
7283 						cookie = 1;
7284 						no_out_cnt = 1;
7285 					} else if (chk->rec.chunk_id.id == SCTP_ASCONF) {
7286 						/*
7287 						 * set hb flag since we can
7288 						 * use these for RTO
7289 						 */
7290 						hbflag = 1;
7291 						asconf = 1;
7292 						/*
7293 						 * should sysctl this: don't
7294 						 * bundle data with ASCONF
7295 						 * since it requires AUTH
7296 						 */
7297 						no_data_chunks = 1;
7298 					}
7299 					chk->sent = SCTP_DATAGRAM_SENT;
7300 					chk->snd_count++;
7301 				}
7302 				if (mtu == 0) {
7303 					/*
7304 					 * Ok we are out of room but we can
7305 					 * output without effecting the
7306 					 * flight size since this little guy
7307 					 * is a control only packet.
7308 					 */
7309 					if (asconf) {
7310 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
7311 						/*
7312 						 * do NOT clear the asconf
7313 						 * flag as it is used to do
7314 						 * appropriate source
7315 						 * address selection.
7316 						 */
7317 					}
7318 					if (cookie) {
7319 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
7320 						cookie = 0;
7321 					}
7322 					SCTP_BUF_PREPEND(outchain, sizeof(struct sctphdr), M_DONTWAIT);
7323 					if (outchain == NULL) {
7324 						/* no memory */
7325 						SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
7326 						error = ENOBUFS;
7327 						goto error_out_again;
7328 					}
7329 					shdr = mtod(outchain, struct sctphdr *);
7330 					shdr->src_port = inp->sctp_lport;
7331 					shdr->dest_port = stcb->rport;
7332 					shdr->v_tag = htonl(stcb->asoc.peer_vtag);
7333 					shdr->checksum = 0;
7334 					auth_offset += sizeof(struct sctphdr);
7335 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
7336 					    (struct sockaddr *)&net->ro._l_addr,
7337 					    outchain, auth_offset, auth,
7338 					    no_fragmentflg, 0, NULL, asconf, so_locked))) {
7339 						if (error == ENOBUFS) {
7340 							asoc->ifp_had_enobuf = 1;
7341 							SCTP_STAT_INCR(sctps_lowlevelerr);
7342 						}
7343 						if (from_where == 0) {
7344 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
7345 						}
7346 				error_out_again:
7347 						/* error, could not output */
7348 						if (hbflag) {
7349 							if (*now_filled == 0) {
7350 								(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7351 								*now_filled = 1;
7352 								*now = net->last_sent_time;
7353 							} else {
7354 								net->last_sent_time = *now;
7355 							}
7356 							hbflag = 0;
7357 						}
7358 						if (error == EHOSTUNREACH) {
7359 							/*
7360 							 * Destination went
7361 							 * unreachable
7362 							 * during this send
7363 							 */
7364 							sctp_move_to_an_alt(stcb, asoc, net);
7365 						}
7366 						*reason_code = 7;
7367 						continue;
7368 					} else
7369 						asoc->ifp_had_enobuf = 0;
7370 					/* Only HB or ASCONF advances time */
7371 					if (hbflag) {
7372 						if (*now_filled == 0) {
7373 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7374 							*now_filled = 1;
7375 							*now = net->last_sent_time;
7376 						} else {
7377 							net->last_sent_time = *now;
7378 						}
7379 						hbflag = 0;
7380 					}
7381 					/*
7382 					 * increase the number we sent, if a
7383 					 * cookie is sent we don't tell them
7384 					 * any was sent out.
7385 					 */
7386 					outchain = endoutchain = NULL;
7387 					auth = NULL;
7388 					auth_offset = 0;
7389 					if (!no_out_cnt)
7390 						*num_out += ctl_cnt;
7391 					/* recalc a clean slate and setup */
7392 					if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
7393 						mtu = (net->mtu - SCTP_MIN_OVERHEAD);
7394 					} else {
7395 						mtu = (net->mtu - SCTP_MIN_V4_OVERHEAD);
7396 					}
7397 					to_out = 0;
7398 					no_fragmentflg = 1;
7399 				}
7400 			}
7401 		}
7402 		/*********************/
7403 		/* Data transmission */
7404 		/*********************/
7405 		/*
7406 		 * if AUTH for DATA is required and no AUTH has been added
7407 		 * yet, account for this in the mtu now... if no data can be
7408 		 * bundled, this adjustment won't matter anyways since the
7409 		 * packet will be going out...
7410 		 */
7411 		if ((auth == NULL) &&
7412 		    sctp_auth_is_required_chunk(SCTP_DATA,
7413 		    stcb->asoc.peer_auth_chunks)) {
7414 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7415 		}
7416 		/* now lets add any data within the MTU constraints */
7417 		if (((struct sockaddr *)&net->ro._l_addr)->sa_family == AF_INET) {
7418 			if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
7419 				omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7420 			else
7421 				omtu = 0;
7422 		} else {
7423 			if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
7424 				omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7425 			else
7426 				omtu = 0;
7427 		}
7428 		if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) && (skip_data_for_this_net == 0)) ||
7429 		    (cookie)) {
7430 			for (chk = TAILQ_FIRST(&asoc->send_queue); chk; chk = nchk) {
7431 				if (no_data_chunks) {
7432 					/* let only control go out */
7433 					*reason_code = 1;
7434 					break;
7435 				}
7436 				if (net->flight_size >= net->cwnd) {
7437 					/* skip this net, no room for data */
7438 					*reason_code = 2;
7439 					break;
7440 				}
7441 				nchk = TAILQ_NEXT(chk, sctp_next);
7442 				if (chk->whoTo != net) {
7443 					/* No, not sent to this net */
7444 					continue;
7445 				}
7446 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
7447 					/*-
7448 					 * strange, we have a chunk that is
7449 					 * to big for its destination and
7450 					 * yet no fragment ok flag.
7451 					 * Something went wrong when the
7452 					 * PMTU changed...we did not mark
7453 					 * this chunk for some reason?? I
7454 					 * will fix it here by letting IP
7455 					 * fragment it for now and printing
7456 					 * a warning. This really should not
7457 					 * happen ...
7458 					 */
7459 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
7460 					    chk->send_size, mtu);
7461 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
7462 				}
7463 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
7464 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
7465 					/* ok we will add this one */
7466 
7467 					/*
7468 					 * Add an AUTH chunk, if chunk
7469 					 * requires it, save the offset into
7470 					 * the chain for AUTH
7471 					 */
7472 					if ((auth == NULL) &&
7473 					    (sctp_auth_is_required_chunk(SCTP_DATA,
7474 					    stcb->asoc.peer_auth_chunks))) {
7475 
7476 						outchain = sctp_add_auth_chunk(outchain,
7477 						    &endoutchain,
7478 						    &auth,
7479 						    &auth_offset,
7480 						    stcb,
7481 						    SCTP_DATA);
7482 						SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7483 					}
7484 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
7485 					    chk->send_size, chk->copy_by_ref);
7486 					if (outchain == NULL) {
7487 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
7488 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
7489 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7490 						}
7491 						*reason_code = 3;
7492 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7493 						return (ENOMEM);
7494 					}
7495 					/* upate our MTU size */
7496 					/* Do clear IP_DF ? */
7497 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7498 						no_fragmentflg = 0;
7499 					}
7500 					/* unsigned subtraction of mtu */
7501 					if (mtu > chk->send_size)
7502 						mtu -= chk->send_size;
7503 					else
7504 						mtu = 0;
7505 					/* unsigned subtraction of r_mtu */
7506 					if (r_mtu > chk->send_size)
7507 						r_mtu -= chk->send_size;
7508 					else
7509 						r_mtu = 0;
7510 
7511 					to_out += chk->send_size;
7512 					if ((to_out > mx_mtu) && no_fragmentflg) {
7513 #ifdef INVARIANTS
7514 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
7515 #else
7516 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
7517 						    mx_mtu, to_out);
7518 #endif
7519 					}
7520 					chk->window_probe = 0;
7521 					data_list[bundle_at++] = chk;
7522 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
7523 						mtu = 0;
7524 						break;
7525 					}
7526 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
7527 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
7528 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
7529 						} else {
7530 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
7531 						}
7532 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
7533 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
7534 							/*
7535 							 * Count number of
7536 							 * user msg's that
7537 							 * were fragmented
7538 							 * we do this by
7539 							 * counting when we
7540 							 * see a LAST
7541 							 * fragment only.
7542 							 */
7543 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
7544 					}
7545 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
7546 						if (one_chunk) {
7547 							data_list[0]->window_probe = 1;
7548 							net->window_probe = 1;
7549 						}
7550 						break;
7551 					}
7552 				} else {
7553 					/*
7554 					 * Must be sent in order of the
7555 					 * TSN's (on a network)
7556 					 */
7557 					break;
7558 				}
7559 			}	/* for (chunk gather loop for this net) */
7560 		}		/* if asoc.state OPEN */
7561 		/* Is there something to send for this destination? */
7562 		if (outchain) {
7563 			/* We may need to start a control timer or two */
7564 			if (asconf) {
7565 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
7566 				    stcb, net);
7567 				/*
7568 				 * do NOT clear the asconf flag as it is
7569 				 * used to do appropriate source address
7570 				 * selection.
7571 				 */
7572 			}
7573 			if (cookie) {
7574 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
7575 				cookie = 0;
7576 			}
7577 			/* must start a send timer if data is being sent */
7578 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
7579 				/*
7580 				 * no timer running on this destination
7581 				 * restart it.
7582 				 */
7583 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7584 			} else if (sctp_cmt_on_off && sctp_cmt_pf && pf_hbflag && ((net->dest_state & SCTP_ADDR_PF) == SCTP_ADDR_PF)
7585 			    && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
7586 				/*
7587 				 * JRS 5/14/07 - If a HB has been sent to a
7588 				 * PF destination and no T3 timer is
7589 				 * currently running, start the T3 timer to
7590 				 * track the HBs that were sent.
7591 				 */
7592 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7593 			}
7594 			/* Now send it, if there is anything to send :> */
7595 			SCTP_BUF_PREPEND(outchain, sizeof(struct sctphdr), M_DONTWAIT);
7596 			if (outchain == NULL) {
7597 				/* out of mbufs */
7598 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
7599 				error = ENOBUFS;
7600 				goto errored_send;
7601 			}
7602 			shdr = mtod(outchain, struct sctphdr *);
7603 			shdr->src_port = inp->sctp_lport;
7604 			shdr->dest_port = stcb->rport;
7605 			shdr->v_tag = htonl(stcb->asoc.peer_vtag);
7606 			shdr->checksum = 0;
7607 			auth_offset += sizeof(struct sctphdr);
7608 			if ((error = sctp_lowlevel_chunk_output(inp,
7609 			    stcb,
7610 			    net,
7611 			    (struct sockaddr *)&net->ro._l_addr,
7612 			    outchain,
7613 			    auth_offset,
7614 			    auth,
7615 			    no_fragmentflg,
7616 			    bundle_at,
7617 			    data_list[0],
7618 			    asconf, so_locked))) {
7619 				/* error, we could not output */
7620 				if (error == ENOBUFS) {
7621 					SCTP_STAT_INCR(sctps_lowlevelerr);
7622 					asoc->ifp_had_enobuf = 1;
7623 				}
7624 				if (from_where == 0) {
7625 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
7626 				}
7627 		errored_send:
7628 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
7629 				if (hbflag) {
7630 					if (*now_filled == 0) {
7631 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7632 						*now_filled = 1;
7633 						*now = net->last_sent_time;
7634 					} else {
7635 						net->last_sent_time = *now;
7636 					}
7637 					hbflag = 0;
7638 				}
7639 				if (error == EHOSTUNREACH) {
7640 					/*
7641 					 * Destination went unreachable
7642 					 * during this send
7643 					 */
7644 					sctp_move_to_an_alt(stcb, asoc, net);
7645 				}
7646 				*reason_code = 6;
7647 				/*-
7648 				 * I add this line to be paranoid. As far as
7649 				 * I can tell the continue, takes us back to
7650 				 * the top of the for, but just to make sure
7651 				 * I will reset these again here.
7652 				 */
7653 				ctl_cnt = bundle_at = 0;
7654 				continue;	/* This takes us back to the
7655 						 * for() for the nets. */
7656 			} else {
7657 				asoc->ifp_had_enobuf = 0;
7658 			}
7659 			outchain = endoutchain = NULL;
7660 			auth = NULL;
7661 			auth_offset = 0;
7662 			if (bundle_at || hbflag) {
7663 				/* For data/asconf and hb set time */
7664 				if (*now_filled == 0) {
7665 					(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7666 					*now_filled = 1;
7667 					*now = net->last_sent_time;
7668 				} else {
7669 					net->last_sent_time = *now;
7670 				}
7671 			}
7672 			if (!no_out_cnt) {
7673 				*num_out += (ctl_cnt + bundle_at);
7674 			}
7675 			if (bundle_at) {
7676 				/* setup for a RTO measurement */
7677 				tsns_sent = data_list[0]->rec.data.TSN_seq;
7678 				/* fill time if not already filled */
7679 				if (*now_filled == 0) {
7680 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
7681 					*now_filled = 1;
7682 					*now = asoc->time_last_sent;
7683 				} else {
7684 					asoc->time_last_sent = *now;
7685 				}
7686 				data_list[0]->do_rtt = 1;
7687 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
7688 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
7689 				if (sctp_early_fr) {
7690 					if (net->flight_size < net->cwnd) {
7691 						/* start or restart it */
7692 						if (SCTP_OS_TIMER_PENDING(&net->fr_timer.timer)) {
7693 							sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net,
7694 							    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2);
7695 						}
7696 						SCTP_STAT_INCR(sctps_earlyfrstrout);
7697 						sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net);
7698 					} else {
7699 						/* stop it if its running */
7700 						if (SCTP_OS_TIMER_PENDING(&net->fr_timer.timer)) {
7701 							SCTP_STAT_INCR(sctps_earlyfrstpout);
7702 							sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net,
7703 							    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3);
7704 						}
7705 					}
7706 				}
7707 			}
7708 			if (one_chunk) {
7709 				break;
7710 			}
7711 		}
7712 		if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7713 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
7714 		}
7715 	}
7716 	if (old_startat == NULL) {
7717 		old_startat = send_start_at;
7718 		send_start_at = TAILQ_FIRST(&asoc->nets);
7719 		if (old_startat)
7720 			goto again_one_more_time;
7721 	}
7722 	/*
7723 	 * At the end there should be no NON timed chunks hanging on this
7724 	 * queue.
7725 	 */
7726 	if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7727 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
7728 	}
7729 	if ((*num_out == 0) && (*reason_code == 0)) {
7730 		*reason_code = 4;
7731 	} else {
7732 		*reason_code = 5;
7733 	}
7734 	sctp_clean_up_ctl(stcb, asoc);
7735 	return (0);
7736 }
7737 
7738 void
7739 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
7740 {
7741 	/*-
7742 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
7743 	 * the control chunk queue.
7744 	 */
7745 	struct sctp_chunkhdr *hdr;
7746 	struct sctp_tmit_chunk *chk;
7747 	struct mbuf *mat;
7748 
7749 	SCTP_TCB_LOCK_ASSERT(stcb);
7750 	sctp_alloc_a_chunk(stcb, chk);
7751 	if (chk == NULL) {
7752 		/* no memory */
7753 		sctp_m_freem(op_err);
7754 		return;
7755 	}
7756 	chk->copy_by_ref = 0;
7757 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_DONTWAIT);
7758 	if (op_err == NULL) {
7759 		sctp_free_a_chunk(stcb, chk);
7760 		return;
7761 	}
7762 	chk->send_size = 0;
7763 	mat = op_err;
7764 	while (mat != NULL) {
7765 		chk->send_size += SCTP_BUF_LEN(mat);
7766 		mat = SCTP_BUF_NEXT(mat);
7767 	}
7768 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
7769 	chk->rec.chunk_id.can_take_data = 1;
7770 	chk->sent = SCTP_DATAGRAM_UNSENT;
7771 	chk->snd_count = 0;
7772 	chk->flags = 0;
7773 	chk->asoc = &stcb->asoc;
7774 	chk->data = op_err;
7775 	chk->whoTo = chk->asoc->primary_destination;
7776 	atomic_add_int(&chk->whoTo->ref_count, 1);
7777 	hdr = mtod(op_err, struct sctp_chunkhdr *);
7778 	hdr->chunk_type = SCTP_OPERATION_ERROR;
7779 	hdr->chunk_flags = 0;
7780 	hdr->chunk_length = htons(chk->send_size);
7781 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
7782 	    chk,
7783 	    sctp_next);
7784 	chk->asoc->ctrl_queue_cnt++;
7785 }
7786 
7787 int
7788 sctp_send_cookie_echo(struct mbuf *m,
7789     int offset,
7790     struct sctp_tcb *stcb,
7791     struct sctp_nets *net)
7792 {
7793 	/*-
7794 	 * pull out the cookie and put it at the front of the control chunk
7795 	 * queue.
7796 	 */
7797 	int at;
7798 	struct mbuf *cookie;
7799 	struct sctp_paramhdr parm, *phdr;
7800 	struct sctp_chunkhdr *hdr;
7801 	struct sctp_tmit_chunk *chk;
7802 	uint16_t ptype, plen;
7803 
7804 	/* First find the cookie in the param area */
7805 	cookie = NULL;
7806 	at = offset + sizeof(struct sctp_init_chunk);
7807 
7808 	SCTP_TCB_LOCK_ASSERT(stcb);
7809 	do {
7810 		phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
7811 		if (phdr == NULL) {
7812 			return (-3);
7813 		}
7814 		ptype = ntohs(phdr->param_type);
7815 		plen = ntohs(phdr->param_length);
7816 		if (ptype == SCTP_STATE_COOKIE) {
7817 			int pad;
7818 
7819 			/* found the cookie */
7820 			if ((pad = (plen % 4))) {
7821 				plen += 4 - pad;
7822 			}
7823 			cookie = SCTP_M_COPYM(m, at, plen, M_DONTWAIT);
7824 			if (cookie == NULL) {
7825 				/* No memory */
7826 				return (-2);
7827 			}
7828 			break;
7829 		}
7830 		at += SCTP_SIZE32(plen);
7831 	} while (phdr);
7832 	if (cookie == NULL) {
7833 		/* Did not find the cookie */
7834 		return (-3);
7835 	}
7836 	/* ok, we got the cookie lets change it into a cookie echo chunk */
7837 
7838 	/* first the change from param to cookie */
7839 	hdr = mtod(cookie, struct sctp_chunkhdr *);
7840 	hdr->chunk_type = SCTP_COOKIE_ECHO;
7841 	hdr->chunk_flags = 0;
7842 	/* get the chunk stuff now and place it in the FRONT of the queue */
7843 	sctp_alloc_a_chunk(stcb, chk);
7844 	if (chk == NULL) {
7845 		/* no memory */
7846 		sctp_m_freem(cookie);
7847 		return (-5);
7848 	}
7849 	chk->copy_by_ref = 0;
7850 	chk->send_size = plen;
7851 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
7852 	chk->rec.chunk_id.can_take_data = 0;
7853 	chk->sent = SCTP_DATAGRAM_UNSENT;
7854 	chk->snd_count = 0;
7855 	chk->flags = 0;
7856 	chk->asoc = &stcb->asoc;
7857 	chk->data = cookie;
7858 	chk->whoTo = chk->asoc->primary_destination;
7859 	atomic_add_int(&chk->whoTo->ref_count, 1);
7860 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
7861 	chk->asoc->ctrl_queue_cnt++;
7862 	return (0);
7863 }
7864 
7865 void
7866 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
7867     struct mbuf *m,
7868     int offset,
7869     int chk_length,
7870     struct sctp_nets *net)
7871 {
7872 	/*
7873 	 * take a HB request and make it into a HB ack and send it.
7874 	 */
7875 	struct mbuf *outchain;
7876 	struct sctp_chunkhdr *chdr;
7877 	struct sctp_tmit_chunk *chk;
7878 
7879 
7880 	if (net == NULL)
7881 		/* must have a net pointer */
7882 		return;
7883 
7884 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_DONTWAIT);
7885 	if (outchain == NULL) {
7886 		/* gak out of memory */
7887 		return;
7888 	}
7889 	chdr = mtod(outchain, struct sctp_chunkhdr *);
7890 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
7891 	chdr->chunk_flags = 0;
7892 	if (chk_length % 4) {
7893 		/* need pad */
7894 		uint32_t cpthis = 0;
7895 		int padlen;
7896 
7897 		padlen = 4 - (chk_length % 4);
7898 		m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
7899 	}
7900 	sctp_alloc_a_chunk(stcb, chk);
7901 	if (chk == NULL) {
7902 		/* no memory */
7903 		sctp_m_freem(outchain);
7904 		return;
7905 	}
7906 	chk->copy_by_ref = 0;
7907 	chk->send_size = chk_length;
7908 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
7909 	chk->rec.chunk_id.can_take_data = 1;
7910 	chk->sent = SCTP_DATAGRAM_UNSENT;
7911 	chk->snd_count = 0;
7912 	chk->flags = 0;
7913 	chk->asoc = &stcb->asoc;
7914 	chk->data = outchain;
7915 	chk->whoTo = net;
7916 	atomic_add_int(&chk->whoTo->ref_count, 1);
7917 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
7918 	chk->asoc->ctrl_queue_cnt++;
7919 }
7920 
7921 void
7922 sctp_send_cookie_ack(struct sctp_tcb *stcb)
7923 {
7924 	/* formulate and queue a cookie-ack back to sender */
7925 	struct mbuf *cookie_ack;
7926 	struct sctp_chunkhdr *hdr;
7927 	struct sctp_tmit_chunk *chk;
7928 
7929 	cookie_ack = NULL;
7930 	SCTP_TCB_LOCK_ASSERT(stcb);
7931 
7932 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_DONTWAIT, 1, MT_HEADER);
7933 	if (cookie_ack == NULL) {
7934 		/* no mbuf's */
7935 		return;
7936 	}
7937 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
7938 	sctp_alloc_a_chunk(stcb, chk);
7939 	if (chk == NULL) {
7940 		/* no memory */
7941 		sctp_m_freem(cookie_ack);
7942 		return;
7943 	}
7944 	chk->copy_by_ref = 0;
7945 	chk->send_size = sizeof(struct sctp_chunkhdr);
7946 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
7947 	chk->rec.chunk_id.can_take_data = 1;
7948 	chk->sent = SCTP_DATAGRAM_UNSENT;
7949 	chk->snd_count = 0;
7950 	chk->flags = 0;
7951 	chk->asoc = &stcb->asoc;
7952 	chk->data = cookie_ack;
7953 	if (chk->asoc->last_control_chunk_from != NULL) {
7954 		chk->whoTo = chk->asoc->last_control_chunk_from;
7955 	} else {
7956 		chk->whoTo = chk->asoc->primary_destination;
7957 	}
7958 	atomic_add_int(&chk->whoTo->ref_count, 1);
7959 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
7960 	hdr->chunk_type = SCTP_COOKIE_ACK;
7961 	hdr->chunk_flags = 0;
7962 	hdr->chunk_length = htons(chk->send_size);
7963 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
7964 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
7965 	chk->asoc->ctrl_queue_cnt++;
7966 	return;
7967 }
7968 
7969 
7970 void
7971 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
7972 {
7973 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
7974 	struct mbuf *m_shutdown_ack;
7975 	struct sctp_shutdown_ack_chunk *ack_cp;
7976 	struct sctp_tmit_chunk *chk;
7977 
7978 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
7979 	if (m_shutdown_ack == NULL) {
7980 		/* no mbuf's */
7981 		return;
7982 	}
7983 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
7984 	sctp_alloc_a_chunk(stcb, chk);
7985 	if (chk == NULL) {
7986 		/* no memory */
7987 		sctp_m_freem(m_shutdown_ack);
7988 		return;
7989 	}
7990 	chk->copy_by_ref = 0;
7991 	chk->send_size = sizeof(struct sctp_chunkhdr);
7992 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
7993 	chk->rec.chunk_id.can_take_data = 1;
7994 	chk->sent = SCTP_DATAGRAM_UNSENT;
7995 	chk->snd_count = 0;
7996 	chk->flags = 0;
7997 	chk->asoc = &stcb->asoc;
7998 	chk->data = m_shutdown_ack;
7999 	chk->whoTo = net;
8000 	atomic_add_int(&net->ref_count, 1);
8001 
8002 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
8003 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
8004 	ack_cp->ch.chunk_flags = 0;
8005 	ack_cp->ch.chunk_length = htons(chk->send_size);
8006 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
8007 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8008 	chk->asoc->ctrl_queue_cnt++;
8009 	return;
8010 }
8011 
8012 void
8013 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
8014 {
8015 	/* formulate and queue a SHUTDOWN to the sender */
8016 	struct mbuf *m_shutdown;
8017 	struct sctp_shutdown_chunk *shutdown_cp;
8018 	struct sctp_tmit_chunk *chk;
8019 
8020 	m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
8021 	if (m_shutdown == NULL) {
8022 		/* no mbuf's */
8023 		return;
8024 	}
8025 	SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
8026 	sctp_alloc_a_chunk(stcb, chk);
8027 	if (chk == NULL) {
8028 		/* no memory */
8029 		sctp_m_freem(m_shutdown);
8030 		return;
8031 	}
8032 	chk->copy_by_ref = 0;
8033 	chk->send_size = sizeof(struct sctp_shutdown_chunk);
8034 	chk->rec.chunk_id.id = SCTP_SHUTDOWN;
8035 	chk->rec.chunk_id.can_take_data = 1;
8036 	chk->sent = SCTP_DATAGRAM_UNSENT;
8037 	chk->snd_count = 0;
8038 	chk->flags = 0;
8039 	chk->asoc = &stcb->asoc;
8040 	chk->data = m_shutdown;
8041 	chk->whoTo = net;
8042 	atomic_add_int(&net->ref_count, 1);
8043 
8044 	shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
8045 	shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
8046 	shutdown_cp->ch.chunk_flags = 0;
8047 	shutdown_cp->ch.chunk_length = htons(chk->send_size);
8048 	shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
8049 	SCTP_BUF_LEN(m_shutdown) = chk->send_size;
8050 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8051 	chk->asoc->ctrl_queue_cnt++;
8052 	return;
8053 }
8054 
8055 void
8056 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net)
8057 {
8058 	/*
8059 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
8060 	 * should be queued on the assoc queue.
8061 	 */
8062 	struct sctp_tmit_chunk *chk;
8063 	struct mbuf *m_asconf;
8064 	struct sctp_asconf_chunk *acp;
8065 	int len;
8066 
8067 	SCTP_TCB_LOCK_ASSERT(stcb);
8068 	/* compose an ASCONF chunk, maximum length is PMTU */
8069 	m_asconf = sctp_compose_asconf(stcb, &len);
8070 	if (m_asconf == NULL) {
8071 		return;
8072 	}
8073 	acp = mtod(m_asconf, struct sctp_asconf_chunk *);
8074 	sctp_alloc_a_chunk(stcb, chk);
8075 	if (chk == NULL) {
8076 		/* no memory */
8077 		sctp_m_freem(m_asconf);
8078 		return;
8079 	}
8080 	chk->copy_by_ref = 0;
8081 	chk->data = m_asconf;
8082 	chk->send_size = len;
8083 	chk->rec.chunk_id.id = SCTP_ASCONF;
8084 	chk->rec.chunk_id.can_take_data = 0;
8085 	chk->sent = SCTP_DATAGRAM_UNSENT;
8086 	chk->snd_count = 0;
8087 	chk->flags = 0;
8088 	chk->asoc = &stcb->asoc;
8089 	chk->whoTo = chk->asoc->primary_destination;
8090 	atomic_add_int(&chk->whoTo->ref_count, 1);
8091 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8092 	chk->asoc->ctrl_queue_cnt++;
8093 	return;
8094 }
8095 
8096 void
8097 sctp_send_asconf_ack(struct sctp_tcb *stcb)
8098 {
8099 	/*
8100 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
8101 	 * must be stored in the tcb.
8102 	 */
8103 	struct sctp_tmit_chunk *chk;
8104 	struct sctp_asconf_ack *ack, *latest_ack;
8105 	struct mbuf *m_ack, *m;
8106 	struct sctp_nets *net = NULL;
8107 
8108 	SCTP_TCB_LOCK_ASSERT(stcb);
8109 	/* Get the latest ASCONF-ACK */
8110 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
8111 	if (latest_ack == NULL) {
8112 		return;
8113 	}
8114 	if (latest_ack->last_sent_to != NULL &&
8115 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
8116 		/* we're doing a retransmission */
8117 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
8118 		if (net == NULL) {
8119 			/* no alternate */
8120 			if (stcb->asoc.last_control_chunk_from == NULL)
8121 				net = stcb->asoc.primary_destination;
8122 			else
8123 				net = stcb->asoc.last_control_chunk_from;
8124 		}
8125 	} else {
8126 		/* normal case */
8127 		if (stcb->asoc.last_control_chunk_from == NULL)
8128 			net = stcb->asoc.primary_destination;
8129 		else
8130 			net = stcb->asoc.last_control_chunk_from;
8131 	}
8132 	latest_ack->last_sent_to = net;
8133 
8134 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
8135 		if (ack->data == NULL) {
8136 			continue;
8137 		}
8138 		/* copy the asconf_ack */
8139 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_DONTWAIT);
8140 		if (m_ack == NULL) {
8141 			/* couldn't copy it */
8142 			return;
8143 		}
8144 		sctp_alloc_a_chunk(stcb, chk);
8145 		if (chk == NULL) {
8146 			/* no memory */
8147 			if (m_ack)
8148 				sctp_m_freem(m_ack);
8149 			return;
8150 		}
8151 		chk->copy_by_ref = 0;
8152 
8153 		chk->whoTo = net;
8154 		chk->data = m_ack;
8155 		chk->send_size = 0;
8156 		/* Get size */
8157 		m = m_ack;
8158 		chk->send_size = ack->len;
8159 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
8160 		chk->rec.chunk_id.can_take_data = 1;
8161 		chk->sent = SCTP_DATAGRAM_UNSENT;
8162 		chk->snd_count = 0;
8163 		chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;	/* XXX */
8164 		chk->asoc = &stcb->asoc;
8165 		atomic_add_int(&chk->whoTo->ref_count, 1);
8166 
8167 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8168 		chk->asoc->ctrl_queue_cnt++;
8169 	}
8170 	return;
8171 }
8172 
8173 
8174 static int
8175 sctp_chunk_retransmission(struct sctp_inpcb *inp,
8176     struct sctp_tcb *stcb,
8177     struct sctp_association *asoc,
8178     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
8179 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
8180     SCTP_UNUSED
8181 #endif
8182 )
8183 {
8184 	/*-
8185 	 * send out one MTU of retransmission. If fast_retransmit is
8186 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
8187 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
8188 	 * retransmit them by themselves.
8189 	 *
8190 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
8191 	 * marked for resend and bundle them all together (up to a MTU of
8192 	 * destination). The address to send to should have been
8193 	 * selected/changed where the retransmission was marked (i.e. in FR
8194 	 * or t3-timeout routines).
8195 	 */
8196 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
8197 	struct sctp_tmit_chunk *chk, *fwd;
8198 	struct mbuf *m, *endofchain;
8199 	struct sctphdr *shdr;
8200 	int asconf;
8201 	struct sctp_nets *net = NULL;
8202 	uint32_t tsns_sent = 0;
8203 	int no_fragmentflg, bundle_at, cnt_thru;
8204 	unsigned int mtu;
8205 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
8206 	struct sctp_auth_chunk *auth = NULL;
8207 	uint32_t auth_offset = 0;
8208 	uint32_t dmtu = 0;
8209 
8210 	SCTP_TCB_LOCK_ASSERT(stcb);
8211 	tmr_started = ctl_cnt = bundle_at = error = 0;
8212 	no_fragmentflg = 1;
8213 	asconf = 0;
8214 	fwd_tsn = 0;
8215 	*cnt_out = 0;
8216 	fwd = NULL;
8217 	endofchain = m = NULL;
8218 #ifdef SCTP_AUDITING_ENABLED
8219 	sctp_audit_log(0xC3, 1);
8220 #endif
8221 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
8222 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
8223 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
8224 		    asoc->sent_queue_retran_cnt);
8225 		asoc->sent_queue_cnt = 0;
8226 		asoc->sent_queue_cnt_removeable = 0;
8227 		/* send back 0/0 so we enter normal transmission */
8228 		*cnt_out = 0;
8229 		return (0);
8230 	}
8231 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
8232 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
8233 		    (chk->rec.chunk_id.id == SCTP_ASCONF) ||
8234 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
8235 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
8236 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
8237 				if (chk != asoc->str_reset) {
8238 					/*
8239 					 * not eligible for retran if its
8240 					 * not ours
8241 					 */
8242 					continue;
8243 				}
8244 			}
8245 			ctl_cnt++;
8246 			if (chk->rec.chunk_id.id == SCTP_ASCONF) {
8247 				no_fragmentflg = 1;
8248 				asconf = 1;
8249 			}
8250 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
8251 				fwd_tsn = 1;
8252 				fwd = chk;
8253 			}
8254 			/*
8255 			 * Add an AUTH chunk, if chunk requires it save the
8256 			 * offset into the chain for AUTH
8257 			 */
8258 			if ((auth == NULL) &&
8259 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8260 			    stcb->asoc.peer_auth_chunks))) {
8261 				m = sctp_add_auth_chunk(m, &endofchain,
8262 				    &auth, &auth_offset,
8263 				    stcb,
8264 				    chk->rec.chunk_id.id);
8265 			}
8266 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
8267 			break;
8268 		}
8269 	}
8270 	one_chunk = 0;
8271 	cnt_thru = 0;
8272 	/* do we have control chunks to retransmit? */
8273 	if (m != NULL) {
8274 		/* Start a timer no matter if we suceed or fail */
8275 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8276 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
8277 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF)
8278 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
8279 
8280 		SCTP_BUF_PREPEND(m, sizeof(struct sctphdr), M_DONTWAIT);
8281 		if (m == NULL) {
8282 			SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
8283 			return (ENOBUFS);
8284 		}
8285 		shdr = mtod(m, struct sctphdr *);
8286 		shdr->src_port = inp->sctp_lport;
8287 		shdr->dest_port = stcb->rport;
8288 		shdr->v_tag = htonl(stcb->asoc.peer_vtag);
8289 		shdr->checksum = 0;
8290 		auth_offset += sizeof(struct sctphdr);
8291 		chk->snd_count++;	/* update our count */
8292 
8293 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
8294 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m, auth_offset,
8295 		    auth, no_fragmentflg, 0, NULL, asconf, so_locked))) {
8296 			SCTP_STAT_INCR(sctps_lowlevelerr);
8297 			return (error);
8298 		}
8299 		m = endofchain = NULL;
8300 		auth = NULL;
8301 		auth_offset = 0;
8302 		/*
8303 		 * We don't want to mark the net->sent time here since this
8304 		 * we use this for HB and retrans cannot measure RTT
8305 		 */
8306 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
8307 		*cnt_out += 1;
8308 		chk->sent = SCTP_DATAGRAM_SENT;
8309 		sctp_ucount_decr(asoc->sent_queue_retran_cnt);
8310 		if (fwd_tsn == 0) {
8311 			return (0);
8312 		} else {
8313 			/* Clean up the fwd-tsn list */
8314 			sctp_clean_up_ctl(stcb, asoc);
8315 			return (0);
8316 		}
8317 	}
8318 	/*
8319 	 * Ok, it is just data retransmission we need to do or that and a
8320 	 * fwd-tsn with it all.
8321 	 */
8322 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
8323 		return (SCTP_RETRAN_DONE);
8324 	}
8325 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
8326 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
8327 		/* not yet open, resend the cookie and that is it */
8328 		return (1);
8329 	}
8330 #ifdef SCTP_AUDITING_ENABLED
8331 	sctp_auditing(20, inp, stcb, NULL);
8332 #endif
8333 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
8334 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
8335 			/* No, not sent to this net or not ready for rtx */
8336 			continue;
8337 		}
8338 		if ((sctp_max_retran_chunk) && (chk->snd_count >= sctp_max_retran_chunk)) {
8339 			/* Gak, we have exceeded max unlucky retran, abort! */
8340 			SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
8341 			    chk->snd_count,
8342 			    sctp_max_retran_chunk);
8343 			atomic_add_int(&stcb->asoc.refcnt, 1);
8344 			sctp_abort_an_association(stcb->sctp_ep, stcb, 0, NULL, so_locked);
8345 			SCTP_TCB_LOCK(stcb);
8346 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
8347 			return (SCTP_RETRAN_EXIT);
8348 		}
8349 		/* pick up the net */
8350 		net = chk->whoTo;
8351 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
8352 			mtu = (net->mtu - SCTP_MIN_OVERHEAD);
8353 		} else {
8354 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8355 		}
8356 
8357 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
8358 			/* No room in peers rwnd */
8359 			uint32_t tsn;
8360 
8361 			tsn = asoc->last_acked_seq + 1;
8362 			if (tsn == chk->rec.data.TSN_seq) {
8363 				/*
8364 				 * we make a special exception for this
8365 				 * case. The peer has no rwnd but is missing
8366 				 * the lowest chunk.. which is probably what
8367 				 * is holding up the rwnd.
8368 				 */
8369 				goto one_chunk_around;
8370 			}
8371 			return (1);
8372 		}
8373 one_chunk_around:
8374 		if (asoc->peers_rwnd < mtu) {
8375 			one_chunk = 1;
8376 			if ((asoc->peers_rwnd == 0) &&
8377 			    (asoc->total_flight == 0)) {
8378 				chk->window_probe = 1;
8379 				chk->whoTo->window_probe = 1;
8380 			}
8381 		}
8382 #ifdef SCTP_AUDITING_ENABLED
8383 		sctp_audit_log(0xC3, 2);
8384 #endif
8385 		bundle_at = 0;
8386 		m = NULL;
8387 		net->fast_retran_ip = 0;
8388 		if (chk->rec.data.doing_fast_retransmit == 0) {
8389 			/*
8390 			 * if no FR in progress skip destination that have
8391 			 * flight_size > cwnd.
8392 			 */
8393 			if (net->flight_size >= net->cwnd) {
8394 				continue;
8395 			}
8396 		} else {
8397 			/*
8398 			 * Mark the destination net to have FR recovery
8399 			 * limits put on it.
8400 			 */
8401 			*fr_done = 1;
8402 			net->fast_retran_ip = 1;
8403 		}
8404 
8405 		/*
8406 		 * if no AUTH is yet included and this chunk requires it,
8407 		 * make sure to account for it.  We don't apply the size
8408 		 * until the AUTH chunk is actually added below in case
8409 		 * there is no room for this chunk.
8410 		 */
8411 		if ((auth == NULL) &&
8412 		    sctp_auth_is_required_chunk(SCTP_DATA,
8413 		    stcb->asoc.peer_auth_chunks)) {
8414 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8415 		} else
8416 			dmtu = 0;
8417 
8418 		if ((chk->send_size <= (mtu - dmtu)) ||
8419 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8420 			/* ok we will add this one */
8421 			if ((auth == NULL) &&
8422 			    (sctp_auth_is_required_chunk(SCTP_DATA,
8423 			    stcb->asoc.peer_auth_chunks))) {
8424 				m = sctp_add_auth_chunk(m, &endofchain,
8425 				    &auth, &auth_offset,
8426 				    stcb, SCTP_DATA);
8427 			}
8428 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
8429 			if (m == NULL) {
8430 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8431 				return (ENOMEM);
8432 			}
8433 			/* Do clear IP_DF ? */
8434 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8435 				no_fragmentflg = 0;
8436 			}
8437 			/* upate our MTU size */
8438 			if (mtu > (chk->send_size + dmtu))
8439 				mtu -= (chk->send_size + dmtu);
8440 			else
8441 				mtu = 0;
8442 			data_list[bundle_at++] = chk;
8443 			if (one_chunk && (asoc->total_flight <= 0)) {
8444 				SCTP_STAT_INCR(sctps_windowprobed);
8445 			}
8446 		}
8447 		if (one_chunk == 0) {
8448 			/*
8449 			 * now are there anymore forward from chk to pick
8450 			 * up?
8451 			 */
8452 			fwd = TAILQ_NEXT(chk, sctp_next);
8453 			while (fwd) {
8454 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
8455 					/* Nope, not for retran */
8456 					fwd = TAILQ_NEXT(fwd, sctp_next);
8457 					continue;
8458 				}
8459 				if (fwd->whoTo != net) {
8460 					/* Nope, not the net in question */
8461 					fwd = TAILQ_NEXT(fwd, sctp_next);
8462 					continue;
8463 				}
8464 				if ((auth == NULL) &&
8465 				    sctp_auth_is_required_chunk(SCTP_DATA,
8466 				    stcb->asoc.peer_auth_chunks)) {
8467 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8468 				} else
8469 					dmtu = 0;
8470 				if (fwd->send_size <= (mtu - dmtu)) {
8471 					if ((auth == NULL) &&
8472 					    (sctp_auth_is_required_chunk(SCTP_DATA,
8473 					    stcb->asoc.peer_auth_chunks))) {
8474 						m = sctp_add_auth_chunk(m,
8475 						    &endofchain,
8476 						    &auth, &auth_offset,
8477 						    stcb,
8478 						    SCTP_DATA);
8479 					}
8480 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
8481 					if (m == NULL) {
8482 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8483 						return (ENOMEM);
8484 					}
8485 					/* Do clear IP_DF ? */
8486 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8487 						no_fragmentflg = 0;
8488 					}
8489 					/* upate our MTU size */
8490 					if (mtu > (fwd->send_size + dmtu))
8491 						mtu -= (fwd->send_size + dmtu);
8492 					else
8493 						mtu = 0;
8494 					data_list[bundle_at++] = fwd;
8495 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8496 						break;
8497 					}
8498 					fwd = TAILQ_NEXT(fwd, sctp_next);
8499 				} else {
8500 					/* can't fit so we are done */
8501 					break;
8502 				}
8503 			}
8504 		}
8505 		/* Is there something to send for this destination? */
8506 		if (m) {
8507 			/*
8508 			 * No matter if we fail/or suceed we should start a
8509 			 * timer. A failure is like a lost IP packet :-)
8510 			 */
8511 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8512 				/*
8513 				 * no timer running on this destination
8514 				 * restart it.
8515 				 */
8516 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8517 				tmr_started = 1;
8518 			}
8519 			SCTP_BUF_PREPEND(m, sizeof(struct sctphdr), M_DONTWAIT);
8520 			if (m == NULL) {
8521 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
8522 				return (ENOBUFS);
8523 			}
8524 			shdr = mtod(m, struct sctphdr *);
8525 			shdr->src_port = inp->sctp_lport;
8526 			shdr->dest_port = stcb->rport;
8527 			shdr->v_tag = htonl(stcb->asoc.peer_vtag);
8528 			shdr->checksum = 0;
8529 			auth_offset += sizeof(struct sctphdr);
8530 			/* Now lets send it, if there is anything to send :> */
8531 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8532 			    (struct sockaddr *)&net->ro._l_addr, m, auth_offset,
8533 			    auth, no_fragmentflg, 0, NULL, asconf, so_locked))) {
8534 				/* error, we could not output */
8535 				SCTP_STAT_INCR(sctps_lowlevelerr);
8536 				return (error);
8537 			}
8538 			m = endofchain = NULL;
8539 			auth = NULL;
8540 			auth_offset = 0;
8541 			/* For HB's */
8542 			/*
8543 			 * We don't want to mark the net->sent time here
8544 			 * since this we use this for HB and retrans cannot
8545 			 * measure RTT
8546 			 */
8547 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
8548 
8549 			/* For auto-close */
8550 			cnt_thru++;
8551 			if (*now_filled == 0) {
8552 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8553 				*now = asoc->time_last_sent;
8554 				*now_filled = 1;
8555 			} else {
8556 				asoc->time_last_sent = *now;
8557 			}
8558 			*cnt_out += bundle_at;
8559 #ifdef SCTP_AUDITING_ENABLED
8560 			sctp_audit_log(0xC4, bundle_at);
8561 #endif
8562 			if (bundle_at) {
8563 				tsns_sent = data_list[0]->rec.data.TSN_seq;
8564 			}
8565 			for (i = 0; i < bundle_at; i++) {
8566 				SCTP_STAT_INCR(sctps_sendretransdata);
8567 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
8568 				/*
8569 				 * When we have a revoked data, and we
8570 				 * retransmit it, then we clear the revoked
8571 				 * flag since this flag dictates if we
8572 				 * subtracted from the fs
8573 				 */
8574 				if (data_list[i]->rec.data.chunk_was_revoked) {
8575 					/* Deflate the cwnd */
8576 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
8577 					data_list[i]->rec.data.chunk_was_revoked = 0;
8578 				}
8579 				data_list[i]->snd_count++;
8580 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
8581 				/* record the time */
8582 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
8583 				if (data_list[i]->book_size_scale) {
8584 					/*
8585 					 * need to double the book size on
8586 					 * this one
8587 					 */
8588 					data_list[i]->book_size_scale = 0;
8589 					/*
8590 					 * Since we double the booksize, we
8591 					 * must also double the output queue
8592 					 * size, since this get shrunk when
8593 					 * we free by this amount.
8594 					 */
8595 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
8596 					data_list[i]->book_size *= 2;
8597 
8598 
8599 				} else {
8600 					if (sctp_logging_level & SCTP_LOG_RWND_ENABLE) {
8601 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
8602 						    asoc->peers_rwnd, data_list[i]->send_size, sctp_peer_chunk_oh);
8603 					}
8604 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
8605 					    (uint32_t) (data_list[i]->send_size +
8606 					    sctp_peer_chunk_oh));
8607 				}
8608 				if (sctp_logging_level & SCTP_FLIGHT_LOGGING_ENABLE) {
8609 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
8610 					    data_list[i]->whoTo->flight_size,
8611 					    data_list[i]->book_size,
8612 					    (uintptr_t) data_list[i]->whoTo,
8613 					    data_list[i]->rec.data.TSN_seq);
8614 				}
8615 				sctp_flight_size_increase(data_list[i]);
8616 				sctp_total_flight_increase(stcb, data_list[i]);
8617 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
8618 					/* SWS sender side engages */
8619 					asoc->peers_rwnd = 0;
8620 				}
8621 				if ((i == 0) &&
8622 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
8623 					SCTP_STAT_INCR(sctps_sendfastretrans);
8624 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
8625 					    (tmr_started == 0)) {
8626 						/*-
8627 						 * ok we just fast-retrans'd
8628 						 * the lowest TSN, i.e the
8629 						 * first on the list. In
8630 						 * this case we want to give
8631 						 * some more time to get a
8632 						 * SACK back without a
8633 						 * t3-expiring.
8634 						 */
8635 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
8636 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
8637 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8638 					}
8639 				}
8640 			}
8641 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8642 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
8643 			}
8644 #ifdef SCTP_AUDITING_ENABLED
8645 			sctp_auditing(21, inp, stcb, NULL);
8646 #endif
8647 		} else {
8648 			/* None will fit */
8649 			return (1);
8650 		}
8651 		if (asoc->sent_queue_retran_cnt <= 0) {
8652 			/* all done we have no more to retran */
8653 			asoc->sent_queue_retran_cnt = 0;
8654 			break;
8655 		}
8656 		if (one_chunk) {
8657 			/* No more room in rwnd */
8658 			return (1);
8659 		}
8660 		/* stop the for loop here. we sent out a packet */
8661 		break;
8662 	}
8663 	return (0);
8664 }
8665 
8666 
8667 static int
8668 sctp_timer_validation(struct sctp_inpcb *inp,
8669     struct sctp_tcb *stcb,
8670     struct sctp_association *asoc,
8671     int ret)
8672 {
8673 	struct sctp_nets *net;
8674 
8675 	/* Validate that a timer is running somewhere */
8676 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
8677 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8678 			/* Here is a timer */
8679 			return (ret);
8680 		}
8681 	}
8682 	SCTP_TCB_LOCK_ASSERT(stcb);
8683 	/* Gak, we did not have a timer somewhere */
8684 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
8685 	sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
8686 	return (ret);
8687 }
8688 
8689 void
8690 sctp_chunk_output(struct sctp_inpcb *inp,
8691     struct sctp_tcb *stcb,
8692     int from_where,
8693     int so_locked
8694 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
8695     SCTP_UNUSED
8696 #endif
8697 )
8698 {
8699 	/*-
8700 	 * Ok this is the generic chunk service queue. we must do the
8701 	 * following:
8702 	 * - See if there are retransmits pending, if so we must
8703 	 *   do these first.
8704 	 * - Service the stream queue that is next, moving any
8705 	 *   message (note I must get a complete message i.e.
8706 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
8707 	 *   TSN's
8708 	 * - Check to see if the cwnd/rwnd allows any output, if so we
8709 	 *   go ahead and fomulate and send the low level chunks. Making sure
8710 	 *   to combine any control in the control chunk queue also.
8711 	 */
8712 	struct sctp_association *asoc;
8713 	struct sctp_nets *net;
8714 	int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0,
8715 	    burst_cnt = 0, burst_limit = 0;
8716 	struct timeval now;
8717 	int now_filled = 0;
8718 	int cwnd_full = 0;
8719 	int nagle_on = 0;
8720 	int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
8721 	int un_sent = 0;
8722 	int fr_done, tot_frs = 0;
8723 
8724 	asoc = &stcb->asoc;
8725 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
8726 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
8727 			nagle_on = 0;
8728 		} else {
8729 			nagle_on = 1;
8730 		}
8731 	}
8732 	SCTP_TCB_LOCK_ASSERT(stcb);
8733 
8734 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
8735 
8736 	if ((un_sent <= 0) &&
8737 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
8738 	    (asoc->sent_queue_retran_cnt == 0)) {
8739 		/* Nothing to do unless there is something to be sent left */
8740 		return;
8741 	}
8742 	/*
8743 	 * Do we have something to send, data or control AND a sack timer
8744 	 * running, if so piggy-back the sack.
8745 	 */
8746 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8747 		sctp_send_sack(stcb);
8748 		(void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
8749 	}
8750 	while (asoc->sent_queue_retran_cnt) {
8751 		/*-
8752 		 * Ok, it is retransmission time only, we send out only ONE
8753 		 * packet with a single call off to the retran code.
8754 		 */
8755 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
8756 			/*-
8757 			 * Special hook for handling cookiess discarded
8758 			 * by peer that carried data. Send cookie-ack only
8759 			 * and then the next call with get the retran's.
8760 			 */
8761 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
8762 			    &cwnd_full, from_where,
8763 			    &now, &now_filled, frag_point, so_locked);
8764 			return;
8765 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
8766 			/* if its not from a HB then do it */
8767 			fr_done = 0;
8768 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
8769 			if (fr_done) {
8770 				tot_frs++;
8771 			}
8772 		} else {
8773 			/*
8774 			 * its from any other place, we don't allow retran
8775 			 * output (only control)
8776 			 */
8777 			ret = 1;
8778 		}
8779 		if (ret > 0) {
8780 			/* Can't send anymore */
8781 			/*-
8782 			 * now lets push out control by calling med-level
8783 			 * output once. this assures that we WILL send HB's
8784 			 * if queued too.
8785 			 */
8786 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
8787 			    &cwnd_full, from_where,
8788 			    &now, &now_filled, frag_point, so_locked);
8789 #ifdef SCTP_AUDITING_ENABLED
8790 			sctp_auditing(8, inp, stcb, NULL);
8791 #endif
8792 			(void)sctp_timer_validation(inp, stcb, asoc, ret);
8793 			return;
8794 		}
8795 		if (ret < 0) {
8796 			/*-
8797 			 * The count was off.. retran is not happening so do
8798 			 * the normal retransmission.
8799 			 */
8800 #ifdef SCTP_AUDITING_ENABLED
8801 			sctp_auditing(9, inp, stcb, NULL);
8802 #endif
8803 			if (ret == SCTP_RETRAN_EXIT) {
8804 				return;
8805 			}
8806 			break;
8807 		}
8808 		if (from_where == SCTP_OUTPUT_FROM_T3) {
8809 			/* Only one transmission allowed out of a timeout */
8810 #ifdef SCTP_AUDITING_ENABLED
8811 			sctp_auditing(10, inp, stcb, NULL);
8812 #endif
8813 			/* Push out any control */
8814 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, &cwnd_full, from_where,
8815 			    &now, &now_filled, frag_point, so_locked);
8816 			return;
8817 		}
8818 		if (tot_frs > asoc->max_burst) {
8819 			/* Hit FR burst limit */
8820 			return;
8821 		}
8822 		if ((num_out == 0) && (ret == 0)) {
8823 
8824 			/* No more retrans to send */
8825 			break;
8826 		}
8827 	}
8828 #ifdef SCTP_AUDITING_ENABLED
8829 	sctp_auditing(12, inp, stcb, NULL);
8830 #endif
8831 	/* Check for bad destinations, if they exist move chunks around. */
8832 	burst_limit = asoc->max_burst;
8833 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
8834 		if ((net->dest_state & SCTP_ADDR_NOT_REACHABLE) ==
8835 		    SCTP_ADDR_NOT_REACHABLE) {
8836 			/*-
8837 			 * if possible move things off of this address we
8838 			 * still may send below due to the dormant state but
8839 			 * we try to find an alternate address to send to
8840 			 * and if we have one we move all queued data on the
8841 			 * out wheel to this alternate address.
8842 			 */
8843 			if (net->ref_count > 1)
8844 				sctp_move_to_an_alt(stcb, asoc, net);
8845 		} else if (sctp_cmt_on_off && sctp_cmt_pf && ((net->dest_state & SCTP_ADDR_PF) ==
8846 		    SCTP_ADDR_PF)) {
8847 			/*
8848 			 * JRS 5/14/07 - If CMT PF is on and the current
8849 			 * destination is in PF state, move all queued data
8850 			 * to an alternate desination.
8851 			 */
8852 			if (net->ref_count > 1)
8853 				sctp_move_to_an_alt(stcb, asoc, net);
8854 		} else {
8855 			/*-
8856 			 * if ((asoc->sat_network) || (net->addr_is_local))
8857 			 * { burst_limit = asoc->max_burst *
8858 			 * SCTP_SAT_NETWORK_BURST_INCR; }
8859 			 */
8860 			if (sctp_use_cwnd_based_maxburst) {
8861 				if ((net->flight_size + (burst_limit * net->mtu)) < net->cwnd) {
8862 					/*
8863 					 * JRS - Use the congestion control
8864 					 * given in the congestion control
8865 					 * module
8866 					 */
8867 					asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, burst_limit);
8868 					if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8869 						sctp_log_maxburst(stcb, net, 0, burst_limit, SCTP_MAX_BURST_APPLIED);
8870 					}
8871 					SCTP_STAT_INCR(sctps_maxburstqueued);
8872 				}
8873 				net->fast_retran_ip = 0;
8874 			} else {
8875 				if (net->flight_size == 0) {
8876 					/* Should be decaying the cwnd here */
8877 					;
8878 				}
8879 			}
8880 		}
8881 
8882 	}
8883 	burst_cnt = 0;
8884 	cwnd_full = 0;
8885 	do {
8886 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
8887 		    &reason_code, 0, &cwnd_full, from_where,
8888 		    &now, &now_filled, frag_point, so_locked);
8889 		if (error) {
8890 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
8891 			if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8892 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
8893 			}
8894 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8895 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
8896 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
8897 			}
8898 			break;
8899 		}
8900 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
8901 
8902 		tot_out += num_out;
8903 		burst_cnt++;
8904 		if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8905 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
8906 			if (num_out == 0) {
8907 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
8908 			}
8909 		}
8910 		if (nagle_on) {
8911 			/*-
8912 			 * When nagle is on, we look at how much is un_sent, then
8913 			 * if its smaller than an MTU and we have data in
8914 			 * flight we stop.
8915 			 */
8916 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
8917 			    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count)
8918 			    * sizeof(struct sctp_data_chunk)));
8919 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
8920 			    (stcb->asoc.total_flight > 0)) {
8921 				break;
8922 			}
8923 		}
8924 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
8925 		    TAILQ_EMPTY(&asoc->send_queue) &&
8926 		    TAILQ_EMPTY(&asoc->out_wheel)) {
8927 			/* Nothing left to send */
8928 			break;
8929 		}
8930 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
8931 			/* Nothing left to send */
8932 			break;
8933 		}
8934 	} while (num_out && (sctp_use_cwnd_based_maxburst ||
8935 	    (burst_cnt < burst_limit)));
8936 
8937 	if (sctp_use_cwnd_based_maxburst == 0) {
8938 		if (burst_cnt >= burst_limit) {
8939 			SCTP_STAT_INCR(sctps_maxburstqueued);
8940 			asoc->burst_limit_applied = 1;
8941 			if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8942 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
8943 			}
8944 		} else {
8945 			asoc->burst_limit_applied = 0;
8946 		}
8947 	}
8948 	if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8949 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
8950 	}
8951 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
8952 	    tot_out);
8953 
8954 	/*-
8955 	 * Now we need to clean up the control chunk chain if a ECNE is on
8956 	 * it. It must be marked as UNSENT again so next call will continue
8957 	 * to send it until such time that we get a CWR, to remove it.
8958 	 */
8959 	if (stcb->asoc.ecn_echo_cnt_onq)
8960 		sctp_fix_ecn_echo(asoc);
8961 	return;
8962 }
8963 
8964 
8965 int
8966 sctp_output(inp, m, addr, control, p, flags)
8967 	struct sctp_inpcb *inp;
8968 	struct mbuf *m;
8969 	struct sockaddr *addr;
8970 	struct mbuf *control;
8971 	struct thread *p;
8972 	int flags;
8973 {
8974 	if (inp == NULL) {
8975 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
8976 		return (EINVAL);
8977 	}
8978 	if (inp->sctp_socket == NULL) {
8979 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
8980 		return (EINVAL);
8981 	}
8982 	return (sctp_sosend(inp->sctp_socket,
8983 	    addr,
8984 	    (struct uio *)NULL,
8985 	    m,
8986 	    control,
8987 	    flags, p
8988 	    ));
8989 }
8990 
8991 void
8992 send_forward_tsn(struct sctp_tcb *stcb,
8993     struct sctp_association *asoc)
8994 {
8995 	struct sctp_tmit_chunk *chk;
8996 	struct sctp_forward_tsn_chunk *fwdtsn;
8997 
8998 	SCTP_TCB_LOCK_ASSERT(stcb);
8999 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9000 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9001 			/* mark it to unsent */
9002 			chk->sent = SCTP_DATAGRAM_UNSENT;
9003 			chk->snd_count = 0;
9004 			/* Do we correct its output location? */
9005 			if (chk->whoTo != asoc->primary_destination) {
9006 				sctp_free_remote_addr(chk->whoTo);
9007 				chk->whoTo = asoc->primary_destination;
9008 				atomic_add_int(&chk->whoTo->ref_count, 1);
9009 			}
9010 			goto sctp_fill_in_rest;
9011 		}
9012 	}
9013 	/* Ok if we reach here we must build one */
9014 	sctp_alloc_a_chunk(stcb, chk);
9015 	if (chk == NULL) {
9016 		return;
9017 	}
9018 	chk->copy_by_ref = 0;
9019 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
9020 	chk->rec.chunk_id.can_take_data = 0;
9021 	chk->asoc = asoc;
9022 	chk->whoTo = NULL;
9023 
9024 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
9025 	if (chk->data == NULL) {
9026 		sctp_free_a_chunk(stcb, chk);
9027 		return;
9028 	}
9029 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9030 	chk->sent = SCTP_DATAGRAM_UNSENT;
9031 	chk->snd_count = 0;
9032 	chk->whoTo = asoc->primary_destination;
9033 	atomic_add_int(&chk->whoTo->ref_count, 1);
9034 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
9035 	asoc->ctrl_queue_cnt++;
9036 sctp_fill_in_rest:
9037 	/*-
9038 	 * Here we go through and fill out the part that deals with
9039 	 * stream/seq of the ones we skip.
9040 	 */
9041 	SCTP_BUF_LEN(chk->data) = 0;
9042 	{
9043 		struct sctp_tmit_chunk *at, *tp1, *last;
9044 		struct sctp_strseq *strseq;
9045 		unsigned int cnt_of_space, i, ovh;
9046 		unsigned int space_needed;
9047 		unsigned int cnt_of_skipped = 0;
9048 
9049 		TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
9050 			if (at->sent != SCTP_FORWARD_TSN_SKIP) {
9051 				/* no more to look at */
9052 				break;
9053 			}
9054 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
9055 				/* We don't report these */
9056 				continue;
9057 			}
9058 			cnt_of_skipped++;
9059 		}
9060 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
9061 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
9062 
9063 		cnt_of_space = M_TRAILINGSPACE(chk->data);
9064 
9065 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
9066 			ovh = SCTP_MIN_OVERHEAD;
9067 		} else {
9068 			ovh = SCTP_MIN_V4_OVERHEAD;
9069 		}
9070 		if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
9071 			/* trim to a mtu size */
9072 			cnt_of_space = asoc->smallest_mtu - ovh;
9073 		}
9074 		if (cnt_of_space < space_needed) {
9075 			/*-
9076 			 * ok we must trim down the chunk by lowering the
9077 			 * advance peer ack point.
9078 			 */
9079 			cnt_of_skipped = (cnt_of_space -
9080 			    ((sizeof(struct sctp_forward_tsn_chunk)) /
9081 			    sizeof(struct sctp_strseq)));
9082 			/*-
9083 			 * Go through and find the TSN that will be the one
9084 			 * we report.
9085 			 */
9086 			at = TAILQ_FIRST(&asoc->sent_queue);
9087 			for (i = 0; i < cnt_of_skipped; i++) {
9088 				tp1 = TAILQ_NEXT(at, sctp_next);
9089 				at = tp1;
9090 			}
9091 			last = at;
9092 			/*-
9093 			 * last now points to last one I can report, update
9094 			 * peer ack point
9095 			 */
9096 			asoc->advanced_peer_ack_point = last->rec.data.TSN_seq;
9097 			space_needed -= (cnt_of_skipped * sizeof(struct sctp_strseq));
9098 		}
9099 		chk->send_size = space_needed;
9100 		/* Setup the chunk */
9101 		fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
9102 		fwdtsn->ch.chunk_length = htons(chk->send_size);
9103 		fwdtsn->ch.chunk_flags = 0;
9104 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
9105 		fwdtsn->new_cumulative_tsn = htonl(asoc->advanced_peer_ack_point);
9106 		chk->send_size = (sizeof(struct sctp_forward_tsn_chunk) +
9107 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
9108 		SCTP_BUF_LEN(chk->data) = chk->send_size;
9109 		fwdtsn++;
9110 		/*-
9111 		 * Move pointer to after the fwdtsn and transfer to the
9112 		 * strseq pointer.
9113 		 */
9114 		strseq = (struct sctp_strseq *)fwdtsn;
9115 		/*-
9116 		 * Now populate the strseq list. This is done blindly
9117 		 * without pulling out duplicate stream info. This is
9118 		 * inefficent but won't harm the process since the peer will
9119 		 * look at these in sequence and will thus release anything.
9120 		 * It could mean we exceed the PMTU and chop off some that
9121 		 * we could have included.. but this is unlikely (aka 1432/4
9122 		 * would mean 300+ stream seq's would have to be reported in
9123 		 * one FWD-TSN. With a bit of work we can later FIX this to
9124 		 * optimize and pull out duplcates.. but it does add more
9125 		 * overhead. So for now... not!
9126 		 */
9127 		at = TAILQ_FIRST(&asoc->sent_queue);
9128 		for (i = 0; i < cnt_of_skipped; i++) {
9129 			tp1 = TAILQ_NEXT(at, sctp_next);
9130 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
9131 				/* We don't report these */
9132 				i--;
9133 				at = tp1;
9134 				continue;
9135 			}
9136 			strseq->stream = ntohs(at->rec.data.stream_number);
9137 			strseq->sequence = ntohs(at->rec.data.stream_seq);
9138 			strseq++;
9139 			at = tp1;
9140 		}
9141 	}
9142 	return;
9143 
9144 }
9145 
9146 void
9147 sctp_send_sack(struct sctp_tcb *stcb)
9148 {
9149 	/*-
9150 	 * Queue up a SACK in the control queue. We must first check to see
9151 	 * if a SACK is somehow on the control queue. If so, we will take
9152 	 * and and remove the old one.
9153 	 */
9154 	struct sctp_association *asoc;
9155 	struct sctp_tmit_chunk *chk, *a_chk;
9156 	struct sctp_sack_chunk *sack;
9157 	struct sctp_gap_ack_block *gap_descriptor;
9158 	struct sack_track *selector;
9159 	int mergeable = 0;
9160 	int offset;
9161 	caddr_t limit;
9162 	uint32_t *dup;
9163 	int limit_reached = 0;
9164 	unsigned int i, jstart, siz, j;
9165 	unsigned int num_gap_blocks = 0, space;
9166 	int num_dups = 0;
9167 	int space_req;
9168 
9169 	a_chk = NULL;
9170 	asoc = &stcb->asoc;
9171 	SCTP_TCB_LOCK_ASSERT(stcb);
9172 	if (asoc->last_data_chunk_from == NULL) {
9173 		/* Hmm we never received anything */
9174 		return;
9175 	}
9176 	sctp_set_rwnd(stcb, asoc);
9177 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9178 		if (chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) {
9179 			/* Hmm, found a sack already on queue, remove it */
9180 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
9181 			asoc->ctrl_queue_cnt++;
9182 			a_chk = chk;
9183 			if (a_chk->data) {
9184 				sctp_m_freem(a_chk->data);
9185 				a_chk->data = NULL;
9186 			}
9187 			sctp_free_remote_addr(a_chk->whoTo);
9188 			a_chk->whoTo = NULL;
9189 			break;
9190 		}
9191 	}
9192 	if (a_chk == NULL) {
9193 		sctp_alloc_a_chunk(stcb, a_chk);
9194 		if (a_chk == NULL) {
9195 			/* No memory so we drop the idea, and set a timer */
9196 			if (stcb->asoc.delayed_ack) {
9197 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
9198 				    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
9199 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
9200 				    stcb->sctp_ep, stcb, NULL);
9201 			} else {
9202 				stcb->asoc.send_sack = 1;
9203 			}
9204 			return;
9205 		}
9206 		a_chk->copy_by_ref = 0;
9207 		/* a_chk->rec.chunk_id.id = SCTP_SELECTIVE_ACK; */
9208 		a_chk->rec.chunk_id.id = SCTP_SELECTIVE_ACK;
9209 		a_chk->rec.chunk_id.can_take_data = 1;
9210 	}
9211 	/* Clear our pkt counts */
9212 	asoc->data_pkts_seen = 0;
9213 
9214 	a_chk->asoc = asoc;
9215 	a_chk->snd_count = 0;
9216 	a_chk->send_size = 0;	/* fill in later */
9217 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
9218 	a_chk->whoTo = NULL;
9219 
9220 	if ((asoc->numduptsns) ||
9221 	    (asoc->last_data_chunk_from->dest_state & SCTP_ADDR_NOT_REACHABLE)
9222 	    ) {
9223 		/*-
9224 		 * Ok, we have some duplicates or the destination for the
9225 		 * sack is unreachable, lets see if we can select an
9226 		 * alternate than asoc->last_data_chunk_from
9227 		 */
9228 		if ((!(asoc->last_data_chunk_from->dest_state &
9229 		    SCTP_ADDR_NOT_REACHABLE)) &&
9230 		    (asoc->used_alt_onsack > asoc->numnets)) {
9231 			/* We used an alt last time, don't this time */
9232 			a_chk->whoTo = NULL;
9233 		} else {
9234 			asoc->used_alt_onsack++;
9235 			a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
9236 		}
9237 		if (a_chk->whoTo == NULL) {
9238 			/* Nope, no alternate */
9239 			a_chk->whoTo = asoc->last_data_chunk_from;
9240 			asoc->used_alt_onsack = 0;
9241 		}
9242 	} else {
9243 		/*
9244 		 * No duplicates so we use the last place we received data
9245 		 * from.
9246 		 */
9247 		asoc->used_alt_onsack = 0;
9248 		a_chk->whoTo = asoc->last_data_chunk_from;
9249 	}
9250 	if (a_chk->whoTo) {
9251 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
9252 	}
9253 	if (asoc->highest_tsn_inside_map == asoc->cumulative_tsn) {
9254 		/* no gaps */
9255 		space_req = sizeof(struct sctp_sack_chunk);
9256 	} else {
9257 		/* gaps get a cluster */
9258 		space_req = MCLBYTES;
9259 	}
9260 	/* Ok now lets formulate a MBUF with our sack */
9261 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_DONTWAIT, 1, MT_DATA);
9262 	if ((a_chk->data == NULL) ||
9263 	    (a_chk->whoTo == NULL)) {
9264 		/* rats, no mbuf memory */
9265 		if (a_chk->data) {
9266 			/* was a problem with the destination */
9267 			sctp_m_freem(a_chk->data);
9268 			a_chk->data = NULL;
9269 		}
9270 		sctp_free_a_chunk(stcb, a_chk);
9271 		/* sa_ignore NO_NULL_CHK */
9272 		if (stcb->asoc.delayed_ack) {
9273 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
9274 			    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
9275 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
9276 			    stcb->sctp_ep, stcb, NULL);
9277 		} else {
9278 			stcb->asoc.send_sack = 1;
9279 		}
9280 		return;
9281 	}
9282 	/* ok, lets go through and fill it in */
9283 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
9284 	space = M_TRAILINGSPACE(a_chk->data);
9285 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
9286 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
9287 	}
9288 	limit = mtod(a_chk->data, caddr_t);
9289 	limit += space;
9290 
9291 	sack = mtod(a_chk->data, struct sctp_sack_chunk *);
9292 	sack->ch.chunk_type = SCTP_SELECTIVE_ACK;
9293 	/* 0x01 is used by nonce for ecn */
9294 	if ((sctp_ecn_enable) &&
9295 	    (sctp_ecn_nonce) &&
9296 	    (asoc->peer_supports_ecn_nonce))
9297 		sack->ch.chunk_flags = (asoc->receiver_nonce_sum & SCTP_SACK_NONCE_SUM);
9298 	else
9299 		sack->ch.chunk_flags = 0;
9300 
9301 	if (sctp_cmt_on_off && sctp_cmt_use_dac) {
9302 		/*-
9303 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
9304 		 * received, then set high bit to 1, else 0. Reset
9305 		 * pkts_rcvd.
9306 		 */
9307 		sack->ch.chunk_flags |= (asoc->cmt_dac_pkts_rcvd << 6);
9308 		asoc->cmt_dac_pkts_rcvd = 0;
9309 	}
9310 	sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
9311 	sack->sack.a_rwnd = htonl(asoc->my_rwnd);
9312 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
9313 
9314 	/* reset the readers interpretation */
9315 	stcb->freed_by_sorcv_sincelast = 0;
9316 
9317 	gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
9318 
9319 	siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
9320 	if (compare_with_wrap(asoc->mapping_array_base_tsn, asoc->cumulative_tsn, MAX_TSN)) {
9321 		offset = 1;
9322 		/*-
9323 		 * cum-ack behind the mapping array, so we start and use all
9324 		 * entries.
9325 		 */
9326 		jstart = 0;
9327 	} else {
9328 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
9329 		/*-
9330 		 * we skip the first one when the cum-ack is at or above the
9331 		 * mapping array base. Note this only works if
9332 		 */
9333 		jstart = 1;
9334 	}
9335 	if (compare_with_wrap(asoc->highest_tsn_inside_map, asoc->cumulative_tsn, MAX_TSN)) {
9336 		/* we have a gap .. maybe */
9337 		for (i = 0; i < siz; i++) {
9338 			selector = &sack_array[asoc->mapping_array[i]];
9339 			if (mergeable && selector->right_edge) {
9340 				/*
9341 				 * Backup, left and right edges were ok to
9342 				 * merge.
9343 				 */
9344 				num_gap_blocks--;
9345 				gap_descriptor--;
9346 			}
9347 			if (selector->num_entries == 0)
9348 				mergeable = 0;
9349 			else {
9350 				for (j = jstart; j < selector->num_entries; j++) {
9351 					if (mergeable && selector->right_edge) {
9352 						/*
9353 						 * do a merge by NOT setting
9354 						 * the left side
9355 						 */
9356 						mergeable = 0;
9357 					} else {
9358 						/*
9359 						 * no merge, set the left
9360 						 * side
9361 						 */
9362 						mergeable = 0;
9363 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
9364 					}
9365 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
9366 					num_gap_blocks++;
9367 					gap_descriptor++;
9368 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
9369 						/* no more room */
9370 						limit_reached = 1;
9371 						break;
9372 					}
9373 				}
9374 				if (selector->left_edge) {
9375 					mergeable = 1;
9376 				}
9377 			}
9378 			if (limit_reached) {
9379 				/* Reached the limit stop */
9380 				break;
9381 			}
9382 			jstart = 0;
9383 			offset += 8;
9384 		}
9385 		if (num_gap_blocks == 0) {
9386 			/*
9387 			 * slide not yet happened, and somehow we got called
9388 			 * to send a sack. Cumack needs to move up.
9389 			 */
9390 			int abort_flag = 0;
9391 
9392 			asoc->cumulative_tsn = asoc->highest_tsn_inside_map;
9393 			sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
9394 			sctp_sack_check(stcb, 0, 0, &abort_flag);
9395 		}
9396 	}
9397 	/* now we must add any dups we are going to report. */
9398 	if ((limit_reached == 0) && (asoc->numduptsns)) {
9399 		dup = (uint32_t *) gap_descriptor;
9400 		for (i = 0; i < asoc->numduptsns; i++) {
9401 			*dup = htonl(asoc->dup_tsns[i]);
9402 			dup++;
9403 			num_dups++;
9404 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
9405 				/* no more room */
9406 				break;
9407 			}
9408 		}
9409 		asoc->numduptsns = 0;
9410 	}
9411 	/*
9412 	 * now that the chunk is prepared queue it to the control chunk
9413 	 * queue.
9414 	 */
9415 	a_chk->send_size = (sizeof(struct sctp_sack_chunk) +
9416 	    (num_gap_blocks * sizeof(struct sctp_gap_ack_block)) +
9417 	    (num_dups * sizeof(int32_t)));
9418 	SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
9419 	sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
9420 	sack->sack.num_dup_tsns = htons(num_dups);
9421 	sack->ch.chunk_length = htons(a_chk->send_size);
9422 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
9423 	asoc->ctrl_queue_cnt++;
9424 	asoc->send_sack = 0;
9425 	SCTP_STAT_INCR(sctps_sendsacks);
9426 	return;
9427 }
9428 
9429 
9430 void
9431 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
9432 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9433     SCTP_UNUSED
9434 #endif
9435 )
9436 {
9437 	struct mbuf *m_abort;
9438 	struct mbuf *m_out = NULL, *m_end = NULL;
9439 	struct sctp_abort_chunk *abort = NULL;
9440 	int sz;
9441 	uint32_t auth_offset = 0;
9442 	struct sctp_auth_chunk *auth = NULL;
9443 	struct sctphdr *shdr;
9444 
9445 	/*-
9446 	 * Add an AUTH chunk, if chunk requires it and save the offset into
9447 	 * the chain for AUTH
9448 	 */
9449 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
9450 	    stcb->asoc.peer_auth_chunks)) {
9451 		m_out = sctp_add_auth_chunk(m_out, &m_end, &auth, &auth_offset,
9452 		    stcb, SCTP_ABORT_ASSOCIATION);
9453 	}
9454 	SCTP_TCB_LOCK_ASSERT(stcb);
9455 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
9456 	if (m_abort == NULL) {
9457 		/* no mbuf's */
9458 		if (m_out)
9459 			sctp_m_freem(m_out);
9460 		return;
9461 	}
9462 	/* link in any error */
9463 	SCTP_BUF_NEXT(m_abort) = operr;
9464 	sz = 0;
9465 	if (operr) {
9466 		struct mbuf *n;
9467 
9468 		n = operr;
9469 		while (n) {
9470 			sz += SCTP_BUF_LEN(n);
9471 			n = SCTP_BUF_NEXT(n);
9472 		}
9473 	}
9474 	SCTP_BUF_LEN(m_abort) = sizeof(*abort);
9475 	if (m_out == NULL) {
9476 		/* NO Auth chunk prepended, so reserve space in front */
9477 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
9478 		m_out = m_abort;
9479 	} else {
9480 		/* Put AUTH chunk at the front of the chain */
9481 		SCTP_BUF_NEXT(m_end) = m_abort;
9482 	}
9483 
9484 	/* fill in the ABORT chunk */
9485 	abort = mtod(m_abort, struct sctp_abort_chunk *);
9486 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
9487 	abort->ch.chunk_flags = 0;
9488 	abort->ch.chunk_length = htons(sizeof(*abort) + sz);
9489 
9490 	/* prepend and fill in the SCTP header */
9491 	SCTP_BUF_PREPEND(m_out, sizeof(struct sctphdr), M_DONTWAIT);
9492 	if (m_out == NULL) {
9493 		/* TSNH: no memory */
9494 		return;
9495 	}
9496 	shdr = mtod(m_out, struct sctphdr *);
9497 	shdr->src_port = stcb->sctp_ep->sctp_lport;
9498 	shdr->dest_port = stcb->rport;
9499 	shdr->v_tag = htonl(stcb->asoc.peer_vtag);
9500 	shdr->checksum = 0;
9501 	auth_offset += sizeof(struct sctphdr);
9502 
9503 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb,
9504 	    stcb->asoc.primary_destination,
9505 	    (struct sockaddr *)&stcb->asoc.primary_destination->ro._l_addr,
9506 	    m_out, auth_offset, auth, 1, 0, NULL, 0, so_locked);
9507 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9508 }
9509 
9510 void
9511 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
9512     struct sctp_nets *net)
9513 {
9514 	/* formulate and SEND a SHUTDOWN-COMPLETE */
9515 	struct mbuf *m_shutdown_comp;
9516 	struct sctp_shutdown_complete_msg *comp_cp;
9517 
9518 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_complete_msg), 0, M_DONTWAIT, 1, MT_HEADER);
9519 	if (m_shutdown_comp == NULL) {
9520 		/* no mbuf's */
9521 		return;
9522 	}
9523 	comp_cp = mtod(m_shutdown_comp, struct sctp_shutdown_complete_msg *);
9524 	comp_cp->shut_cmp.ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
9525 	comp_cp->shut_cmp.ch.chunk_flags = 0;
9526 	comp_cp->shut_cmp.ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
9527 	comp_cp->sh.src_port = stcb->sctp_ep->sctp_lport;
9528 	comp_cp->sh.dest_port = stcb->rport;
9529 	comp_cp->sh.v_tag = htonl(stcb->asoc.peer_vtag);
9530 	comp_cp->sh.checksum = 0;
9531 
9532 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_msg);
9533 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
9534 	    (struct sockaddr *)&net->ro._l_addr,
9535 	    m_shutdown_comp, 0, NULL, 1, 0, NULL, 0, SCTP_SO_NOT_LOCKED);
9536 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9537 	return;
9538 }
9539 
9540 void
9541 sctp_send_shutdown_complete2(struct mbuf *m, int iphlen, struct sctphdr *sh,
9542     uint32_t vrf_id)
9543 {
9544 	/* formulate and SEND a SHUTDOWN-COMPLETE */
9545 	struct mbuf *o_pak;
9546 	struct mbuf *mout;
9547 	struct ip *iph, *iph_out;
9548 	struct ip6_hdr *ip6, *ip6_out;
9549 	int offset_out, len, mlen;
9550 	struct sctp_shutdown_complete_msg *comp_cp;
9551 
9552 	/* Get room for the largest message */
9553 	len = (sizeof(struct ip6_hdr) + sizeof(struct sctp_shutdown_complete_msg));
9554 	mout = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
9555 	if (mout == NULL) {
9556 		return;
9557 	}
9558 	SCTP_BUF_LEN(mout) = len;
9559 	iph = mtod(m, struct ip *);
9560 	iph_out = NULL;
9561 	ip6_out = NULL;
9562 	offset_out = 0;
9563 	if (iph->ip_v == IPVERSION) {
9564 		SCTP_BUF_LEN(mout) = sizeof(struct ip) +
9565 		    sizeof(struct sctp_shutdown_complete_msg);
9566 		SCTP_BUF_NEXT(mout) = NULL;
9567 		iph_out = mtod(mout, struct ip *);
9568 
9569 		/* Fill in the IP header for the ABORT */
9570 		iph_out->ip_v = IPVERSION;
9571 		iph_out->ip_hl = (sizeof(struct ip) / 4);
9572 		iph_out->ip_tos = (u_char)0;
9573 		iph_out->ip_id = 0;
9574 		iph_out->ip_off = 0;
9575 		iph_out->ip_ttl = MAXTTL;
9576 		iph_out->ip_p = IPPROTO_SCTP;
9577 		iph_out->ip_src.s_addr = iph->ip_dst.s_addr;
9578 		iph_out->ip_dst.s_addr = iph->ip_src.s_addr;
9579 
9580 		/* let IP layer calculate this */
9581 		iph_out->ip_sum = 0;
9582 		offset_out += sizeof(*iph_out);
9583 		comp_cp = (struct sctp_shutdown_complete_msg *)(
9584 		    (caddr_t)iph_out + offset_out);
9585 	} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
9586 		ip6 = (struct ip6_hdr *)iph;
9587 		SCTP_BUF_LEN(mout) = sizeof(struct ip6_hdr) +
9588 		    sizeof(struct sctp_shutdown_complete_msg);
9589 		SCTP_BUF_NEXT(mout) = NULL;
9590 		ip6_out = mtod(mout, struct ip6_hdr *);
9591 
9592 		/* Fill in the IPv6 header for the ABORT */
9593 		ip6_out->ip6_flow = ip6->ip6_flow;
9594 		ip6_out->ip6_hlim = ip6_defhlim;
9595 		ip6_out->ip6_nxt = IPPROTO_SCTP;
9596 		ip6_out->ip6_src = ip6->ip6_dst;
9597 		ip6_out->ip6_dst = ip6->ip6_src;
9598 		/*
9599 		 * ?? The old code had both the iph len + payload, I think
9600 		 * this is wrong and would never have worked
9601 		 */
9602 		ip6_out->ip6_plen = sizeof(struct sctp_shutdown_complete_msg);
9603 		offset_out += sizeof(*ip6_out);
9604 		comp_cp = (struct sctp_shutdown_complete_msg *)(
9605 		    (caddr_t)ip6_out + offset_out);
9606 	} else {
9607 		/* Currently not supported. */
9608 		return;
9609 	}
9610 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
9611 		/* no mbuf's */
9612 		sctp_m_freem(mout);
9613 		return;
9614 	}
9615 	/* Now copy in and fill in the ABORT tags etc. */
9616 	comp_cp->sh.src_port = sh->dest_port;
9617 	comp_cp->sh.dest_port = sh->src_port;
9618 	comp_cp->sh.checksum = 0;
9619 	comp_cp->sh.v_tag = sh->v_tag;
9620 	comp_cp->shut_cmp.ch.chunk_flags = SCTP_HAD_NO_TCB;
9621 	comp_cp->shut_cmp.ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
9622 	comp_cp->shut_cmp.ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
9623 
9624 	/* add checksum */
9625 	comp_cp->sh.checksum = sctp_calculate_sum(mout, NULL, offset_out);
9626 	if (iph_out != NULL) {
9627 		sctp_route_t ro;
9628 		int ret;
9629 		struct sctp_tcb *stcb = NULL;
9630 
9631 		mlen = SCTP_BUF_LEN(mout);
9632 		bzero(&ro, sizeof ro);
9633 		/* set IPv4 length */
9634 		iph_out->ip_len = mlen;
9635 #ifdef  SCTP_PACKET_LOGGING
9636 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
9637 			sctp_packet_log(mout, mlen);
9638 #endif
9639 		SCTP_ATTACH_CHAIN(o_pak, mout, mlen);
9640 
9641 		/* out it goes */
9642 		SCTP_IP_OUTPUT(ret, o_pak, &ro, stcb, vrf_id);
9643 
9644 		/* Free the route if we got one back */
9645 		if (ro.ro_rt)
9646 			RTFREE(ro.ro_rt);
9647 	} else if (ip6_out != NULL) {
9648 		struct route_in6 ro;
9649 		int ret;
9650 		struct sctp_tcb *stcb = NULL;
9651 		struct ifnet *ifp = NULL;
9652 
9653 		bzero(&ro, sizeof(ro));
9654 		mlen = SCTP_BUF_LEN(mout);
9655 #ifdef  SCTP_PACKET_LOGGING
9656 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
9657 			sctp_packet_log(mout, mlen);
9658 #endif
9659 		SCTP_ATTACH_CHAIN(o_pak, mout, mlen);
9660 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
9661 
9662 		/* Free the route if we got one back */
9663 		if (ro.ro_rt)
9664 			RTFREE(ro.ro_rt);
9665 	}
9666 	SCTP_STAT_INCR(sctps_sendpackets);
9667 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
9668 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9669 	return;
9670 
9671 }
9672 
9673 static struct sctp_nets *
9674 sctp_select_hb_destination(struct sctp_tcb *stcb, struct timeval *now)
9675 {
9676 	struct sctp_nets *net, *hnet;
9677 	int ms_goneby, highest_ms, state_overide = 0;
9678 
9679 	(void)SCTP_GETTIME_TIMEVAL(now);
9680 	highest_ms = 0;
9681 	hnet = NULL;
9682 	SCTP_TCB_LOCK_ASSERT(stcb);
9683 	TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
9684 		if (
9685 		    ((net->dest_state & SCTP_ADDR_NOHB) && ((net->dest_state & SCTP_ADDR_UNCONFIRMED) == 0)) ||
9686 		    (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)
9687 		    ) {
9688 			/*
9689 			 * Skip this guy from consideration if HB is off AND
9690 			 * its confirmed
9691 			 */
9692 			continue;
9693 		}
9694 		if (sctp_destination_is_reachable(stcb, (struct sockaddr *)&net->ro._l_addr) == 0) {
9695 			/* skip this dest net from consideration */
9696 			continue;
9697 		}
9698 		if (net->last_sent_time.tv_sec) {
9699 			/* Sent to so we subtract */
9700 			ms_goneby = (now->tv_sec - net->last_sent_time.tv_sec) * 1000;
9701 		} else
9702 			/* Never been sent to */
9703 			ms_goneby = 0x7fffffff;
9704 		/*-
9705 		 * When the address state is unconfirmed but still
9706 		 * considered reachable, we HB at a higher rate. Once it
9707 		 * goes confirmed OR reaches the "unreachable" state, thenw
9708 		 * we cut it back to HB at a more normal pace.
9709 		 */
9710 		if ((net->dest_state & (SCTP_ADDR_UNCONFIRMED | SCTP_ADDR_NOT_REACHABLE)) == SCTP_ADDR_UNCONFIRMED) {
9711 			state_overide = 1;
9712 		} else {
9713 			state_overide = 0;
9714 		}
9715 
9716 		if ((((unsigned int)ms_goneby >= net->RTO) || (state_overide)) &&
9717 		    (ms_goneby > highest_ms)) {
9718 			highest_ms = ms_goneby;
9719 			hnet = net;
9720 		}
9721 	}
9722 	if (hnet &&
9723 	    ((hnet->dest_state & (SCTP_ADDR_UNCONFIRMED | SCTP_ADDR_NOT_REACHABLE)) == SCTP_ADDR_UNCONFIRMED)) {
9724 		state_overide = 1;
9725 	} else {
9726 		state_overide = 0;
9727 	}
9728 
9729 	if (hnet && highest_ms && (((unsigned int)highest_ms >= hnet->RTO) || state_overide)) {
9730 		/*-
9731 		 * Found the one with longest delay bounds OR it is
9732 		 * unconfirmed and still not marked unreachable.
9733 		 */
9734 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "net:%p is the hb winner -", hnet);
9735 #ifdef SCTP_DEBUG
9736 		if (hnet) {
9737 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT4,
9738 			    (struct sockaddr *)&hnet->ro._l_addr);
9739 		} else {
9740 			SCTPDBG(SCTP_DEBUG_OUTPUT4, " none\n");
9741 		}
9742 #endif
9743 		/* update the timer now */
9744 		hnet->last_sent_time = *now;
9745 		return (hnet);
9746 	}
9747 	/* Nothing to HB */
9748 	return (NULL);
9749 }
9750 
9751 int
9752 sctp_send_hb(struct sctp_tcb *stcb, int user_req, struct sctp_nets *u_net)
9753 {
9754 	struct sctp_tmit_chunk *chk;
9755 	struct sctp_nets *net;
9756 	struct sctp_heartbeat_chunk *hb;
9757 	struct timeval now;
9758 	struct sockaddr_in *sin;
9759 	struct sockaddr_in6 *sin6;
9760 
9761 	SCTP_TCB_LOCK_ASSERT(stcb);
9762 	if (user_req == 0) {
9763 		net = sctp_select_hb_destination(stcb, &now);
9764 		if (net == NULL) {
9765 			/*-
9766 			 * All our busy none to send to, just start the
9767 			 * timer again.
9768 			 */
9769 			if (stcb->asoc.state == 0) {
9770 				return (0);
9771 			}
9772 			sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT,
9773 			    stcb->sctp_ep,
9774 			    stcb,
9775 			    net);
9776 			return (0);
9777 		}
9778 	} else {
9779 		net = u_net;
9780 		if (net == NULL) {
9781 			return (0);
9782 		}
9783 		(void)SCTP_GETTIME_TIMEVAL(&now);
9784 	}
9785 	sin = (struct sockaddr_in *)&net->ro._l_addr;
9786 	if (sin->sin_family != AF_INET) {
9787 		if (sin->sin_family != AF_INET6) {
9788 			/* huh */
9789 			return (0);
9790 		}
9791 	}
9792 	sctp_alloc_a_chunk(stcb, chk);
9793 	if (chk == NULL) {
9794 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
9795 		return (0);
9796 	}
9797 	chk->copy_by_ref = 0;
9798 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
9799 	chk->rec.chunk_id.can_take_data = 1;
9800 	chk->asoc = &stcb->asoc;
9801 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
9802 
9803 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
9804 	if (chk->data == NULL) {
9805 		sctp_free_a_chunk(stcb, chk);
9806 		return (0);
9807 	}
9808 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9809 	SCTP_BUF_LEN(chk->data) = chk->send_size;
9810 	chk->sent = SCTP_DATAGRAM_UNSENT;
9811 	chk->snd_count = 0;
9812 	chk->whoTo = net;
9813 	atomic_add_int(&chk->whoTo->ref_count, 1);
9814 	/* Now we have a mbuf that we can fill in with the details */
9815 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
9816 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
9817 	/* fill out chunk header */
9818 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
9819 	hb->ch.chunk_flags = 0;
9820 	hb->ch.chunk_length = htons(chk->send_size);
9821 	/* Fill out hb parameter */
9822 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
9823 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
9824 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
9825 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
9826 	/* Did our user request this one, put it in */
9827 	hb->heartbeat.hb_info.user_req = user_req;
9828 	hb->heartbeat.hb_info.addr_family = sin->sin_family;
9829 	hb->heartbeat.hb_info.addr_len = sin->sin_len;
9830 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
9831 		/*
9832 		 * we only take from the entropy pool if the address is not
9833 		 * confirmed.
9834 		 */
9835 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
9836 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
9837 	} else {
9838 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
9839 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
9840 	}
9841 	if (sin->sin_family == AF_INET) {
9842 		memcpy(hb->heartbeat.hb_info.address, &sin->sin_addr, sizeof(sin->sin_addr));
9843 	} else if (sin->sin_family == AF_INET6) {
9844 		/* We leave the scope the way it is in our lookup table. */
9845 		sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
9846 		memcpy(hb->heartbeat.hb_info.address, &sin6->sin6_addr, sizeof(sin6->sin6_addr));
9847 	} else {
9848 		/* huh compiler bug */
9849 		return (0);
9850 	}
9851 
9852 	/*
9853 	 * JRS 5/14/07 - In CMT PF, the T3 timer is used to track
9854 	 * PF-heartbeats.  Because of this, threshold management is done by
9855 	 * the t3 timer handler, and does not need to be done upon the send
9856 	 * of a PF-heartbeat. If CMT PF is on and the destination to which a
9857 	 * heartbeat is being sent is in PF state, do NOT do threshold
9858 	 * management.
9859 	 */
9860 	if ((sctp_cmt_pf == 0) || ((net->dest_state & SCTP_ADDR_PF) != SCTP_ADDR_PF)) {
9861 		/* ok we have a destination that needs a beat */
9862 		/* lets do the theshold management Qiaobing style */
9863 		if (sctp_threshold_management(stcb->sctp_ep, stcb, net,
9864 		    stcb->asoc.max_send_times)) {
9865 			/*-
9866 			 * we have lost the association, in a way this is
9867 			 * quite bad since we really are one less time since
9868 			 * we really did not send yet. This is the down side
9869 			 * to the Q's style as defined in the RFC and not my
9870 			 * alternate style defined in the RFC.
9871 			 */
9872 			if (chk->data != NULL) {
9873 				sctp_m_freem(chk->data);
9874 				chk->data = NULL;
9875 			}
9876 			/*
9877 			 * Here we do NOT use the macro since the
9878 			 * association is now gone.
9879 			 */
9880 			if (chk->whoTo) {
9881 				sctp_free_remote_addr(chk->whoTo);
9882 				chk->whoTo = NULL;
9883 			}
9884 			sctp_free_a_chunk((struct sctp_tcb *)NULL, chk);
9885 			return (-1);
9886 		}
9887 	}
9888 	net->hb_responded = 0;
9889 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
9890 	stcb->asoc.ctrl_queue_cnt++;
9891 	SCTP_STAT_INCR(sctps_sendheartbeat);
9892 	/*-
9893 	 * Call directly med level routine to put out the chunk. It will
9894 	 * always tumble out control chunks aka HB but it may even tumble
9895 	 * out data too.
9896 	 */
9897 	return (1);
9898 }
9899 
9900 void
9901 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
9902     uint32_t high_tsn)
9903 {
9904 	struct sctp_association *asoc;
9905 	struct sctp_ecne_chunk *ecne;
9906 	struct sctp_tmit_chunk *chk;
9907 
9908 	asoc = &stcb->asoc;
9909 	SCTP_TCB_LOCK_ASSERT(stcb);
9910 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9911 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
9912 			/* found a previous ECN_ECHO update it if needed */
9913 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
9914 			ecne->tsn = htonl(high_tsn);
9915 			return;
9916 		}
9917 	}
9918 	/* nope could not find one to update so we must build one */
9919 	sctp_alloc_a_chunk(stcb, chk);
9920 	if (chk == NULL) {
9921 		return;
9922 	}
9923 	chk->copy_by_ref = 0;
9924 	SCTP_STAT_INCR(sctps_sendecne);
9925 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
9926 	chk->rec.chunk_id.can_take_data = 0;
9927 	chk->asoc = &stcb->asoc;
9928 	chk->send_size = sizeof(struct sctp_ecne_chunk);
9929 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
9930 	if (chk->data == NULL) {
9931 		sctp_free_a_chunk(stcb, chk);
9932 		return;
9933 	}
9934 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9935 	SCTP_BUF_LEN(chk->data) = chk->send_size;
9936 	chk->sent = SCTP_DATAGRAM_UNSENT;
9937 	chk->snd_count = 0;
9938 	chk->whoTo = net;
9939 	atomic_add_int(&chk->whoTo->ref_count, 1);
9940 	stcb->asoc.ecn_echo_cnt_onq++;
9941 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
9942 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
9943 	ecne->ch.chunk_flags = 0;
9944 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
9945 	ecne->tsn = htonl(high_tsn);
9946 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
9947 	asoc->ctrl_queue_cnt++;
9948 }
9949 
9950 void
9951 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
9952     struct mbuf *m, int iphlen, int bad_crc)
9953 {
9954 	struct sctp_association *asoc;
9955 	struct sctp_pktdrop_chunk *drp;
9956 	struct sctp_tmit_chunk *chk;
9957 	uint8_t *datap;
9958 	int len;
9959 	int was_trunc = 0;
9960 	struct ip *iph;
9961 	int fullsz = 0, extra = 0;
9962 	long spc;
9963 	int offset;
9964 	struct sctp_chunkhdr *ch, chunk_buf;
9965 	unsigned int chk_length;
9966 
9967 	/* sa_ignore NO_NULL_CHK */
9968 	asoc = &stcb->asoc;
9969 	SCTP_TCB_LOCK_ASSERT(stcb);
9970 	if (asoc->peer_supports_pktdrop == 0) {
9971 		/*-
9972 		 * peer must declare support before I send one.
9973 		 */
9974 		return;
9975 	}
9976 	if (stcb->sctp_socket == NULL) {
9977 		return;
9978 	}
9979 	sctp_alloc_a_chunk(stcb, chk);
9980 	if (chk == NULL) {
9981 		return;
9982 	}
9983 	chk->copy_by_ref = 0;
9984 	iph = mtod(m, struct ip *);
9985 	if (iph == NULL) {
9986 		sctp_free_a_chunk(stcb, chk);
9987 		return;
9988 	}
9989 	if (iph->ip_v == IPVERSION) {
9990 		/* IPv4 */
9991 		len = chk->send_size = iph->ip_len;
9992 	} else {
9993 		struct ip6_hdr *ip6h;
9994 
9995 		/* IPv6 */
9996 		ip6h = mtod(m, struct ip6_hdr *);
9997 		len = chk->send_size = htons(ip6h->ip6_plen);
9998 	}
9999 	/* Validate that we do not have an ABORT in here. */
10000 	offset = iphlen + sizeof(struct sctphdr);
10001 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
10002 	    sizeof(*ch), (uint8_t *) & chunk_buf);
10003 	while (ch != NULL) {
10004 		chk_length = ntohs(ch->chunk_length);
10005 		if (chk_length < sizeof(*ch)) {
10006 			/* break to abort land */
10007 			break;
10008 		}
10009 		switch (ch->chunk_type) {
10010 		case SCTP_PACKET_DROPPED:
10011 		case SCTP_ABORT_ASSOCIATION:
10012 			/*-
10013 			 * we don't respond with an PKT-DROP to an ABORT
10014 			 * or PKT-DROP
10015 			 */
10016 			sctp_free_a_chunk(stcb, chk);
10017 			return;
10018 		default:
10019 			break;
10020 		}
10021 		offset += SCTP_SIZE32(chk_length);
10022 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
10023 		    sizeof(*ch), (uint8_t *) & chunk_buf);
10024 	}
10025 
10026 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
10027 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
10028 		/*
10029 		 * only send 1 mtu worth, trim off the excess on the end.
10030 		 */
10031 		fullsz = len - extra;
10032 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
10033 		was_trunc = 1;
10034 	}
10035 	chk->asoc = &stcb->asoc;
10036 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
10037 	if (chk->data == NULL) {
10038 jump_out:
10039 		sctp_free_a_chunk(stcb, chk);
10040 		return;
10041 	}
10042 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10043 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
10044 	if (drp == NULL) {
10045 		sctp_m_freem(chk->data);
10046 		chk->data = NULL;
10047 		goto jump_out;
10048 	}
10049 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
10050 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
10051 	chk->book_size_scale = 0;
10052 	if (was_trunc) {
10053 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
10054 		drp->trunc_len = htons(fullsz);
10055 		/*
10056 		 * Len is already adjusted to size minus overhead above take
10057 		 * out the pkt_drop chunk itself from it.
10058 		 */
10059 		chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
10060 		len = chk->send_size;
10061 	} else {
10062 		/* no truncation needed */
10063 		drp->ch.chunk_flags = 0;
10064 		drp->trunc_len = htons(0);
10065 	}
10066 	if (bad_crc) {
10067 		drp->ch.chunk_flags |= SCTP_BADCRC;
10068 	}
10069 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
10070 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10071 	chk->sent = SCTP_DATAGRAM_UNSENT;
10072 	chk->snd_count = 0;
10073 	if (net) {
10074 		/* we should hit here */
10075 		chk->whoTo = net;
10076 	} else {
10077 		chk->whoTo = asoc->primary_destination;
10078 	}
10079 	atomic_add_int(&chk->whoTo->ref_count, 1);
10080 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
10081 	chk->rec.chunk_id.can_take_data = 1;
10082 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
10083 	drp->ch.chunk_length = htons(chk->send_size);
10084 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
10085 	if (spc < 0) {
10086 		spc = 0;
10087 	}
10088 	drp->bottle_bw = htonl(spc);
10089 	if (asoc->my_rwnd) {
10090 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
10091 		    asoc->size_on_all_streams +
10092 		    asoc->my_rwnd_control_len +
10093 		    stcb->sctp_socket->so_rcv.sb_cc);
10094 	} else {
10095 		/*-
10096 		 * If my rwnd is 0, possibly from mbuf depletion as well as
10097 		 * space used, tell the peer there is NO space aka onq == bw
10098 		 */
10099 		drp->current_onq = htonl(spc);
10100 	}
10101 	drp->reserved = 0;
10102 	datap = drp->data;
10103 	m_copydata(m, iphlen, len, (caddr_t)datap);
10104 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
10105 	asoc->ctrl_queue_cnt++;
10106 }
10107 
10108 void
10109 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn)
10110 {
10111 	struct sctp_association *asoc;
10112 	struct sctp_cwr_chunk *cwr;
10113 	struct sctp_tmit_chunk *chk;
10114 
10115 	asoc = &stcb->asoc;
10116 	SCTP_TCB_LOCK_ASSERT(stcb);
10117 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10118 		if (chk->rec.chunk_id.id == SCTP_ECN_CWR) {
10119 			/* found a previous ECN_CWR update it if needed */
10120 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
10121 			if (compare_with_wrap(high_tsn, ntohl(cwr->tsn),
10122 			    MAX_TSN)) {
10123 				cwr->tsn = htonl(high_tsn);
10124 			}
10125 			return;
10126 		}
10127 	}
10128 	/* nope could not find one to update so we must build one */
10129 	sctp_alloc_a_chunk(stcb, chk);
10130 	if (chk == NULL) {
10131 		return;
10132 	}
10133 	chk->copy_by_ref = 0;
10134 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
10135 	chk->rec.chunk_id.can_take_data = 1;
10136 	chk->asoc = &stcb->asoc;
10137 	chk->send_size = sizeof(struct sctp_cwr_chunk);
10138 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
10139 	if (chk->data == NULL) {
10140 		sctp_free_a_chunk(stcb, chk);
10141 		return;
10142 	}
10143 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10144 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10145 	chk->sent = SCTP_DATAGRAM_UNSENT;
10146 	chk->snd_count = 0;
10147 	chk->whoTo = net;
10148 	atomic_add_int(&chk->whoTo->ref_count, 1);
10149 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
10150 	cwr->ch.chunk_type = SCTP_ECN_CWR;
10151 	cwr->ch.chunk_flags = 0;
10152 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
10153 	cwr->tsn = htonl(high_tsn);
10154 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
10155 	asoc->ctrl_queue_cnt++;
10156 }
10157 
10158 void
10159 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
10160     int number_entries, uint16_t * list,
10161     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
10162 {
10163 	int len, old_len, i;
10164 	struct sctp_stream_reset_out_request *req_out;
10165 	struct sctp_chunkhdr *ch;
10166 
10167 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10168 
10169 
10170 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10171 
10172 	/* get to new offset for the param. */
10173 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
10174 	/* now how long will this param be? */
10175 	len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
10176 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
10177 	req_out->ph.param_length = htons(len);
10178 	req_out->request_seq = htonl(seq);
10179 	req_out->response_seq = htonl(resp_seq);
10180 	req_out->send_reset_at_tsn = htonl(last_sent);
10181 	if (number_entries) {
10182 		for (i = 0; i < number_entries; i++) {
10183 			req_out->list_of_streams[i] = htons(list[i]);
10184 		}
10185 	}
10186 	if (SCTP_SIZE32(len) > len) {
10187 		/*-
10188 		 * Need to worry about the pad we may end up adding to the
10189 		 * end. This is easy since the struct is either aligned to 4
10190 		 * bytes or 2 bytes off.
10191 		 */
10192 		req_out->list_of_streams[number_entries] = 0;
10193 	}
10194 	/* now fix the chunk length */
10195 	ch->chunk_length = htons(len + old_len);
10196 	chk->book_size = len + old_len;
10197 	chk->book_size_scale = 0;
10198 	chk->send_size = SCTP_SIZE32(chk->book_size);
10199 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10200 	return;
10201 }
10202 
10203 
10204 void
10205 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
10206     int number_entries, uint16_t * list,
10207     uint32_t seq)
10208 {
10209 	int len, old_len, i;
10210 	struct sctp_stream_reset_in_request *req_in;
10211 	struct sctp_chunkhdr *ch;
10212 
10213 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10214 
10215 
10216 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10217 
10218 	/* get to new offset for the param. */
10219 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
10220 	/* now how long will this param be? */
10221 	len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
10222 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
10223 	req_in->ph.param_length = htons(len);
10224 	req_in->request_seq = htonl(seq);
10225 	if (number_entries) {
10226 		for (i = 0; i < number_entries; i++) {
10227 			req_in->list_of_streams[i] = htons(list[i]);
10228 		}
10229 	}
10230 	if (SCTP_SIZE32(len) > len) {
10231 		/*-
10232 		 * Need to worry about the pad we may end up adding to the
10233 		 * end. This is easy since the struct is either aligned to 4
10234 		 * bytes or 2 bytes off.
10235 		 */
10236 		req_in->list_of_streams[number_entries] = 0;
10237 	}
10238 	/* now fix the chunk length */
10239 	ch->chunk_length = htons(len + old_len);
10240 	chk->book_size = len + old_len;
10241 	chk->book_size_scale = 0;
10242 	chk->send_size = SCTP_SIZE32(chk->book_size);
10243 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10244 	return;
10245 }
10246 
10247 
10248 void
10249 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
10250     uint32_t seq)
10251 {
10252 	int len, old_len;
10253 	struct sctp_stream_reset_tsn_request *req_tsn;
10254 	struct sctp_chunkhdr *ch;
10255 
10256 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10257 
10258 
10259 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10260 
10261 	/* get to new offset for the param. */
10262 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
10263 	/* now how long will this param be? */
10264 	len = sizeof(struct sctp_stream_reset_tsn_request);
10265 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
10266 	req_tsn->ph.param_length = htons(len);
10267 	req_tsn->request_seq = htonl(seq);
10268 
10269 	/* now fix the chunk length */
10270 	ch->chunk_length = htons(len + old_len);
10271 	chk->send_size = len + old_len;
10272 	chk->book_size = SCTP_SIZE32(chk->send_size);
10273 	chk->book_size_scale = 0;
10274 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
10275 	return;
10276 }
10277 
10278 void
10279 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
10280     uint32_t resp_seq, uint32_t result)
10281 {
10282 	int len, old_len;
10283 	struct sctp_stream_reset_response *resp;
10284 	struct sctp_chunkhdr *ch;
10285 
10286 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10287 
10288 
10289 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10290 
10291 	/* get to new offset for the param. */
10292 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
10293 	/* now how long will this param be? */
10294 	len = sizeof(struct sctp_stream_reset_response);
10295 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
10296 	resp->ph.param_length = htons(len);
10297 	resp->response_seq = htonl(resp_seq);
10298 	resp->result = ntohl(result);
10299 
10300 	/* now fix the chunk length */
10301 	ch->chunk_length = htons(len + old_len);
10302 	chk->book_size = len + old_len;
10303 	chk->book_size_scale = 0;
10304 	chk->send_size = SCTP_SIZE32(chk->book_size);
10305 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10306 	return;
10307 
10308 }
10309 
10310 
10311 void
10312 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
10313     uint32_t resp_seq, uint32_t result,
10314     uint32_t send_una, uint32_t recv_next)
10315 {
10316 	int len, old_len;
10317 	struct sctp_stream_reset_response_tsn *resp;
10318 	struct sctp_chunkhdr *ch;
10319 
10320 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10321 
10322 
10323 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10324 
10325 	/* get to new offset for the param. */
10326 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
10327 	/* now how long will this param be? */
10328 	len = sizeof(struct sctp_stream_reset_response_tsn);
10329 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
10330 	resp->ph.param_length = htons(len);
10331 	resp->response_seq = htonl(resp_seq);
10332 	resp->result = htonl(result);
10333 	resp->senders_next_tsn = htonl(send_una);
10334 	resp->receivers_next_tsn = htonl(recv_next);
10335 
10336 	/* now fix the chunk length */
10337 	ch->chunk_length = htons(len + old_len);
10338 	chk->book_size = len + old_len;
10339 	chk->send_size = SCTP_SIZE32(chk->book_size);
10340 	chk->book_size_scale = 0;
10341 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10342 	return;
10343 }
10344 
10345 
10346 int
10347 sctp_send_str_reset_req(struct sctp_tcb *stcb,
10348     int number_entries, uint16_t * list,
10349     uint8_t send_out_req, uint32_t resp_seq,
10350     uint8_t send_in_req,
10351     uint8_t send_tsn_req)
10352 {
10353 
10354 	struct sctp_association *asoc;
10355 	struct sctp_tmit_chunk *chk;
10356 	struct sctp_chunkhdr *ch;
10357 	uint32_t seq;
10358 
10359 	asoc = &stcb->asoc;
10360 	if (asoc->stream_reset_outstanding) {
10361 		/*-
10362 		 * Already one pending, must get ACK back to clear the flag.
10363 		 */
10364 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
10365 		return (EBUSY);
10366 	}
10367 	if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0)) {
10368 		/* nothing to do */
10369 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10370 		return (EINVAL);
10371 	}
10372 	if (send_tsn_req && (send_out_req || send_in_req)) {
10373 		/* error, can't do that */
10374 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10375 		return (EINVAL);
10376 	}
10377 	sctp_alloc_a_chunk(stcb, chk);
10378 	if (chk == NULL) {
10379 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10380 		return (ENOMEM);
10381 	}
10382 	chk->copy_by_ref = 0;
10383 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
10384 	chk->rec.chunk_id.can_take_data = 0;
10385 	chk->asoc = &stcb->asoc;
10386 	chk->book_size = sizeof(struct sctp_chunkhdr);
10387 	chk->send_size = SCTP_SIZE32(chk->book_size);
10388 	chk->book_size_scale = 0;
10389 
10390 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
10391 	if (chk->data == NULL) {
10392 		sctp_free_a_chunk(stcb, chk);
10393 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10394 		return (ENOMEM);
10395 	}
10396 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10397 
10398 	/* setup chunk parameters */
10399 	chk->sent = SCTP_DATAGRAM_UNSENT;
10400 	chk->snd_count = 0;
10401 	chk->whoTo = asoc->primary_destination;
10402 	atomic_add_int(&chk->whoTo->ref_count, 1);
10403 
10404 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10405 	ch->chunk_type = SCTP_STREAM_RESET;
10406 	ch->chunk_flags = 0;
10407 	ch->chunk_length = htons(chk->book_size);
10408 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10409 
10410 	seq = stcb->asoc.str_reset_seq_out;
10411 	if (send_out_req) {
10412 		sctp_add_stream_reset_out(chk, number_entries, list,
10413 		    seq, resp_seq, (stcb->asoc.sending_seq - 1));
10414 		asoc->stream_reset_out_is_outstanding = 1;
10415 		seq++;
10416 		asoc->stream_reset_outstanding++;
10417 	}
10418 	if (send_in_req) {
10419 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
10420 		asoc->stream_reset_outstanding++;
10421 	}
10422 	if (send_tsn_req) {
10423 		sctp_add_stream_reset_tsn(chk, seq);
10424 		asoc->stream_reset_outstanding++;
10425 	}
10426 	asoc->str_reset = chk;
10427 
10428 	/* insert the chunk for sending */
10429 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
10430 	    chk,
10431 	    sctp_next);
10432 	asoc->ctrl_queue_cnt++;
10433 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
10434 	return (0);
10435 }
10436 
10437 void
10438 sctp_send_abort(struct mbuf *m, int iphlen, struct sctphdr *sh, uint32_t vtag,
10439     struct mbuf *err_cause, uint32_t vrf_id)
10440 {
10441 	/*-
10442 	 * Formulate the abort message, and send it back down.
10443 	 */
10444 	struct mbuf *o_pak;
10445 	struct mbuf *mout;
10446 	struct sctp_abort_msg *abm;
10447 	struct ip *iph, *iph_out;
10448 	struct ip6_hdr *ip6, *ip6_out;
10449 	int iphlen_out, len;
10450 
10451 	/* don't respond to ABORT with ABORT */
10452 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
10453 		if (err_cause)
10454 			sctp_m_freem(err_cause);
10455 		return;
10456 	}
10457 	len = (sizeof(struct ip6_hdr) + sizeof(struct sctp_abort_msg));
10458 
10459 	mout = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
10460 	if (mout == NULL) {
10461 		if (err_cause)
10462 			sctp_m_freem(err_cause);
10463 		return;
10464 	}
10465 	iph = mtod(m, struct ip *);
10466 	iph_out = NULL;
10467 	ip6_out = NULL;
10468 	if (iph->ip_v == IPVERSION) {
10469 		iph_out = mtod(mout, struct ip *);
10470 		SCTP_BUF_LEN(mout) = sizeof(*iph_out) + sizeof(*abm);
10471 		SCTP_BUF_NEXT(mout) = err_cause;
10472 
10473 		/* Fill in the IP header for the ABORT */
10474 		iph_out->ip_v = IPVERSION;
10475 		iph_out->ip_hl = (sizeof(struct ip) / 4);
10476 		iph_out->ip_tos = (u_char)0;
10477 		iph_out->ip_id = 0;
10478 		iph_out->ip_off = 0;
10479 		iph_out->ip_ttl = MAXTTL;
10480 		iph_out->ip_p = IPPROTO_SCTP;
10481 		iph_out->ip_src.s_addr = iph->ip_dst.s_addr;
10482 		iph_out->ip_dst.s_addr = iph->ip_src.s_addr;
10483 		/* let IP layer calculate this */
10484 		iph_out->ip_sum = 0;
10485 
10486 		iphlen_out = sizeof(*iph_out);
10487 		abm = (struct sctp_abort_msg *)((caddr_t)iph_out + iphlen_out);
10488 	} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
10489 		ip6 = (struct ip6_hdr *)iph;
10490 		ip6_out = mtod(mout, struct ip6_hdr *);
10491 		SCTP_BUF_LEN(mout) = sizeof(*ip6_out) + sizeof(*abm);
10492 		SCTP_BUF_NEXT(mout) = err_cause;
10493 
10494 		/* Fill in the IP6 header for the ABORT */
10495 		ip6_out->ip6_flow = ip6->ip6_flow;
10496 		ip6_out->ip6_hlim = ip6_defhlim;
10497 		ip6_out->ip6_nxt = IPPROTO_SCTP;
10498 		ip6_out->ip6_src = ip6->ip6_dst;
10499 		ip6_out->ip6_dst = ip6->ip6_src;
10500 
10501 		iphlen_out = sizeof(*ip6_out);
10502 		abm = (struct sctp_abort_msg *)((caddr_t)ip6_out + iphlen_out);
10503 	} else {
10504 		/* Currently not supported */
10505 		if (err_cause)
10506 			sctp_m_freem(err_cause);
10507 		sctp_m_freem(mout);
10508 		return;
10509 	}
10510 
10511 	abm->sh.src_port = sh->dest_port;
10512 	abm->sh.dest_port = sh->src_port;
10513 	abm->sh.checksum = 0;
10514 	if (vtag == 0) {
10515 		abm->sh.v_tag = sh->v_tag;
10516 		abm->msg.ch.chunk_flags = SCTP_HAD_NO_TCB;
10517 	} else {
10518 		abm->sh.v_tag = htonl(vtag);
10519 		abm->msg.ch.chunk_flags = 0;
10520 	}
10521 	abm->msg.ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10522 
10523 	if (err_cause) {
10524 		struct mbuf *m_tmp = err_cause;
10525 		int err_len = 0;
10526 
10527 		/* get length of the err_cause chain */
10528 		while (m_tmp != NULL) {
10529 			err_len += SCTP_BUF_LEN(m_tmp);
10530 			m_tmp = SCTP_BUF_NEXT(m_tmp);
10531 		}
10532 		len = SCTP_BUF_LEN(mout) + err_len;
10533 		if (err_len % 4) {
10534 			/* need pad at end of chunk */
10535 			uint32_t cpthis = 0;
10536 			int padlen;
10537 
10538 			padlen = 4 - (len % 4);
10539 			m_copyback(mout, len, padlen, (caddr_t)&cpthis);
10540 			len += padlen;
10541 		}
10542 		abm->msg.ch.chunk_length = htons(sizeof(abm->msg.ch) + err_len);
10543 	} else {
10544 		len = SCTP_BUF_LEN(mout);
10545 		abm->msg.ch.chunk_length = htons(sizeof(abm->msg.ch));
10546 	}
10547 
10548 	/* add checksum */
10549 	abm->sh.checksum = sctp_calculate_sum(mout, NULL, iphlen_out);
10550 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10551 		/* no mbuf's */
10552 		sctp_m_freem(mout);
10553 		return;
10554 	}
10555 	if (iph_out != NULL) {
10556 		sctp_route_t ro;
10557 		struct sctp_tcb *stcb = NULL;
10558 		int ret;
10559 
10560 		/* zap the stack pointer to the route */
10561 		bzero(&ro, sizeof ro);
10562 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_send_abort calling ip_output:\n");
10563 		SCTPDBG_PKT(SCTP_DEBUG_OUTPUT2, iph_out, &abm->sh);
10564 		/* set IPv4 length */
10565 		iph_out->ip_len = len;
10566 		/* out it goes */
10567 #ifdef  SCTP_PACKET_LOGGING
10568 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10569 			sctp_packet_log(mout, len);
10570 #endif
10571 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10572 		SCTP_IP_OUTPUT(ret, o_pak, &ro, stcb, vrf_id);
10573 
10574 		/* Free the route if we got one back */
10575 		if (ro.ro_rt)
10576 			RTFREE(ro.ro_rt);
10577 	} else if (ip6_out != NULL) {
10578 		struct route_in6 ro;
10579 		int ret;
10580 		struct sctp_tcb *stcb = NULL;
10581 		struct ifnet *ifp = NULL;
10582 
10583 		/* zap the stack pointer to the route */
10584 		bzero(&ro, sizeof(ro));
10585 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_send_abort calling ip6_output:\n");
10586 		SCTPDBG_PKT(SCTP_DEBUG_OUTPUT2, (struct ip *)ip6_out, &abm->sh);
10587 		ip6_out->ip6_plen = len - sizeof(*ip6_out);
10588 #ifdef  SCTP_PACKET_LOGGING
10589 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10590 			sctp_packet_log(mout, len);
10591 #endif
10592 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10593 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
10594 
10595 		/* Free the route if we got one back */
10596 		if (ro.ro_rt)
10597 			RTFREE(ro.ro_rt);
10598 	}
10599 	SCTP_STAT_INCR(sctps_sendpackets);
10600 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10601 }
10602 
10603 void
10604 sctp_send_operr_to(struct mbuf *m, int iphlen, struct mbuf *scm, uint32_t vtag,
10605     uint32_t vrf_id)
10606 {
10607 	struct mbuf *o_pak;
10608 	struct sctphdr *ihdr;
10609 	int retcode;
10610 	struct sctphdr *ohdr;
10611 	struct sctp_chunkhdr *ophdr;
10612 	struct ip *iph;
10613 	struct mbuf *mout;
10614 
10615 #ifdef SCTP_DEBUG
10616 	struct sockaddr_in6 lsa6, fsa6;
10617 
10618 #endif
10619 	uint32_t val;
10620 	struct mbuf *at;
10621 	int len;
10622 
10623 	iph = mtod(m, struct ip *);
10624 	ihdr = (struct sctphdr *)((caddr_t)iph + iphlen);
10625 
10626 	SCTP_BUF_PREPEND(scm, (sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr)), M_DONTWAIT);
10627 	if (scm == NULL) {
10628 		/* can't send because we can't add a mbuf */
10629 		return;
10630 	}
10631 	ohdr = mtod(scm, struct sctphdr *);
10632 	ohdr->src_port = ihdr->dest_port;
10633 	ohdr->dest_port = ihdr->src_port;
10634 	ohdr->v_tag = vtag;
10635 	ohdr->checksum = 0;
10636 	ophdr = (struct sctp_chunkhdr *)(ohdr + 1);
10637 	ophdr->chunk_type = SCTP_OPERATION_ERROR;
10638 	ophdr->chunk_flags = 0;
10639 	len = 0;
10640 	at = scm;
10641 	while (at) {
10642 		len += SCTP_BUF_LEN(at);
10643 		at = SCTP_BUF_NEXT(at);
10644 	}
10645 	ophdr->chunk_length = htons(len - sizeof(struct sctphdr));
10646 	if (len % 4) {
10647 		/* need padding */
10648 		uint32_t cpthis = 0;
10649 		int padlen;
10650 
10651 		padlen = 4 - (len % 4);
10652 		m_copyback(scm, len, padlen, (caddr_t)&cpthis);
10653 		len += padlen;
10654 	}
10655 	val = sctp_calculate_sum(scm, NULL, 0);
10656 	mout = sctp_get_mbuf_for_msg(sizeof(struct ip6_hdr), 1, M_DONTWAIT, 1, MT_DATA);
10657 	if (mout == NULL) {
10658 		sctp_m_freem(scm);
10659 		return;
10660 	}
10661 	SCTP_BUF_NEXT(mout) = scm;
10662 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10663 		sctp_m_freem(mout);
10664 		return;
10665 	}
10666 	ohdr->checksum = val;
10667 	if (iph->ip_v == IPVERSION) {
10668 		/* V4 */
10669 		struct ip *out;
10670 		sctp_route_t ro;
10671 		struct sctp_tcb *stcb = NULL;
10672 
10673 		SCTP_BUF_LEN(mout) = sizeof(struct ip);
10674 		len += sizeof(struct ip);
10675 
10676 		bzero(&ro, sizeof ro);
10677 		out = mtod(mout, struct ip *);
10678 		out->ip_v = iph->ip_v;
10679 		out->ip_hl = (sizeof(struct ip) / 4);
10680 		out->ip_tos = iph->ip_tos;
10681 		out->ip_id = iph->ip_id;
10682 		out->ip_off = 0;
10683 		out->ip_ttl = MAXTTL;
10684 		out->ip_p = IPPROTO_SCTP;
10685 		out->ip_sum = 0;
10686 		out->ip_src = iph->ip_dst;
10687 		out->ip_dst = iph->ip_src;
10688 		out->ip_len = len;
10689 #ifdef  SCTP_PACKET_LOGGING
10690 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10691 			sctp_packet_log(mout, len);
10692 #endif
10693 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10694 
10695 		SCTP_IP_OUTPUT(retcode, o_pak, &ro, stcb, vrf_id);
10696 
10697 		SCTP_STAT_INCR(sctps_sendpackets);
10698 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10699 		/* Free the route if we got one back */
10700 		if (ro.ro_rt)
10701 			RTFREE(ro.ro_rt);
10702 	} else {
10703 		/* V6 */
10704 		struct route_in6 ro;
10705 		int ret;
10706 		struct sctp_tcb *stcb = NULL;
10707 		struct ifnet *ifp = NULL;
10708 		struct ip6_hdr *out6, *in6;
10709 
10710 		SCTP_BUF_LEN(mout) = sizeof(struct ip6_hdr);
10711 		len += sizeof(struct ip6_hdr);
10712 		bzero(&ro, sizeof ro);
10713 		in6 = mtod(m, struct ip6_hdr *);
10714 		out6 = mtod(mout, struct ip6_hdr *);
10715 		out6->ip6_flow = in6->ip6_flow;
10716 		out6->ip6_hlim = ip6_defhlim;
10717 		out6->ip6_nxt = IPPROTO_SCTP;
10718 		out6->ip6_src = in6->ip6_dst;
10719 		out6->ip6_dst = in6->ip6_src;
10720 		out6->ip6_plen = len - sizeof(struct ip6_hdr);
10721 
10722 #ifdef SCTP_DEBUG
10723 		bzero(&lsa6, sizeof(lsa6));
10724 		lsa6.sin6_len = sizeof(lsa6);
10725 		lsa6.sin6_family = AF_INET6;
10726 		lsa6.sin6_addr = out6->ip6_src;
10727 		bzero(&fsa6, sizeof(fsa6));
10728 		fsa6.sin6_len = sizeof(fsa6);
10729 		fsa6.sin6_family = AF_INET6;
10730 		fsa6.sin6_addr = out6->ip6_dst;
10731 #endif
10732 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_operr_to calling ipv6 output:\n");
10733 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "src: ");
10734 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&lsa6);
10735 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "dst ");
10736 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&fsa6);
10737 
10738 #ifdef  SCTP_PACKET_LOGGING
10739 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10740 			sctp_packet_log(mout, len);
10741 #endif
10742 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10743 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
10744 
10745 		SCTP_STAT_INCR(sctps_sendpackets);
10746 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10747 		/* Free the route if we got one back */
10748 		if (ro.ro_rt)
10749 			RTFREE(ro.ro_rt);
10750 	}
10751 }
10752 
10753 static struct mbuf *
10754 sctp_copy_resume(struct sctp_stream_queue_pending *sp,
10755     struct uio *uio,
10756     struct sctp_sndrcvinfo *srcv,
10757     int max_send_len,
10758     int user_marks_eor,
10759     int *error,
10760     uint32_t * sndout,
10761     struct mbuf **new_tail)
10762 {
10763 	struct mbuf *m;
10764 
10765 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
10766 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
10767 	if (m == NULL) {
10768 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10769 		*error = ENOMEM;
10770 	} else {
10771 		*sndout = m_length(m, NULL);
10772 		*new_tail = m_last(m);
10773 	}
10774 	return (m);
10775 }
10776 
10777 static int
10778 sctp_copy_one(struct sctp_stream_queue_pending *sp,
10779     struct uio *uio,
10780     int resv_upfront)
10781 {
10782 	int left;
10783 
10784 	left = sp->length;
10785 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
10786 	    resv_upfront, 0);
10787 	if (sp->data == NULL) {
10788 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10789 		return (ENOMEM);
10790 	}
10791 	sp->tail_mbuf = m_last(sp->data);
10792 	return (0);
10793 }
10794 
10795 
10796 
10797 static struct sctp_stream_queue_pending *
10798 sctp_copy_it_in(struct sctp_tcb *stcb,
10799     struct sctp_association *asoc,
10800     struct sctp_sndrcvinfo *srcv,
10801     struct uio *uio,
10802     struct sctp_nets *net,
10803     int max_send_len,
10804     int user_marks_eor,
10805     int *error,
10806     int non_blocking)
10807 {
10808 	/*-
10809 	 * This routine must be very careful in its work. Protocol
10810 	 * processing is up and running so care must be taken to spl...()
10811 	 * when you need to do something that may effect the stcb/asoc. The
10812 	 * sb is locked however. When data is copied the protocol processing
10813 	 * should be enabled since this is a slower operation...
10814 	 */
10815 	struct sctp_stream_queue_pending *sp = NULL;
10816 	int resv_in_first;
10817 
10818 	*error = 0;
10819 	/* Now can we send this? */
10820 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
10821 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
10822 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
10823 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
10824 		/* got data while shutting down */
10825 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
10826 		*error = ECONNRESET;
10827 		goto out_now;
10828 	}
10829 	sctp_alloc_a_strmoq(stcb, sp);
10830 	if (sp == NULL) {
10831 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10832 		*error = ENOMEM;
10833 		goto out_now;
10834 	}
10835 	sp->act_flags = 0;
10836 	sp->sender_all_done = 0;
10837 	sp->sinfo_flags = srcv->sinfo_flags;
10838 	sp->timetolive = srcv->sinfo_timetolive;
10839 	sp->ppid = srcv->sinfo_ppid;
10840 	sp->context = srcv->sinfo_context;
10841 	sp->strseq = 0;
10842 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
10843 
10844 	sp->stream = srcv->sinfo_stream;
10845 	sp->length = min(uio->uio_resid, max_send_len);
10846 	if ((sp->length == (uint32_t) uio->uio_resid) &&
10847 	    ((user_marks_eor == 0) ||
10848 	    (srcv->sinfo_flags & SCTP_EOF) ||
10849 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
10850 		sp->msg_is_complete = 1;
10851 	} else {
10852 		sp->msg_is_complete = 0;
10853 	}
10854 	sp->sender_all_done = 0;
10855 	sp->some_taken = 0;
10856 	sp->put_last_out = 0;
10857 	resv_in_first = sizeof(struct sctp_data_chunk);
10858 	sp->data = sp->tail_mbuf = NULL;
10859 	*error = sctp_copy_one(sp, uio, resv_in_first);
10860 	if (*error) {
10861 		sctp_free_a_strmoq(stcb, sp);
10862 		sp = NULL;
10863 	} else {
10864 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
10865 			sp->net = net;
10866 			sp->addr_over = 1;
10867 		} else {
10868 			sp->net = asoc->primary_destination;
10869 			sp->addr_over = 0;
10870 		}
10871 		atomic_add_int(&sp->net->ref_count, 1);
10872 		sctp_set_prsctp_policy(stcb, sp);
10873 	}
10874 out_now:
10875 	return (sp);
10876 }
10877 
10878 
10879 int
10880 sctp_sosend(struct socket *so,
10881     struct sockaddr *addr,
10882     struct uio *uio,
10883     struct mbuf *top,
10884     struct mbuf *control,
10885     int flags,
10886     struct thread *p
10887 )
10888 {
10889 	struct sctp_inpcb *inp;
10890 	int error, use_rcvinfo = 0;
10891 	struct sctp_sndrcvinfo srcv;
10892 
10893 	inp = (struct sctp_inpcb *)so->so_pcb;
10894 	if (control) {
10895 		/* process cmsg snd/rcv info (maybe a assoc-id) */
10896 		if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&srcv, control,
10897 		    sizeof(srcv))) {
10898 			/* got one */
10899 			use_rcvinfo = 1;
10900 		}
10901 	}
10902 	error = sctp_lower_sosend(so, addr, uio, top,
10903 	    control,
10904 	    flags,
10905 	    use_rcvinfo, &srcv
10906 	    ,p
10907 	    );
10908 	return (error);
10909 }
10910 
10911 
10912 int
10913 sctp_lower_sosend(struct socket *so,
10914     struct sockaddr *addr,
10915     struct uio *uio,
10916     struct mbuf *i_pak,
10917     struct mbuf *control,
10918     int flags,
10919     int use_rcvinfo,
10920     struct sctp_sndrcvinfo *srcv
10921     ,
10922     struct thread *p
10923 )
10924 {
10925 	unsigned int sndlen = 0, max_len;
10926 	int error, len;
10927 	struct mbuf *top = NULL;
10928 
10929 #if defined(__NetBSD__) || defined(__OpenBSD_)
10930 	int s;
10931 
10932 #endif
10933 	int queue_only = 0, queue_only_for_init = 0;
10934 	int free_cnt_applied = 0;
10935 	int un_sent = 0;
10936 	int now_filled = 0;
10937 	struct sctp_block_entry be;
10938 	struct sctp_inpcb *inp;
10939 	struct sctp_tcb *stcb = NULL;
10940 	struct timeval now;
10941 	struct sctp_nets *net;
10942 	struct sctp_association *asoc;
10943 	struct sctp_inpcb *t_inp;
10944 	int user_marks_eor;
10945 	int create_lock_applied = 0;
10946 	int nagle_applies = 0;
10947 	int some_on_control = 0;
10948 	int got_all_of_the_send = 0;
10949 	int hold_tcblock = 0;
10950 	int non_blocking = 0;
10951 	int temp_flags = 0;
10952 	uint32_t local_add_more;
10953 
10954 	error = 0;
10955 	net = NULL;
10956 	stcb = NULL;
10957 	asoc = NULL;
10958 
10959 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
10960 	if (inp == NULL) {
10961 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
10962 		error = EFAULT;
10963 		goto out_unlocked;
10964 	}
10965 	if ((uio == NULL) && (i_pak == NULL)) {
10966 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10967 		return (EINVAL);
10968 	}
10969 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
10970 	atomic_add_int(&inp->total_sends, 1);
10971 	if (uio) {
10972 		if (uio->uio_resid < 0) {
10973 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10974 			return (EINVAL);
10975 		}
10976 		sndlen = uio->uio_resid;
10977 	} else {
10978 		top = SCTP_HEADER_TO_CHAIN(i_pak);
10979 		sndlen = SCTP_HEADER_LEN(i_pak);
10980 	}
10981 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
10982 	    addr,
10983 	    sndlen);
10984 	/*-
10985 	 * Pre-screen address, if one is given the sin-len
10986 	 * must be set correctly!
10987 	 */
10988 	if (addr) {
10989 		if ((addr->sa_family == AF_INET) &&
10990 		    (addr->sa_len != sizeof(struct sockaddr_in))) {
10991 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10992 			error = EINVAL;
10993 			goto out_unlocked;
10994 		} else if ((addr->sa_family == AF_INET6) &&
10995 		    (addr->sa_len != sizeof(struct sockaddr_in6))) {
10996 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10997 			error = EINVAL;
10998 			goto out_unlocked;
10999 		}
11000 	}
11001 	hold_tcblock = 0;
11002 
11003 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
11004 	    (inp->sctp_socket->so_qlimit)) {
11005 		/* The listener can NOT send */
11006 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11007 		error = EFAULT;
11008 		goto out_unlocked;
11009 	}
11010 	if ((use_rcvinfo) && srcv) {
11011 		if (INVALID_SINFO_FLAG(srcv->sinfo_flags) ||
11012 		    PR_SCTP_INVALID_POLICY(srcv->sinfo_flags)) {
11013 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11014 			error = EINVAL;
11015 			goto out_unlocked;
11016 		}
11017 		if (srcv->sinfo_flags)
11018 			SCTP_STAT_INCR(sctps_sends_with_flags);
11019 
11020 		if (srcv->sinfo_flags & SCTP_SENDALL) {
11021 			/* its a sendall */
11022 			error = sctp_sendall(inp, uio, top, srcv);
11023 			top = NULL;
11024 			goto out_unlocked;
11025 		}
11026 	}
11027 	/* now we must find the assoc */
11028 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
11029 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
11030 		SCTP_INP_RLOCK(inp);
11031 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
11032 		if (stcb == NULL) {
11033 			SCTP_INP_RUNLOCK(inp);
11034 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
11035 			error = ENOTCONN;
11036 			goto out_unlocked;
11037 		}
11038 		hold_tcblock = 0;
11039 		SCTP_INP_RUNLOCK(inp);
11040 		if (addr) {
11041 			/* Must locate the net structure if addr given */
11042 			net = sctp_findnet(stcb, addr);
11043 			if (net) {
11044 				/* validate port was 0 or correct */
11045 				struct sockaddr_in *sin;
11046 
11047 				sin = (struct sockaddr_in *)addr;
11048 				if ((sin->sin_port != 0) &&
11049 				    (sin->sin_port != stcb->rport)) {
11050 					net = NULL;
11051 				}
11052 			}
11053 			temp_flags |= SCTP_ADDR_OVER;
11054 		} else
11055 			net = stcb->asoc.primary_destination;
11056 		if (addr && (net == NULL)) {
11057 			/* Could not find address, was it legal */
11058 			if (addr->sa_family == AF_INET) {
11059 				struct sockaddr_in *sin;
11060 
11061 				sin = (struct sockaddr_in *)addr;
11062 				if (sin->sin_addr.s_addr == 0) {
11063 					if ((sin->sin_port == 0) ||
11064 					    (sin->sin_port == stcb->rport)) {
11065 						net = stcb->asoc.primary_destination;
11066 					}
11067 				}
11068 			} else {
11069 				struct sockaddr_in6 *sin6;
11070 
11071 				sin6 = (struct sockaddr_in6 *)addr;
11072 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
11073 					if ((sin6->sin6_port == 0) ||
11074 					    (sin6->sin6_port == stcb->rport)) {
11075 						net = stcb->asoc.primary_destination;
11076 					}
11077 				}
11078 			}
11079 		}
11080 		if (net == NULL) {
11081 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11082 			error = EINVAL;
11083 			goto out_unlocked;
11084 		}
11085 	} else if (use_rcvinfo && srcv && srcv->sinfo_assoc_id) {
11086 		stcb = sctp_findassociation_ep_asocid(inp, srcv->sinfo_assoc_id, 0);
11087 		if (stcb) {
11088 			if (addr)
11089 				/*
11090 				 * Must locate the net structure if addr
11091 				 * given
11092 				 */
11093 				net = sctp_findnet(stcb, addr);
11094 			else
11095 				net = stcb->asoc.primary_destination;
11096 			if ((srcv->sinfo_flags & SCTP_ADDR_OVER) &&
11097 			    ((net == NULL) || (addr == NULL))) {
11098 				struct sockaddr_in *sin;
11099 
11100 				if (addr == NULL) {
11101 					SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11102 					error = EINVAL;
11103 					goto out_unlocked;
11104 				}
11105 				sin = (struct sockaddr_in *)addr;
11106 				/* Validate port is 0 or correct */
11107 				if ((sin->sin_port != 0) &&
11108 				    (sin->sin_port != stcb->rport)) {
11109 					net = NULL;
11110 				}
11111 			}
11112 		}
11113 		hold_tcblock = 0;
11114 	} else if (addr) {
11115 		/*-
11116 		 * Since we did not use findep we must
11117 		 * increment it, and if we don't find a tcb
11118 		 * decrement it.
11119 		 */
11120 		SCTP_INP_WLOCK(inp);
11121 		SCTP_INP_INCR_REF(inp);
11122 		SCTP_INP_WUNLOCK(inp);
11123 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
11124 		if (stcb == NULL) {
11125 			SCTP_INP_WLOCK(inp);
11126 			SCTP_INP_DECR_REF(inp);
11127 			SCTP_INP_WUNLOCK(inp);
11128 		} else {
11129 			hold_tcblock = 1;
11130 		}
11131 	}
11132 	if ((stcb == NULL) && (addr)) {
11133 		/* Possible implicit send? */
11134 		SCTP_ASOC_CREATE_LOCK(inp);
11135 		create_lock_applied = 1;
11136 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
11137 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
11138 			/* Should I really unlock ? */
11139 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11140 			error = EFAULT;
11141 			goto out_unlocked;
11142 
11143 		}
11144 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
11145 		    (addr->sa_family == AF_INET6)) {
11146 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11147 			error = EINVAL;
11148 			goto out_unlocked;
11149 		}
11150 		SCTP_INP_WLOCK(inp);
11151 		SCTP_INP_INCR_REF(inp);
11152 		SCTP_INP_WUNLOCK(inp);
11153 		/* With the lock applied look again */
11154 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
11155 		if (stcb == NULL) {
11156 			SCTP_INP_WLOCK(inp);
11157 			SCTP_INP_DECR_REF(inp);
11158 			SCTP_INP_WUNLOCK(inp);
11159 		} else {
11160 			hold_tcblock = 1;
11161 		}
11162 		if (t_inp != inp) {
11163 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
11164 			error = ENOTCONN;
11165 			goto out_unlocked;
11166 		}
11167 	}
11168 	if (stcb == NULL) {
11169 		if (addr == NULL) {
11170 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
11171 			error = ENOENT;
11172 			goto out_unlocked;
11173 		} else {
11174 			/*
11175 			 * UDP style, we must go ahead and start the INIT
11176 			 * process
11177 			 */
11178 			uint32_t vrf_id;
11179 
11180 			if ((use_rcvinfo) && (srcv) &&
11181 			    ((srcv->sinfo_flags & SCTP_ABORT) ||
11182 			    ((srcv->sinfo_flags & SCTP_EOF) &&
11183 			    (sndlen == 0)))) {
11184 				/*-
11185 				 * User asks to abort a non-existant assoc,
11186 				 * or EOF a non-existant assoc with no data
11187 				 */
11188 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
11189 				error = ENOENT;
11190 				goto out_unlocked;
11191 			}
11192 			/* get an asoc/stcb struct */
11193 			vrf_id = inp->def_vrf_id;
11194 			stcb = sctp_aloc_assoc(inp, addr, 1, &error, 0, vrf_id,
11195 			    p
11196 			    );
11197 			if (stcb == NULL) {
11198 				/* Error is setup for us in the call */
11199 				goto out_unlocked;
11200 			}
11201 			if (create_lock_applied) {
11202 				SCTP_ASOC_CREATE_UNLOCK(inp);
11203 				create_lock_applied = 0;
11204 			} else {
11205 				SCTP_PRINTF("Huh-3? create lock should have been on??\n");
11206 			}
11207 			/*
11208 			 * Turn on queue only flag to prevent data from
11209 			 * being sent
11210 			 */
11211 			queue_only = 1;
11212 			asoc = &stcb->asoc;
11213 			SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
11214 			(void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
11215 
11216 			/* initialize authentication params for the assoc */
11217 			sctp_initialize_auth_params(inp, stcb);
11218 
11219 			if (control) {
11220 				/*
11221 				 * see if a init structure exists in cmsg
11222 				 * headers
11223 				 */
11224 				struct sctp_initmsg initm;
11225 				int i;
11226 
11227 				if (sctp_find_cmsg(SCTP_INIT, (void *)&initm, control,
11228 				    sizeof(initm))) {
11229 					/*
11230 					 * we have an INIT override of the
11231 					 * default
11232 					 */
11233 					if (initm.sinit_max_attempts)
11234 						asoc->max_init_times = initm.sinit_max_attempts;
11235 					if (initm.sinit_num_ostreams)
11236 						asoc->pre_open_streams = initm.sinit_num_ostreams;
11237 					if (initm.sinit_max_instreams)
11238 						asoc->max_inbound_streams = initm.sinit_max_instreams;
11239 					if (initm.sinit_max_init_timeo)
11240 						asoc->initial_init_rto_max = initm.sinit_max_init_timeo;
11241 					if (asoc->streamoutcnt < asoc->pre_open_streams) {
11242 						/* Default is NOT correct */
11243 						SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, defout:%d pre_open:%d\n",
11244 						    asoc->streamoutcnt, asoc->pre_open_streams);
11245 						/*
11246 						 * What happens if this
11247 						 * fails? we panic ...
11248 						 */
11249 						{
11250 							struct sctp_stream_out *tmp_str;
11251 							int had_lock = 0;
11252 
11253 							if (hold_tcblock) {
11254 								had_lock = 1;
11255 								SCTP_TCB_UNLOCK(stcb);
11256 							}
11257 							SCTP_MALLOC(tmp_str,
11258 							    struct sctp_stream_out *,
11259 							    (asoc->pre_open_streams *
11260 							    sizeof(struct sctp_stream_out)),
11261 							    SCTP_M_STRMO);
11262 							if (had_lock) {
11263 								SCTP_TCB_LOCK(stcb);
11264 							}
11265 							if (tmp_str != NULL) {
11266 								SCTP_FREE(asoc->strmout, SCTP_M_STRMO);
11267 								asoc->strmout = tmp_str;
11268 								asoc->streamoutcnt = asoc->pre_open_streams;
11269 							} else {
11270 								asoc->pre_open_streams = asoc->streamoutcnt;
11271 							}
11272 						}
11273 						for (i = 0; i < asoc->streamoutcnt; i++) {
11274 							/*-
11275 							 * inbound side must be set
11276 							 * to 0xffff, also NOTE when
11277 							 * we get the INIT-ACK back
11278 							 * (for INIT sender) we MUST
11279 							 * reduce the count
11280 							 * (streamoutcnt) but first
11281 							 * check if we sent to any
11282 							 * of the upper streams that
11283 							 * were dropped (if some
11284 							 * were). Those that were
11285 							 * dropped must be notified
11286 							 * to the upper layer as
11287 							 * failed to send.
11288 							 */
11289 							asoc->strmout[i].next_sequence_sent = 0x0;
11290 							TAILQ_INIT(&asoc->strmout[i].outqueue);
11291 							asoc->strmout[i].stream_no = i;
11292 							asoc->strmout[i].last_msg_incomplete = 0;
11293 							asoc->strmout[i].next_spoke.tqe_next = 0;
11294 							asoc->strmout[i].next_spoke.tqe_prev = 0;
11295 						}
11296 					}
11297 				}
11298 			}
11299 			hold_tcblock = 1;
11300 			/* out with the INIT */
11301 			queue_only_for_init = 1;
11302 			/*-
11303 			 * we may want to dig in after this call and adjust the MTU
11304 			 * value. It defaulted to 1500 (constant) but the ro
11305 			 * structure may now have an update and thus we may need to
11306 			 * change it BEFORE we append the message.
11307 			 */
11308 			net = stcb->asoc.primary_destination;
11309 			asoc = &stcb->asoc;
11310 		}
11311 	}
11312 	if ((SCTP_SO_IS_NBIO(so)
11313 	    || (flags & MSG_NBIO)
11314 	    )) {
11315 		non_blocking = 1;
11316 	}
11317 	asoc = &stcb->asoc;
11318 
11319 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
11320 		if (sndlen > asoc->smallest_mtu) {
11321 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11322 			error = EMSGSIZE;
11323 			goto out_unlocked;
11324 		}
11325 	}
11326 	/* would we block? */
11327 	if (non_blocking) {
11328 		if ((SCTP_SB_LIMIT_SND(so) <
11329 		    (sndlen + stcb->asoc.total_output_queue_size)) ||
11330 		    (stcb->asoc.chunks_on_out_queue >
11331 		    sctp_max_chunks_on_queue)) {
11332 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
11333 			if (sndlen > SCTP_SB_LIMIT_SND(so))
11334 				error = EMSGSIZE;
11335 			else
11336 				error = EWOULDBLOCK;
11337 
11338 			atomic_add_int(&stcb->sctp_ep->total_nospaces, 1);
11339 			goto out_unlocked;
11340 		}
11341 	}
11342 	/* Keep the stcb from being freed under our feet */
11343 	if (free_cnt_applied)
11344 		panic("refcnt already incremented");
11345 	atomic_add_int(&stcb->asoc.refcnt, 1);
11346 	free_cnt_applied = 1;
11347 
11348 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11349 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11350 		error = ECONNRESET;
11351 		goto out_unlocked;
11352 	}
11353 	if (create_lock_applied) {
11354 		SCTP_ASOC_CREATE_UNLOCK(inp);
11355 		create_lock_applied = 0;
11356 	}
11357 	if (asoc->stream_reset_outstanding) {
11358 		/*
11359 		 * Can't queue any data while stream reset is underway.
11360 		 */
11361 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
11362 		error = EAGAIN;
11363 		goto out_unlocked;
11364 	}
11365 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
11366 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
11367 		queue_only = 1;
11368 	}
11369 	if ((use_rcvinfo == 0) || (srcv == NULL)) {
11370 		/* Grab the default stuff from the asoc */
11371 		srcv = (struct sctp_sndrcvinfo *)&stcb->asoc.def_send;
11372 	}
11373 	/* we are now done with all control */
11374 	if (control) {
11375 		sctp_m_freem(control);
11376 		control = NULL;
11377 	}
11378 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
11379 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
11380 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
11381 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
11382 		if ((use_rcvinfo) &&
11383 		    (srcv->sinfo_flags & SCTP_ABORT)) {
11384 			;
11385 		} else {
11386 			SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11387 			error = ECONNRESET;
11388 			goto out_unlocked;
11389 		}
11390 	}
11391 	/* Ok, we will attempt a msgsnd :> */
11392 	if (p) {
11393 		p->td_ru.ru_msgsnd++;
11394 	}
11395 	if (stcb) {
11396 		if (((srcv->sinfo_flags | temp_flags) & SCTP_ADDR_OVER) == 0) {
11397 			net = stcb->asoc.primary_destination;
11398 		}
11399 	}
11400 	if (net == NULL) {
11401 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11402 		error = EINVAL;
11403 		goto out_unlocked;
11404 	}
11405 	if ((net->flight_size > net->cwnd) && (sctp_cmt_on_off == 0)) {
11406 		/*-
11407 		 * CMT: Added check for CMT above. net above is the primary
11408 		 * dest. If CMT is ON, sender should always attempt to send
11409 		 * with the output routine sctp_fill_outqueue() that loops
11410 		 * through all destination addresses. Therefore, if CMT is
11411 		 * ON, queue_only is NOT set to 1 here, so that
11412 		 * sctp_chunk_output() can be called below.
11413 		 */
11414 		queue_only = 1;
11415 
11416 	} else if (asoc->ifp_had_enobuf) {
11417 		SCTP_STAT_INCR(sctps_ifnomemqueued);
11418 		if (net->flight_size > (net->mtu * 2))
11419 			queue_only = 1;
11420 		asoc->ifp_had_enobuf = 0;
11421 	} else {
11422 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11423 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) * sizeof(struct sctp_data_chunk)));
11424 	}
11425 	/* Are we aborting? */
11426 	if (srcv->sinfo_flags & SCTP_ABORT) {
11427 		struct mbuf *mm;
11428 		int tot_demand, tot_out = 0, max_out;
11429 
11430 		SCTP_STAT_INCR(sctps_sends_with_abort);
11431 		if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
11432 		    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
11433 			/* It has to be up before we abort */
11434 			/* how big is the user initiated abort? */
11435 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11436 			error = EINVAL;
11437 			goto out;
11438 		}
11439 		if (hold_tcblock) {
11440 			SCTP_TCB_UNLOCK(stcb);
11441 			hold_tcblock = 0;
11442 		}
11443 		if (top) {
11444 			struct mbuf *cntm = NULL;
11445 
11446 			mm = sctp_get_mbuf_for_msg(1, 0, M_WAIT, 1, MT_DATA);
11447 			if (sndlen != 0) {
11448 				cntm = top;
11449 				while (cntm) {
11450 					tot_out += SCTP_BUF_LEN(cntm);
11451 					cntm = SCTP_BUF_NEXT(cntm);
11452 				}
11453 			}
11454 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
11455 		} else {
11456 			/* Must fit in a MTU */
11457 			tot_out = sndlen;
11458 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
11459 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
11460 				/* To big */
11461 				SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11462 				error = EMSGSIZE;
11463 				goto out;
11464 			}
11465 			mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAIT, 1, MT_DATA);
11466 		}
11467 		if (mm == NULL) {
11468 			SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11469 			error = ENOMEM;
11470 			goto out;
11471 		}
11472 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
11473 		max_out -= sizeof(struct sctp_abort_msg);
11474 		if (tot_out > max_out) {
11475 			tot_out = max_out;
11476 		}
11477 		if (mm) {
11478 			struct sctp_paramhdr *ph;
11479 
11480 			/* now move forward the data pointer */
11481 			ph = mtod(mm, struct sctp_paramhdr *);
11482 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
11483 			ph->param_length = htons((sizeof(struct sctp_paramhdr) + tot_out));
11484 			ph++;
11485 			SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
11486 			if (top == NULL) {
11487 				error = uiomove((caddr_t)ph, (int)tot_out, uio);
11488 				if (error) {
11489 					/*-
11490 					 * Here if we can't get his data we
11491 					 * still abort we just don't get to
11492 					 * send the users note :-0
11493 					 */
11494 					sctp_m_freem(mm);
11495 					mm = NULL;
11496 				}
11497 			} else {
11498 				if (sndlen != 0) {
11499 					SCTP_BUF_NEXT(mm) = top;
11500 				}
11501 			}
11502 		}
11503 		if (hold_tcblock == 0) {
11504 			SCTP_TCB_LOCK(stcb);
11505 			hold_tcblock = 1;
11506 		}
11507 		atomic_add_int(&stcb->asoc.refcnt, -1);
11508 		free_cnt_applied = 0;
11509 		/* release this lock, otherwise we hang on ourselves */
11510 		sctp_abort_an_association(stcb->sctp_ep, stcb,
11511 		    SCTP_RESPONSE_TO_USER_REQ,
11512 		    mm, SCTP_SO_LOCKED);
11513 		/* now relock the stcb so everything is sane */
11514 		hold_tcblock = 0;
11515 		stcb = NULL;
11516 		/*
11517 		 * In this case top is already chained to mm avoid double
11518 		 * free, since we free it below if top != NULL and driver
11519 		 * would free it after sending the packet out
11520 		 */
11521 		if (sndlen != 0) {
11522 			top = NULL;
11523 		}
11524 		goto out_unlocked;
11525 	}
11526 	/* Calculate the maximum we can send */
11527 	if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) {
11528 		max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11529 	} else {
11530 		max_len = 0;
11531 	}
11532 	if (hold_tcblock) {
11533 		SCTP_TCB_UNLOCK(stcb);
11534 		hold_tcblock = 0;
11535 	}
11536 	/* Is the stream no. valid? */
11537 	if (srcv->sinfo_stream >= asoc->streamoutcnt) {
11538 		/* Invalid stream number */
11539 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11540 		error = EINVAL;
11541 		goto out_unlocked;
11542 	}
11543 	if (asoc->strmout == NULL) {
11544 		/* huh? software error */
11545 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11546 		error = EFAULT;
11547 		goto out_unlocked;
11548 	}
11549 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
11550 	if ((user_marks_eor == 0) &&
11551 	    (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
11552 		/* It will NEVER fit */
11553 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11554 		error = EMSGSIZE;
11555 		goto out_unlocked;
11556 	}
11557 	if ((uio == NULL) && user_marks_eor) {
11558 		/*-
11559 		 * We do not support eeor mode for
11560 		 * sending with mbuf chains (like sendfile).
11561 		 */
11562 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11563 		error = EINVAL;
11564 		goto out_unlocked;
11565 	}
11566 	if (user_marks_eor) {
11567 		local_add_more = sctp_add_more_threshold;
11568 	} else {
11569 		/*-
11570 		 * For non-eeor the whole message must fit in
11571 		 * the socket send buffer.
11572 		 */
11573 		local_add_more = sndlen;
11574 	}
11575 	len = 0;
11576 	if (((max_len < local_add_more) &&
11577 	    (SCTP_SB_LIMIT_SND(so) > local_add_more)) ||
11578 	    ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) > sctp_max_chunks_on_queue)) {
11579 		/* No room right no ! */
11580 		SOCKBUF_LOCK(&so->so_snd);
11581 		while ((SCTP_SB_LIMIT_SND(so) < (stcb->asoc.total_output_queue_size + sctp_add_more_threshold)) ||
11582 		    ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) > sctp_max_chunks_on_queue)) {
11583 
11584 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11585 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA,
11586 				    so, asoc, sndlen);
11587 			}
11588 			be.error = 0;
11589 			stcb->block_entry = &be;
11590 			error = sbwait(&so->so_snd);
11591 			stcb->block_entry = NULL;
11592 			if (error || so->so_error || be.error) {
11593 				if (error == 0) {
11594 					if (so->so_error)
11595 						error = so->so_error;
11596 					if (be.error) {
11597 						error = be.error;
11598 					}
11599 				}
11600 				SOCKBUF_UNLOCK(&so->so_snd);
11601 				goto out_unlocked;
11602 			}
11603 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11604 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
11605 				    so, asoc, stcb->asoc.total_output_queue_size);
11606 			}
11607 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11608 				goto out_unlocked;
11609 			}
11610 		}
11611 		if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) {
11612 			max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11613 		} else {
11614 			max_len = 0;
11615 		}
11616 		SOCKBUF_UNLOCK(&so->so_snd);
11617 	}
11618 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11619 		goto out_unlocked;
11620 	}
11621 	atomic_add_int(&stcb->total_sends, 1);
11622 	/*
11623 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
11624 	 * case NOTE: uio will be null when top/mbuf is passed
11625 	 */
11626 	if (sndlen == 0) {
11627 		if (srcv->sinfo_flags & SCTP_EOF) {
11628 			got_all_of_the_send = 1;
11629 			goto dataless_eof;
11630 		} else {
11631 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11632 			error = EINVAL;
11633 			goto out;
11634 		}
11635 	}
11636 	if (top == NULL) {
11637 		struct sctp_stream_queue_pending *sp;
11638 		struct sctp_stream_out *strm;
11639 		uint32_t sndout, initial_out;
11640 
11641 		initial_out = uio->uio_resid;
11642 
11643 		SCTP_TCB_SEND_LOCK(stcb);
11644 		if ((asoc->stream_locked) &&
11645 		    (asoc->stream_locked_on != srcv->sinfo_stream)) {
11646 			SCTP_TCB_SEND_UNLOCK(stcb);
11647 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
11648 			error = EAGAIN;
11649 			goto out;
11650 		}
11651 		SCTP_TCB_SEND_UNLOCK(stcb);
11652 
11653 		strm = &stcb->asoc.strmout[srcv->sinfo_stream];
11654 		if (strm->last_msg_incomplete == 0) {
11655 	do_a_copy_in:
11656 			sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error, non_blocking);
11657 			if ((sp == NULL) || (error)) {
11658 				goto out;
11659 			}
11660 			SCTP_TCB_SEND_LOCK(stcb);
11661 			if (sp->msg_is_complete) {
11662 				strm->last_msg_incomplete = 0;
11663 				asoc->stream_locked = 0;
11664 			} else {
11665 				/*
11666 				 * Just got locked to this guy in case of an
11667 				 * interupt.
11668 				 */
11669 				strm->last_msg_incomplete = 1;
11670 				asoc->stream_locked = 1;
11671 				asoc->stream_locked_on = srcv->sinfo_stream;
11672 				sp->sender_all_done = 0;
11673 			}
11674 			sctp_snd_sb_alloc(stcb, sp->length);
11675 			atomic_add_int(&asoc->stream_queue_cnt, 1);
11676 			if ((srcv->sinfo_flags & SCTP_UNORDERED) == 0) {
11677 				sp->strseq = strm->next_sequence_sent;
11678 #ifdef SCTP_LOG_SENDING_STR
11679 				sctp_misc_ints(SCTP_STRMOUT_LOG_ASSIGN,
11680 				    (uintptr_t) stcb, (uintptr_t) sp,
11681 				    (uint32_t) ((srcv->sinfo_stream << 16) | sp->strseq), 0);
11682 #endif
11683 				strm->next_sequence_sent++;
11684 			} else {
11685 				SCTP_STAT_INCR(sctps_sends_with_unord);
11686 			}
11687 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
11688 			if ((strm->next_spoke.tqe_next == NULL) &&
11689 			    (strm->next_spoke.tqe_prev == NULL)) {
11690 				/* Not on wheel, insert */
11691 				sctp_insert_on_wheel(stcb, asoc, strm, 1);
11692 			}
11693 			SCTP_TCB_SEND_UNLOCK(stcb);
11694 		} else {
11695 			SCTP_TCB_SEND_LOCK(stcb);
11696 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
11697 			SCTP_TCB_SEND_UNLOCK(stcb);
11698 			if (sp == NULL) {
11699 				/* ???? Huh ??? last msg is gone */
11700 #ifdef INVARIANTS
11701 				panic("Warning: Last msg marked incomplete, yet nothing left?");
11702 #else
11703 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
11704 				strm->last_msg_incomplete = 0;
11705 #endif
11706 				goto do_a_copy_in;
11707 
11708 			}
11709 		}
11710 		while (uio->uio_resid > 0) {
11711 			/* How much room do we have? */
11712 			struct mbuf *new_tail, *mm;
11713 
11714 			if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
11715 				max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11716 			else
11717 				max_len = 0;
11718 
11719 			if ((max_len > sctp_add_more_threshold) ||
11720 			    (max_len && (SCTP_SB_LIMIT_SND(so) < sctp_add_more_threshold)) ||
11721 			    (uio->uio_resid &&
11722 			    (uio->uio_resid <= (int)max_len))) {
11723 				sndout = 0;
11724 				new_tail = NULL;
11725 				if (hold_tcblock) {
11726 					SCTP_TCB_UNLOCK(stcb);
11727 					hold_tcblock = 0;
11728 				}
11729 				mm = sctp_copy_resume(sp, uio, srcv, max_len, user_marks_eor, &error, &sndout, &new_tail);
11730 				if ((mm == NULL) || error) {
11731 					if (mm) {
11732 						sctp_m_freem(mm);
11733 					}
11734 					goto out;
11735 				}
11736 				/* Update the mbuf and count */
11737 				SCTP_TCB_SEND_LOCK(stcb);
11738 				if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11739 					/*
11740 					 * we need to get out. Peer probably
11741 					 * aborted.
11742 					 */
11743 					sctp_m_freem(mm);
11744 					if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
11745 						SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11746 						error = ECONNRESET;
11747 					}
11748 					SCTP_TCB_SEND_UNLOCK(stcb);
11749 					goto out;
11750 				}
11751 				if (sp->tail_mbuf) {
11752 					/* tack it to the end */
11753 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
11754 					sp->tail_mbuf = new_tail;
11755 				} else {
11756 					/* A stolen mbuf */
11757 					sp->data = mm;
11758 					sp->tail_mbuf = new_tail;
11759 				}
11760 				sctp_snd_sb_alloc(stcb, sndout);
11761 				atomic_add_int(&sp->length, sndout);
11762 				len += sndout;
11763 
11764 				/* Did we reach EOR? */
11765 				if ((uio->uio_resid == 0) &&
11766 				    ((user_marks_eor == 0) ||
11767 				    (srcv->sinfo_flags & SCTP_EOF) ||
11768 				    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))
11769 				    ) {
11770 					sp->msg_is_complete = 1;
11771 				} else {
11772 					sp->msg_is_complete = 0;
11773 				}
11774 				SCTP_TCB_SEND_UNLOCK(stcb);
11775 			}
11776 			if (uio->uio_resid == 0) {
11777 				/* got it all? */
11778 				continue;
11779 			}
11780 			/* PR-SCTP? */
11781 			if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
11782 				/*
11783 				 * This is ugly but we must assure locking
11784 				 * order
11785 				 */
11786 				if (hold_tcblock == 0) {
11787 					SCTP_TCB_LOCK(stcb);
11788 					hold_tcblock = 1;
11789 				}
11790 				sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
11791 				if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
11792 					max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11793 				else
11794 					max_len = 0;
11795 				if (max_len > 0) {
11796 					continue;
11797 				}
11798 				SCTP_TCB_UNLOCK(stcb);
11799 				hold_tcblock = 0;
11800 			}
11801 			/* wait for space now */
11802 			if (non_blocking) {
11803 				/* Non-blocking io in place out */
11804 				goto skip_out_eof;
11805 			}
11806 			if ((net->flight_size > net->cwnd) &&
11807 			    (sctp_cmt_on_off == 0)) {
11808 				queue_only = 1;
11809 			} else if (asoc->ifp_had_enobuf) {
11810 				SCTP_STAT_INCR(sctps_ifnomemqueued);
11811 				if (net->flight_size > (net->mtu * 2)) {
11812 					queue_only = 1;
11813 				} else {
11814 					queue_only = 0;
11815 				}
11816 				asoc->ifp_had_enobuf = 0;
11817 				un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11818 				    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
11819 				    sizeof(struct sctp_data_chunk)));
11820 			} else {
11821 				un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11822 				    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
11823 				    sizeof(struct sctp_data_chunk)));
11824 				if (net->flight_size > (net->mtu * stcb->asoc.max_burst)) {
11825 					queue_only = 1;
11826 					SCTP_STAT_INCR(sctps_send_burst_avoid);
11827 				} else if (net->flight_size > net->cwnd) {
11828 					queue_only = 1;
11829 					SCTP_STAT_INCR(sctps_send_cwnd_avoid);
11830 				} else {
11831 					queue_only = 0;
11832 				}
11833 			}
11834 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
11835 			    (stcb->asoc.total_flight > 0) &&
11836 			    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
11837 			    ) {
11838 
11839 				/*-
11840 				 * Ok, Nagle is set on and we have data outstanding.
11841 				 * Don't send anything and let SACKs drive out the
11842 				 * data unless wen have a "full" segment to send.
11843 				 */
11844 				if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
11845 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
11846 				}
11847 				SCTP_STAT_INCR(sctps_naglequeued);
11848 				nagle_applies = 1;
11849 			} else {
11850 				if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
11851 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
11852 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
11853 				}
11854 				SCTP_STAT_INCR(sctps_naglesent);
11855 				nagle_applies = 0;
11856 			}
11857 			/* What about the INIT, send it maybe */
11858 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11859 
11860 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
11861 				    nagle_applies, un_sent);
11862 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
11863 				    stcb->asoc.total_flight,
11864 				    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
11865 			}
11866 			if (queue_only_for_init) {
11867 				if (hold_tcblock == 0) {
11868 					SCTP_TCB_LOCK(stcb);
11869 					hold_tcblock = 1;
11870 				}
11871 				if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
11872 					/* a collision took us forward? */
11873 					queue_only_for_init = 0;
11874 					queue_only = 0;
11875 				} else {
11876 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
11877 					SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
11878 					queue_only_for_init = 0;
11879 					queue_only = 1;
11880 				}
11881 			}
11882 			if ((queue_only == 0) && (nagle_applies == 0)
11883 			    ) {
11884 				/*-
11885 				 * need to start chunk output
11886 				 * before blocking.. note that if
11887 				 * a lock is already applied, then
11888 				 * the input via the net is happening
11889 				 * and I don't need to start output :-D
11890 				 */
11891 				if (hold_tcblock == 0) {
11892 					if (SCTP_TCB_TRYLOCK(stcb)) {
11893 						hold_tcblock = 1;
11894 						sctp_chunk_output(inp,
11895 						    stcb,
11896 						    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
11897 					}
11898 				} else {
11899 					sctp_chunk_output(inp,
11900 					    stcb,
11901 					    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
11902 				}
11903 				if (hold_tcblock == 1) {
11904 					SCTP_TCB_UNLOCK(stcb);
11905 					hold_tcblock = 0;
11906 				}
11907 			}
11908 			SOCKBUF_LOCK(&so->so_snd);
11909 			/*-
11910 			 * This is a bit strange, but I think it will
11911 			 * work. The total_output_queue_size is locked and
11912 			 * protected by the TCB_LOCK, which we just released.
11913 			 * There is a race that can occur between releasing it
11914 			 * above, and me getting the socket lock, where sacks
11915 			 * come in but we have not put the SB_WAIT on the
11916 			 * so_snd buffer to get the wakeup. After the LOCK
11917 			 * is applied the sack_processing will also need to
11918 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
11919 			 * once we have the socket buffer lock if we recheck the
11920 			 * size we KNOW we will get to sleep safely with the
11921 			 * wakeup flag in place.
11922 			 */
11923 			if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
11924 			    min(sctp_add_more_threshold, SCTP_SB_LIMIT_SND(so)))
11925 			    ) {
11926 				if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11927 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
11928 					    so, asoc, uio->uio_resid);
11929 				}
11930 				be.error = 0;
11931 				stcb->block_entry = &be;
11932 				error = sbwait(&so->so_snd);
11933 				stcb->block_entry = NULL;
11934 
11935 				if (error || so->so_error || be.error) {
11936 					if (error == 0) {
11937 						if (so->so_error)
11938 							error = so->so_error;
11939 						if (be.error) {
11940 							error = be.error;
11941 						}
11942 					}
11943 					SOCKBUF_UNLOCK(&so->so_snd);
11944 					goto out_unlocked;
11945 				}
11946 				if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11947 					sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
11948 					    so, asoc, stcb->asoc.total_output_queue_size);
11949 				}
11950 			}
11951 			SOCKBUF_UNLOCK(&so->so_snd);
11952 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11953 				goto out_unlocked;
11954 			}
11955 		}
11956 		SCTP_TCB_SEND_LOCK(stcb);
11957 		if (sp) {
11958 			if (sp->msg_is_complete == 0) {
11959 				strm->last_msg_incomplete = 1;
11960 				asoc->stream_locked = 1;
11961 				asoc->stream_locked_on = srcv->sinfo_stream;
11962 			} else {
11963 				sp->sender_all_done = 1;
11964 				strm->last_msg_incomplete = 0;
11965 				asoc->stream_locked = 0;
11966 			}
11967 		} else {
11968 			SCTP_PRINTF("Huh no sp TSNH?\n");
11969 			strm->last_msg_incomplete = 0;
11970 			asoc->stream_locked = 0;
11971 		}
11972 		SCTP_TCB_SEND_UNLOCK(stcb);
11973 		if (uio->uio_resid == 0) {
11974 			got_all_of_the_send = 1;
11975 		}
11976 	} else if (top) {
11977 		/* We send in a 0, since we do NOT have any locks */
11978 		error = sctp_msg_append(stcb, net, top, srcv, 0);
11979 		top = NULL;
11980 	}
11981 	if (error) {
11982 		goto out;
11983 	}
11984 dataless_eof:
11985 	/* EOF thing ? */
11986 	if ((srcv->sinfo_flags & SCTP_EOF) &&
11987 	    (got_all_of_the_send == 1) &&
11988 	    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)
11989 	    ) {
11990 		int cnt;
11991 
11992 		SCTP_STAT_INCR(sctps_sends_with_eof);
11993 		error = 0;
11994 		if (hold_tcblock == 0) {
11995 			SCTP_TCB_LOCK(stcb);
11996 			hold_tcblock = 1;
11997 		}
11998 		cnt = sctp_is_there_unsent_data(stcb);
11999 		if (TAILQ_EMPTY(&asoc->send_queue) &&
12000 		    TAILQ_EMPTY(&asoc->sent_queue) &&
12001 		    (cnt == 0)) {
12002 			if (asoc->locked_on_sending) {
12003 				goto abort_anyway;
12004 			}
12005 			/* there is nothing queued to send, so I'm done... */
12006 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
12007 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
12008 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
12009 				/* only send SHUTDOWN the first time through */
12010 				sctp_send_shutdown(stcb, stcb->asoc.primary_destination);
12011 				if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
12012 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
12013 				}
12014 				SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
12015 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
12016 				    asoc->primary_destination);
12017 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
12018 				    asoc->primary_destination);
12019 			}
12020 		} else {
12021 			/*-
12022 			 * we still got (or just got) data to send, so set
12023 			 * SHUTDOWN_PENDING
12024 			 */
12025 			/*-
12026 			 * XXX sockets draft says that SCTP_EOF should be
12027 			 * sent with no data.  currently, we will allow user
12028 			 * data to be sent first and move to
12029 			 * SHUTDOWN-PENDING
12030 			 */
12031 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
12032 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
12033 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
12034 				if (hold_tcblock == 0) {
12035 					SCTP_TCB_LOCK(stcb);
12036 					hold_tcblock = 1;
12037 				}
12038 				if (asoc->locked_on_sending) {
12039 					/* Locked to send out the data */
12040 					struct sctp_stream_queue_pending *sp;
12041 
12042 					sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
12043 					if (sp) {
12044 						if ((sp->length == 0) && (sp->msg_is_complete == 0))
12045 							asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
12046 					}
12047 				}
12048 				asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
12049 				if (TAILQ_EMPTY(&asoc->send_queue) &&
12050 				    TAILQ_EMPTY(&asoc->sent_queue) &&
12051 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
12052 			abort_anyway:
12053 					if (free_cnt_applied) {
12054 						atomic_add_int(&stcb->asoc.refcnt, -1);
12055 						free_cnt_applied = 0;
12056 					}
12057 					sctp_abort_an_association(stcb->sctp_ep, stcb,
12058 					    SCTP_RESPONSE_TO_USER_REQ,
12059 					    NULL, SCTP_SO_LOCKED);
12060 					/*
12061 					 * now relock the stcb so everything
12062 					 * is sane
12063 					 */
12064 					hold_tcblock = 0;
12065 					stcb = NULL;
12066 					goto out;
12067 				}
12068 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
12069 				    asoc->primary_destination);
12070 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
12071 			}
12072 		}
12073 	}
12074 skip_out_eof:
12075 	if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
12076 		some_on_control = 1;
12077 	}
12078 	if ((net->flight_size > net->cwnd) &&
12079 	    (sctp_cmt_on_off == 0)) {
12080 		queue_only = 1;
12081 	} else if (asoc->ifp_had_enobuf) {
12082 		SCTP_STAT_INCR(sctps_ifnomemqueued);
12083 		if (net->flight_size > (net->mtu * 2)) {
12084 			queue_only = 1;
12085 		} else {
12086 			queue_only = 0;
12087 		}
12088 		asoc->ifp_had_enobuf = 0;
12089 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12090 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
12091 		    sizeof(struct sctp_data_chunk)));
12092 	} else {
12093 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12094 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
12095 		    sizeof(struct sctp_data_chunk)));
12096 		if (net->flight_size > (net->mtu * stcb->asoc.max_burst)) {
12097 			queue_only = 1;
12098 			SCTP_STAT_INCR(sctps_send_burst_avoid);
12099 		} else if (net->flight_size > net->cwnd) {
12100 			queue_only = 1;
12101 			SCTP_STAT_INCR(sctps_send_cwnd_avoid);
12102 		} else {
12103 			queue_only = 0;
12104 		}
12105 	}
12106 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
12107 	    (stcb->asoc.total_flight > 0) &&
12108 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
12109 	    ) {
12110 		/*-
12111 		 * Ok, Nagle is set on and we have data outstanding.
12112 		 * Don't send anything and let SACKs drive out the
12113 		 * data unless wen have a "full" segment to send.
12114 		 */
12115 		if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
12116 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
12117 		}
12118 		SCTP_STAT_INCR(sctps_naglequeued);
12119 		nagle_applies = 1;
12120 	} else {
12121 		if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
12122 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
12123 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
12124 		}
12125 		SCTP_STAT_INCR(sctps_naglesent);
12126 		nagle_applies = 0;
12127 	}
12128 	if (queue_only_for_init) {
12129 		if (hold_tcblock == 0) {
12130 			SCTP_TCB_LOCK(stcb);
12131 			hold_tcblock = 1;
12132 		}
12133 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
12134 			/* a collision took us forward? */
12135 			queue_only_for_init = 0;
12136 			queue_only = 0;
12137 		} else {
12138 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
12139 			SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
12140 			queue_only_for_init = 0;
12141 			queue_only = 1;
12142 		}
12143 	}
12144 	if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
12145 		/* we can attempt to send too. */
12146 		if (hold_tcblock == 0) {
12147 			/*
12148 			 * If there is activity recv'ing sacks no need to
12149 			 * send
12150 			 */
12151 			if (SCTP_TCB_TRYLOCK(stcb)) {
12152 				sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12153 				hold_tcblock = 1;
12154 			}
12155 		} else {
12156 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12157 		}
12158 	} else if ((queue_only == 0) &&
12159 		    (stcb->asoc.peers_rwnd == 0) &&
12160 	    (stcb->asoc.total_flight == 0)) {
12161 		/* We get to have a probe outstanding */
12162 		if (hold_tcblock == 0) {
12163 			hold_tcblock = 1;
12164 			SCTP_TCB_LOCK(stcb);
12165 		}
12166 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12167 	} else if (some_on_control) {
12168 		int num_out, reason, cwnd_full, frag_point;
12169 
12170 		/* Here we do control only */
12171 		if (hold_tcblock == 0) {
12172 			hold_tcblock = 1;
12173 			SCTP_TCB_LOCK(stcb);
12174 		}
12175 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
12176 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
12177 		    &reason, 1, &cwnd_full, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
12178 	}
12179 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d",
12180 	    queue_only, stcb->asoc.peers_rwnd, un_sent,
12181 	    stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
12182 	    stcb->asoc.total_output_queue_size, error);
12183 
12184 out:
12185 out_unlocked:
12186 
12187 
12188 	if (create_lock_applied) {
12189 		SCTP_ASOC_CREATE_UNLOCK(inp);
12190 		create_lock_applied = 0;
12191 	}
12192 	if ((stcb) && hold_tcblock) {
12193 		SCTP_TCB_UNLOCK(stcb);
12194 	}
12195 	if (stcb && free_cnt_applied) {
12196 		atomic_add_int(&stcb->asoc.refcnt, -1);
12197 	}
12198 #ifdef INVARIANTS
12199 	if (stcb) {
12200 		if (mtx_owned(&stcb->tcb_mtx)) {
12201 			panic("Leaving with tcb mtx owned?");
12202 		}
12203 		if (mtx_owned(&stcb->tcb_send_mtx)) {
12204 			panic("Leaving with tcb send mtx owned?");
12205 		}
12206 	}
12207 #endif
12208 	if (top) {
12209 		sctp_m_freem(top);
12210 	}
12211 	if (control) {
12212 		sctp_m_freem(control);
12213 	}
12214 	return (error);
12215 }
12216 
12217 
12218 /*
12219  * generate an AUTHentication chunk, if required
12220  */
12221 struct mbuf *
12222 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
12223     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
12224     struct sctp_tcb *stcb, uint8_t chunk)
12225 {
12226 	struct mbuf *m_auth;
12227 	struct sctp_auth_chunk *auth;
12228 	int chunk_len;
12229 
12230 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
12231 	    (stcb == NULL))
12232 		return (m);
12233 
12234 	/* sysctl disabled auth? */
12235 	if (sctp_auth_disable)
12236 		return (m);
12237 
12238 	/* peer doesn't do auth... */
12239 	if (!stcb->asoc.peer_supports_auth) {
12240 		return (m);
12241 	}
12242 	/* does the requested chunk require auth? */
12243 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
12244 		return (m);
12245 	}
12246 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_DONTWAIT, 1, MT_HEADER);
12247 	if (m_auth == NULL) {
12248 		/* no mbuf's */
12249 		return (m);
12250 	}
12251 	/* reserve some space if this will be the first mbuf */
12252 	if (m == NULL)
12253 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
12254 	/* fill in the AUTH chunk details */
12255 	auth = mtod(m_auth, struct sctp_auth_chunk *);
12256 	bzero(auth, sizeof(*auth));
12257 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
12258 	auth->ch.chunk_flags = 0;
12259 	chunk_len = sizeof(*auth) +
12260 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
12261 	auth->ch.chunk_length = htons(chunk_len);
12262 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
12263 	/* key id and hmac digest will be computed and filled in upon send */
12264 
12265 	/* save the offset where the auth was inserted into the chain */
12266 	if (m != NULL) {
12267 		struct mbuf *cn;
12268 
12269 		*offset = 0;
12270 		cn = m;
12271 		while (cn) {
12272 			*offset += SCTP_BUF_LEN(cn);
12273 			cn = SCTP_BUF_NEXT(cn);
12274 		}
12275 	} else
12276 		*offset = 0;
12277 
12278 	/* update length and return pointer to the auth chunk */
12279 	SCTP_BUF_LEN(m_auth) = chunk_len;
12280 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
12281 	if (auth_ret != NULL)
12282 		*auth_ret = auth;
12283 
12284 	return (m);
12285 }
12286 
12287 int
12288 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
12289 {
12290 	struct nd_prefix *pfx = NULL;
12291 	struct nd_pfxrouter *pfxrtr = NULL;
12292 	struct sockaddr_in6 gw6;
12293 
12294 	if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
12295 		return (0);
12296 
12297 	/* get prefix entry of address */
12298 	LIST_FOREACH(pfx, &nd_prefix, ndpr_entry) {
12299 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
12300 			continue;
12301 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
12302 		    &src6->sin6_addr, &pfx->ndpr_mask))
12303 			break;
12304 	}
12305 	/* no prefix entry in the prefix list */
12306 	if (pfx == NULL) {
12307 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
12308 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
12309 		return (0);
12310 	}
12311 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
12312 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
12313 
12314 	/* search installed gateway from prefix entry */
12315 	for (pfxrtr = pfx->ndpr_advrtrs.lh_first; pfxrtr; pfxrtr =
12316 	    pfxrtr->pfr_next) {
12317 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
12318 		gw6.sin6_family = AF_INET6;
12319 		gw6.sin6_len = sizeof(struct sockaddr_in6);
12320 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
12321 		    sizeof(struct in6_addr));
12322 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
12323 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
12324 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
12325 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
12326 		if (sctp_cmpaddr((struct sockaddr *)&gw6,
12327 		    ro->ro_rt->rt_gateway)) {
12328 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
12329 			return (1);
12330 		}
12331 	}
12332 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
12333 	return (0);
12334 }
12335 int
12336 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
12337 {
12338 	struct sockaddr_in *sin, *mask;
12339 	struct ifaddr *ifa;
12340 	struct in_addr srcnetaddr, gwnetaddr;
12341 
12342 	if (ro == NULL || ro->ro_rt == NULL ||
12343 	    sifa->address.sa.sa_family != AF_INET) {
12344 		return (0);
12345 	}
12346 	ifa = (struct ifaddr *)sifa->ifa;
12347 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
12348 	sin = (struct sockaddr_in *)&sifa->address.sin;
12349 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
12350 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
12351 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
12352 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
12353 
12354 	sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
12355 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
12356 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
12357 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
12358 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
12359 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
12360 		return (1);
12361 	}
12362 	return (0);
12363 }
12364