xref: /freebsd/sys/netinet/sctp_output.c (revision 35a04710d7286aa9538917fd7f8e417dbee95b82)
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_RLOCK();
1997 	vrf = sctp_find_vrf(vrf_id);
1998 	if (vrf == NULL) {
1999 		SCTP_IPI_ADDR_RUNLOCK();
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_RUNLOCK();
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_RLOCK();
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_RUNLOCK();
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_RUNLOCK();
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, int hold_inp_lock)
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 	struct socket *so;
4640 
4641 	if (stcb)
4642 		asoc = &stcb->asoc;
4643 	else
4644 		asoc = NULL;
4645 	mp_last = NULL;
4646 	if ((asoc != NULL) &&
4647 	    (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
4648 	    (sctp_are_there_new_addresses(asoc, init_pkt, iphlen, offset))) {
4649 		/* new addresses, out of here in non-cookie-wait states */
4650 		/*
4651 		 * Send a ABORT, we don't add the new address error clause
4652 		 * though we even set the T bit and copy in the 0 tag.. this
4653 		 * looks no different than if no listener was present.
4654 		 */
4655 		sctp_send_abort(init_pkt, iphlen, sh, 0, NULL, vrf_id);
4656 		return;
4657 	}
4658 	abort_flag = 0;
4659 	op_err = sctp_arethere_unrecognized_parameters(init_pkt,
4660 	    (offset + sizeof(struct sctp_init_chunk)),
4661 	    &abort_flag, (struct sctp_chunkhdr *)init_chk);
4662 	if (abort_flag) {
4663 		sctp_send_abort(init_pkt, iphlen, sh,
4664 		    init_chk->init.initiate_tag, op_err, vrf_id);
4665 		return;
4666 	}
4667 	m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
4668 	if (m == NULL) {
4669 		/* No memory, INIT timer will re-attempt. */
4670 		if (op_err)
4671 			sctp_m_freem(op_err);
4672 		return;
4673 	}
4674 	SCTP_BUF_LEN(m) = sizeof(struct sctp_init_msg);
4675 
4676 	/* the time I built cookie */
4677 	(void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
4678 
4679 	/* populate any tie tags */
4680 	if (asoc != NULL) {
4681 		/* unlock before tag selections */
4682 		stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
4683 		stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
4684 		stc.cookie_life = asoc->cookie_life;
4685 		net = asoc->primary_destination;
4686 	} else {
4687 		stc.tie_tag_my_vtag = 0;
4688 		stc.tie_tag_peer_vtag = 0;
4689 		/* life I will award this cookie */
4690 		stc.cookie_life = inp->sctp_ep.def_cookie_life;
4691 	}
4692 
4693 	/* copy in the ports for later check */
4694 	stc.myport = sh->dest_port;
4695 	stc.peerport = sh->src_port;
4696 
4697 	/*
4698 	 * If we wanted to honor cookie life extentions, we would add to
4699 	 * stc.cookie_life. For now we should NOT honor any extension
4700 	 */
4701 	stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
4702 	if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
4703 		struct inpcb *in_inp;
4704 
4705 		/* Its a V6 socket */
4706 		in_inp = (struct inpcb *)inp;
4707 		stc.ipv6_addr_legal = 1;
4708 		/* Now look at the binding flag to see if V4 will be legal */
4709 		if (SCTP_IPV6_V6ONLY(in_inp) == 0) {
4710 			stc.ipv4_addr_legal = 1;
4711 		} else {
4712 			/* V4 addresses are NOT legal on the association */
4713 			stc.ipv4_addr_legal = 0;
4714 		}
4715 	} else {
4716 		/* Its a V4 socket, no - V6 */
4717 		stc.ipv4_addr_legal = 1;
4718 		stc.ipv6_addr_legal = 0;
4719 	}
4720 
4721 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
4722 	stc.ipv4_scope = 1;
4723 #else
4724 	stc.ipv4_scope = 0;
4725 #endif
4726 	/* now for scope setup */
4727 	memset((caddr_t)&store, 0, sizeof(store));
4728 	sin = (struct sockaddr_in *)&store;
4729 	sin6 = (struct sockaddr_in6 *)&store;
4730 	if (net == NULL) {
4731 		to = (struct sockaddr *)&store;
4732 		iph = mtod(init_pkt, struct ip *);
4733 		if (iph->ip_v == IPVERSION) {
4734 			struct sctp_ifa *addr;
4735 			sctp_route_t iproute;
4736 
4737 			sin->sin_family = AF_INET;
4738 			sin->sin_len = sizeof(struct sockaddr_in);
4739 			sin->sin_port = sh->src_port;
4740 			sin->sin_addr = iph->ip_src;
4741 			/* lookup address */
4742 			stc.address[0] = sin->sin_addr.s_addr;
4743 			stc.address[1] = 0;
4744 			stc.address[2] = 0;
4745 			stc.address[3] = 0;
4746 			stc.addr_type = SCTP_IPV4_ADDRESS;
4747 			/* local from address */
4748 			memset(&iproute, 0, sizeof(iproute));
4749 			ro = &iproute;
4750 			memcpy(&ro->ro_dst, sin, sizeof(*sin));
4751 			addr = sctp_source_address_selection(inp, NULL,
4752 			    ro, NULL, 0,
4753 			    vrf_id);
4754 			if (addr == NULL)
4755 				return;
4756 
4757 			if (ro->ro_rt) {
4758 				RTFREE(ro->ro_rt);
4759 				ro->ro_rt = NULL;
4760 			}
4761 			stc.laddress[0] = addr->address.sin.sin_addr.s_addr;
4762 			stc.laddress[1] = 0;
4763 			stc.laddress[2] = 0;
4764 			stc.laddress[3] = 0;
4765 			stc.laddr_type = SCTP_IPV4_ADDRESS;
4766 			/* scope_id is only for v6 */
4767 			stc.scope_id = 0;
4768 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
4769 			if (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr)) {
4770 				stc.ipv4_scope = 1;
4771 			}
4772 #else
4773 			stc.ipv4_scope = 1;
4774 #endif				/* SCTP_DONT_DO_PRIVADDR_SCOPE */
4775 			/* Must use the address in this case */
4776 			if (sctp_is_address_on_local_host((struct sockaddr *)sin, vrf_id)) {
4777 				stc.loopback_scope = 1;
4778 				stc.ipv4_scope = 1;
4779 				stc.site_scope = 1;
4780 				stc.local_scope = 0;
4781 			}
4782 			sctp_free_ifa(addr);
4783 		} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
4784 			struct sctp_ifa *addr;
4785 			struct route_in6 iproute6;
4786 
4787 			ip6 = mtod(init_pkt, struct ip6_hdr *);
4788 			sin6->sin6_family = AF_INET6;
4789 			sin6->sin6_len = sizeof(struct sockaddr_in6);
4790 			sin6->sin6_port = sh->src_port;
4791 			sin6->sin6_addr = ip6->ip6_src;
4792 			/* lookup address */
4793 			memcpy(&stc.address, &sin6->sin6_addr,
4794 			    sizeof(struct in6_addr));
4795 			sin6->sin6_scope_id = 0;
4796 			stc.addr_type = SCTP_IPV6_ADDRESS;
4797 			stc.scope_id = 0;
4798 			if (sctp_is_address_on_local_host((struct sockaddr *)sin6, vrf_id)) {
4799 				stc.loopback_scope = 1;
4800 				stc.local_scope = 0;
4801 				stc.site_scope = 1;
4802 				stc.ipv4_scope = 1;
4803 			} else if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
4804 				/*
4805 				 * If the new destination is a LINK_LOCAL we
4806 				 * must have common both site and local
4807 				 * scope. Don't set local scope though since
4808 				 * we must depend on the source to be added
4809 				 * implicitly. We cannot assure just because
4810 				 * we share one link that all links are
4811 				 * common.
4812 				 */
4813 				stc.local_scope = 0;
4814 				stc.site_scope = 1;
4815 				stc.ipv4_scope = 1;
4816 				/*
4817 				 * we start counting for the private address
4818 				 * stuff at 1. since the link local we
4819 				 * source from won't show up in our scoped
4820 				 * count.
4821 				 */
4822 				cnt_inits_to = 1;
4823 				/* pull out the scope_id from incoming pkt */
4824 				/* FIX ME: does this have scope from rcvif? */
4825 				(void)sa6_recoverscope(sin6);
4826 
4827 				sa6_embedscope(sin6, ip6_use_defzone);
4828 				stc.scope_id = sin6->sin6_scope_id;
4829 			} else if (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr)) {
4830 				/*
4831 				 * If the new destination is SITE_LOCAL then
4832 				 * we must have site scope in common.
4833 				 */
4834 				stc.site_scope = 1;
4835 			}
4836 			/* local from address */
4837 			memset(&iproute6, 0, sizeof(iproute6));
4838 			ro = (sctp_route_t *) & iproute6;
4839 			memcpy(&ro->ro_dst, sin6, sizeof(*sin6));
4840 			addr = sctp_source_address_selection(inp, NULL,
4841 			    ro, NULL, 0, vrf_id);
4842 			if (addr == NULL)
4843 				return;
4844 
4845 			if (ro->ro_rt) {
4846 				RTFREE(ro->ro_rt);
4847 				ro->ro_rt = NULL;
4848 			}
4849 			memcpy(&stc.laddress, &addr->address.sin6.sin6_addr, sizeof(struct in6_addr));
4850 			stc.laddr_type = SCTP_IPV6_ADDRESS;
4851 			sctp_free_ifa(addr);
4852 		}
4853 	} else {
4854 		/* set the scope per the existing tcb */
4855 		struct sctp_nets *lnet;
4856 
4857 		stc.loopback_scope = asoc->loopback_scope;
4858 		stc.ipv4_scope = asoc->ipv4_local_scope;
4859 		stc.site_scope = asoc->site_scope;
4860 		stc.local_scope = asoc->local_scope;
4861 		TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
4862 			if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
4863 				if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
4864 					/*
4865 					 * if we have a LL address, start
4866 					 * counting at 1.
4867 					 */
4868 					cnt_inits_to = 1;
4869 				}
4870 			}
4871 		}
4872 
4873 		/* use the net pointer */
4874 		to = (struct sockaddr *)&net->ro._l_addr;
4875 		if (to->sa_family == AF_INET) {
4876 			sin = (struct sockaddr_in *)to;
4877 			stc.address[0] = sin->sin_addr.s_addr;
4878 			stc.address[1] = 0;
4879 			stc.address[2] = 0;
4880 			stc.address[3] = 0;
4881 			stc.addr_type = SCTP_IPV4_ADDRESS;
4882 			if (net->src_addr_selected == 0) {
4883 				/*
4884 				 * strange case here, the INIT should have
4885 				 * did the selection.
4886 				 */
4887 				net->ro._s_addr = sctp_source_address_selection(inp,
4888 				    stcb, (sctp_route_t *) & net->ro,
4889 				    net, 0, vrf_id);
4890 				if (net->ro._s_addr == NULL)
4891 					return;
4892 
4893 				net->src_addr_selected = 1;
4894 
4895 			}
4896 			stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
4897 			stc.laddress[1] = 0;
4898 			stc.laddress[2] = 0;
4899 			stc.laddress[3] = 0;
4900 			stc.laddr_type = SCTP_IPV4_ADDRESS;
4901 		} else if (to->sa_family == AF_INET6) {
4902 			sin6 = (struct sockaddr_in6 *)to;
4903 			memcpy(&stc.address, &sin6->sin6_addr,
4904 			    sizeof(struct in6_addr));
4905 			stc.addr_type = SCTP_IPV6_ADDRESS;
4906 			if (net->src_addr_selected == 0) {
4907 				/*
4908 				 * strange case here, the INIT should have
4909 				 * did the selection.
4910 				 */
4911 				net->ro._s_addr = sctp_source_address_selection(inp,
4912 				    stcb, (sctp_route_t *) & net->ro,
4913 				    net, 0, vrf_id);
4914 				if (net->ro._s_addr == NULL)
4915 					return;
4916 
4917 				net->src_addr_selected = 1;
4918 			}
4919 			memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
4920 			    sizeof(struct in6_addr));
4921 			stc.laddr_type = SCTP_IPV6_ADDRESS;
4922 		}
4923 	}
4924 	/* Now lets put the SCTP header in place */
4925 	initackm_out = mtod(m, struct sctp_init_msg *);
4926 	initackm_out->sh.src_port = inp->sctp_lport;
4927 	initackm_out->sh.dest_port = sh->src_port;
4928 	initackm_out->sh.v_tag = init_chk->init.initiate_tag;
4929 	/* Save it off for quick ref */
4930 	stc.peers_vtag = init_chk->init.initiate_tag;
4931 	initackm_out->sh.checksum = 0;	/* calculate later */
4932 	/* who are we */
4933 	memcpy(stc.identification, SCTP_VERSION_STRING,
4934 	    min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
4935 	/* now the chunk header */
4936 	initackm_out->msg.ch.chunk_type = SCTP_INITIATION_ACK;
4937 	initackm_out->msg.ch.chunk_flags = 0;
4938 	/* fill in later from mbuf we build */
4939 	initackm_out->msg.ch.chunk_length = 0;
4940 	/* place in my tag */
4941 	if ((asoc != NULL) &&
4942 	    ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
4943 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
4944 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
4945 		/* re-use the v-tags and init-seq here */
4946 		initackm_out->msg.init.initiate_tag = htonl(asoc->my_vtag);
4947 		initackm_out->msg.init.initial_tsn = htonl(asoc->init_seq_number);
4948 	} else {
4949 		uint32_t vtag, itsn;
4950 
4951 		if (hold_inp_lock) {
4952 			SCTP_INP_INCR_REF(inp);
4953 			SCTP_INP_RUNLOCK(inp);
4954 		}
4955 		if (asoc) {
4956 			atomic_add_int(&asoc->refcnt, 1);
4957 			SCTP_TCB_UNLOCK(stcb);
4958 			vtag = sctp_select_a_tag(inp, 1);
4959 			initackm_out->msg.init.initiate_tag = htonl(vtag);
4960 			/* get a TSN to use too */
4961 			itsn = sctp_select_initial_TSN(&inp->sctp_ep);
4962 			initackm_out->msg.init.initial_tsn = htonl(itsn);
4963 			SCTP_TCB_LOCK(stcb);
4964 			atomic_add_int(&asoc->refcnt, -1);
4965 		} else {
4966 			vtag = sctp_select_a_tag(inp, 1);
4967 			initackm_out->msg.init.initiate_tag = htonl(vtag);
4968 			/* get a TSN to use too */
4969 			initackm_out->msg.init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
4970 		}
4971 		if (hold_inp_lock) {
4972 			SCTP_INP_RLOCK(inp);
4973 			SCTP_INP_DECR_REF(inp);
4974 		}
4975 	}
4976 	/* save away my tag to */
4977 	stc.my_vtag = initackm_out->msg.init.initiate_tag;
4978 
4979 	/* set up some of the credits. */
4980 	so = inp->sctp_socket;
4981 	if (so == NULL) {
4982 		/* memory problem */
4983 		sctp_m_freem(m);
4984 		return;
4985 	} else {
4986 		initackm_out->msg.init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
4987 	}
4988 	/* set what I want */
4989 	his_limit = ntohs(init_chk->init.num_inbound_streams);
4990 	/* choose what I want */
4991 	if (asoc != NULL) {
4992 		if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
4993 			i_want = asoc->streamoutcnt;
4994 		} else {
4995 			i_want = inp->sctp_ep.pre_open_stream_count;
4996 		}
4997 	} else {
4998 		i_want = inp->sctp_ep.pre_open_stream_count;
4999 	}
5000 	if (his_limit < i_want) {
5001 		/* I Want more :< */
5002 		initackm_out->msg.init.num_outbound_streams = init_chk->init.num_inbound_streams;
5003 	} else {
5004 		/* I can have what I want :> */
5005 		initackm_out->msg.init.num_outbound_streams = htons(i_want);
5006 	}
5007 	/* tell him his limt. */
5008 	initackm_out->msg.init.num_inbound_streams =
5009 	    htons(inp->sctp_ep.max_open_streams_intome);
5010 	/* setup the ECN pointer */
5011 
5012 	if (inp->sctp_ep.adaptation_layer_indicator) {
5013 		struct sctp_adaptation_layer_indication *ali;
5014 
5015 		ali = (struct sctp_adaptation_layer_indication *)(
5016 		    (caddr_t)initackm_out + sizeof(*initackm_out));
5017 		ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5018 		ali->ph.param_length = htons(sizeof(*ali));
5019 		ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5020 		SCTP_BUF_LEN(m) += sizeof(*ali);
5021 		ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali +
5022 		    sizeof(*ali));
5023 	} else {
5024 		ecn = (struct sctp_ecn_supported_param *)(
5025 		    (caddr_t)initackm_out + sizeof(*initackm_out));
5026 	}
5027 
5028 	/* ECN parameter */
5029 	if (sctp_ecn_enable == 1) {
5030 		ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5031 		ecn->ph.param_length = htons(sizeof(*ecn));
5032 		SCTP_BUF_LEN(m) += sizeof(*ecn);
5033 
5034 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5035 		    sizeof(*ecn));
5036 	} else {
5037 		prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5038 	}
5039 	/* And now tell the peer we do  pr-sctp */
5040 	prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5041 	prsctp->ph.param_length = htons(sizeof(*prsctp));
5042 	SCTP_BUF_LEN(m) += sizeof(*prsctp);
5043 
5044 	/* And now tell the peer we do all the extensions */
5045 	pr_supported = (struct sctp_supported_chunk_types_param *)
5046 	    ((caddr_t)prsctp + sizeof(*prsctp));
5047 
5048 	pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5049 	num_ext = 0;
5050 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5051 	pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5052 	pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5053 	pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5054 	pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5055 	if (!sctp_auth_disable)
5056 		pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5057 	p_len = sizeof(*pr_supported) + num_ext;
5058 	pr_supported->ph.param_length = htons(p_len);
5059 	bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5060 	SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5061 
5062 	/* ECN nonce: And now tell the peer we support ECN nonce */
5063 	if (sctp_ecn_nonce) {
5064 		ecn_nonce = (struct sctp_ecn_nonce_supported_param *)
5065 		    ((caddr_t)pr_supported + SCTP_SIZE32(p_len));
5066 		ecn_nonce->ph.param_type = htons(SCTP_ECN_NONCE_SUPPORTED);
5067 		ecn_nonce->ph.param_length = htons(sizeof(*ecn_nonce));
5068 		SCTP_BUF_LEN(m) += sizeof(*ecn_nonce);
5069 	}
5070 	/* add authentication parameters */
5071 	if (!sctp_auth_disable) {
5072 		struct sctp_auth_random *randp;
5073 		struct sctp_auth_hmac_algo *hmacs;
5074 		struct sctp_auth_chunk_list *chunks;
5075 		uint16_t random_len;
5076 
5077 		/* generate and add RANDOM parameter */
5078 		random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5079 		randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5080 		randp->ph.param_type = htons(SCTP_RANDOM);
5081 		p_len = sizeof(*randp) + random_len;
5082 		randp->ph.param_length = htons(p_len);
5083 		SCTP_READ_RANDOM(randp->random_data, random_len);
5084 		/* zero out any padding required */
5085 		bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5086 		SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5087 
5088 		/* add HMAC_ALGO parameter */
5089 		hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5090 		p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5091 		    (uint8_t *) hmacs->hmac_ids);
5092 		if (p_len > 0) {
5093 			p_len += sizeof(*hmacs);
5094 			hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5095 			hmacs->ph.param_length = htons(p_len);
5096 			/* zero out any padding required */
5097 			bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5098 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5099 		}
5100 		/* add CHUNKS parameter */
5101 		chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5102 		p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5103 		    chunks->chunk_types);
5104 		if (p_len > 0) {
5105 			p_len += sizeof(*chunks);
5106 			chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5107 			chunks->ph.param_length = htons(p_len);
5108 			/* zero out any padding required */
5109 			bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5110 			SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5111 		}
5112 	}
5113 	m_at = m;
5114 	/* now the addresses */
5115 	{
5116 		struct sctp_scoping scp;
5117 
5118 		/*
5119 		 * To optimize this we could put the scoping stuff into a
5120 		 * structure and remove the individual uint8's from the stc
5121 		 * structure. Then we could just sifa in the address within
5122 		 * the stc.. but for now this is a quick hack to get the
5123 		 * address stuff teased apart.
5124 		 */
5125 		scp.ipv4_addr_legal = stc.ipv4_addr_legal;
5126 		scp.ipv6_addr_legal = stc.ipv6_addr_legal;
5127 		scp.loopback_scope = stc.loopback_scope;
5128 		scp.ipv4_local_scope = stc.ipv4_scope;
5129 		scp.local_scope = stc.local_scope;
5130 		scp.site_scope = stc.site_scope;
5131 		m_at = sctp_add_addresses_to_i_ia(inp, &scp, m_at, cnt_inits_to);
5132 	}
5133 
5134 	/* tack on the operational error if present */
5135 	if (op_err) {
5136 		struct mbuf *ol;
5137 		int llen;
5138 
5139 		llen = 0;
5140 		ol = op_err;
5141 		while (ol) {
5142 			llen += SCTP_BUF_LEN(ol);
5143 			ol = SCTP_BUF_NEXT(ol);
5144 		}
5145 		if (llen % 4) {
5146 			/* must add a pad to the param */
5147 			uint32_t cpthis = 0;
5148 			int padlen;
5149 
5150 			padlen = 4 - (llen % 4);
5151 			m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
5152 		}
5153 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5154 			m_at = SCTP_BUF_NEXT(m_at);
5155 		}
5156 		SCTP_BUF_NEXT(m_at) = op_err;
5157 		while (SCTP_BUF_NEXT(m_at) != NULL) {
5158 			m_at = SCTP_BUF_NEXT(m_at);
5159 		}
5160 	}
5161 	/* pre-calulate the size and update pkt header and chunk header */
5162 	p_len = 0;
5163 	for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5164 		p_len += SCTP_BUF_LEN(m_tmp);
5165 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5166 			/* m_tmp should now point to last one */
5167 			break;
5168 		}
5169 	}
5170 
5171 	/* Now we must build a cookie */
5172 	m_cookie = sctp_add_cookie(inp, init_pkt, offset, m,
5173 	    sizeof(struct sctphdr), &stc, &signature);
5174 	if (m_cookie == NULL) {
5175 		/* memory problem */
5176 		sctp_m_freem(m);
5177 		return;
5178 	}
5179 	/* Now append the cookie to the end and update the space/size */
5180 	SCTP_BUF_NEXT(m_tmp) = m_cookie;
5181 
5182 	for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5183 		p_len += SCTP_BUF_LEN(m_tmp);
5184 		if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5185 			/* m_tmp should now point to last one */
5186 			mp_last = m_tmp;
5187 			break;
5188 		}
5189 	}
5190 	/*
5191 	 * Place in the size, but we don't include the last pad (if any) in
5192 	 * the INIT-ACK.
5193 	 */
5194 	initackm_out->msg.ch.chunk_length = htons((p_len - sizeof(struct sctphdr)));
5195 
5196 	/*
5197 	 * Time to sign the cookie, we don't sign over the cookie signature
5198 	 * though thus we set trailer.
5199 	 */
5200 	(void)sctp_hmac_m(SCTP_HMAC,
5201 	    (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
5202 	    SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
5203 	    (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
5204 	/*
5205 	 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
5206 	 * here since the timer will drive a retranmission.
5207 	 */
5208 	padval = p_len % 4;
5209 	if ((padval) && (mp_last)) {
5210 		/* see my previous comments on mp_last */
5211 		int ret;
5212 
5213 		ret = sctp_add_pad_tombuf(mp_last, (4 - padval));
5214 		if (ret) {
5215 			/* Houston we have a problem, no space */
5216 			sctp_m_freem(m);
5217 			return;
5218 		}
5219 		p_len += padval;
5220 	}
5221 	(void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
5222 	    NULL, 0, SCTP_SO_NOT_LOCKED);
5223 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
5224 }
5225 
5226 
5227 void
5228 sctp_insert_on_wheel(struct sctp_tcb *stcb,
5229     struct sctp_association *asoc,
5230     struct sctp_stream_out *strq, int holds_lock)
5231 {
5232 	struct sctp_stream_out *stre, *strn;
5233 
5234 	if (holds_lock == 0) {
5235 		SCTP_TCB_SEND_LOCK(stcb);
5236 	}
5237 	if ((strq->next_spoke.tqe_next) ||
5238 	    (strq->next_spoke.tqe_prev)) {
5239 		/* already on wheel */
5240 		goto outof_here;
5241 	}
5242 	stre = TAILQ_FIRST(&asoc->out_wheel);
5243 	if (stre == NULL) {
5244 		/* only one on wheel */
5245 		TAILQ_INSERT_HEAD(&asoc->out_wheel, strq, next_spoke);
5246 		goto outof_here;
5247 	}
5248 	for (; stre; stre = strn) {
5249 		strn = TAILQ_NEXT(stre, next_spoke);
5250 		if (stre->stream_no > strq->stream_no) {
5251 			TAILQ_INSERT_BEFORE(stre, strq, next_spoke);
5252 			goto outof_here;
5253 		} else if (stre->stream_no == strq->stream_no) {
5254 			/* huh, should not happen */
5255 			goto outof_here;
5256 		} else if (strn == NULL) {
5257 			/* next one is null */
5258 			TAILQ_INSERT_AFTER(&asoc->out_wheel, stre, strq,
5259 			    next_spoke);
5260 		}
5261 	}
5262 outof_here:
5263 	if (holds_lock == 0) {
5264 		SCTP_TCB_SEND_UNLOCK(stcb);
5265 	}
5266 }
5267 
5268 static void
5269 sctp_remove_from_wheel(struct sctp_tcb *stcb,
5270     struct sctp_association *asoc,
5271     struct sctp_stream_out *strq)
5272 {
5273 	/* take off and then setup so we know it is not on the wheel */
5274 	SCTP_TCB_SEND_LOCK(stcb);
5275 	if (TAILQ_FIRST(&strq->outqueue)) {
5276 		/* more was added */
5277 		SCTP_TCB_SEND_UNLOCK(stcb);
5278 		return;
5279 	}
5280 	TAILQ_REMOVE(&asoc->out_wheel, strq, next_spoke);
5281 	strq->next_spoke.tqe_next = NULL;
5282 	strq->next_spoke.tqe_prev = NULL;
5283 	SCTP_TCB_SEND_UNLOCK(stcb);
5284 }
5285 
5286 static void
5287 sctp_prune_prsctp(struct sctp_tcb *stcb,
5288     struct sctp_association *asoc,
5289     struct sctp_sndrcvinfo *srcv,
5290     int dataout)
5291 {
5292 	int freed_spc = 0;
5293 	struct sctp_tmit_chunk *chk, *nchk;
5294 
5295 	SCTP_TCB_LOCK_ASSERT(stcb);
5296 	if ((asoc->peer_supports_prsctp) &&
5297 	    (asoc->sent_queue_cnt_removeable > 0)) {
5298 		TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
5299 			/*
5300 			 * Look for chunks marked with the PR_SCTP flag AND
5301 			 * the buffer space flag. If the one being sent is
5302 			 * equal or greater priority then purge the old one
5303 			 * and free some space.
5304 			 */
5305 			if (PR_SCTP_BUF_ENABLED(chk->flags)) {
5306 				/*
5307 				 * This one is PR-SCTP AND buffer space
5308 				 * limited type
5309 				 */
5310 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5311 					/*
5312 					 * Lower numbers equates to higher
5313 					 * priority so if the one we are
5314 					 * looking at has a larger or equal
5315 					 * priority we want to drop the data
5316 					 * and NOT retransmit it.
5317 					 */
5318 					if (chk->data) {
5319 						/*
5320 						 * We release the book_size
5321 						 * if the mbuf is here
5322 						 */
5323 						int ret_spc;
5324 						int cause;
5325 
5326 						if (chk->sent > SCTP_DATAGRAM_UNSENT)
5327 							cause = SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT;
5328 						else
5329 							cause = SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_UNSENT;
5330 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
5331 						    cause,
5332 						    &asoc->sent_queue, SCTP_SO_LOCKED);
5333 						freed_spc += ret_spc;
5334 						if (freed_spc >= dataout) {
5335 							return;
5336 						}
5337 					}	/* if chunk was present */
5338 				}	/* if of sufficent priority */
5339 			}	/* if chunk has enabled */
5340 		}		/* tailqforeach */
5341 
5342 		chk = TAILQ_FIRST(&asoc->send_queue);
5343 		while (chk) {
5344 			nchk = TAILQ_NEXT(chk, sctp_next);
5345 			/* Here we must move to the sent queue and mark */
5346 			if (PR_SCTP_TTL_ENABLED(chk->flags)) {
5347 				if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5348 					if (chk->data) {
5349 						/*
5350 						 * We release the book_size
5351 						 * if the mbuf is here
5352 						 */
5353 						int ret_spc;
5354 
5355 						ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
5356 						    SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_UNSENT,
5357 						    &asoc->send_queue, SCTP_SO_LOCKED);
5358 
5359 						freed_spc += ret_spc;
5360 						if (freed_spc >= dataout) {
5361 							return;
5362 						}
5363 					}	/* end if chk->data */
5364 				}	/* end if right class */
5365 			}	/* end if chk pr-sctp */
5366 			chk = nchk;
5367 		}		/* end while (chk) */
5368 	}			/* if enabled in asoc */
5369 }
5370 
5371 int
5372 sctp_get_frag_point(struct sctp_tcb *stcb,
5373     struct sctp_association *asoc)
5374 {
5375 	int siz, ovh;
5376 
5377 	/*
5378 	 * For endpoints that have both v6 and v4 addresses we must reserve
5379 	 * room for the ipv6 header, for those that are only dealing with V4
5380 	 * we use a larger frag point.
5381 	 */
5382 	if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5383 		ovh = SCTP_MED_OVERHEAD;
5384 	} else {
5385 		ovh = SCTP_MED_V4_OVERHEAD;
5386 	}
5387 
5388 	if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
5389 		siz = asoc->smallest_mtu - ovh;
5390 	else
5391 		siz = (stcb->asoc.sctp_frag_point - ovh);
5392 	/*
5393 	 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
5394 	 */
5395 	/* A data chunk MUST fit in a cluster */
5396 	/* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
5397 	/* } */
5398 
5399 	/* adjust for an AUTH chunk if DATA requires auth */
5400 	if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
5401 		siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
5402 
5403 	if (siz % 4) {
5404 		/* make it an even word boundary please */
5405 		siz -= (siz % 4);
5406 	}
5407 	return (siz);
5408 }
5409 
5410 static void
5411 sctp_set_prsctp_policy(struct sctp_tcb *stcb,
5412     struct sctp_stream_queue_pending *sp)
5413 {
5414 	sp->pr_sctp_on = 0;
5415 	if (stcb->asoc.peer_supports_prsctp) {
5416 		/*
5417 		 * We assume that the user wants PR_SCTP_TTL if the user
5418 		 * provides a positive lifetime but does not specify any
5419 		 * PR_SCTP policy. This is a BAD assumption and causes
5420 		 * problems at least with the U-Vancovers MPI folks. I will
5421 		 * change this to be no policy means NO PR-SCTP.
5422 		 */
5423 		if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
5424 			sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
5425 			sp->pr_sctp_on = 1;
5426 		} else {
5427 			return;
5428 		}
5429 		switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
5430 		case CHUNK_FLAGS_PR_SCTP_BUF:
5431 			/*
5432 			 * Time to live is a priority stored in tv_sec when
5433 			 * doing the buffer drop thing.
5434 			 */
5435 			sp->ts.tv_sec = sp->timetolive;
5436 			sp->ts.tv_usec = 0;
5437 			break;
5438 		case CHUNK_FLAGS_PR_SCTP_TTL:
5439 			{
5440 				struct timeval tv;
5441 
5442 				(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
5443 				tv.tv_sec = sp->timetolive / 1000;
5444 				tv.tv_usec = (sp->timetolive * 1000) % 1000000;
5445 				timevaladd(&sp->ts, &tv);
5446 			}
5447 			break;
5448 		case CHUNK_FLAGS_PR_SCTP_RTX:
5449 			/*
5450 			 * Time to live is a the number or retransmissions
5451 			 * stored in tv_sec.
5452 			 */
5453 			sp->ts.tv_sec = sp->timetolive;
5454 			sp->ts.tv_usec = 0;
5455 			break;
5456 		default:
5457 			SCTPDBG(SCTP_DEBUG_USRREQ1,
5458 			    "Unknown PR_SCTP policy %u.\n",
5459 			    PR_SCTP_POLICY(sp->sinfo_flags));
5460 			break;
5461 		}
5462 	}
5463 }
5464 
5465 static int
5466 sctp_msg_append(struct sctp_tcb *stcb,
5467     struct sctp_nets *net,
5468     struct mbuf *m,
5469     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
5470 {
5471 	int error = 0, holds_lock;
5472 	struct mbuf *at;
5473 	struct sctp_stream_queue_pending *sp = NULL;
5474 	struct sctp_stream_out *strm;
5475 
5476 	/*
5477 	 * Given an mbuf chain, put it into the association send queue and
5478 	 * place it on the wheel
5479 	 */
5480 	holds_lock = hold_stcb_lock;
5481 	if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
5482 		/* Invalid stream number */
5483 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
5484 		error = EINVAL;
5485 		goto out_now;
5486 	}
5487 	if ((stcb->asoc.stream_locked) &&
5488 	    (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
5489 		SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
5490 		error = EINVAL;
5491 		goto out_now;
5492 	}
5493 	strm = &stcb->asoc.strmout[srcv->sinfo_stream];
5494 	/* Now can we send this? */
5495 	if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
5496 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
5497 	    (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
5498 	    (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
5499 		/* got data while shutting down */
5500 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
5501 		error = ECONNRESET;
5502 		goto out_now;
5503 	}
5504 	sctp_alloc_a_strmoq(stcb, sp);
5505 	if (sp == NULL) {
5506 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
5507 		error = ENOMEM;
5508 		goto out_now;
5509 	}
5510 	sp->sinfo_flags = srcv->sinfo_flags;
5511 	sp->timetolive = srcv->sinfo_timetolive;
5512 	sp->ppid = srcv->sinfo_ppid;
5513 	sp->context = srcv->sinfo_context;
5514 	sp->strseq = 0;
5515 	if (sp->sinfo_flags & SCTP_ADDR_OVER) {
5516 		sp->net = net;
5517 		sp->addr_over = 1;
5518 	} else {
5519 		sp->net = stcb->asoc.primary_destination;
5520 		sp->addr_over = 0;
5521 	}
5522 	atomic_add_int(&sp->net->ref_count, 1);
5523 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
5524 	sp->stream = srcv->sinfo_stream;
5525 	sp->msg_is_complete = 1;
5526 	sp->sender_all_done = 1;
5527 	sp->some_taken = 0;
5528 	sp->data = m;
5529 	sp->tail_mbuf = NULL;
5530 	sp->length = 0;
5531 	at = m;
5532 	sctp_set_prsctp_policy(stcb, sp);
5533 	/*
5534 	 * We could in theory (for sendall) sifa the length in, but we would
5535 	 * still have to hunt through the chain since we need to setup the
5536 	 * tail_mbuf
5537 	 */
5538 	while (at) {
5539 		if (SCTP_BUF_NEXT(at) == NULL)
5540 			sp->tail_mbuf = at;
5541 		sp->length += SCTP_BUF_LEN(at);
5542 		at = SCTP_BUF_NEXT(at);
5543 	}
5544 	SCTP_TCB_SEND_LOCK(stcb);
5545 	sctp_snd_sb_alloc(stcb, sp->length);
5546 	atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
5547 	TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
5548 	if ((srcv->sinfo_flags & SCTP_UNORDERED) == 0) {
5549 		sp->strseq = strm->next_sequence_sent;
5550 		strm->next_sequence_sent++;
5551 	}
5552 	if ((strm->next_spoke.tqe_next == NULL) &&
5553 	    (strm->next_spoke.tqe_prev == NULL)) {
5554 		/* Not on wheel, insert */
5555 		sctp_insert_on_wheel(stcb, &stcb->asoc, strm, 1);
5556 	}
5557 	m = NULL;
5558 	SCTP_TCB_SEND_UNLOCK(stcb);
5559 out_now:
5560 	if (m) {
5561 		sctp_m_freem(m);
5562 	}
5563 	return (error);
5564 }
5565 
5566 
5567 static struct mbuf *
5568 sctp_copy_mbufchain(struct mbuf *clonechain,
5569     struct mbuf *outchain,
5570     struct mbuf **endofchain,
5571     int can_take_mbuf,
5572     int sizeofcpy,
5573     uint8_t copy_by_ref)
5574 {
5575 	struct mbuf *m;
5576 	struct mbuf *appendchain;
5577 	caddr_t cp;
5578 	int len;
5579 
5580 	if (endofchain == NULL) {
5581 		/* error */
5582 error_out:
5583 		if (outchain)
5584 			sctp_m_freem(outchain);
5585 		return (NULL);
5586 	}
5587 	if (can_take_mbuf) {
5588 		appendchain = clonechain;
5589 	} else {
5590 		if (!copy_by_ref &&
5591 		    (sizeofcpy <= (int)((((sctp_mbuf_threshold_count - 1) * MLEN) + MHLEN)))
5592 		    ) {
5593 			/* Its not in a cluster */
5594 			if (*endofchain == NULL) {
5595 				/* lets get a mbuf cluster */
5596 				if (outchain == NULL) {
5597 					/* This is the general case */
5598 			new_mbuf:
5599 					outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
5600 					if (outchain == NULL) {
5601 						goto error_out;
5602 					}
5603 					SCTP_BUF_LEN(outchain) = 0;
5604 					*endofchain = outchain;
5605 					/* get the prepend space */
5606 					SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
5607 				} else {
5608 					/*
5609 					 * We really should not get a NULL
5610 					 * in endofchain
5611 					 */
5612 					/* find end */
5613 					m = outchain;
5614 					while (m) {
5615 						if (SCTP_BUF_NEXT(m) == NULL) {
5616 							*endofchain = m;
5617 							break;
5618 						}
5619 						m = SCTP_BUF_NEXT(m);
5620 					}
5621 					/* sanity */
5622 					if (*endofchain == NULL) {
5623 						/*
5624 						 * huh, TSNH XXX maybe we
5625 						 * should panic
5626 						 */
5627 						sctp_m_freem(outchain);
5628 						goto new_mbuf;
5629 					}
5630 				}
5631 				/* get the new end of length */
5632 				len = M_TRAILINGSPACE(*endofchain);
5633 			} else {
5634 				/* how much is left at the end? */
5635 				len = M_TRAILINGSPACE(*endofchain);
5636 			}
5637 			/* Find the end of the data, for appending */
5638 			cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
5639 
5640 			/* Now lets copy it out */
5641 			if (len >= sizeofcpy) {
5642 				/* It all fits, copy it in */
5643 				m_copydata(clonechain, 0, sizeofcpy, cp);
5644 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
5645 			} else {
5646 				/* fill up the end of the chain */
5647 				if (len > 0) {
5648 					m_copydata(clonechain, 0, len, cp);
5649 					SCTP_BUF_LEN((*endofchain)) += len;
5650 					/* now we need another one */
5651 					sizeofcpy -= len;
5652 				}
5653 				m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_HEADER);
5654 				if (m == NULL) {
5655 					/* We failed */
5656 					goto error_out;
5657 				}
5658 				SCTP_BUF_NEXT((*endofchain)) = m;
5659 				*endofchain = m;
5660 				cp = mtod((*endofchain), caddr_t);
5661 				m_copydata(clonechain, len, sizeofcpy, cp);
5662 				SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
5663 			}
5664 			return (outchain);
5665 		} else {
5666 			/* copy the old fashion way */
5667 			appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_DONTWAIT);
5668 		}
5669 	}
5670 	if (appendchain == NULL) {
5671 		/* error */
5672 		if (outchain)
5673 			sctp_m_freem(outchain);
5674 		return (NULL);
5675 	}
5676 	if (outchain) {
5677 		/* tack on to the end */
5678 		if (*endofchain != NULL) {
5679 			SCTP_BUF_NEXT(((*endofchain))) = appendchain;
5680 		} else {
5681 			m = outchain;
5682 			while (m) {
5683 				if (SCTP_BUF_NEXT(m) == NULL) {
5684 					SCTP_BUF_NEXT(m) = appendchain;
5685 					break;
5686 				}
5687 				m = SCTP_BUF_NEXT(m);
5688 			}
5689 		}
5690 		/*
5691 		 * save off the end and update the end-chain postion
5692 		 */
5693 		m = appendchain;
5694 		while (m) {
5695 			if (SCTP_BUF_NEXT(m) == NULL) {
5696 				*endofchain = m;
5697 				break;
5698 			}
5699 			m = SCTP_BUF_NEXT(m);
5700 		}
5701 		return (outchain);
5702 	} else {
5703 		/* save off the end and update the end-chain postion */
5704 		m = appendchain;
5705 		while (m) {
5706 			if (SCTP_BUF_NEXT(m) == NULL) {
5707 				*endofchain = m;
5708 				break;
5709 			}
5710 			m = SCTP_BUF_NEXT(m);
5711 		}
5712 		return (appendchain);
5713 	}
5714 }
5715 
5716 int
5717 sctp_med_chunk_output(struct sctp_inpcb *inp,
5718     struct sctp_tcb *stcb,
5719     struct sctp_association *asoc,
5720     int *num_out,
5721     int *reason_code,
5722     int control_only, int *cwnd_full, int from_where,
5723     struct timeval *now, int *now_filled, int frag_point, int so_locked
5724 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
5725     SCTP_UNUSED
5726 #endif
5727 );
5728 
5729 static void
5730 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
5731     uint32_t val)
5732 {
5733 	struct sctp_copy_all *ca;
5734 	struct mbuf *m;
5735 	int ret = 0;
5736 	int added_control = 0;
5737 	int un_sent, do_chunk_output = 1;
5738 	struct sctp_association *asoc;
5739 
5740 	ca = (struct sctp_copy_all *)ptr;
5741 	if (ca->m == NULL) {
5742 		return;
5743 	}
5744 	if (ca->inp != inp) {
5745 		/* TSNH */
5746 		return;
5747 	}
5748 	if ((ca->m) && ca->sndlen) {
5749 		m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_DONTWAIT);
5750 		if (m == NULL) {
5751 			/* can't copy so we are done */
5752 			ca->cnt_failed++;
5753 			return;
5754 		}
5755 	} else {
5756 		m = NULL;
5757 	}
5758 	SCTP_TCB_LOCK_ASSERT(stcb);
5759 	if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
5760 		/* Abort this assoc with m as the user defined reason */
5761 		if (m) {
5762 			struct sctp_paramhdr *ph;
5763 
5764 			SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_DONTWAIT);
5765 			if (m) {
5766 				ph = mtod(m, struct sctp_paramhdr *);
5767 				ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
5768 				ph->param_length = htons(ca->sndlen);
5769 			}
5770 			/*
5771 			 * We add one here to keep the assoc from
5772 			 * dis-appearing on us.
5773 			 */
5774 			atomic_add_int(&stcb->asoc.refcnt, 1);
5775 			sctp_abort_an_association(inp, stcb,
5776 			    SCTP_RESPONSE_TO_USER_REQ,
5777 			    m, SCTP_SO_NOT_LOCKED);
5778 			/*
5779 			 * sctp_abort_an_association calls sctp_free_asoc()
5780 			 * free association will NOT free it since we
5781 			 * incremented the refcnt .. we do this to prevent
5782 			 * it being freed and things getting tricky since we
5783 			 * could end up (from free_asoc) calling inpcb_free
5784 			 * which would get a recursive lock call to the
5785 			 * iterator lock.. But as a consequence of that the
5786 			 * stcb will return to us un-locked.. since
5787 			 * free_asoc returns with either no TCB or the TCB
5788 			 * unlocked, we must relock.. to unlock in the
5789 			 * iterator timer :-0
5790 			 */
5791 			SCTP_TCB_LOCK(stcb);
5792 			atomic_add_int(&stcb->asoc.refcnt, -1);
5793 			goto no_chunk_output;
5794 		}
5795 	} else {
5796 		if (m) {
5797 			ret = sctp_msg_append(stcb, stcb->asoc.primary_destination, m,
5798 			    &ca->sndrcv, 1);
5799 		}
5800 		asoc = &stcb->asoc;
5801 		if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
5802 			/* shutdown this assoc */
5803 			int cnt;
5804 
5805 			cnt = sctp_is_there_unsent_data(stcb);
5806 
5807 			if (TAILQ_EMPTY(&asoc->send_queue) &&
5808 			    TAILQ_EMPTY(&asoc->sent_queue) &&
5809 			    (cnt == 0)) {
5810 				if (asoc->locked_on_sending) {
5811 					goto abort_anyway;
5812 				}
5813 				/*
5814 				 * there is nothing queued to send, so I'm
5815 				 * done...
5816 				 */
5817 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
5818 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
5819 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
5820 					/*
5821 					 * only send SHUTDOWN the first time
5822 					 * through
5823 					 */
5824 					sctp_send_shutdown(stcb, stcb->asoc.primary_destination);
5825 					if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
5826 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
5827 					}
5828 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
5829 					SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
5830 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
5831 					    asoc->primary_destination);
5832 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
5833 					    asoc->primary_destination);
5834 					added_control = 1;
5835 					do_chunk_output = 0;
5836 				}
5837 			} else {
5838 				/*
5839 				 * we still got (or just got) data to send,
5840 				 * so set SHUTDOWN_PENDING
5841 				 */
5842 				/*
5843 				 * XXX sockets draft says that SCTP_EOF
5844 				 * should be sent with no data.  currently,
5845 				 * we will allow user data to be sent first
5846 				 * and move to SHUTDOWN-PENDING
5847 				 */
5848 				if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
5849 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
5850 				    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
5851 					if (asoc->locked_on_sending) {
5852 						/*
5853 						 * Locked to send out the
5854 						 * data
5855 						 */
5856 						struct sctp_stream_queue_pending *sp;
5857 
5858 						sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
5859 						if (sp) {
5860 							if ((sp->length == 0) && (sp->msg_is_complete == 0))
5861 								asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
5862 						}
5863 					}
5864 					asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
5865 					if (TAILQ_EMPTY(&asoc->send_queue) &&
5866 					    TAILQ_EMPTY(&asoc->sent_queue) &&
5867 					    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
5868 				abort_anyway:
5869 						atomic_add_int(&stcb->asoc.refcnt, 1);
5870 						sctp_abort_an_association(stcb->sctp_ep, stcb,
5871 						    SCTP_RESPONSE_TO_USER_REQ,
5872 						    NULL, SCTP_SO_NOT_LOCKED);
5873 						atomic_add_int(&stcb->asoc.refcnt, -1);
5874 						goto no_chunk_output;
5875 					}
5876 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
5877 					    asoc->primary_destination);
5878 				}
5879 			}
5880 
5881 		}
5882 	}
5883 	un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
5884 	    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) * sizeof(struct sctp_data_chunk)));
5885 
5886 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
5887 	    (stcb->asoc.total_flight > 0) &&
5888 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
5889 	    ) {
5890 		do_chunk_output = 0;
5891 	}
5892 	if (do_chunk_output)
5893 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
5894 	else if (added_control) {
5895 		int num_out = 0, reason = 0, cwnd_full = 0, now_filled = 0;
5896 		struct timeval now;
5897 		int frag_point;
5898 
5899 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
5900 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
5901 		    &reason, 1, &cwnd_full, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
5902 	}
5903 no_chunk_output:
5904 	if (ret) {
5905 		ca->cnt_failed++;
5906 	} else {
5907 		ca->cnt_sent++;
5908 	}
5909 }
5910 
5911 static void
5912 sctp_sendall_completes(void *ptr, uint32_t val)
5913 {
5914 	struct sctp_copy_all *ca;
5915 
5916 	ca = (struct sctp_copy_all *)ptr;
5917 	/*
5918 	 * Do a notify here? Kacheong suggests that the notify be done at
5919 	 * the send time.. so you would push up a notification if any send
5920 	 * failed. Don't know if this is feasable since the only failures we
5921 	 * have is "memory" related and if you cannot get an mbuf to send
5922 	 * the data you surely can't get an mbuf to send up to notify the
5923 	 * user you can't send the data :->
5924 	 */
5925 
5926 	/* now free everything */
5927 	sctp_m_freem(ca->m);
5928 	SCTP_FREE(ca, SCTP_M_COPYAL);
5929 }
5930 
5931 
5932 #define	MC_ALIGN(m, len) do {						\
5933 	SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1));	\
5934 } while (0)
5935 
5936 
5937 
5938 static struct mbuf *
5939 sctp_copy_out_all(struct uio *uio, int len)
5940 {
5941 	struct mbuf *ret, *at;
5942 	int left, willcpy, cancpy, error;
5943 
5944 	ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAIT, 1, MT_DATA);
5945 	if (ret == NULL) {
5946 		/* TSNH */
5947 		return (NULL);
5948 	}
5949 	left = len;
5950 	SCTP_BUF_LEN(ret) = 0;
5951 	/* save space for the data chunk header */
5952 	cancpy = M_TRAILINGSPACE(ret);
5953 	willcpy = min(cancpy, left);
5954 	at = ret;
5955 	while (left > 0) {
5956 		/* Align data to the end */
5957 		error = uiomove(mtod(at, caddr_t), willcpy, uio);
5958 		if (error) {
5959 	err_out_now:
5960 			sctp_m_freem(at);
5961 			return (NULL);
5962 		}
5963 		SCTP_BUF_LEN(at) = willcpy;
5964 		SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
5965 		left -= willcpy;
5966 		if (left > 0) {
5967 			SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAIT, 1, MT_DATA);
5968 			if (SCTP_BUF_NEXT(at) == NULL) {
5969 				goto err_out_now;
5970 			}
5971 			at = SCTP_BUF_NEXT(at);
5972 			SCTP_BUF_LEN(at) = 0;
5973 			cancpy = M_TRAILINGSPACE(at);
5974 			willcpy = min(cancpy, left);
5975 		}
5976 	}
5977 	return (ret);
5978 }
5979 
5980 static int
5981 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
5982     struct sctp_sndrcvinfo *srcv)
5983 {
5984 	int ret;
5985 	struct sctp_copy_all *ca;
5986 
5987 	SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
5988 	    SCTP_M_COPYAL);
5989 	if (ca == NULL) {
5990 		sctp_m_freem(m);
5991 		SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
5992 		return (ENOMEM);
5993 	}
5994 	memset(ca, 0, sizeof(struct sctp_copy_all));
5995 
5996 	ca->inp = inp;
5997 	memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
5998 	/*
5999 	 * take off the sendall flag, it would be bad if we failed to do
6000 	 * this :-0
6001 	 */
6002 	ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6003 	/* get length and mbuf chain */
6004 	if (uio) {
6005 		ca->sndlen = uio->uio_resid;
6006 		ca->m = sctp_copy_out_all(uio, ca->sndlen);
6007 		if (ca->m == NULL) {
6008 			SCTP_FREE(ca, SCTP_M_COPYAL);
6009 			SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6010 			return (ENOMEM);
6011 		}
6012 	} else {
6013 		/* Gather the length of the send */
6014 		struct mbuf *mat;
6015 
6016 		mat = m;
6017 		ca->sndlen = 0;
6018 		while (m) {
6019 			ca->sndlen += SCTP_BUF_LEN(m);
6020 			m = SCTP_BUF_NEXT(m);
6021 		}
6022 		ca->m = mat;
6023 	}
6024 	ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6025 	    SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6026 	    SCTP_ASOC_ANY_STATE,
6027 	    (void *)ca, 0,
6028 	    sctp_sendall_completes, inp, 1);
6029 	if (ret) {
6030 		SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6031 		SCTP_FREE(ca, SCTP_M_COPYAL);
6032 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6033 		return (EFAULT);
6034 	}
6035 	return (0);
6036 }
6037 
6038 
6039 void
6040 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6041 {
6042 	struct sctp_tmit_chunk *chk, *nchk;
6043 
6044 	chk = TAILQ_FIRST(&asoc->control_send_queue);
6045 	while (chk) {
6046 		nchk = TAILQ_NEXT(chk, sctp_next);
6047 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6048 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6049 			if (chk->data) {
6050 				sctp_m_freem(chk->data);
6051 				chk->data = NULL;
6052 			}
6053 			asoc->ctrl_queue_cnt--;
6054 			sctp_free_a_chunk(stcb, chk);
6055 		}
6056 		chk = nchk;
6057 	}
6058 }
6059 
6060 void
6061 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6062 {
6063 	struct sctp_association *asoc;
6064 	struct sctp_tmit_chunk *chk, *chk_tmp;
6065 
6066 	asoc = &stcb->asoc;
6067 	for (chk = TAILQ_FIRST(&asoc->control_send_queue); chk != NULL;
6068 	    chk = chk_tmp) {
6069 		/* get next chk */
6070 		chk_tmp = TAILQ_NEXT(chk, sctp_next);
6071 		/* find SCTP_ASCONF chunk in queue (only one ever in queue) */
6072 		if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6073 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6074 			if (chk->data) {
6075 				sctp_m_freem(chk->data);
6076 				chk->data = NULL;
6077 			}
6078 			asoc->ctrl_queue_cnt--;
6079 			sctp_free_a_chunk(stcb, chk);
6080 		}
6081 	}
6082 }
6083 
6084 
6085 static void
6086 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6087 
6088     struct sctp_association *asoc,
6089     struct sctp_tmit_chunk **data_list,
6090     int bundle_at,
6091     struct sctp_nets *net)
6092 {
6093 	int i;
6094 	struct sctp_tmit_chunk *tp1;
6095 
6096 	for (i = 0; i < bundle_at; i++) {
6097 		/* off of the send queue */
6098 		if (i) {
6099 			/*
6100 			 * Any chunk NOT 0 you zap the time chunk 0 gets
6101 			 * zapped or set based on if a RTO measurment is
6102 			 * needed.
6103 			 */
6104 			data_list[i]->do_rtt = 0;
6105 		}
6106 		/* record time */
6107 		data_list[i]->sent_rcv_time = net->last_sent_time;
6108 		data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6109 		TAILQ_REMOVE(&asoc->send_queue,
6110 		    data_list[i],
6111 		    sctp_next);
6112 		/* on to the sent queue */
6113 		tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6114 		if ((tp1) && (compare_with_wrap(tp1->rec.data.TSN_seq,
6115 		    data_list[i]->rec.data.TSN_seq, MAX_TSN))) {
6116 			struct sctp_tmit_chunk *tpp;
6117 
6118 			/* need to move back */
6119 	back_up_more:
6120 			tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6121 			if (tpp == NULL) {
6122 				TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6123 				goto all_done;
6124 			}
6125 			tp1 = tpp;
6126 			if (compare_with_wrap(tp1->rec.data.TSN_seq,
6127 			    data_list[i]->rec.data.TSN_seq, MAX_TSN)) {
6128 				goto back_up_more;
6129 			}
6130 			TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6131 		} else {
6132 			TAILQ_INSERT_TAIL(&asoc->sent_queue,
6133 			    data_list[i],
6134 			    sctp_next);
6135 		}
6136 all_done:
6137 		/* This does not lower until the cum-ack passes it */
6138 		asoc->sent_queue_cnt++;
6139 		asoc->send_queue_cnt--;
6140 		if ((asoc->peers_rwnd <= 0) &&
6141 		    (asoc->total_flight == 0) &&
6142 		    (bundle_at == 1)) {
6143 			/* Mark the chunk as being a window probe */
6144 			SCTP_STAT_INCR(sctps_windowprobed);
6145 		}
6146 #ifdef SCTP_AUDITING_ENABLED
6147 		sctp_audit_log(0xC2, 3);
6148 #endif
6149 		data_list[i]->sent = SCTP_DATAGRAM_SENT;
6150 		data_list[i]->snd_count = 1;
6151 		data_list[i]->rec.data.chunk_was_revoked = 0;
6152 		if (sctp_logging_level & SCTP_FLIGHT_LOGGING_ENABLE) {
6153 			sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
6154 			    data_list[i]->whoTo->flight_size,
6155 			    data_list[i]->book_size,
6156 			    (uintptr_t) data_list[i]->whoTo,
6157 			    data_list[i]->rec.data.TSN_seq);
6158 		}
6159 		sctp_flight_size_increase(data_list[i]);
6160 		sctp_total_flight_increase(stcb, data_list[i]);
6161 		if (sctp_logging_level & SCTP_LOG_RWND_ENABLE) {
6162 			sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
6163 			    asoc->peers_rwnd, data_list[i]->send_size, sctp_peer_chunk_oh);
6164 		}
6165 		asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
6166 		    (uint32_t) (data_list[i]->send_size + sctp_peer_chunk_oh));
6167 		if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
6168 			/* SWS sender side engages */
6169 			asoc->peers_rwnd = 0;
6170 		}
6171 	}
6172 }
6173 
6174 static void
6175 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc)
6176 {
6177 	struct sctp_tmit_chunk *chk, *nchk;
6178 
6179 	for (chk = TAILQ_FIRST(&asoc->control_send_queue);
6180 	    chk; chk = nchk) {
6181 		nchk = TAILQ_NEXT(chk, sctp_next);
6182 		if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
6183 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
6184 		    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
6185 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
6186 		    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
6187 		    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
6188 		    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
6189 		    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
6190 		    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
6191 		    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
6192 			/* Stray chunks must be cleaned up */
6193 	clean_up_anyway:
6194 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6195 			if (chk->data) {
6196 				sctp_m_freem(chk->data);
6197 				chk->data = NULL;
6198 			}
6199 			asoc->ctrl_queue_cnt--;
6200 			sctp_free_a_chunk(stcb, chk);
6201 		} else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
6202 			/* special handling, we must look into the param */
6203 			if (chk != asoc->str_reset) {
6204 				goto clean_up_anyway;
6205 			}
6206 		}
6207 	}
6208 }
6209 
6210 
6211 static int
6212 sctp_can_we_split_this(struct sctp_tcb *stcb,
6213     struct sctp_stream_queue_pending *sp,
6214     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
6215 {
6216 	/*
6217 	 * Make a decision on if I should split a msg into multiple parts.
6218 	 * This is only asked of incomplete messages.
6219 	 */
6220 	if (eeor_on) {
6221 		/*
6222 		 * If we are doing EEOR we need to always send it if its the
6223 		 * entire thing, since it might be all the guy is putting in
6224 		 * the hopper.
6225 		 */
6226 		if (goal_mtu >= sp->length) {
6227 			/*-
6228 			 * If we have data outstanding,
6229 			 * we get another chance when the sack
6230 			 * arrives to transmit - wait for more data
6231 			 */
6232 			if (stcb->asoc.total_flight == 0) {
6233 				/*
6234 				 * If nothing is in flight, we zero the
6235 				 * packet counter.
6236 				 */
6237 				return (sp->length);
6238 			}
6239 			return (0);
6240 
6241 		} else {
6242 			/* You can fill the rest */
6243 			return (goal_mtu);
6244 		}
6245 	}
6246 	/*-
6247 	 * For those strange folk that make the send buffer
6248 	 * smaller than our fragmentation point, we can't
6249 	 * get a full msg in so we have to allow splitting.
6250 	 */
6251 	if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
6252 		return (sp->length);
6253 	}
6254 	if ((sp->length <= goal_mtu) ||
6255 	    ((sp->length - goal_mtu) < sctp_min_residual)) {
6256 		/* Sub-optimial residual don't split in non-eeor mode. */
6257 		return (0);
6258 	}
6259 	/*
6260 	 * If we reach here sp->length is larger than the goal_mtu. Do we
6261 	 * wish to split it for the sake of packet putting together?
6262 	 */
6263 	if (goal_mtu >= min(sctp_min_split_point, frag_point)) {
6264 		/* Its ok to split it */
6265 		return (min(goal_mtu, frag_point));
6266 	}
6267 	/* Nope, can't split */
6268 	return (0);
6269 
6270 }
6271 
6272 static uint32_t
6273 sctp_move_to_outqueue(struct sctp_tcb *stcb, struct sctp_nets *net,
6274     struct sctp_stream_out *strq,
6275     uint32_t goal_mtu,
6276     uint32_t frag_point,
6277     int *locked,
6278     int *giveup,
6279     int eeor_mode,
6280     int *bail)
6281 {
6282 	/* Move from the stream to the send_queue keeping track of the total */
6283 	struct sctp_association *asoc;
6284 	struct sctp_stream_queue_pending *sp;
6285 	struct sctp_tmit_chunk *chk;
6286 	struct sctp_data_chunk *dchkh;
6287 	uint32_t to_move;
6288 	uint8_t rcv_flags = 0;
6289 	uint8_t some_taken;
6290 	uint8_t send_lock_up = 0;
6291 
6292 	SCTP_TCB_LOCK_ASSERT(stcb);
6293 	asoc = &stcb->asoc;
6294 one_more_time:
6295 	/* sa_ignore FREED_MEMORY */
6296 	sp = TAILQ_FIRST(&strq->outqueue);
6297 	if (sp == NULL) {
6298 		*locked = 0;
6299 		SCTP_TCB_SEND_LOCK(stcb);
6300 		sp = TAILQ_FIRST(&strq->outqueue);
6301 		if (sp) {
6302 			SCTP_TCB_SEND_UNLOCK(stcb);
6303 			goto one_more_time;
6304 		}
6305 		if (strq->last_msg_incomplete) {
6306 			SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
6307 			    strq->stream_no,
6308 			    strq->last_msg_incomplete);
6309 			strq->last_msg_incomplete = 0;
6310 		}
6311 		SCTP_TCB_SEND_UNLOCK(stcb);
6312 		return (0);
6313 	}
6314 	if (sp->msg_is_complete) {
6315 		if (sp->length == 0) {
6316 			if (sp->sender_all_done) {
6317 				/*
6318 				 * We are doing differed cleanup. Last time
6319 				 * through when we took all the data the
6320 				 * sender_all_done was not set.
6321 				 */
6322 				if (sp->put_last_out == 0) {
6323 					SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
6324 					SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
6325 					    sp->sender_all_done,
6326 					    sp->length,
6327 					    sp->msg_is_complete,
6328 					    sp->put_last_out,
6329 					    send_lock_up);
6330 				}
6331 				if (TAILQ_NEXT(sp, next) == NULL) {
6332 					SCTP_TCB_SEND_LOCK(stcb);
6333 					send_lock_up = 1;
6334 				}
6335 				atomic_subtract_int(&asoc->stream_queue_cnt, 1);
6336 				TAILQ_REMOVE(&strq->outqueue, sp, next);
6337 				sctp_free_remote_addr(sp->net);
6338 				if (sp->data) {
6339 					sctp_m_freem(sp->data);
6340 					sp->data = NULL;
6341 				}
6342 				sctp_free_a_strmoq(stcb, sp);
6343 
6344 				/* we can't be locked to it */
6345 				*locked = 0;
6346 				stcb->asoc.locked_on_sending = NULL;
6347 				if (send_lock_up) {
6348 					SCTP_TCB_SEND_UNLOCK(stcb);
6349 					send_lock_up = 0;
6350 				}
6351 				/* back to get the next msg */
6352 				goto one_more_time;
6353 			} else {
6354 				/*
6355 				 * sender just finished this but still holds
6356 				 * a reference
6357 				 */
6358 				*locked = 1;
6359 				*giveup = 1;
6360 				return (0);
6361 			}
6362 		}
6363 	} else {
6364 		/* is there some to get */
6365 		if (sp->length == 0) {
6366 			/* no */
6367 			*locked = 1;
6368 			*giveup = 1;
6369 			return (0);
6370 		}
6371 	}
6372 	some_taken = sp->some_taken;
6373 	if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
6374 		sp->msg_is_complete = 1;
6375 	}
6376 re_look:
6377 	if (sp->msg_is_complete) {
6378 		/* The message is complete */
6379 		to_move = min(sp->length, frag_point);
6380 		if (to_move == sp->length) {
6381 			/* All of it fits in the MTU */
6382 			if (sp->some_taken) {
6383 				rcv_flags |= SCTP_DATA_LAST_FRAG;
6384 				sp->put_last_out = 1;
6385 			} else {
6386 				rcv_flags |= SCTP_DATA_NOT_FRAG;
6387 				sp->put_last_out = 1;
6388 			}
6389 		} else {
6390 			/* Not all of it fits, we fragment */
6391 			if (sp->some_taken == 0) {
6392 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
6393 			}
6394 			sp->some_taken = 1;
6395 		}
6396 	} else {
6397 		to_move = sctp_can_we_split_this(stcb, sp, goal_mtu,
6398 		    frag_point, eeor_mode);
6399 		if (to_move) {
6400 			/*-
6401 			 * We use a snapshot of length in case it
6402 			 * is expanding during the compare.
6403 			 */
6404 			uint32_t llen;
6405 
6406 			llen = sp->length;
6407 			if (to_move >= llen) {
6408 				to_move = llen;
6409 				if (send_lock_up == 0) {
6410 					/*-
6411 					 * We are taking all of an incomplete msg
6412 					 * thus we need a send lock.
6413 					 */
6414 					SCTP_TCB_SEND_LOCK(stcb);
6415 					send_lock_up = 1;
6416 					if (sp->msg_is_complete) {
6417 						/*
6418 						 * the sender finished the
6419 						 * msg
6420 						 */
6421 						goto re_look;
6422 					}
6423 				}
6424 			}
6425 			if (sp->some_taken == 0) {
6426 				rcv_flags |= SCTP_DATA_FIRST_FRAG;
6427 				sp->some_taken = 1;
6428 			}
6429 		} else {
6430 			/* Nothing to take. */
6431 			if (sp->some_taken) {
6432 				*locked = 1;
6433 			}
6434 			*giveup = 1;
6435 			return (0);
6436 		}
6437 	}
6438 
6439 	/* If we reach here, we can copy out a chunk */
6440 	sctp_alloc_a_chunk(stcb, chk);
6441 	if (chk == NULL) {
6442 		/* No chunk memory */
6443 out_gu:
6444 		if (send_lock_up) {
6445 			/* sa_ignore NO_NULL_CHK */
6446 			SCTP_TCB_SEND_UNLOCK(stcb);
6447 			send_lock_up = 0;
6448 		}
6449 		*giveup = 1;
6450 		return (0);
6451 	}
6452 	/*
6453 	 * Setup for unordered if needed by looking at the user sent info
6454 	 * flags.
6455 	 */
6456 	if (sp->sinfo_flags & SCTP_UNORDERED) {
6457 		rcv_flags |= SCTP_DATA_UNORDERED;
6458 	}
6459 	/* clear out the chunk before setting up */
6460 	memset(chk, 0, sizeof(*chk));
6461 	chk->rec.data.rcv_flags = rcv_flags;
6462 	if (SCTP_BUF_IS_EXTENDED(sp->data)) {
6463 		chk->copy_by_ref = 1;
6464 	} else {
6465 		chk->copy_by_ref = 0;
6466 	}
6467 	if (to_move >= sp->length) {
6468 		/* we can steal the whole thing */
6469 		chk->data = sp->data;
6470 		chk->last_mbuf = sp->tail_mbuf;
6471 		/* register the stealing */
6472 		sp->data = sp->tail_mbuf = NULL;
6473 	} else {
6474 		struct mbuf *m;
6475 
6476 		chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_DONTWAIT);
6477 		chk->last_mbuf = NULL;
6478 		if (chk->data == NULL) {
6479 			sp->some_taken = some_taken;
6480 			sctp_free_a_chunk(stcb, chk);
6481 			*bail = 1;
6482 			goto out_gu;
6483 		}
6484 		/* Pull off the data */
6485 		m_adj(sp->data, to_move);
6486 		/* Now lets work our way down and compact it */
6487 		m = sp->data;
6488 		while (m && (SCTP_BUF_LEN(m) == 0)) {
6489 			sp->data = SCTP_BUF_NEXT(m);
6490 			SCTP_BUF_NEXT(m) = NULL;
6491 			if (sp->tail_mbuf == m) {
6492 				/*-
6493 				 * Freeing tail? TSNH since
6494 				 * we supposedly were taking less
6495 				 * than the sp->length.
6496 				 */
6497 #ifdef INVARIANTS
6498 				panic("Huh, freing tail? - TSNH");
6499 #else
6500 				SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
6501 				sp->tail_mbuf = sp->data = NULL;
6502 				sp->length = 0;
6503 #endif
6504 
6505 			}
6506 			sctp_m_free(m);
6507 			m = sp->data;
6508 		}
6509 	}
6510 	if (to_move > sp->length) {
6511 		/*- This should not happen either
6512 		 * since we always lower to_move to the size
6513 		 * of sp->length if its larger.
6514 		 */
6515 #ifdef INVARIANTS
6516 		panic("Huh, how can to_move be larger?");
6517 #else
6518 		SCTP_PRINTF("Huh, how can to_move be larger?\n");
6519 		sp->length = 0;
6520 #endif
6521 	} else {
6522 		atomic_subtract_int(&sp->length, to_move);
6523 	}
6524 	if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
6525 		/* Not enough room for a chunk header, get some */
6526 		struct mbuf *m;
6527 
6528 		m = sctp_get_mbuf_for_msg(1, 0, M_DONTWAIT, 0, MT_DATA);
6529 		if (m == NULL) {
6530 			/*
6531 			 * we're in trouble here. _PREPEND below will free
6532 			 * all the data if there is no leading space, so we
6533 			 * must put the data back and restore.
6534 			 */
6535 			if (send_lock_up == 0) {
6536 				SCTP_TCB_SEND_LOCK(stcb);
6537 				send_lock_up = 1;
6538 			}
6539 			if (chk->data == NULL) {
6540 				/* unsteal the data */
6541 				sp->data = chk->data;
6542 				sp->tail_mbuf = chk->last_mbuf;
6543 			} else {
6544 				struct mbuf *m_tmp;
6545 
6546 				/* reassemble the data */
6547 				m_tmp = sp->data;
6548 				sp->data = chk->data;
6549 				SCTP_BUF_NEXT(sp->data) = m_tmp;
6550 			}
6551 			sp->some_taken = some_taken;
6552 			atomic_add_int(&sp->length, to_move);
6553 			chk->data = NULL;
6554 			*bail = 1;
6555 			sctp_free_a_chunk(stcb, chk);
6556 			goto out_gu;
6557 		} else {
6558 			SCTP_BUF_LEN(m) = 0;
6559 			SCTP_BUF_NEXT(m) = chk->data;
6560 			chk->data = m;
6561 			M_ALIGN(chk->data, 4);
6562 		}
6563 	}
6564 	SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_DONTWAIT);
6565 	if (chk->data == NULL) {
6566 		/* HELP, TSNH since we assured it would not above? */
6567 #ifdef INVARIANTS
6568 		panic("prepend failes HELP?");
6569 #else
6570 		SCTP_PRINTF("prepend fails HELP?\n");
6571 		sctp_free_a_chunk(stcb, chk);
6572 #endif
6573 		*bail = 1;
6574 		goto out_gu;
6575 	}
6576 	sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
6577 	chk->book_size = chk->send_size = (to_move +
6578 	    sizeof(struct sctp_data_chunk));
6579 	chk->book_size_scale = 0;
6580 	chk->sent = SCTP_DATAGRAM_UNSENT;
6581 
6582 	/*
6583 	 * get last_mbuf and counts of mb useage This is ugly but hopefully
6584 	 * its only one mbuf.
6585 	 */
6586 	if (chk->last_mbuf == NULL) {
6587 		chk->last_mbuf = chk->data;
6588 		while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
6589 			chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
6590 		}
6591 	}
6592 	chk->flags = 0;
6593 	chk->asoc = &stcb->asoc;
6594 	chk->pad_inplace = 0;
6595 	chk->no_fr_allowed = 0;
6596 	chk->rec.data.stream_seq = sp->strseq;
6597 	chk->rec.data.stream_number = sp->stream;
6598 	chk->rec.data.payloadtype = sp->ppid;
6599 	chk->rec.data.context = sp->context;
6600 	chk->rec.data.doing_fast_retransmit = 0;
6601 	chk->rec.data.ect_nonce = 0;	/* ECN Nonce */
6602 
6603 	chk->rec.data.timetodrop = sp->ts;
6604 	chk->flags = sp->act_flags;
6605 	chk->addr_over = sp->addr_over;
6606 
6607 	chk->whoTo = net;
6608 	atomic_add_int(&chk->whoTo->ref_count, 1);
6609 
6610 	chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
6611 #ifdef SCTP_LOG_SENDING_STR
6612 	sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
6613 	    (uintptr_t) stcb, (uintptr_t) sp,
6614 	    (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
6615 	    chk->rec.data.TSN_seq);
6616 #endif
6617 
6618 	dchkh = mtod(chk->data, struct sctp_data_chunk *);
6619 	/*
6620 	 * Put the rest of the things in place now. Size was done earlier in
6621 	 * previous loop prior to padding.
6622 	 */
6623 
6624 #ifdef SCTP_ASOCLOG_OF_TSNS
6625 	SCTP_TCB_LOCK_ASSERT(stcb);
6626 	if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
6627 		asoc->tsn_out_at = 0;
6628 		asoc->tsn_out_wrapped = 1;
6629 	}
6630 	asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
6631 	asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
6632 	asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
6633 	asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
6634 	asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
6635 	asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
6636 	asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
6637 	asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
6638 	asoc->tsn_out_at++;
6639 #endif
6640 
6641 	dchkh->ch.chunk_type = SCTP_DATA;
6642 	dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
6643 	dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
6644 	dchkh->dp.stream_id = htons(strq->stream_no);
6645 	dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
6646 	dchkh->dp.protocol_id = chk->rec.data.payloadtype;
6647 	dchkh->ch.chunk_length = htons(chk->send_size);
6648 	/* Now advance the chk->send_size by the actual pad needed. */
6649 	if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
6650 		/* need a pad */
6651 		struct mbuf *lm;
6652 		int pads;
6653 
6654 		pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
6655 		if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
6656 			chk->pad_inplace = 1;
6657 		}
6658 		if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
6659 			/* pad added an mbuf */
6660 			chk->last_mbuf = lm;
6661 		}
6662 		chk->send_size += pads;
6663 	}
6664 	/* We only re-set the policy if it is on */
6665 	if (sp->pr_sctp_on) {
6666 		sctp_set_prsctp_policy(stcb, sp);
6667 		asoc->pr_sctp_cnt++;
6668 		chk->pr_sctp_on = 1;
6669 	} else {
6670 		chk->pr_sctp_on = 0;
6671 	}
6672 	if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
6673 		/* All done pull and kill the message */
6674 		atomic_subtract_int(&asoc->stream_queue_cnt, 1);
6675 		if (sp->put_last_out == 0) {
6676 			SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
6677 			SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
6678 			    sp->sender_all_done,
6679 			    sp->length,
6680 			    sp->msg_is_complete,
6681 			    sp->put_last_out,
6682 			    send_lock_up);
6683 		}
6684 		if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
6685 			SCTP_TCB_SEND_LOCK(stcb);
6686 			send_lock_up = 1;
6687 		}
6688 		TAILQ_REMOVE(&strq->outqueue, sp, next);
6689 		sctp_free_remote_addr(sp->net);
6690 		if (sp->data) {
6691 			sctp_m_freem(sp->data);
6692 			sp->data = NULL;
6693 		}
6694 		sctp_free_a_strmoq(stcb, sp);
6695 
6696 		/* we can't be locked to it */
6697 		*locked = 0;
6698 		stcb->asoc.locked_on_sending = NULL;
6699 	} else {
6700 		/* more to go, we are locked */
6701 		*locked = 1;
6702 	}
6703 	asoc->chunks_on_out_queue++;
6704 	TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
6705 	asoc->send_queue_cnt++;
6706 	if (send_lock_up) {
6707 		SCTP_TCB_SEND_UNLOCK(stcb);
6708 		send_lock_up = 0;
6709 	}
6710 	return (to_move);
6711 }
6712 
6713 
6714 static struct sctp_stream_out *
6715 sctp_select_a_stream(struct sctp_tcb *stcb, struct sctp_association *asoc)
6716 {
6717 	struct sctp_stream_out *strq;
6718 
6719 	/* Find the next stream to use */
6720 	if (asoc->last_out_stream == NULL) {
6721 		strq = asoc->last_out_stream = TAILQ_FIRST(&asoc->out_wheel);
6722 		if (asoc->last_out_stream == NULL) {
6723 			/* huh nothing on the wheel, TSNH */
6724 			return (NULL);
6725 		}
6726 		goto done_it;
6727 	}
6728 	strq = TAILQ_NEXT(asoc->last_out_stream, next_spoke);
6729 done_it:
6730 	if (strq == NULL) {
6731 		strq = asoc->last_out_stream = TAILQ_FIRST(&asoc->out_wheel);
6732 	}
6733 	/* Save off the last stream */
6734 	asoc->last_out_stream = strq;
6735 	return (strq);
6736 
6737 }
6738 
6739 static void
6740 sctp_fill_outqueue(struct sctp_tcb *stcb,
6741     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now)
6742 {
6743 	struct sctp_association *asoc;
6744 	struct sctp_stream_out *strq, *strqn, *strqt;
6745 	int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
6746 	int locked, giveup;
6747 	struct sctp_stream_queue_pending *sp;
6748 
6749 	SCTP_TCB_LOCK_ASSERT(stcb);
6750 	asoc = &stcb->asoc;
6751 #ifdef INET6
6752 	if (net->ro._l_addr.sin6.sin6_family == AF_INET6) {
6753 		goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
6754 	} else {
6755 		/* ?? not sure what else to do */
6756 		goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
6757 	}
6758 #else
6759 	goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
6760 	mtu_fromwheel = 0;
6761 #endif
6762 	/* Need an allowance for the data chunk header too */
6763 	goal_mtu -= sizeof(struct sctp_data_chunk);
6764 
6765 	/* must make even word boundary */
6766 	goal_mtu &= 0xfffffffc;
6767 	if (asoc->locked_on_sending) {
6768 		/* We are stuck on one stream until the message completes. */
6769 		strqn = strq = asoc->locked_on_sending;
6770 		locked = 1;
6771 	} else {
6772 		strqn = strq = sctp_select_a_stream(stcb, asoc);
6773 		locked = 0;
6774 	}
6775 
6776 	while ((goal_mtu > 0) && strq) {
6777 		sp = TAILQ_FIRST(&strq->outqueue);
6778 		/*
6779 		 * If CMT is off, we must validate that the stream in
6780 		 * question has the first item pointed towards are network
6781 		 * destionation requested by the caller. Note that if we
6782 		 * turn out to be locked to a stream (assigning TSN's then
6783 		 * we must stop, since we cannot look for another stream
6784 		 * with data to send to that destination). In CMT's case, by
6785 		 * skipping this check, we will send one data packet towards
6786 		 * the requested net.
6787 		 */
6788 		if (sp == NULL) {
6789 			break;
6790 		}
6791 		if ((sp->net != net) && (sctp_cmt_on_off == 0)) {
6792 			/* none for this network */
6793 			if (locked) {
6794 				break;
6795 			} else {
6796 				strq = sctp_select_a_stream(stcb, asoc);
6797 				if (strq == NULL)
6798 					/* none left */
6799 					break;
6800 				if (strqn == strq) {
6801 					/* I have circled */
6802 					break;
6803 				}
6804 				continue;
6805 			}
6806 		}
6807 		giveup = 0;
6808 		bail = 0;
6809 		moved_how_much = sctp_move_to_outqueue(stcb, net, strq, goal_mtu, frag_point, &locked,
6810 		    &giveup, eeor_mode, &bail);
6811 		asoc->last_out_stream = strq;
6812 		if (locked) {
6813 			asoc->locked_on_sending = strq;
6814 			if ((moved_how_much == 0) || (giveup) || bail)
6815 				/* no more to move for now */
6816 				break;
6817 		} else {
6818 			asoc->locked_on_sending = NULL;
6819 			strqt = sctp_select_a_stream(stcb, asoc);
6820 			if (TAILQ_FIRST(&strq->outqueue) == NULL) {
6821 				if (strq == strqn) {
6822 					/* Must move start to next one */
6823 					strqn = TAILQ_NEXT(asoc->last_out_stream, next_spoke);
6824 					if (strqn == NULL) {
6825 						strqn = TAILQ_FIRST(&asoc->out_wheel);
6826 						if (strqn == NULL) {
6827 							break;
6828 						}
6829 					}
6830 				}
6831 				sctp_remove_from_wheel(stcb, asoc, strq);
6832 			}
6833 			if ((giveup) || bail) {
6834 				break;
6835 			}
6836 			strq = strqt;
6837 			if (strq == NULL) {
6838 				break;
6839 			}
6840 		}
6841 		total_moved += moved_how_much;
6842 		goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
6843 		goal_mtu &= 0xfffffffc;
6844 	}
6845 	if (bail)
6846 		*quit_now = 1;
6847 
6848 	if (total_moved == 0) {
6849 		if ((sctp_cmt_on_off == 0) &&
6850 		    (net == stcb->asoc.primary_destination)) {
6851 			/* ran dry for primary network net */
6852 			SCTP_STAT_INCR(sctps_primary_randry);
6853 		} else if (sctp_cmt_on_off) {
6854 			/* ran dry with CMT on */
6855 			SCTP_STAT_INCR(sctps_cmt_randry);
6856 		}
6857 	}
6858 }
6859 
6860 void
6861 sctp_fix_ecn_echo(struct sctp_association *asoc)
6862 {
6863 	struct sctp_tmit_chunk *chk;
6864 
6865 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
6866 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
6867 			chk->sent = SCTP_DATAGRAM_UNSENT;
6868 		}
6869 	}
6870 }
6871 
6872 static void
6873 sctp_move_to_an_alt(struct sctp_tcb *stcb,
6874     struct sctp_association *asoc,
6875     struct sctp_nets *net)
6876 {
6877 	struct sctp_tmit_chunk *chk;
6878 	struct sctp_nets *a_net;
6879 
6880 	SCTP_TCB_LOCK_ASSERT(stcb);
6881 	/*
6882 	 * JRS 5/14/07 - If CMT PF is turned on, find an alternate
6883 	 * destination using the PF algorithm for finding alternate
6884 	 * destinations.
6885 	 */
6886 	if (sctp_cmt_on_off && sctp_cmt_pf) {
6887 		a_net = sctp_find_alternate_net(stcb, net, 2);
6888 	} else {
6889 		a_net = sctp_find_alternate_net(stcb, net, 0);
6890 	}
6891 	if ((a_net != net) &&
6892 	    ((a_net->dest_state & SCTP_ADDR_REACHABLE) == SCTP_ADDR_REACHABLE)) {
6893 		/*
6894 		 * We only proceed if a valid alternate is found that is not
6895 		 * this one and is reachable. Here we must move all chunks
6896 		 * queued in the send queue off of the destination address
6897 		 * to our alternate.
6898 		 */
6899 		TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
6900 			if (chk->whoTo == net) {
6901 				/* Move the chunk to our alternate */
6902 				sctp_free_remote_addr(chk->whoTo);
6903 				chk->whoTo = a_net;
6904 				atomic_add_int(&a_net->ref_count, 1);
6905 			}
6906 		}
6907 	}
6908 }
6909 
6910 int
6911 sctp_med_chunk_output(struct sctp_inpcb *inp,
6912     struct sctp_tcb *stcb,
6913     struct sctp_association *asoc,
6914     int *num_out,
6915     int *reason_code,
6916     int control_only, int *cwnd_full, int from_where,
6917     struct timeval *now, int *now_filled, int frag_point, int so_locked
6918 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6919     SCTP_UNUSED
6920 #endif
6921 )
6922 {
6923 	/*
6924 	 * Ok this is the generic chunk service queue. we must do the
6925 	 * following: - Service the stream queue that is next, moving any
6926 	 * message (note I must get a complete message i.e. FIRST/MIDDLE and
6927 	 * LAST to the out queue in one pass) and assigning TSN's - Check to
6928 	 * see if the cwnd/rwnd allows any output, if so we go ahead and
6929 	 * fomulate and send the low level chunks. Making sure to combine
6930 	 * any control in the control chunk queue also.
6931 	 */
6932 	struct sctp_nets *net;
6933 	struct mbuf *outchain, *endoutchain;
6934 	struct sctp_tmit_chunk *chk, *nchk;
6935 	struct sctphdr *shdr;
6936 
6937 	/* temp arrays for unlinking */
6938 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
6939 	int no_fragmentflg, error;
6940 	int one_chunk, hbflag, skip_data_for_this_net;
6941 	int asconf, cookie, no_out_cnt;
6942 	int bundle_at, ctl_cnt, no_data_chunks, cwnd_full_ind, eeor_mode;
6943 	unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
6944 	struct sctp_nets *start_at, *old_startat = NULL, *send_start_at;
6945 	int tsns_sent = 0;
6946 	uint32_t auth_offset = 0;
6947 	struct sctp_auth_chunk *auth = NULL;
6948 
6949 	/*
6950 	 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
6951 	 * destination.
6952 	 */
6953 	int pf_hbflag = 0;
6954 	int quit_now = 0;
6955 
6956 	*num_out = 0;
6957 	cwnd_full_ind = 0;
6958 
6959 	if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
6960 	    (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
6961 	    (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
6962 		eeor_mode = 1;
6963 	} else {
6964 		eeor_mode = 0;
6965 	}
6966 	ctl_cnt = no_out_cnt = asconf = cookie = 0;
6967 	/*
6968 	 * First lets prime the pump. For each destination, if there is room
6969 	 * in the flight size, attempt to pull an MTU's worth out of the
6970 	 * stream queues into the general send_queue
6971 	 */
6972 #ifdef SCTP_AUDITING_ENABLED
6973 	sctp_audit_log(0xC2, 2);
6974 #endif
6975 	SCTP_TCB_LOCK_ASSERT(stcb);
6976 	hbflag = 0;
6977 	if ((control_only) || (asoc->stream_reset_outstanding))
6978 		no_data_chunks = 1;
6979 	else
6980 		no_data_chunks = 0;
6981 
6982 	/* Nothing to possible to send? */
6983 	if (TAILQ_EMPTY(&asoc->control_send_queue) &&
6984 	    TAILQ_EMPTY(&asoc->send_queue) &&
6985 	    TAILQ_EMPTY(&asoc->out_wheel)) {
6986 		*reason_code = 9;
6987 		return (0);
6988 	}
6989 	if (asoc->peers_rwnd == 0) {
6990 		/* No room in peers rwnd */
6991 		*cwnd_full = 1;
6992 		*reason_code = 1;
6993 		if (asoc->total_flight > 0) {
6994 			/* we are allowed one chunk in flight */
6995 			no_data_chunks = 1;
6996 		}
6997 	}
6998 	if ((no_data_chunks == 0) && (!TAILQ_EMPTY(&asoc->out_wheel))) {
6999 		if (sctp_cmt_on_off) {
7000 			/*
7001 			 * for CMT we start at the next one past the one we
7002 			 * last added data to.
7003 			 */
7004 			if (TAILQ_FIRST(&asoc->send_queue) != NULL) {
7005 				goto skip_the_fill_from_streams;
7006 			}
7007 			if (asoc->last_net_data_came_from) {
7008 				net = TAILQ_NEXT(asoc->last_net_data_came_from, sctp_next);
7009 				if (net == NULL) {
7010 					net = TAILQ_FIRST(&asoc->nets);
7011 				}
7012 			} else {
7013 				/* back to start */
7014 				net = TAILQ_FIRST(&asoc->nets);
7015 			}
7016 
7017 			/*
7018 			 * JRI-TODO: CMT-MPI. Simply set the first
7019 			 * destination (net) to be optimized for the next
7020 			 * message to be pulled out of the outwheel. 1. peek
7021 			 * at outwheel 2. If large message, set net =
7022 			 * highest_cwnd 3. If small message, set net =
7023 			 * lowest rtt
7024 			 */
7025 		} else {
7026 			net = asoc->primary_destination;
7027 			if (net == NULL) {
7028 				/* TSNH */
7029 				net = TAILQ_FIRST(&asoc->nets);
7030 			}
7031 		}
7032 		start_at = net;
7033 
7034 one_more_time:
7035 		for (; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7036 			net->window_probe = 0;
7037 			if (old_startat && (old_startat == net)) {
7038 				break;
7039 			}
7040 			/*
7041 			 * JRI: if dest is unreachable or unconfirmed, do
7042 			 * not send data to it
7043 			 */
7044 			if ((net->dest_state & SCTP_ADDR_NOT_REACHABLE) || (net->dest_state & SCTP_ADDR_UNCONFIRMED)) {
7045 				continue;
7046 			}
7047 			/*
7048 			 * JRI: if dest is in PF state, do not send data to
7049 			 * it
7050 			 */
7051 			if (sctp_cmt_on_off && sctp_cmt_pf && (net->dest_state & SCTP_ADDR_PF)) {
7052 				continue;
7053 			}
7054 			if ((sctp_cmt_on_off == 0) && (net->ref_count < 2)) {
7055 				/* nothing can be in queue for this guy */
7056 				continue;
7057 			}
7058 			if (net->flight_size >= net->cwnd) {
7059 				/* skip this network, no room */
7060 				cwnd_full_ind++;
7061 				continue;
7062 			}
7063 			/*
7064 			 * JRI : this for loop we are in takes in each net,
7065 			 * if its's got space in cwnd and has data sent to
7066 			 * it (when CMT is off) then it calls
7067 			 * sctp_fill_outqueue for the net. This gets data on
7068 			 * the send queue for that network.
7069 			 *
7070 			 * In sctp_fill_outqueue TSN's are assigned and data is
7071 			 * copied out of the stream buffers. Note mostly
7072 			 * copy by reference (we hope).
7073 			 */
7074 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7075 				sctp_log_cwnd(stcb, net, 0, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7076 			}
7077 			sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now);
7078 			if (quit_now) {
7079 				/* memory alloc failure */
7080 				no_data_chunks = 1;
7081 				goto skip_the_fill_from_streams;
7082 			}
7083 		}
7084 		if (start_at != TAILQ_FIRST(&asoc->nets)) {
7085 			/* got to pick up the beginning stuff. */
7086 			old_startat = start_at;
7087 			start_at = net = TAILQ_FIRST(&asoc->nets);
7088 			if (old_startat)
7089 				goto one_more_time;
7090 		}
7091 	}
7092 skip_the_fill_from_streams:
7093 	*cwnd_full = cwnd_full_ind;
7094 
7095 	/* now service each destination and send out what we can for it */
7096 	/* Nothing to send? */
7097 	if ((TAILQ_FIRST(&asoc->control_send_queue) == NULL) &&
7098 	    (TAILQ_FIRST(&asoc->send_queue) == NULL)) {
7099 		*reason_code = 8;
7100 		return (0);
7101 	}
7102 	if (no_data_chunks) {
7103 		chk = TAILQ_FIRST(&asoc->control_send_queue);
7104 	} else {
7105 		chk = TAILQ_FIRST(&asoc->send_queue);
7106 	}
7107 	if (chk) {
7108 		send_start_at = chk->whoTo;
7109 	} else {
7110 		send_start_at = TAILQ_FIRST(&asoc->nets);
7111 	}
7112 	old_startat = NULL;
7113 again_one_more_time:
7114 	for (net = send_start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7115 		/* how much can we send? */
7116 		/* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7117 		if (old_startat && (old_startat == net)) {
7118 			/* through list ocmpletely. */
7119 			break;
7120 		}
7121 		tsns_sent = 0;
7122 		if (net->ref_count < 2) {
7123 			/*
7124 			 * Ref-count of 1 so we cannot have data or control
7125 			 * queued to this address. Skip it.
7126 			 */
7127 			continue;
7128 		}
7129 		ctl_cnt = bundle_at = 0;
7130 		endoutchain = outchain = NULL;
7131 		no_fragmentflg = 1;
7132 		one_chunk = 0;
7133 		if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
7134 			skip_data_for_this_net = 1;
7135 		} else {
7136 			skip_data_for_this_net = 0;
7137 		}
7138 		if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
7139 			/*
7140 			 * if we have a route and an ifp check to see if we
7141 			 * have room to send to this guy
7142 			 */
7143 			struct ifnet *ifp;
7144 
7145 			ifp = net->ro.ro_rt->rt_ifp;
7146 			if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
7147 				SCTP_STAT_INCR(sctps_ifnomemqueued);
7148 				if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
7149 					sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
7150 				}
7151 				continue;
7152 			}
7153 		}
7154 		if (((struct sockaddr *)&net->ro._l_addr)->sa_family == AF_INET) {
7155 			mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7156 		} else {
7157 			mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7158 		}
7159 		mx_mtu = mtu;
7160 		to_out = 0;
7161 		if (mtu > asoc->peers_rwnd) {
7162 			if (asoc->total_flight > 0) {
7163 				/* We have a packet in flight somewhere */
7164 				r_mtu = asoc->peers_rwnd;
7165 			} else {
7166 				/* We are always allowed to send one MTU out */
7167 				one_chunk = 1;
7168 				r_mtu = mtu;
7169 			}
7170 		} else {
7171 			r_mtu = mtu;
7172 		}
7173 		/************************/
7174 		/* Control transmission */
7175 		/************************/
7176 		/* Now first lets go through the control queue */
7177 		for (chk = TAILQ_FIRST(&asoc->control_send_queue);
7178 		    chk; chk = nchk) {
7179 			nchk = TAILQ_NEXT(chk, sctp_next);
7180 			if (chk->whoTo != net) {
7181 				/*
7182 				 * No, not sent to the network we are
7183 				 * looking at
7184 				 */
7185 				continue;
7186 			}
7187 			if (chk->data == NULL) {
7188 				continue;
7189 			}
7190 			if (chk->sent != SCTP_DATAGRAM_UNSENT) {
7191 				/*
7192 				 * It must be unsent. Cookies and ASCONF's
7193 				 * hang around but there timers will force
7194 				 * when marked for resend.
7195 				 */
7196 				continue;
7197 			}
7198 			/*
7199 			 * if no AUTH is yet included and this chunk
7200 			 * requires it, make sure to account for it.  We
7201 			 * don't apply the size until the AUTH chunk is
7202 			 * actually added below in case there is no room for
7203 			 * this chunk. NOTE: we overload the use of "omtu"
7204 			 * here
7205 			 */
7206 			if ((auth == NULL) &&
7207 			    sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7208 			    stcb->asoc.peer_auth_chunks)) {
7209 				omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7210 			} else
7211 				omtu = 0;
7212 			/* Here we do NOT factor the r_mtu */
7213 			if ((chk->send_size < (int)(mtu - omtu)) ||
7214 			    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
7215 				/*
7216 				 * We probably should glom the mbuf chain
7217 				 * from the chk->data for control but the
7218 				 * problem is it becomes yet one more level
7219 				 * of tracking to do if for some reason
7220 				 * output fails. Then I have got to
7221 				 * reconstruct the merged control chain.. el
7222 				 * yucko.. for now we take the easy way and
7223 				 * do the copy
7224 				 */
7225 				/*
7226 				 * Add an AUTH chunk, if chunk requires it
7227 				 * save the offset into the chain for AUTH
7228 				 */
7229 				if ((auth == NULL) &&
7230 				    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7231 				    stcb->asoc.peer_auth_chunks))) {
7232 					outchain = sctp_add_auth_chunk(outchain,
7233 					    &endoutchain,
7234 					    &auth,
7235 					    &auth_offset,
7236 					    stcb,
7237 					    chk->rec.chunk_id.id);
7238 					SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7239 				}
7240 				outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
7241 				    (int)chk->rec.chunk_id.can_take_data,
7242 				    chk->send_size, chk->copy_by_ref);
7243 				if (outchain == NULL) {
7244 					*reason_code = 8;
7245 					SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7246 					return (ENOMEM);
7247 				}
7248 				SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7249 				/* update our MTU size */
7250 				if (mtu > (chk->send_size + omtu))
7251 					mtu -= (chk->send_size + omtu);
7252 				else
7253 					mtu = 0;
7254 				to_out += (chk->send_size + omtu);
7255 				/* Do clear IP_DF ? */
7256 				if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7257 					no_fragmentflg = 0;
7258 				}
7259 				if (chk->rec.chunk_id.can_take_data)
7260 					chk->data = NULL;
7261 				/* Mark things to be removed, if needed */
7262 				if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7263 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
7264 				    (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
7265 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
7266 				    (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
7267 				    (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
7268 				    (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
7269 				    (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
7270 				    (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
7271 				    (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
7272 
7273 					if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
7274 						hbflag = 1;
7275 						/*
7276 						 * JRS 5/14/07 - Set the
7277 						 * flag to say a heartbeat
7278 						 * is being sent.
7279 						 */
7280 						pf_hbflag = 1;
7281 					}
7282 					/* remove these chunks at the end */
7283 					if (chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) {
7284 						/* turn off the timer */
7285 						if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
7286 							sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
7287 							    inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
7288 						}
7289 					}
7290 					ctl_cnt++;
7291 				} else {
7292 					/*
7293 					 * Other chunks, since they have
7294 					 * timers running (i.e. COOKIE or
7295 					 * ASCONF) we just "trust" that it
7296 					 * gets sent or retransmitted.
7297 					 */
7298 					ctl_cnt++;
7299 					if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
7300 						cookie = 1;
7301 						no_out_cnt = 1;
7302 					} else if (chk->rec.chunk_id.id == SCTP_ASCONF) {
7303 						/*
7304 						 * set hb flag since we can
7305 						 * use these for RTO
7306 						 */
7307 						hbflag = 1;
7308 						asconf = 1;
7309 						/*
7310 						 * should sysctl this: don't
7311 						 * bundle data with ASCONF
7312 						 * since it requires AUTH
7313 						 */
7314 						no_data_chunks = 1;
7315 					}
7316 					chk->sent = SCTP_DATAGRAM_SENT;
7317 					chk->snd_count++;
7318 				}
7319 				if (mtu == 0) {
7320 					/*
7321 					 * Ok we are out of room but we can
7322 					 * output without effecting the
7323 					 * flight size since this little guy
7324 					 * is a control only packet.
7325 					 */
7326 					if (asconf) {
7327 						sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
7328 						/*
7329 						 * do NOT clear the asconf
7330 						 * flag as it is used to do
7331 						 * appropriate source
7332 						 * address selection.
7333 						 */
7334 					}
7335 					if (cookie) {
7336 						sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
7337 						cookie = 0;
7338 					}
7339 					SCTP_BUF_PREPEND(outchain, sizeof(struct sctphdr), M_DONTWAIT);
7340 					if (outchain == NULL) {
7341 						/* no memory */
7342 						SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
7343 						error = ENOBUFS;
7344 						goto error_out_again;
7345 					}
7346 					shdr = mtod(outchain, struct sctphdr *);
7347 					shdr->src_port = inp->sctp_lport;
7348 					shdr->dest_port = stcb->rport;
7349 					shdr->v_tag = htonl(stcb->asoc.peer_vtag);
7350 					shdr->checksum = 0;
7351 					auth_offset += sizeof(struct sctphdr);
7352 					if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
7353 					    (struct sockaddr *)&net->ro._l_addr,
7354 					    outchain, auth_offset, auth,
7355 					    no_fragmentflg, 0, NULL, asconf, so_locked))) {
7356 						if (error == ENOBUFS) {
7357 							asoc->ifp_had_enobuf = 1;
7358 							SCTP_STAT_INCR(sctps_lowlevelerr);
7359 						}
7360 						if (from_where == 0) {
7361 							SCTP_STAT_INCR(sctps_lowlevelerrusr);
7362 						}
7363 				error_out_again:
7364 						/* error, could not output */
7365 						if (hbflag) {
7366 							if (*now_filled == 0) {
7367 								(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7368 								*now_filled = 1;
7369 								*now = net->last_sent_time;
7370 							} else {
7371 								net->last_sent_time = *now;
7372 							}
7373 							hbflag = 0;
7374 						}
7375 						if (error == EHOSTUNREACH) {
7376 							/*
7377 							 * Destination went
7378 							 * unreachable
7379 							 * during this send
7380 							 */
7381 							sctp_move_to_an_alt(stcb, asoc, net);
7382 						}
7383 						*reason_code = 7;
7384 						continue;
7385 					} else
7386 						asoc->ifp_had_enobuf = 0;
7387 					/* Only HB or ASCONF advances time */
7388 					if (hbflag) {
7389 						if (*now_filled == 0) {
7390 							(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7391 							*now_filled = 1;
7392 							*now = net->last_sent_time;
7393 						} else {
7394 							net->last_sent_time = *now;
7395 						}
7396 						hbflag = 0;
7397 					}
7398 					/*
7399 					 * increase the number we sent, if a
7400 					 * cookie is sent we don't tell them
7401 					 * any was sent out.
7402 					 */
7403 					outchain = endoutchain = NULL;
7404 					auth = NULL;
7405 					auth_offset = 0;
7406 					if (!no_out_cnt)
7407 						*num_out += ctl_cnt;
7408 					/* recalc a clean slate and setup */
7409 					if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
7410 						mtu = (net->mtu - SCTP_MIN_OVERHEAD);
7411 					} else {
7412 						mtu = (net->mtu - SCTP_MIN_V4_OVERHEAD);
7413 					}
7414 					to_out = 0;
7415 					no_fragmentflg = 1;
7416 				}
7417 			}
7418 		}
7419 		/*********************/
7420 		/* Data transmission */
7421 		/*********************/
7422 		/*
7423 		 * if AUTH for DATA is required and no AUTH has been added
7424 		 * yet, account for this in the mtu now... if no data can be
7425 		 * bundled, this adjustment won't matter anyways since the
7426 		 * packet will be going out...
7427 		 */
7428 		if ((auth == NULL) &&
7429 		    sctp_auth_is_required_chunk(SCTP_DATA,
7430 		    stcb->asoc.peer_auth_chunks)) {
7431 			mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7432 		}
7433 		/* now lets add any data within the MTU constraints */
7434 		if (((struct sockaddr *)&net->ro._l_addr)->sa_family == AF_INET) {
7435 			if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
7436 				omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7437 			else
7438 				omtu = 0;
7439 		} else {
7440 			if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
7441 				omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7442 			else
7443 				omtu = 0;
7444 		}
7445 		if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) && (skip_data_for_this_net == 0)) ||
7446 		    (cookie)) {
7447 			for (chk = TAILQ_FIRST(&asoc->send_queue); chk; chk = nchk) {
7448 				if (no_data_chunks) {
7449 					/* let only control go out */
7450 					*reason_code = 1;
7451 					break;
7452 				}
7453 				if (net->flight_size >= net->cwnd) {
7454 					/* skip this net, no room for data */
7455 					*reason_code = 2;
7456 					break;
7457 				}
7458 				nchk = TAILQ_NEXT(chk, sctp_next);
7459 				if (chk->whoTo != net) {
7460 					/* No, not sent to this net */
7461 					continue;
7462 				}
7463 				if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
7464 					/*-
7465 					 * strange, we have a chunk that is
7466 					 * to big for its destination and
7467 					 * yet no fragment ok flag.
7468 					 * Something went wrong when the
7469 					 * PMTU changed...we did not mark
7470 					 * this chunk for some reason?? I
7471 					 * will fix it here by letting IP
7472 					 * fragment it for now and printing
7473 					 * a warning. This really should not
7474 					 * happen ...
7475 					 */
7476 					SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
7477 					    chk->send_size, mtu);
7478 					chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
7479 				}
7480 				if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
7481 				    ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
7482 					/* ok we will add this one */
7483 
7484 					/*
7485 					 * Add an AUTH chunk, if chunk
7486 					 * requires it, save the offset into
7487 					 * the chain for AUTH
7488 					 */
7489 					if ((auth == NULL) &&
7490 					    (sctp_auth_is_required_chunk(SCTP_DATA,
7491 					    stcb->asoc.peer_auth_chunks))) {
7492 
7493 						outchain = sctp_add_auth_chunk(outchain,
7494 						    &endoutchain,
7495 						    &auth,
7496 						    &auth_offset,
7497 						    stcb,
7498 						    SCTP_DATA);
7499 						SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7500 					}
7501 					outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
7502 					    chk->send_size, chk->copy_by_ref);
7503 					if (outchain == NULL) {
7504 						SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
7505 						if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
7506 							sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7507 						}
7508 						*reason_code = 3;
7509 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7510 						return (ENOMEM);
7511 					}
7512 					/* upate our MTU size */
7513 					/* Do clear IP_DF ? */
7514 					if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7515 						no_fragmentflg = 0;
7516 					}
7517 					/* unsigned subtraction of mtu */
7518 					if (mtu > chk->send_size)
7519 						mtu -= chk->send_size;
7520 					else
7521 						mtu = 0;
7522 					/* unsigned subtraction of r_mtu */
7523 					if (r_mtu > chk->send_size)
7524 						r_mtu -= chk->send_size;
7525 					else
7526 						r_mtu = 0;
7527 
7528 					to_out += chk->send_size;
7529 					if ((to_out > mx_mtu) && no_fragmentflg) {
7530 #ifdef INVARIANTS
7531 						panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
7532 #else
7533 						SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
7534 						    mx_mtu, to_out);
7535 #endif
7536 					}
7537 					chk->window_probe = 0;
7538 					data_list[bundle_at++] = chk;
7539 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
7540 						mtu = 0;
7541 						break;
7542 					}
7543 					if (chk->sent == SCTP_DATAGRAM_UNSENT) {
7544 						if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
7545 							SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
7546 						} else {
7547 							SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
7548 						}
7549 						if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
7550 						    ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
7551 							/*
7552 							 * Count number of
7553 							 * user msg's that
7554 							 * were fragmented
7555 							 * we do this by
7556 							 * counting when we
7557 							 * see a LAST
7558 							 * fragment only.
7559 							 */
7560 							SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
7561 					}
7562 					if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
7563 						if (one_chunk) {
7564 							data_list[0]->window_probe = 1;
7565 							net->window_probe = 1;
7566 						}
7567 						break;
7568 					}
7569 				} else {
7570 					/*
7571 					 * Must be sent in order of the
7572 					 * TSN's (on a network)
7573 					 */
7574 					break;
7575 				}
7576 			}	/* for (chunk gather loop for this net) */
7577 		}		/* if asoc.state OPEN */
7578 		/* Is there something to send for this destination? */
7579 		if (outchain) {
7580 			/* We may need to start a control timer or two */
7581 			if (asconf) {
7582 				sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
7583 				    stcb, net);
7584 				/*
7585 				 * do NOT clear the asconf flag as it is
7586 				 * used to do appropriate source address
7587 				 * selection.
7588 				 */
7589 			}
7590 			if (cookie) {
7591 				sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
7592 				cookie = 0;
7593 			}
7594 			/* must start a send timer if data is being sent */
7595 			if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
7596 				/*
7597 				 * no timer running on this destination
7598 				 * restart it.
7599 				 */
7600 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7601 			} else if (sctp_cmt_on_off && sctp_cmt_pf && pf_hbflag && ((net->dest_state & SCTP_ADDR_PF) == SCTP_ADDR_PF)
7602 			    && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
7603 				/*
7604 				 * JRS 5/14/07 - If a HB has been sent to a
7605 				 * PF destination and no T3 timer is
7606 				 * currently running, start the T3 timer to
7607 				 * track the HBs that were sent.
7608 				 */
7609 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
7610 			}
7611 			/* Now send it, if there is anything to send :> */
7612 			SCTP_BUF_PREPEND(outchain, sizeof(struct sctphdr), M_DONTWAIT);
7613 			if (outchain == NULL) {
7614 				/* out of mbufs */
7615 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
7616 				error = ENOBUFS;
7617 				goto errored_send;
7618 			}
7619 			shdr = mtod(outchain, struct sctphdr *);
7620 			shdr->src_port = inp->sctp_lport;
7621 			shdr->dest_port = stcb->rport;
7622 			shdr->v_tag = htonl(stcb->asoc.peer_vtag);
7623 			shdr->checksum = 0;
7624 			auth_offset += sizeof(struct sctphdr);
7625 			if ((error = sctp_lowlevel_chunk_output(inp,
7626 			    stcb,
7627 			    net,
7628 			    (struct sockaddr *)&net->ro._l_addr,
7629 			    outchain,
7630 			    auth_offset,
7631 			    auth,
7632 			    no_fragmentflg,
7633 			    bundle_at,
7634 			    data_list[0],
7635 			    asconf, so_locked))) {
7636 				/* error, we could not output */
7637 				if (error == ENOBUFS) {
7638 					SCTP_STAT_INCR(sctps_lowlevelerr);
7639 					asoc->ifp_had_enobuf = 1;
7640 				}
7641 				if (from_where == 0) {
7642 					SCTP_STAT_INCR(sctps_lowlevelerrusr);
7643 				}
7644 		errored_send:
7645 				SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
7646 				if (hbflag) {
7647 					if (*now_filled == 0) {
7648 						(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7649 						*now_filled = 1;
7650 						*now = net->last_sent_time;
7651 					} else {
7652 						net->last_sent_time = *now;
7653 					}
7654 					hbflag = 0;
7655 				}
7656 				if (error == EHOSTUNREACH) {
7657 					/*
7658 					 * Destination went unreachable
7659 					 * during this send
7660 					 */
7661 					sctp_move_to_an_alt(stcb, asoc, net);
7662 				}
7663 				*reason_code = 6;
7664 				/*-
7665 				 * I add this line to be paranoid. As far as
7666 				 * I can tell the continue, takes us back to
7667 				 * the top of the for, but just to make sure
7668 				 * I will reset these again here.
7669 				 */
7670 				ctl_cnt = bundle_at = 0;
7671 				continue;	/* This takes us back to the
7672 						 * for() for the nets. */
7673 			} else {
7674 				asoc->ifp_had_enobuf = 0;
7675 			}
7676 			outchain = endoutchain = NULL;
7677 			auth = NULL;
7678 			auth_offset = 0;
7679 			if (bundle_at || hbflag) {
7680 				/* For data/asconf and hb set time */
7681 				if (*now_filled == 0) {
7682 					(void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
7683 					*now_filled = 1;
7684 					*now = net->last_sent_time;
7685 				} else {
7686 					net->last_sent_time = *now;
7687 				}
7688 			}
7689 			if (!no_out_cnt) {
7690 				*num_out += (ctl_cnt + bundle_at);
7691 			}
7692 			if (bundle_at) {
7693 				/* setup for a RTO measurement */
7694 				tsns_sent = data_list[0]->rec.data.TSN_seq;
7695 				/* fill time if not already filled */
7696 				if (*now_filled == 0) {
7697 					(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
7698 					*now_filled = 1;
7699 					*now = asoc->time_last_sent;
7700 				} else {
7701 					asoc->time_last_sent = *now;
7702 				}
7703 				data_list[0]->do_rtt = 1;
7704 				SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
7705 				sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
7706 				if (sctp_early_fr) {
7707 					if (net->flight_size < net->cwnd) {
7708 						/* start or restart it */
7709 						if (SCTP_OS_TIMER_PENDING(&net->fr_timer.timer)) {
7710 							sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net,
7711 							    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2);
7712 						}
7713 						SCTP_STAT_INCR(sctps_earlyfrstrout);
7714 						sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net);
7715 					} else {
7716 						/* stop it if its running */
7717 						if (SCTP_OS_TIMER_PENDING(&net->fr_timer.timer)) {
7718 							SCTP_STAT_INCR(sctps_earlyfrstpout);
7719 							sctp_timer_stop(SCTP_TIMER_TYPE_EARLYFR, inp, stcb, net,
7720 							    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3);
7721 						}
7722 					}
7723 				}
7724 			}
7725 			if (one_chunk) {
7726 				break;
7727 			}
7728 		}
7729 		if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7730 			sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
7731 		}
7732 	}
7733 	if (old_startat == NULL) {
7734 		old_startat = send_start_at;
7735 		send_start_at = TAILQ_FIRST(&asoc->nets);
7736 		if (old_startat)
7737 			goto again_one_more_time;
7738 	}
7739 	/*
7740 	 * At the end there should be no NON timed chunks hanging on this
7741 	 * queue.
7742 	 */
7743 	if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
7744 		sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
7745 	}
7746 	if ((*num_out == 0) && (*reason_code == 0)) {
7747 		*reason_code = 4;
7748 	} else {
7749 		*reason_code = 5;
7750 	}
7751 	sctp_clean_up_ctl(stcb, asoc);
7752 	return (0);
7753 }
7754 
7755 void
7756 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
7757 {
7758 	/*-
7759 	 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
7760 	 * the control chunk queue.
7761 	 */
7762 	struct sctp_chunkhdr *hdr;
7763 	struct sctp_tmit_chunk *chk;
7764 	struct mbuf *mat;
7765 
7766 	SCTP_TCB_LOCK_ASSERT(stcb);
7767 	sctp_alloc_a_chunk(stcb, chk);
7768 	if (chk == NULL) {
7769 		/* no memory */
7770 		sctp_m_freem(op_err);
7771 		return;
7772 	}
7773 	chk->copy_by_ref = 0;
7774 	SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_DONTWAIT);
7775 	if (op_err == NULL) {
7776 		sctp_free_a_chunk(stcb, chk);
7777 		return;
7778 	}
7779 	chk->send_size = 0;
7780 	mat = op_err;
7781 	while (mat != NULL) {
7782 		chk->send_size += SCTP_BUF_LEN(mat);
7783 		mat = SCTP_BUF_NEXT(mat);
7784 	}
7785 	chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
7786 	chk->rec.chunk_id.can_take_data = 1;
7787 	chk->sent = SCTP_DATAGRAM_UNSENT;
7788 	chk->snd_count = 0;
7789 	chk->flags = 0;
7790 	chk->asoc = &stcb->asoc;
7791 	chk->data = op_err;
7792 	chk->whoTo = chk->asoc->primary_destination;
7793 	atomic_add_int(&chk->whoTo->ref_count, 1);
7794 	hdr = mtod(op_err, struct sctp_chunkhdr *);
7795 	hdr->chunk_type = SCTP_OPERATION_ERROR;
7796 	hdr->chunk_flags = 0;
7797 	hdr->chunk_length = htons(chk->send_size);
7798 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
7799 	    chk,
7800 	    sctp_next);
7801 	chk->asoc->ctrl_queue_cnt++;
7802 }
7803 
7804 int
7805 sctp_send_cookie_echo(struct mbuf *m,
7806     int offset,
7807     struct sctp_tcb *stcb,
7808     struct sctp_nets *net)
7809 {
7810 	/*-
7811 	 * pull out the cookie and put it at the front of the control chunk
7812 	 * queue.
7813 	 */
7814 	int at;
7815 	struct mbuf *cookie;
7816 	struct sctp_paramhdr parm, *phdr;
7817 	struct sctp_chunkhdr *hdr;
7818 	struct sctp_tmit_chunk *chk;
7819 	uint16_t ptype, plen;
7820 
7821 	/* First find the cookie in the param area */
7822 	cookie = NULL;
7823 	at = offset + sizeof(struct sctp_init_chunk);
7824 
7825 	SCTP_TCB_LOCK_ASSERT(stcb);
7826 	do {
7827 		phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
7828 		if (phdr == NULL) {
7829 			return (-3);
7830 		}
7831 		ptype = ntohs(phdr->param_type);
7832 		plen = ntohs(phdr->param_length);
7833 		if (ptype == SCTP_STATE_COOKIE) {
7834 			int pad;
7835 
7836 			/* found the cookie */
7837 			if ((pad = (plen % 4))) {
7838 				plen += 4 - pad;
7839 			}
7840 			cookie = SCTP_M_COPYM(m, at, plen, M_DONTWAIT);
7841 			if (cookie == NULL) {
7842 				/* No memory */
7843 				return (-2);
7844 			}
7845 			break;
7846 		}
7847 		at += SCTP_SIZE32(plen);
7848 	} while (phdr);
7849 	if (cookie == NULL) {
7850 		/* Did not find the cookie */
7851 		return (-3);
7852 	}
7853 	/* ok, we got the cookie lets change it into a cookie echo chunk */
7854 
7855 	/* first the change from param to cookie */
7856 	hdr = mtod(cookie, struct sctp_chunkhdr *);
7857 	hdr->chunk_type = SCTP_COOKIE_ECHO;
7858 	hdr->chunk_flags = 0;
7859 	/* get the chunk stuff now and place it in the FRONT of the queue */
7860 	sctp_alloc_a_chunk(stcb, chk);
7861 	if (chk == NULL) {
7862 		/* no memory */
7863 		sctp_m_freem(cookie);
7864 		return (-5);
7865 	}
7866 	chk->copy_by_ref = 0;
7867 	chk->send_size = plen;
7868 	chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
7869 	chk->rec.chunk_id.can_take_data = 0;
7870 	chk->sent = SCTP_DATAGRAM_UNSENT;
7871 	chk->snd_count = 0;
7872 	chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
7873 	chk->asoc = &stcb->asoc;
7874 	chk->data = cookie;
7875 	chk->whoTo = chk->asoc->primary_destination;
7876 	atomic_add_int(&chk->whoTo->ref_count, 1);
7877 	TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
7878 	chk->asoc->ctrl_queue_cnt++;
7879 	return (0);
7880 }
7881 
7882 void
7883 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
7884     struct mbuf *m,
7885     int offset,
7886     int chk_length,
7887     struct sctp_nets *net)
7888 {
7889 	/*
7890 	 * take a HB request and make it into a HB ack and send it.
7891 	 */
7892 	struct mbuf *outchain;
7893 	struct sctp_chunkhdr *chdr;
7894 	struct sctp_tmit_chunk *chk;
7895 
7896 
7897 	if (net == NULL)
7898 		/* must have a net pointer */
7899 		return;
7900 
7901 	outchain = SCTP_M_COPYM(m, offset, chk_length, M_DONTWAIT);
7902 	if (outchain == NULL) {
7903 		/* gak out of memory */
7904 		return;
7905 	}
7906 	chdr = mtod(outchain, struct sctp_chunkhdr *);
7907 	chdr->chunk_type = SCTP_HEARTBEAT_ACK;
7908 	chdr->chunk_flags = 0;
7909 	if (chk_length % 4) {
7910 		/* need pad */
7911 		uint32_t cpthis = 0;
7912 		int padlen;
7913 
7914 		padlen = 4 - (chk_length % 4);
7915 		m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
7916 	}
7917 	sctp_alloc_a_chunk(stcb, chk);
7918 	if (chk == NULL) {
7919 		/* no memory */
7920 		sctp_m_freem(outchain);
7921 		return;
7922 	}
7923 	chk->copy_by_ref = 0;
7924 	chk->send_size = chk_length;
7925 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
7926 	chk->rec.chunk_id.can_take_data = 1;
7927 	chk->sent = SCTP_DATAGRAM_UNSENT;
7928 	chk->snd_count = 0;
7929 	chk->flags = 0;
7930 	chk->asoc = &stcb->asoc;
7931 	chk->data = outchain;
7932 	chk->whoTo = net;
7933 	atomic_add_int(&chk->whoTo->ref_count, 1);
7934 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
7935 	chk->asoc->ctrl_queue_cnt++;
7936 }
7937 
7938 void
7939 sctp_send_cookie_ack(struct sctp_tcb *stcb)
7940 {
7941 	/* formulate and queue a cookie-ack back to sender */
7942 	struct mbuf *cookie_ack;
7943 	struct sctp_chunkhdr *hdr;
7944 	struct sctp_tmit_chunk *chk;
7945 
7946 	cookie_ack = NULL;
7947 	SCTP_TCB_LOCK_ASSERT(stcb);
7948 
7949 	cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_DONTWAIT, 1, MT_HEADER);
7950 	if (cookie_ack == NULL) {
7951 		/* no mbuf's */
7952 		return;
7953 	}
7954 	SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
7955 	sctp_alloc_a_chunk(stcb, chk);
7956 	if (chk == NULL) {
7957 		/* no memory */
7958 		sctp_m_freem(cookie_ack);
7959 		return;
7960 	}
7961 	chk->copy_by_ref = 0;
7962 	chk->send_size = sizeof(struct sctp_chunkhdr);
7963 	chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
7964 	chk->rec.chunk_id.can_take_data = 1;
7965 	chk->sent = SCTP_DATAGRAM_UNSENT;
7966 	chk->snd_count = 0;
7967 	chk->flags = 0;
7968 	chk->asoc = &stcb->asoc;
7969 	chk->data = cookie_ack;
7970 	if (chk->asoc->last_control_chunk_from != NULL) {
7971 		chk->whoTo = chk->asoc->last_control_chunk_from;
7972 	} else {
7973 		chk->whoTo = chk->asoc->primary_destination;
7974 	}
7975 	atomic_add_int(&chk->whoTo->ref_count, 1);
7976 	hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
7977 	hdr->chunk_type = SCTP_COOKIE_ACK;
7978 	hdr->chunk_flags = 0;
7979 	hdr->chunk_length = htons(chk->send_size);
7980 	SCTP_BUF_LEN(cookie_ack) = chk->send_size;
7981 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
7982 	chk->asoc->ctrl_queue_cnt++;
7983 	return;
7984 }
7985 
7986 
7987 void
7988 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
7989 {
7990 	/* formulate and queue a SHUTDOWN-ACK back to the sender */
7991 	struct mbuf *m_shutdown_ack;
7992 	struct sctp_shutdown_ack_chunk *ack_cp;
7993 	struct sctp_tmit_chunk *chk;
7994 
7995 	m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
7996 	if (m_shutdown_ack == NULL) {
7997 		/* no mbuf's */
7998 		return;
7999 	}
8000 	SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
8001 	sctp_alloc_a_chunk(stcb, chk);
8002 	if (chk == NULL) {
8003 		/* no memory */
8004 		sctp_m_freem(m_shutdown_ack);
8005 		return;
8006 	}
8007 	chk->copy_by_ref = 0;
8008 	chk->send_size = sizeof(struct sctp_chunkhdr);
8009 	chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
8010 	chk->rec.chunk_id.can_take_data = 1;
8011 	chk->sent = SCTP_DATAGRAM_UNSENT;
8012 	chk->snd_count = 0;
8013 	chk->flags = 0;
8014 	chk->asoc = &stcb->asoc;
8015 	chk->data = m_shutdown_ack;
8016 	chk->whoTo = net;
8017 	atomic_add_int(&net->ref_count, 1);
8018 
8019 	ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
8020 	ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
8021 	ack_cp->ch.chunk_flags = 0;
8022 	ack_cp->ch.chunk_length = htons(chk->send_size);
8023 	SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
8024 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8025 	chk->asoc->ctrl_queue_cnt++;
8026 	return;
8027 }
8028 
8029 void
8030 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
8031 {
8032 	/* formulate and queue a SHUTDOWN to the sender */
8033 	struct mbuf *m_shutdown;
8034 	struct sctp_shutdown_chunk *shutdown_cp;
8035 	struct sctp_tmit_chunk *chk;
8036 
8037 	m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
8038 	if (m_shutdown == NULL) {
8039 		/* no mbuf's */
8040 		return;
8041 	}
8042 	SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
8043 	sctp_alloc_a_chunk(stcb, chk);
8044 	if (chk == NULL) {
8045 		/* no memory */
8046 		sctp_m_freem(m_shutdown);
8047 		return;
8048 	}
8049 	chk->copy_by_ref = 0;
8050 	chk->send_size = sizeof(struct sctp_shutdown_chunk);
8051 	chk->rec.chunk_id.id = SCTP_SHUTDOWN;
8052 	chk->rec.chunk_id.can_take_data = 1;
8053 	chk->sent = SCTP_DATAGRAM_UNSENT;
8054 	chk->snd_count = 0;
8055 	chk->flags = 0;
8056 	chk->asoc = &stcb->asoc;
8057 	chk->data = m_shutdown;
8058 	chk->whoTo = net;
8059 	atomic_add_int(&net->ref_count, 1);
8060 
8061 	shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
8062 	shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
8063 	shutdown_cp->ch.chunk_flags = 0;
8064 	shutdown_cp->ch.chunk_length = htons(chk->send_size);
8065 	shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
8066 	SCTP_BUF_LEN(m_shutdown) = chk->send_size;
8067 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8068 	chk->asoc->ctrl_queue_cnt++;
8069 	return;
8070 }
8071 
8072 void
8073 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
8074 {
8075 	/*
8076 	 * formulate and queue an ASCONF to the peer. ASCONF parameters
8077 	 * should be queued on the assoc queue.
8078 	 */
8079 	struct sctp_tmit_chunk *chk;
8080 	struct mbuf *m_asconf;
8081 	struct sctp_asconf_chunk *acp;
8082 	int len;
8083 
8084 	SCTP_TCB_LOCK_ASSERT(stcb);
8085 	/* compose an ASCONF chunk, maximum length is PMTU */
8086 	m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
8087 	if (m_asconf == NULL) {
8088 		return;
8089 	}
8090 	acp = mtod(m_asconf, struct sctp_asconf_chunk *);
8091 	sctp_alloc_a_chunk(stcb, chk);
8092 	if (chk == NULL) {
8093 		/* no memory */
8094 		sctp_m_freem(m_asconf);
8095 		return;
8096 	}
8097 	chk->copy_by_ref = 0;
8098 	chk->data = m_asconf;
8099 	chk->send_size = len;
8100 	chk->rec.chunk_id.id = SCTP_ASCONF;
8101 	chk->rec.chunk_id.can_take_data = 0;
8102 	chk->sent = SCTP_DATAGRAM_UNSENT;
8103 	chk->snd_count = 0;
8104 	chk->flags = 0;
8105 	chk->asoc = &stcb->asoc;
8106 	chk->whoTo = chk->asoc->primary_destination;
8107 	atomic_add_int(&chk->whoTo->ref_count, 1);
8108 	TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8109 	chk->asoc->ctrl_queue_cnt++;
8110 	return;
8111 }
8112 
8113 void
8114 sctp_send_asconf_ack(struct sctp_tcb *stcb)
8115 {
8116 	/*
8117 	 * formulate and queue a asconf-ack back to sender. the asconf-ack
8118 	 * must be stored in the tcb.
8119 	 */
8120 	struct sctp_tmit_chunk *chk;
8121 	struct sctp_asconf_ack *ack, *latest_ack;
8122 	struct mbuf *m_ack, *m;
8123 	struct sctp_nets *net = NULL;
8124 
8125 	SCTP_TCB_LOCK_ASSERT(stcb);
8126 	/* Get the latest ASCONF-ACK */
8127 	latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
8128 	if (latest_ack == NULL) {
8129 		return;
8130 	}
8131 	if (latest_ack->last_sent_to != NULL &&
8132 	    latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
8133 		/* we're doing a retransmission */
8134 		net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
8135 		if (net == NULL) {
8136 			/* no alternate */
8137 			if (stcb->asoc.last_control_chunk_from == NULL)
8138 				net = stcb->asoc.primary_destination;
8139 			else
8140 				net = stcb->asoc.last_control_chunk_from;
8141 		}
8142 	} else {
8143 		/* normal case */
8144 		if (stcb->asoc.last_control_chunk_from == NULL)
8145 			net = stcb->asoc.primary_destination;
8146 		else
8147 			net = stcb->asoc.last_control_chunk_from;
8148 	}
8149 	latest_ack->last_sent_to = net;
8150 
8151 	TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
8152 		if (ack->data == NULL) {
8153 			continue;
8154 		}
8155 		/* copy the asconf_ack */
8156 		m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_DONTWAIT);
8157 		if (m_ack == NULL) {
8158 			/* couldn't copy it */
8159 			return;
8160 		}
8161 		sctp_alloc_a_chunk(stcb, chk);
8162 		if (chk == NULL) {
8163 			/* no memory */
8164 			if (m_ack)
8165 				sctp_m_freem(m_ack);
8166 			return;
8167 		}
8168 		chk->copy_by_ref = 0;
8169 
8170 		chk->whoTo = net;
8171 		chk->data = m_ack;
8172 		chk->send_size = 0;
8173 		/* Get size */
8174 		m = m_ack;
8175 		chk->send_size = ack->len;
8176 		chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
8177 		chk->rec.chunk_id.can_take_data = 1;
8178 		chk->sent = SCTP_DATAGRAM_UNSENT;
8179 		chk->snd_count = 0;
8180 		chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;	/* XXX */
8181 		chk->asoc = &stcb->asoc;
8182 		atomic_add_int(&chk->whoTo->ref_count, 1);
8183 
8184 		TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8185 		chk->asoc->ctrl_queue_cnt++;
8186 	}
8187 	return;
8188 }
8189 
8190 
8191 static int
8192 sctp_chunk_retransmission(struct sctp_inpcb *inp,
8193     struct sctp_tcb *stcb,
8194     struct sctp_association *asoc,
8195     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
8196 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
8197     SCTP_UNUSED
8198 #endif
8199 )
8200 {
8201 	/*-
8202 	 * send out one MTU of retransmission. If fast_retransmit is
8203 	 * happening we ignore the cwnd. Otherwise we obey the cwnd and
8204 	 * rwnd. For a Cookie or Asconf in the control chunk queue we
8205 	 * retransmit them by themselves.
8206 	 *
8207 	 * For data chunks we will pick out the lowest TSN's in the sent_queue
8208 	 * marked for resend and bundle them all together (up to a MTU of
8209 	 * destination). The address to send to should have been
8210 	 * selected/changed where the retransmission was marked (i.e. in FR
8211 	 * or t3-timeout routines).
8212 	 */
8213 	struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
8214 	struct sctp_tmit_chunk *chk, *fwd;
8215 	struct mbuf *m, *endofchain;
8216 	struct sctphdr *shdr;
8217 	int asconf;
8218 	struct sctp_nets *net = NULL;
8219 	uint32_t tsns_sent = 0;
8220 	int no_fragmentflg, bundle_at, cnt_thru;
8221 	unsigned int mtu;
8222 	int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
8223 	struct sctp_auth_chunk *auth = NULL;
8224 	uint32_t auth_offset = 0;
8225 	uint32_t dmtu = 0;
8226 
8227 	SCTP_TCB_LOCK_ASSERT(stcb);
8228 	tmr_started = ctl_cnt = bundle_at = error = 0;
8229 	no_fragmentflg = 1;
8230 	asconf = 0;
8231 	fwd_tsn = 0;
8232 	*cnt_out = 0;
8233 	fwd = NULL;
8234 	endofchain = m = NULL;
8235 #ifdef SCTP_AUDITING_ENABLED
8236 	sctp_audit_log(0xC3, 1);
8237 #endif
8238 	if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
8239 	    (TAILQ_EMPTY(&asoc->control_send_queue))) {
8240 		SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
8241 		    asoc->sent_queue_retran_cnt);
8242 		asoc->sent_queue_cnt = 0;
8243 		asoc->sent_queue_cnt_removeable = 0;
8244 		/* send back 0/0 so we enter normal transmission */
8245 		*cnt_out = 0;
8246 		return (0);
8247 	}
8248 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
8249 		if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
8250 		    (chk->rec.chunk_id.id == SCTP_ASCONF) ||
8251 		    (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
8252 		    (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
8253 			if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
8254 				if (chk != asoc->str_reset) {
8255 					/*
8256 					 * not eligible for retran if its
8257 					 * not ours
8258 					 */
8259 					continue;
8260 				}
8261 			}
8262 			ctl_cnt++;
8263 			if (chk->rec.chunk_id.id == SCTP_ASCONF) {
8264 				no_fragmentflg = 1;
8265 				asconf = 1;
8266 			}
8267 			if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
8268 				fwd_tsn = 1;
8269 				fwd = chk;
8270 			}
8271 			/*
8272 			 * Add an AUTH chunk, if chunk requires it save the
8273 			 * offset into the chain for AUTH
8274 			 */
8275 			if ((auth == NULL) &&
8276 			    (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8277 			    stcb->asoc.peer_auth_chunks))) {
8278 				m = sctp_add_auth_chunk(m, &endofchain,
8279 				    &auth, &auth_offset,
8280 				    stcb,
8281 				    chk->rec.chunk_id.id);
8282 			}
8283 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
8284 			break;
8285 		}
8286 	}
8287 	one_chunk = 0;
8288 	cnt_thru = 0;
8289 	/* do we have control chunks to retransmit? */
8290 	if (m != NULL) {
8291 		/* Start a timer no matter if we suceed or fail */
8292 		if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8293 			sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
8294 		} else if (chk->rec.chunk_id.id == SCTP_ASCONF)
8295 			sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
8296 
8297 		SCTP_BUF_PREPEND(m, sizeof(struct sctphdr), M_DONTWAIT);
8298 		if (m == NULL) {
8299 			SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
8300 			return (ENOBUFS);
8301 		}
8302 		shdr = mtod(m, struct sctphdr *);
8303 		shdr->src_port = inp->sctp_lport;
8304 		shdr->dest_port = stcb->rport;
8305 		shdr->v_tag = htonl(stcb->asoc.peer_vtag);
8306 		shdr->checksum = 0;
8307 		auth_offset += sizeof(struct sctphdr);
8308 		chk->snd_count++;	/* update our count */
8309 
8310 		if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
8311 		    (struct sockaddr *)&chk->whoTo->ro._l_addr, m, auth_offset,
8312 		    auth, no_fragmentflg, 0, NULL, asconf, so_locked))) {
8313 			SCTP_STAT_INCR(sctps_lowlevelerr);
8314 			return (error);
8315 		}
8316 		m = endofchain = NULL;
8317 		auth = NULL;
8318 		auth_offset = 0;
8319 		/*
8320 		 * We don't want to mark the net->sent time here since this
8321 		 * we use this for HB and retrans cannot measure RTT
8322 		 */
8323 		/* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
8324 		*cnt_out += 1;
8325 		chk->sent = SCTP_DATAGRAM_SENT;
8326 		sctp_ucount_decr(asoc->sent_queue_retran_cnt);
8327 		if (fwd_tsn == 0) {
8328 			return (0);
8329 		} else {
8330 			/* Clean up the fwd-tsn list */
8331 			sctp_clean_up_ctl(stcb, asoc);
8332 			return (0);
8333 		}
8334 	}
8335 	/*
8336 	 * Ok, it is just data retransmission we need to do or that and a
8337 	 * fwd-tsn with it all.
8338 	 */
8339 	if (TAILQ_EMPTY(&asoc->sent_queue)) {
8340 		return (SCTP_RETRAN_DONE);
8341 	}
8342 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
8343 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
8344 		/* not yet open, resend the cookie and that is it */
8345 		return (1);
8346 	}
8347 #ifdef SCTP_AUDITING_ENABLED
8348 	sctp_auditing(20, inp, stcb, NULL);
8349 #endif
8350 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
8351 		if (chk->sent != SCTP_DATAGRAM_RESEND) {
8352 			/* No, not sent to this net or not ready for rtx */
8353 			continue;
8354 		}
8355 		if ((sctp_max_retran_chunk) && (chk->snd_count >= sctp_max_retran_chunk)) {
8356 			/* Gak, we have exceeded max unlucky retran, abort! */
8357 			SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
8358 			    chk->snd_count,
8359 			    sctp_max_retran_chunk);
8360 			atomic_add_int(&stcb->asoc.refcnt, 1);
8361 			sctp_abort_an_association(stcb->sctp_ep, stcb, 0, NULL, so_locked);
8362 			SCTP_TCB_LOCK(stcb);
8363 			atomic_subtract_int(&stcb->asoc.refcnt, 1);
8364 			return (SCTP_RETRAN_EXIT);
8365 		}
8366 		/* pick up the net */
8367 		net = chk->whoTo;
8368 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
8369 			mtu = (net->mtu - SCTP_MIN_OVERHEAD);
8370 		} else {
8371 			mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8372 		}
8373 
8374 		if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
8375 			/* No room in peers rwnd */
8376 			uint32_t tsn;
8377 
8378 			tsn = asoc->last_acked_seq + 1;
8379 			if (tsn == chk->rec.data.TSN_seq) {
8380 				/*
8381 				 * we make a special exception for this
8382 				 * case. The peer has no rwnd but is missing
8383 				 * the lowest chunk.. which is probably what
8384 				 * is holding up the rwnd.
8385 				 */
8386 				goto one_chunk_around;
8387 			}
8388 			return (1);
8389 		}
8390 one_chunk_around:
8391 		if (asoc->peers_rwnd < mtu) {
8392 			one_chunk = 1;
8393 			if ((asoc->peers_rwnd == 0) &&
8394 			    (asoc->total_flight == 0)) {
8395 				chk->window_probe = 1;
8396 				chk->whoTo->window_probe = 1;
8397 			}
8398 		}
8399 #ifdef SCTP_AUDITING_ENABLED
8400 		sctp_audit_log(0xC3, 2);
8401 #endif
8402 		bundle_at = 0;
8403 		m = NULL;
8404 		net->fast_retran_ip = 0;
8405 		if (chk->rec.data.doing_fast_retransmit == 0) {
8406 			/*
8407 			 * if no FR in progress skip destination that have
8408 			 * flight_size > cwnd.
8409 			 */
8410 			if (net->flight_size >= net->cwnd) {
8411 				continue;
8412 			}
8413 		} else {
8414 			/*
8415 			 * Mark the destination net to have FR recovery
8416 			 * limits put on it.
8417 			 */
8418 			*fr_done = 1;
8419 			net->fast_retran_ip = 1;
8420 		}
8421 
8422 		/*
8423 		 * if no AUTH is yet included and this chunk requires it,
8424 		 * make sure to account for it.  We don't apply the size
8425 		 * until the AUTH chunk is actually added below in case
8426 		 * there is no room for this chunk.
8427 		 */
8428 		if ((auth == NULL) &&
8429 		    sctp_auth_is_required_chunk(SCTP_DATA,
8430 		    stcb->asoc.peer_auth_chunks)) {
8431 			dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8432 		} else
8433 			dmtu = 0;
8434 
8435 		if ((chk->send_size <= (mtu - dmtu)) ||
8436 		    (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8437 			/* ok we will add this one */
8438 			if ((auth == NULL) &&
8439 			    (sctp_auth_is_required_chunk(SCTP_DATA,
8440 			    stcb->asoc.peer_auth_chunks))) {
8441 				m = sctp_add_auth_chunk(m, &endofchain,
8442 				    &auth, &auth_offset,
8443 				    stcb, SCTP_DATA);
8444 			}
8445 			m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
8446 			if (m == NULL) {
8447 				SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8448 				return (ENOMEM);
8449 			}
8450 			/* Do clear IP_DF ? */
8451 			if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8452 				no_fragmentflg = 0;
8453 			}
8454 			/* upate our MTU size */
8455 			if (mtu > (chk->send_size + dmtu))
8456 				mtu -= (chk->send_size + dmtu);
8457 			else
8458 				mtu = 0;
8459 			data_list[bundle_at++] = chk;
8460 			if (one_chunk && (asoc->total_flight <= 0)) {
8461 				SCTP_STAT_INCR(sctps_windowprobed);
8462 			}
8463 		}
8464 		if (one_chunk == 0) {
8465 			/*
8466 			 * now are there anymore forward from chk to pick
8467 			 * up?
8468 			 */
8469 			fwd = TAILQ_NEXT(chk, sctp_next);
8470 			while (fwd) {
8471 				if (fwd->sent != SCTP_DATAGRAM_RESEND) {
8472 					/* Nope, not for retran */
8473 					fwd = TAILQ_NEXT(fwd, sctp_next);
8474 					continue;
8475 				}
8476 				if (fwd->whoTo != net) {
8477 					/* Nope, not the net in question */
8478 					fwd = TAILQ_NEXT(fwd, sctp_next);
8479 					continue;
8480 				}
8481 				if ((auth == NULL) &&
8482 				    sctp_auth_is_required_chunk(SCTP_DATA,
8483 				    stcb->asoc.peer_auth_chunks)) {
8484 					dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8485 				} else
8486 					dmtu = 0;
8487 				if (fwd->send_size <= (mtu - dmtu)) {
8488 					if ((auth == NULL) &&
8489 					    (sctp_auth_is_required_chunk(SCTP_DATA,
8490 					    stcb->asoc.peer_auth_chunks))) {
8491 						m = sctp_add_auth_chunk(m,
8492 						    &endofchain,
8493 						    &auth, &auth_offset,
8494 						    stcb,
8495 						    SCTP_DATA);
8496 					}
8497 					m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
8498 					if (m == NULL) {
8499 						SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8500 						return (ENOMEM);
8501 					}
8502 					/* Do clear IP_DF ? */
8503 					if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8504 						no_fragmentflg = 0;
8505 					}
8506 					/* upate our MTU size */
8507 					if (mtu > (fwd->send_size + dmtu))
8508 						mtu -= (fwd->send_size + dmtu);
8509 					else
8510 						mtu = 0;
8511 					data_list[bundle_at++] = fwd;
8512 					if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8513 						break;
8514 					}
8515 					fwd = TAILQ_NEXT(fwd, sctp_next);
8516 				} else {
8517 					/* can't fit so we are done */
8518 					break;
8519 				}
8520 			}
8521 		}
8522 		/* Is there something to send for this destination? */
8523 		if (m) {
8524 			/*
8525 			 * No matter if we fail/or suceed we should start a
8526 			 * timer. A failure is like a lost IP packet :-)
8527 			 */
8528 			if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8529 				/*
8530 				 * no timer running on this destination
8531 				 * restart it.
8532 				 */
8533 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8534 				tmr_started = 1;
8535 			}
8536 			SCTP_BUF_PREPEND(m, sizeof(struct sctphdr), M_DONTWAIT);
8537 			if (m == NULL) {
8538 				SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
8539 				return (ENOBUFS);
8540 			}
8541 			shdr = mtod(m, struct sctphdr *);
8542 			shdr->src_port = inp->sctp_lport;
8543 			shdr->dest_port = stcb->rport;
8544 			shdr->v_tag = htonl(stcb->asoc.peer_vtag);
8545 			shdr->checksum = 0;
8546 			auth_offset += sizeof(struct sctphdr);
8547 			/* Now lets send it, if there is anything to send :> */
8548 			if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8549 			    (struct sockaddr *)&net->ro._l_addr, m, auth_offset,
8550 			    auth, no_fragmentflg, 0, NULL, asconf, so_locked))) {
8551 				/* error, we could not output */
8552 				SCTP_STAT_INCR(sctps_lowlevelerr);
8553 				return (error);
8554 			}
8555 			m = endofchain = NULL;
8556 			auth = NULL;
8557 			auth_offset = 0;
8558 			/* For HB's */
8559 			/*
8560 			 * We don't want to mark the net->sent time here
8561 			 * since this we use this for HB and retrans cannot
8562 			 * measure RTT
8563 			 */
8564 			/* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
8565 
8566 			/* For auto-close */
8567 			cnt_thru++;
8568 			if (*now_filled == 0) {
8569 				(void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8570 				*now = asoc->time_last_sent;
8571 				*now_filled = 1;
8572 			} else {
8573 				asoc->time_last_sent = *now;
8574 			}
8575 			*cnt_out += bundle_at;
8576 #ifdef SCTP_AUDITING_ENABLED
8577 			sctp_audit_log(0xC4, bundle_at);
8578 #endif
8579 			if (bundle_at) {
8580 				tsns_sent = data_list[0]->rec.data.TSN_seq;
8581 			}
8582 			for (i = 0; i < bundle_at; i++) {
8583 				SCTP_STAT_INCR(sctps_sendretransdata);
8584 				data_list[i]->sent = SCTP_DATAGRAM_SENT;
8585 				/*
8586 				 * When we have a revoked data, and we
8587 				 * retransmit it, then we clear the revoked
8588 				 * flag since this flag dictates if we
8589 				 * subtracted from the fs
8590 				 */
8591 				if (data_list[i]->rec.data.chunk_was_revoked) {
8592 					/* Deflate the cwnd */
8593 					data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
8594 					data_list[i]->rec.data.chunk_was_revoked = 0;
8595 				}
8596 				data_list[i]->snd_count++;
8597 				sctp_ucount_decr(asoc->sent_queue_retran_cnt);
8598 				/* record the time */
8599 				data_list[i]->sent_rcv_time = asoc->time_last_sent;
8600 				if (data_list[i]->book_size_scale) {
8601 					/*
8602 					 * need to double the book size on
8603 					 * this one
8604 					 */
8605 					data_list[i]->book_size_scale = 0;
8606 					/*
8607 					 * Since we double the booksize, we
8608 					 * must also double the output queue
8609 					 * size, since this get shrunk when
8610 					 * we free by this amount.
8611 					 */
8612 					atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
8613 					data_list[i]->book_size *= 2;
8614 
8615 
8616 				} else {
8617 					if (sctp_logging_level & SCTP_LOG_RWND_ENABLE) {
8618 						sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
8619 						    asoc->peers_rwnd, data_list[i]->send_size, sctp_peer_chunk_oh);
8620 					}
8621 					asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
8622 					    (uint32_t) (data_list[i]->send_size +
8623 					    sctp_peer_chunk_oh));
8624 				}
8625 				if (sctp_logging_level & SCTP_FLIGHT_LOGGING_ENABLE) {
8626 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
8627 					    data_list[i]->whoTo->flight_size,
8628 					    data_list[i]->book_size,
8629 					    (uintptr_t) data_list[i]->whoTo,
8630 					    data_list[i]->rec.data.TSN_seq);
8631 				}
8632 				sctp_flight_size_increase(data_list[i]);
8633 				sctp_total_flight_increase(stcb, data_list[i]);
8634 				if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
8635 					/* SWS sender side engages */
8636 					asoc->peers_rwnd = 0;
8637 				}
8638 				if ((i == 0) &&
8639 				    (data_list[i]->rec.data.doing_fast_retransmit)) {
8640 					SCTP_STAT_INCR(sctps_sendfastretrans);
8641 					if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
8642 					    (tmr_started == 0)) {
8643 						/*-
8644 						 * ok we just fast-retrans'd
8645 						 * the lowest TSN, i.e the
8646 						 * first on the list. In
8647 						 * this case we want to give
8648 						 * some more time to get a
8649 						 * SACK back without a
8650 						 * t3-expiring.
8651 						 */
8652 						sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
8653 						    SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
8654 						sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8655 					}
8656 				}
8657 			}
8658 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8659 				sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
8660 			}
8661 #ifdef SCTP_AUDITING_ENABLED
8662 			sctp_auditing(21, inp, stcb, NULL);
8663 #endif
8664 		} else {
8665 			/* None will fit */
8666 			return (1);
8667 		}
8668 		if (asoc->sent_queue_retran_cnt <= 0) {
8669 			/* all done we have no more to retran */
8670 			asoc->sent_queue_retran_cnt = 0;
8671 			break;
8672 		}
8673 		if (one_chunk) {
8674 			/* No more room in rwnd */
8675 			return (1);
8676 		}
8677 		/* stop the for loop here. we sent out a packet */
8678 		break;
8679 	}
8680 	return (0);
8681 }
8682 
8683 
8684 static int
8685 sctp_timer_validation(struct sctp_inpcb *inp,
8686     struct sctp_tcb *stcb,
8687     struct sctp_association *asoc,
8688     int ret)
8689 {
8690 	struct sctp_nets *net;
8691 
8692 	/* Validate that a timer is running somewhere */
8693 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
8694 		if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8695 			/* Here is a timer */
8696 			return (ret);
8697 		}
8698 	}
8699 	SCTP_TCB_LOCK_ASSERT(stcb);
8700 	/* Gak, we did not have a timer somewhere */
8701 	SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
8702 	sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
8703 	return (ret);
8704 }
8705 
8706 void
8707 sctp_chunk_output(struct sctp_inpcb *inp,
8708     struct sctp_tcb *stcb,
8709     int from_where,
8710     int so_locked
8711 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
8712     SCTP_UNUSED
8713 #endif
8714 )
8715 {
8716 	/*-
8717 	 * Ok this is the generic chunk service queue. we must do the
8718 	 * following:
8719 	 * - See if there are retransmits pending, if so we must
8720 	 *   do these first.
8721 	 * - Service the stream queue that is next, moving any
8722 	 *   message (note I must get a complete message i.e.
8723 	 *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
8724 	 *   TSN's
8725 	 * - Check to see if the cwnd/rwnd allows any output, if so we
8726 	 *   go ahead and fomulate and send the low level chunks. Making sure
8727 	 *   to combine any control in the control chunk queue also.
8728 	 */
8729 	struct sctp_association *asoc;
8730 	struct sctp_nets *net;
8731 	int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0,
8732 	    burst_cnt = 0, burst_limit = 0;
8733 	struct timeval now;
8734 	int now_filled = 0;
8735 	int cwnd_full = 0;
8736 	int nagle_on = 0;
8737 	int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
8738 	int un_sent = 0;
8739 	int fr_done, tot_frs = 0;
8740 
8741 	asoc = &stcb->asoc;
8742 	if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
8743 		if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
8744 			nagle_on = 0;
8745 		} else {
8746 			nagle_on = 1;
8747 		}
8748 	}
8749 	SCTP_TCB_LOCK_ASSERT(stcb);
8750 
8751 	un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
8752 
8753 	if ((un_sent <= 0) &&
8754 	    (TAILQ_EMPTY(&asoc->control_send_queue)) &&
8755 	    (asoc->sent_queue_retran_cnt == 0)) {
8756 		/* Nothing to do unless there is something to be sent left */
8757 		return;
8758 	}
8759 	/*
8760 	 * Do we have something to send, data or control AND a sack timer
8761 	 * running, if so piggy-back the sack.
8762 	 */
8763 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8764 		sctp_send_sack(stcb);
8765 		(void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
8766 	}
8767 	while (asoc->sent_queue_retran_cnt) {
8768 		/*-
8769 		 * Ok, it is retransmission time only, we send out only ONE
8770 		 * packet with a single call off to the retran code.
8771 		 */
8772 		if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
8773 			/*-
8774 			 * Special hook for handling cookiess discarded
8775 			 * by peer that carried data. Send cookie-ack only
8776 			 * and then the next call with get the retran's.
8777 			 */
8778 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
8779 			    &cwnd_full, from_where,
8780 			    &now, &now_filled, frag_point, so_locked);
8781 			return;
8782 		} else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
8783 			/* if its not from a HB then do it */
8784 			fr_done = 0;
8785 			ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
8786 			if (fr_done) {
8787 				tot_frs++;
8788 			}
8789 		} else {
8790 			/*
8791 			 * its from any other place, we don't allow retran
8792 			 * output (only control)
8793 			 */
8794 			ret = 1;
8795 		}
8796 		if (ret > 0) {
8797 			/* Can't send anymore */
8798 			/*-
8799 			 * now lets push out control by calling med-level
8800 			 * output once. this assures that we WILL send HB's
8801 			 * if queued too.
8802 			 */
8803 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
8804 			    &cwnd_full, from_where,
8805 			    &now, &now_filled, frag_point, so_locked);
8806 #ifdef SCTP_AUDITING_ENABLED
8807 			sctp_auditing(8, inp, stcb, NULL);
8808 #endif
8809 			(void)sctp_timer_validation(inp, stcb, asoc, ret);
8810 			return;
8811 		}
8812 		if (ret < 0) {
8813 			/*-
8814 			 * The count was off.. retran is not happening so do
8815 			 * the normal retransmission.
8816 			 */
8817 #ifdef SCTP_AUDITING_ENABLED
8818 			sctp_auditing(9, inp, stcb, NULL);
8819 #endif
8820 			if (ret == SCTP_RETRAN_EXIT) {
8821 				return;
8822 			}
8823 			break;
8824 		}
8825 		if (from_where == SCTP_OUTPUT_FROM_T3) {
8826 			/* Only one transmission allowed out of a timeout */
8827 #ifdef SCTP_AUDITING_ENABLED
8828 			sctp_auditing(10, inp, stcb, NULL);
8829 #endif
8830 			/* Push out any control */
8831 			(void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, &cwnd_full, from_where,
8832 			    &now, &now_filled, frag_point, so_locked);
8833 			return;
8834 		}
8835 		if (tot_frs > asoc->max_burst) {
8836 			/* Hit FR burst limit */
8837 			return;
8838 		}
8839 		if ((num_out == 0) && (ret == 0)) {
8840 
8841 			/* No more retrans to send */
8842 			break;
8843 		}
8844 	}
8845 #ifdef SCTP_AUDITING_ENABLED
8846 	sctp_auditing(12, inp, stcb, NULL);
8847 #endif
8848 	/* Check for bad destinations, if they exist move chunks around. */
8849 	burst_limit = asoc->max_burst;
8850 	TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
8851 		if ((net->dest_state & SCTP_ADDR_NOT_REACHABLE) ==
8852 		    SCTP_ADDR_NOT_REACHABLE) {
8853 			/*-
8854 			 * if possible move things off of this address we
8855 			 * still may send below due to the dormant state but
8856 			 * we try to find an alternate address to send to
8857 			 * and if we have one we move all queued data on the
8858 			 * out wheel to this alternate address.
8859 			 */
8860 			if (net->ref_count > 1)
8861 				sctp_move_to_an_alt(stcb, asoc, net);
8862 		} else if (sctp_cmt_on_off && sctp_cmt_pf && ((net->dest_state & SCTP_ADDR_PF) ==
8863 		    SCTP_ADDR_PF)) {
8864 			/*
8865 			 * JRS 5/14/07 - If CMT PF is on and the current
8866 			 * destination is in PF state, move all queued data
8867 			 * to an alternate desination.
8868 			 */
8869 			if (net->ref_count > 1)
8870 				sctp_move_to_an_alt(stcb, asoc, net);
8871 		} else {
8872 			/*-
8873 			 * if ((asoc->sat_network) || (net->addr_is_local))
8874 			 * { burst_limit = asoc->max_burst *
8875 			 * SCTP_SAT_NETWORK_BURST_INCR; }
8876 			 */
8877 			if (sctp_use_cwnd_based_maxburst) {
8878 				if ((net->flight_size + (burst_limit * net->mtu)) < net->cwnd) {
8879 					/*
8880 					 * JRS - Use the congestion control
8881 					 * given in the congestion control
8882 					 * module
8883 					 */
8884 					asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, burst_limit);
8885 					if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8886 						sctp_log_maxburst(stcb, net, 0, burst_limit, SCTP_MAX_BURST_APPLIED);
8887 					}
8888 					SCTP_STAT_INCR(sctps_maxburstqueued);
8889 				}
8890 				net->fast_retran_ip = 0;
8891 			} else {
8892 				if (net->flight_size == 0) {
8893 					/* Should be decaying the cwnd here */
8894 					;
8895 				}
8896 			}
8897 		}
8898 
8899 	}
8900 	burst_cnt = 0;
8901 	cwnd_full = 0;
8902 	do {
8903 		error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
8904 		    &reason_code, 0, &cwnd_full, from_where,
8905 		    &now, &now_filled, frag_point, so_locked);
8906 		if (error) {
8907 			SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
8908 			if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8909 				sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
8910 			}
8911 			if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8912 				sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
8913 				sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
8914 			}
8915 			break;
8916 		}
8917 		SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
8918 
8919 		tot_out += num_out;
8920 		burst_cnt++;
8921 		if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8922 			sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
8923 			if (num_out == 0) {
8924 				sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
8925 			}
8926 		}
8927 		if (nagle_on) {
8928 			/*-
8929 			 * When nagle is on, we look at how much is un_sent, then
8930 			 * if its smaller than an MTU and we have data in
8931 			 * flight we stop.
8932 			 */
8933 			un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
8934 			    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count)
8935 			    * sizeof(struct sctp_data_chunk)));
8936 			if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
8937 			    (stcb->asoc.total_flight > 0)) {
8938 				break;
8939 			}
8940 		}
8941 		if (TAILQ_EMPTY(&asoc->control_send_queue) &&
8942 		    TAILQ_EMPTY(&asoc->send_queue) &&
8943 		    TAILQ_EMPTY(&asoc->out_wheel)) {
8944 			/* Nothing left to send */
8945 			break;
8946 		}
8947 		if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
8948 			/* Nothing left to send */
8949 			break;
8950 		}
8951 	} while (num_out && (sctp_use_cwnd_based_maxburst ||
8952 	    (burst_cnt < burst_limit)));
8953 
8954 	if (sctp_use_cwnd_based_maxburst == 0) {
8955 		if (burst_cnt >= burst_limit) {
8956 			SCTP_STAT_INCR(sctps_maxburstqueued);
8957 			asoc->burst_limit_applied = 1;
8958 			if (sctp_logging_level & SCTP_LOG_MAXBURST_ENABLE) {
8959 				sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
8960 			}
8961 		} else {
8962 			asoc->burst_limit_applied = 0;
8963 		}
8964 	}
8965 	if (sctp_logging_level & SCTP_CWND_LOGGING_ENABLE) {
8966 		sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
8967 	}
8968 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
8969 	    tot_out);
8970 
8971 	/*-
8972 	 * Now we need to clean up the control chunk chain if a ECNE is on
8973 	 * it. It must be marked as UNSENT again so next call will continue
8974 	 * to send it until such time that we get a CWR, to remove it.
8975 	 */
8976 	if (stcb->asoc.ecn_echo_cnt_onq)
8977 		sctp_fix_ecn_echo(asoc);
8978 	return;
8979 }
8980 
8981 
8982 int
8983 sctp_output(inp, m, addr, control, p, flags)
8984 	struct sctp_inpcb *inp;
8985 	struct mbuf *m;
8986 	struct sockaddr *addr;
8987 	struct mbuf *control;
8988 	struct thread *p;
8989 	int flags;
8990 {
8991 	if (inp == NULL) {
8992 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
8993 		return (EINVAL);
8994 	}
8995 	if (inp->sctp_socket == NULL) {
8996 		SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
8997 		return (EINVAL);
8998 	}
8999 	return (sctp_sosend(inp->sctp_socket,
9000 	    addr,
9001 	    (struct uio *)NULL,
9002 	    m,
9003 	    control,
9004 	    flags, p
9005 	    ));
9006 }
9007 
9008 void
9009 send_forward_tsn(struct sctp_tcb *stcb,
9010     struct sctp_association *asoc)
9011 {
9012 	struct sctp_tmit_chunk *chk;
9013 	struct sctp_forward_tsn_chunk *fwdtsn;
9014 
9015 	SCTP_TCB_LOCK_ASSERT(stcb);
9016 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9017 		if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9018 			/* mark it to unsent */
9019 			chk->sent = SCTP_DATAGRAM_UNSENT;
9020 			chk->snd_count = 0;
9021 			/* Do we correct its output location? */
9022 			if (chk->whoTo != asoc->primary_destination) {
9023 				sctp_free_remote_addr(chk->whoTo);
9024 				chk->whoTo = asoc->primary_destination;
9025 				atomic_add_int(&chk->whoTo->ref_count, 1);
9026 			}
9027 			goto sctp_fill_in_rest;
9028 		}
9029 	}
9030 	/* Ok if we reach here we must build one */
9031 	sctp_alloc_a_chunk(stcb, chk);
9032 	if (chk == NULL) {
9033 		return;
9034 	}
9035 	chk->copy_by_ref = 0;
9036 	chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
9037 	chk->rec.chunk_id.can_take_data = 0;
9038 	chk->asoc = asoc;
9039 	chk->whoTo = NULL;
9040 
9041 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
9042 	if (chk->data == NULL) {
9043 		sctp_free_a_chunk(stcb, chk);
9044 		return;
9045 	}
9046 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9047 	chk->sent = SCTP_DATAGRAM_UNSENT;
9048 	chk->snd_count = 0;
9049 	chk->whoTo = asoc->primary_destination;
9050 	atomic_add_int(&chk->whoTo->ref_count, 1);
9051 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
9052 	asoc->ctrl_queue_cnt++;
9053 sctp_fill_in_rest:
9054 	/*-
9055 	 * Here we go through and fill out the part that deals with
9056 	 * stream/seq of the ones we skip.
9057 	 */
9058 	SCTP_BUF_LEN(chk->data) = 0;
9059 	{
9060 		struct sctp_tmit_chunk *at, *tp1, *last;
9061 		struct sctp_strseq *strseq;
9062 		unsigned int cnt_of_space, i, ovh;
9063 		unsigned int space_needed;
9064 		unsigned int cnt_of_skipped = 0;
9065 
9066 		TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
9067 			if (at->sent != SCTP_FORWARD_TSN_SKIP) {
9068 				/* no more to look at */
9069 				break;
9070 			}
9071 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
9072 				/* We don't report these */
9073 				continue;
9074 			}
9075 			cnt_of_skipped++;
9076 		}
9077 		space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
9078 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
9079 
9080 		cnt_of_space = M_TRAILINGSPACE(chk->data);
9081 
9082 		if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
9083 			ovh = SCTP_MIN_OVERHEAD;
9084 		} else {
9085 			ovh = SCTP_MIN_V4_OVERHEAD;
9086 		}
9087 		if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
9088 			/* trim to a mtu size */
9089 			cnt_of_space = asoc->smallest_mtu - ovh;
9090 		}
9091 		if (cnt_of_space < space_needed) {
9092 			/*-
9093 			 * ok we must trim down the chunk by lowering the
9094 			 * advance peer ack point.
9095 			 */
9096 			cnt_of_skipped = (cnt_of_space -
9097 			    ((sizeof(struct sctp_forward_tsn_chunk)) /
9098 			    sizeof(struct sctp_strseq)));
9099 			/*-
9100 			 * Go through and find the TSN that will be the one
9101 			 * we report.
9102 			 */
9103 			at = TAILQ_FIRST(&asoc->sent_queue);
9104 			for (i = 0; i < cnt_of_skipped; i++) {
9105 				tp1 = TAILQ_NEXT(at, sctp_next);
9106 				at = tp1;
9107 			}
9108 			last = at;
9109 			/*-
9110 			 * last now points to last one I can report, update
9111 			 * peer ack point
9112 			 */
9113 			asoc->advanced_peer_ack_point = last->rec.data.TSN_seq;
9114 			space_needed -= (cnt_of_skipped * sizeof(struct sctp_strseq));
9115 		}
9116 		chk->send_size = space_needed;
9117 		/* Setup the chunk */
9118 		fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
9119 		fwdtsn->ch.chunk_length = htons(chk->send_size);
9120 		fwdtsn->ch.chunk_flags = 0;
9121 		fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
9122 		fwdtsn->new_cumulative_tsn = htonl(asoc->advanced_peer_ack_point);
9123 		chk->send_size = (sizeof(struct sctp_forward_tsn_chunk) +
9124 		    (cnt_of_skipped * sizeof(struct sctp_strseq)));
9125 		SCTP_BUF_LEN(chk->data) = chk->send_size;
9126 		fwdtsn++;
9127 		/*-
9128 		 * Move pointer to after the fwdtsn and transfer to the
9129 		 * strseq pointer.
9130 		 */
9131 		strseq = (struct sctp_strseq *)fwdtsn;
9132 		/*-
9133 		 * Now populate the strseq list. This is done blindly
9134 		 * without pulling out duplicate stream info. This is
9135 		 * inefficent but won't harm the process since the peer will
9136 		 * look at these in sequence and will thus release anything.
9137 		 * It could mean we exceed the PMTU and chop off some that
9138 		 * we could have included.. but this is unlikely (aka 1432/4
9139 		 * would mean 300+ stream seq's would have to be reported in
9140 		 * one FWD-TSN. With a bit of work we can later FIX this to
9141 		 * optimize and pull out duplcates.. but it does add more
9142 		 * overhead. So for now... not!
9143 		 */
9144 		at = TAILQ_FIRST(&asoc->sent_queue);
9145 		for (i = 0; i < cnt_of_skipped; i++) {
9146 			tp1 = TAILQ_NEXT(at, sctp_next);
9147 			if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
9148 				/* We don't report these */
9149 				i--;
9150 				at = tp1;
9151 				continue;
9152 			}
9153 			strseq->stream = ntohs(at->rec.data.stream_number);
9154 			strseq->sequence = ntohs(at->rec.data.stream_seq);
9155 			strseq++;
9156 			at = tp1;
9157 		}
9158 	}
9159 	return;
9160 
9161 }
9162 
9163 void
9164 sctp_send_sack(struct sctp_tcb *stcb)
9165 {
9166 	/*-
9167 	 * Queue up a SACK in the control queue. We must first check to see
9168 	 * if a SACK is somehow on the control queue. If so, we will take
9169 	 * and and remove the old one.
9170 	 */
9171 	struct sctp_association *asoc;
9172 	struct sctp_tmit_chunk *chk, *a_chk;
9173 	struct sctp_sack_chunk *sack;
9174 	struct sctp_gap_ack_block *gap_descriptor;
9175 	struct sack_track *selector;
9176 	int mergeable = 0;
9177 	int offset;
9178 	caddr_t limit;
9179 	uint32_t *dup;
9180 	int limit_reached = 0;
9181 	unsigned int i, jstart, siz, j;
9182 	unsigned int num_gap_blocks = 0, space;
9183 	int num_dups = 0;
9184 	int space_req;
9185 
9186 	a_chk = NULL;
9187 	asoc = &stcb->asoc;
9188 	SCTP_TCB_LOCK_ASSERT(stcb);
9189 	if (asoc->last_data_chunk_from == NULL) {
9190 		/* Hmm we never received anything */
9191 		return;
9192 	}
9193 	sctp_set_rwnd(stcb, asoc);
9194 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9195 		if (chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) {
9196 			/* Hmm, found a sack already on queue, remove it */
9197 			TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
9198 			asoc->ctrl_queue_cnt++;
9199 			a_chk = chk;
9200 			if (a_chk->data) {
9201 				sctp_m_freem(a_chk->data);
9202 				a_chk->data = NULL;
9203 			}
9204 			sctp_free_remote_addr(a_chk->whoTo);
9205 			a_chk->whoTo = NULL;
9206 			break;
9207 		}
9208 	}
9209 	if (a_chk == NULL) {
9210 		sctp_alloc_a_chunk(stcb, a_chk);
9211 		if (a_chk == NULL) {
9212 			/* No memory so we drop the idea, and set a timer */
9213 			if (stcb->asoc.delayed_ack) {
9214 				sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
9215 				    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
9216 				sctp_timer_start(SCTP_TIMER_TYPE_RECV,
9217 				    stcb->sctp_ep, stcb, NULL);
9218 			} else {
9219 				stcb->asoc.send_sack = 1;
9220 			}
9221 			return;
9222 		}
9223 		a_chk->copy_by_ref = 0;
9224 		/* a_chk->rec.chunk_id.id = SCTP_SELECTIVE_ACK; */
9225 		a_chk->rec.chunk_id.id = SCTP_SELECTIVE_ACK;
9226 		a_chk->rec.chunk_id.can_take_data = 1;
9227 	}
9228 	/* Clear our pkt counts */
9229 	asoc->data_pkts_seen = 0;
9230 
9231 	a_chk->asoc = asoc;
9232 	a_chk->snd_count = 0;
9233 	a_chk->send_size = 0;	/* fill in later */
9234 	a_chk->sent = SCTP_DATAGRAM_UNSENT;
9235 	a_chk->whoTo = NULL;
9236 
9237 	if ((asoc->numduptsns) ||
9238 	    (asoc->last_data_chunk_from->dest_state & SCTP_ADDR_NOT_REACHABLE)
9239 	    ) {
9240 		/*-
9241 		 * Ok, we have some duplicates or the destination for the
9242 		 * sack is unreachable, lets see if we can select an
9243 		 * alternate than asoc->last_data_chunk_from
9244 		 */
9245 		if ((!(asoc->last_data_chunk_from->dest_state &
9246 		    SCTP_ADDR_NOT_REACHABLE)) &&
9247 		    (asoc->used_alt_onsack > asoc->numnets)) {
9248 			/* We used an alt last time, don't this time */
9249 			a_chk->whoTo = NULL;
9250 		} else {
9251 			asoc->used_alt_onsack++;
9252 			a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
9253 		}
9254 		if (a_chk->whoTo == NULL) {
9255 			/* Nope, no alternate */
9256 			a_chk->whoTo = asoc->last_data_chunk_from;
9257 			asoc->used_alt_onsack = 0;
9258 		}
9259 	} else {
9260 		/*
9261 		 * No duplicates so we use the last place we received data
9262 		 * from.
9263 		 */
9264 		asoc->used_alt_onsack = 0;
9265 		a_chk->whoTo = asoc->last_data_chunk_from;
9266 	}
9267 	if (a_chk->whoTo) {
9268 		atomic_add_int(&a_chk->whoTo->ref_count, 1);
9269 	}
9270 	if (asoc->highest_tsn_inside_map == asoc->cumulative_tsn) {
9271 		/* no gaps */
9272 		space_req = sizeof(struct sctp_sack_chunk);
9273 	} else {
9274 		/* gaps get a cluster */
9275 		space_req = MCLBYTES;
9276 	}
9277 	/* Ok now lets formulate a MBUF with our sack */
9278 	a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_DONTWAIT, 1, MT_DATA);
9279 	if ((a_chk->data == NULL) ||
9280 	    (a_chk->whoTo == NULL)) {
9281 		/* rats, no mbuf memory */
9282 		if (a_chk->data) {
9283 			/* was a problem with the destination */
9284 			sctp_m_freem(a_chk->data);
9285 			a_chk->data = NULL;
9286 		}
9287 		sctp_free_a_chunk(stcb, a_chk);
9288 		/* sa_ignore NO_NULL_CHK */
9289 		if (stcb->asoc.delayed_ack) {
9290 			sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
9291 			    stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
9292 			sctp_timer_start(SCTP_TIMER_TYPE_RECV,
9293 			    stcb->sctp_ep, stcb, NULL);
9294 		} else {
9295 			stcb->asoc.send_sack = 1;
9296 		}
9297 		return;
9298 	}
9299 	/* ok, lets go through and fill it in */
9300 	SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
9301 	space = M_TRAILINGSPACE(a_chk->data);
9302 	if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
9303 		space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
9304 	}
9305 	limit = mtod(a_chk->data, caddr_t);
9306 	limit += space;
9307 
9308 	sack = mtod(a_chk->data, struct sctp_sack_chunk *);
9309 	sack->ch.chunk_type = SCTP_SELECTIVE_ACK;
9310 	/* 0x01 is used by nonce for ecn */
9311 	if ((sctp_ecn_enable) &&
9312 	    (sctp_ecn_nonce) &&
9313 	    (asoc->peer_supports_ecn_nonce))
9314 		sack->ch.chunk_flags = (asoc->receiver_nonce_sum & SCTP_SACK_NONCE_SUM);
9315 	else
9316 		sack->ch.chunk_flags = 0;
9317 
9318 	if (sctp_cmt_on_off && sctp_cmt_use_dac) {
9319 		/*-
9320 		 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
9321 		 * received, then set high bit to 1, else 0. Reset
9322 		 * pkts_rcvd.
9323 		 */
9324 		sack->ch.chunk_flags |= (asoc->cmt_dac_pkts_rcvd << 6);
9325 		asoc->cmt_dac_pkts_rcvd = 0;
9326 	}
9327 #ifdef SCTP_ASOCLOG_OF_TSNS
9328 	stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
9329 	stcb->asoc.cumack_log_atsnt++;
9330 	if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
9331 		stcb->asoc.cumack_log_atsnt = 0;
9332 	}
9333 #endif
9334 	sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
9335 	sack->sack.a_rwnd = htonl(asoc->my_rwnd);
9336 	asoc->my_last_reported_rwnd = asoc->my_rwnd;
9337 
9338 	/* reset the readers interpretation */
9339 	stcb->freed_by_sorcv_sincelast = 0;
9340 
9341 	gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
9342 
9343 	siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
9344 	if (compare_with_wrap(asoc->mapping_array_base_tsn, asoc->cumulative_tsn, MAX_TSN)) {
9345 		offset = 1;
9346 		/*-
9347 		 * cum-ack behind the mapping array, so we start and use all
9348 		 * entries.
9349 		 */
9350 		jstart = 0;
9351 	} else {
9352 		offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
9353 		/*-
9354 		 * we skip the first one when the cum-ack is at or above the
9355 		 * mapping array base. Note this only works if
9356 		 */
9357 		jstart = 1;
9358 	}
9359 	if (compare_with_wrap(asoc->highest_tsn_inside_map, asoc->cumulative_tsn, MAX_TSN)) {
9360 		/* we have a gap .. maybe */
9361 		for (i = 0; i < siz; i++) {
9362 			selector = &sack_array[asoc->mapping_array[i]];
9363 			if (mergeable && selector->right_edge) {
9364 				/*
9365 				 * Backup, left and right edges were ok to
9366 				 * merge.
9367 				 */
9368 				num_gap_blocks--;
9369 				gap_descriptor--;
9370 			}
9371 			if (selector->num_entries == 0)
9372 				mergeable = 0;
9373 			else {
9374 				for (j = jstart; j < selector->num_entries; j++) {
9375 					if (mergeable && selector->right_edge) {
9376 						/*
9377 						 * do a merge by NOT setting
9378 						 * the left side
9379 						 */
9380 						mergeable = 0;
9381 					} else {
9382 						/*
9383 						 * no merge, set the left
9384 						 * side
9385 						 */
9386 						mergeable = 0;
9387 						gap_descriptor->start = htons((selector->gaps[j].start + offset));
9388 					}
9389 					gap_descriptor->end = htons((selector->gaps[j].end + offset));
9390 					num_gap_blocks++;
9391 					gap_descriptor++;
9392 					if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
9393 						/* no more room */
9394 						limit_reached = 1;
9395 						break;
9396 					}
9397 				}
9398 				if (selector->left_edge) {
9399 					mergeable = 1;
9400 				}
9401 			}
9402 			if (limit_reached) {
9403 				/* Reached the limit stop */
9404 				break;
9405 			}
9406 			jstart = 0;
9407 			offset += 8;
9408 		}
9409 		if (num_gap_blocks == 0) {
9410 			/*
9411 			 * slide not yet happened, and somehow we got called
9412 			 * to send a sack. Cumack needs to move up.
9413 			 */
9414 			int abort_flag = 0;
9415 
9416 			asoc->cumulative_tsn = asoc->highest_tsn_inside_map;
9417 			sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
9418 			sctp_sack_check(stcb, 0, 0, &abort_flag);
9419 		}
9420 	}
9421 	/* now we must add any dups we are going to report. */
9422 	if ((limit_reached == 0) && (asoc->numduptsns)) {
9423 		dup = (uint32_t *) gap_descriptor;
9424 		for (i = 0; i < asoc->numduptsns; i++) {
9425 			*dup = htonl(asoc->dup_tsns[i]);
9426 			dup++;
9427 			num_dups++;
9428 			if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
9429 				/* no more room */
9430 				break;
9431 			}
9432 		}
9433 		asoc->numduptsns = 0;
9434 	}
9435 	/*
9436 	 * now that the chunk is prepared queue it to the control chunk
9437 	 * queue.
9438 	 */
9439 	a_chk->send_size = (sizeof(struct sctp_sack_chunk) +
9440 	    (num_gap_blocks * sizeof(struct sctp_gap_ack_block)) +
9441 	    (num_dups * sizeof(int32_t)));
9442 	SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
9443 	sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
9444 	sack->sack.num_dup_tsns = htons(num_dups);
9445 	sack->ch.chunk_length = htons(a_chk->send_size);
9446 	TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
9447 	asoc->ctrl_queue_cnt++;
9448 	asoc->send_sack = 0;
9449 	SCTP_STAT_INCR(sctps_sendsacks);
9450 	return;
9451 }
9452 
9453 
9454 void
9455 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
9456 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9457     SCTP_UNUSED
9458 #endif
9459 )
9460 {
9461 	struct mbuf *m_abort;
9462 	struct mbuf *m_out = NULL, *m_end = NULL;
9463 	struct sctp_abort_chunk *abort = NULL;
9464 	int sz;
9465 	uint32_t auth_offset = 0;
9466 	struct sctp_auth_chunk *auth = NULL;
9467 	struct sctphdr *shdr;
9468 
9469 	/*-
9470 	 * Add an AUTH chunk, if chunk requires it and save the offset into
9471 	 * the chain for AUTH
9472 	 */
9473 	if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
9474 	    stcb->asoc.peer_auth_chunks)) {
9475 		m_out = sctp_add_auth_chunk(m_out, &m_end, &auth, &auth_offset,
9476 		    stcb, SCTP_ABORT_ASSOCIATION);
9477 	}
9478 	SCTP_TCB_LOCK_ASSERT(stcb);
9479 	m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_DONTWAIT, 1, MT_HEADER);
9480 	if (m_abort == NULL) {
9481 		/* no mbuf's */
9482 		if (m_out)
9483 			sctp_m_freem(m_out);
9484 		return;
9485 	}
9486 	/* link in any error */
9487 	SCTP_BUF_NEXT(m_abort) = operr;
9488 	sz = 0;
9489 	if (operr) {
9490 		struct mbuf *n;
9491 
9492 		n = operr;
9493 		while (n) {
9494 			sz += SCTP_BUF_LEN(n);
9495 			n = SCTP_BUF_NEXT(n);
9496 		}
9497 	}
9498 	SCTP_BUF_LEN(m_abort) = sizeof(*abort);
9499 	if (m_out == NULL) {
9500 		/* NO Auth chunk prepended, so reserve space in front */
9501 		SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
9502 		m_out = m_abort;
9503 	} else {
9504 		/* Put AUTH chunk at the front of the chain */
9505 		SCTP_BUF_NEXT(m_end) = m_abort;
9506 	}
9507 
9508 	/* fill in the ABORT chunk */
9509 	abort = mtod(m_abort, struct sctp_abort_chunk *);
9510 	abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
9511 	abort->ch.chunk_flags = 0;
9512 	abort->ch.chunk_length = htons(sizeof(*abort) + sz);
9513 
9514 	/* prepend and fill in the SCTP header */
9515 	SCTP_BUF_PREPEND(m_out, sizeof(struct sctphdr), M_DONTWAIT);
9516 	if (m_out == NULL) {
9517 		/* TSNH: no memory */
9518 		return;
9519 	}
9520 	shdr = mtod(m_out, struct sctphdr *);
9521 	shdr->src_port = stcb->sctp_ep->sctp_lport;
9522 	shdr->dest_port = stcb->rport;
9523 	shdr->v_tag = htonl(stcb->asoc.peer_vtag);
9524 	shdr->checksum = 0;
9525 	auth_offset += sizeof(struct sctphdr);
9526 
9527 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb,
9528 	    stcb->asoc.primary_destination,
9529 	    (struct sockaddr *)&stcb->asoc.primary_destination->ro._l_addr,
9530 	    m_out, auth_offset, auth, 1, 0, NULL, 0, so_locked);
9531 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9532 }
9533 
9534 void
9535 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
9536     struct sctp_nets *net)
9537 {
9538 	/* formulate and SEND a SHUTDOWN-COMPLETE */
9539 	struct mbuf *m_shutdown_comp;
9540 	struct sctp_shutdown_complete_msg *comp_cp;
9541 
9542 	m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_complete_msg), 0, M_DONTWAIT, 1, MT_HEADER);
9543 	if (m_shutdown_comp == NULL) {
9544 		/* no mbuf's */
9545 		return;
9546 	}
9547 	comp_cp = mtod(m_shutdown_comp, struct sctp_shutdown_complete_msg *);
9548 	comp_cp->shut_cmp.ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
9549 	comp_cp->shut_cmp.ch.chunk_flags = 0;
9550 	comp_cp->shut_cmp.ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
9551 	comp_cp->sh.src_port = stcb->sctp_ep->sctp_lport;
9552 	comp_cp->sh.dest_port = stcb->rport;
9553 	comp_cp->sh.v_tag = htonl(stcb->asoc.peer_vtag);
9554 	comp_cp->sh.checksum = 0;
9555 
9556 	SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_msg);
9557 	(void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
9558 	    (struct sockaddr *)&net->ro._l_addr,
9559 	    m_shutdown_comp, 0, NULL, 1, 0, NULL, 0, SCTP_SO_NOT_LOCKED);
9560 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9561 	return;
9562 }
9563 
9564 void
9565 sctp_send_shutdown_complete2(struct mbuf *m, int iphlen, struct sctphdr *sh,
9566     uint32_t vrf_id)
9567 {
9568 	/* formulate and SEND a SHUTDOWN-COMPLETE */
9569 	struct mbuf *o_pak;
9570 	struct mbuf *mout;
9571 	struct ip *iph, *iph_out;
9572 	struct ip6_hdr *ip6, *ip6_out;
9573 	int offset_out, len, mlen;
9574 	struct sctp_shutdown_complete_msg *comp_cp;
9575 
9576 	/* Get room for the largest message */
9577 	len = (sizeof(struct ip6_hdr) + sizeof(struct sctp_shutdown_complete_msg));
9578 	mout = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
9579 	if (mout == NULL) {
9580 		return;
9581 	}
9582 	SCTP_BUF_LEN(mout) = len;
9583 	iph = mtod(m, struct ip *);
9584 	iph_out = NULL;
9585 	ip6_out = NULL;
9586 	offset_out = 0;
9587 	if (iph->ip_v == IPVERSION) {
9588 		SCTP_BUF_LEN(mout) = sizeof(struct ip) +
9589 		    sizeof(struct sctp_shutdown_complete_msg);
9590 		SCTP_BUF_NEXT(mout) = NULL;
9591 		iph_out = mtod(mout, struct ip *);
9592 
9593 		/* Fill in the IP header for the ABORT */
9594 		iph_out->ip_v = IPVERSION;
9595 		iph_out->ip_hl = (sizeof(struct ip) / 4);
9596 		iph_out->ip_tos = (u_char)0;
9597 		iph_out->ip_id = 0;
9598 		iph_out->ip_off = 0;
9599 		iph_out->ip_ttl = MAXTTL;
9600 		iph_out->ip_p = IPPROTO_SCTP;
9601 		iph_out->ip_src.s_addr = iph->ip_dst.s_addr;
9602 		iph_out->ip_dst.s_addr = iph->ip_src.s_addr;
9603 
9604 		/* let IP layer calculate this */
9605 		iph_out->ip_sum = 0;
9606 		offset_out += sizeof(*iph_out);
9607 		comp_cp = (struct sctp_shutdown_complete_msg *)(
9608 		    (caddr_t)iph_out + offset_out);
9609 	} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
9610 		ip6 = (struct ip6_hdr *)iph;
9611 		SCTP_BUF_LEN(mout) = sizeof(struct ip6_hdr) +
9612 		    sizeof(struct sctp_shutdown_complete_msg);
9613 		SCTP_BUF_NEXT(mout) = NULL;
9614 		ip6_out = mtod(mout, struct ip6_hdr *);
9615 
9616 		/* Fill in the IPv6 header for the ABORT */
9617 		ip6_out->ip6_flow = ip6->ip6_flow;
9618 		ip6_out->ip6_hlim = ip6_defhlim;
9619 		ip6_out->ip6_nxt = IPPROTO_SCTP;
9620 		ip6_out->ip6_src = ip6->ip6_dst;
9621 		ip6_out->ip6_dst = ip6->ip6_src;
9622 		/*
9623 		 * ?? The old code had both the iph len + payload, I think
9624 		 * this is wrong and would never have worked
9625 		 */
9626 		ip6_out->ip6_plen = sizeof(struct sctp_shutdown_complete_msg);
9627 		offset_out += sizeof(*ip6_out);
9628 		comp_cp = (struct sctp_shutdown_complete_msg *)(
9629 		    (caddr_t)ip6_out + offset_out);
9630 	} else {
9631 		/* Currently not supported. */
9632 		return;
9633 	}
9634 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
9635 		/* no mbuf's */
9636 		sctp_m_freem(mout);
9637 		return;
9638 	}
9639 	/* Now copy in and fill in the ABORT tags etc. */
9640 	comp_cp->sh.src_port = sh->dest_port;
9641 	comp_cp->sh.dest_port = sh->src_port;
9642 	comp_cp->sh.checksum = 0;
9643 	comp_cp->sh.v_tag = sh->v_tag;
9644 	comp_cp->shut_cmp.ch.chunk_flags = SCTP_HAD_NO_TCB;
9645 	comp_cp->shut_cmp.ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
9646 	comp_cp->shut_cmp.ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
9647 
9648 	/* add checksum */
9649 	comp_cp->sh.checksum = sctp_calculate_sum(mout, NULL, offset_out);
9650 	if (iph_out != NULL) {
9651 		sctp_route_t ro;
9652 		int ret;
9653 		struct sctp_tcb *stcb = NULL;
9654 
9655 		mlen = SCTP_BUF_LEN(mout);
9656 		bzero(&ro, sizeof ro);
9657 		/* set IPv4 length */
9658 		iph_out->ip_len = mlen;
9659 #ifdef  SCTP_PACKET_LOGGING
9660 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
9661 			sctp_packet_log(mout, mlen);
9662 #endif
9663 		SCTP_ATTACH_CHAIN(o_pak, mout, mlen);
9664 
9665 		/* out it goes */
9666 		SCTP_IP_OUTPUT(ret, o_pak, &ro, stcb, vrf_id);
9667 
9668 		/* Free the route if we got one back */
9669 		if (ro.ro_rt)
9670 			RTFREE(ro.ro_rt);
9671 	} else if (ip6_out != NULL) {
9672 		struct route_in6 ro;
9673 		int ret;
9674 		struct sctp_tcb *stcb = NULL;
9675 		struct ifnet *ifp = NULL;
9676 
9677 		bzero(&ro, sizeof(ro));
9678 		mlen = SCTP_BUF_LEN(mout);
9679 #ifdef  SCTP_PACKET_LOGGING
9680 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
9681 			sctp_packet_log(mout, mlen);
9682 #endif
9683 		SCTP_ATTACH_CHAIN(o_pak, mout, mlen);
9684 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
9685 
9686 		/* Free the route if we got one back */
9687 		if (ro.ro_rt)
9688 			RTFREE(ro.ro_rt);
9689 	}
9690 	SCTP_STAT_INCR(sctps_sendpackets);
9691 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
9692 	SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9693 	return;
9694 
9695 }
9696 
9697 static struct sctp_nets *
9698 sctp_select_hb_destination(struct sctp_tcb *stcb, struct timeval *now)
9699 {
9700 	struct sctp_nets *net, *hnet;
9701 	int ms_goneby, highest_ms, state_overide = 0;
9702 
9703 	(void)SCTP_GETTIME_TIMEVAL(now);
9704 	highest_ms = 0;
9705 	hnet = NULL;
9706 	SCTP_TCB_LOCK_ASSERT(stcb);
9707 	TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
9708 		if (
9709 		    ((net->dest_state & SCTP_ADDR_NOHB) && ((net->dest_state & SCTP_ADDR_UNCONFIRMED) == 0)) ||
9710 		    (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)
9711 		    ) {
9712 			/*
9713 			 * Skip this guy from consideration if HB is off AND
9714 			 * its confirmed
9715 			 */
9716 			continue;
9717 		}
9718 		if (sctp_destination_is_reachable(stcb, (struct sockaddr *)&net->ro._l_addr) == 0) {
9719 			/* skip this dest net from consideration */
9720 			continue;
9721 		}
9722 		if (net->last_sent_time.tv_sec) {
9723 			/* Sent to so we subtract */
9724 			ms_goneby = (now->tv_sec - net->last_sent_time.tv_sec) * 1000;
9725 		} else
9726 			/* Never been sent to */
9727 			ms_goneby = 0x7fffffff;
9728 		/*-
9729 		 * When the address state is unconfirmed but still
9730 		 * considered reachable, we HB at a higher rate. Once it
9731 		 * goes confirmed OR reaches the "unreachable" state, thenw
9732 		 * we cut it back to HB at a more normal pace.
9733 		 */
9734 		if ((net->dest_state & (SCTP_ADDR_UNCONFIRMED | SCTP_ADDR_NOT_REACHABLE)) == SCTP_ADDR_UNCONFIRMED) {
9735 			state_overide = 1;
9736 		} else {
9737 			state_overide = 0;
9738 		}
9739 
9740 		if ((((unsigned int)ms_goneby >= net->RTO) || (state_overide)) &&
9741 		    (ms_goneby > highest_ms)) {
9742 			highest_ms = ms_goneby;
9743 			hnet = net;
9744 		}
9745 	}
9746 	if (hnet &&
9747 	    ((hnet->dest_state & (SCTP_ADDR_UNCONFIRMED | SCTP_ADDR_NOT_REACHABLE)) == SCTP_ADDR_UNCONFIRMED)) {
9748 		state_overide = 1;
9749 	} else {
9750 		state_overide = 0;
9751 	}
9752 
9753 	if (hnet && highest_ms && (((unsigned int)highest_ms >= hnet->RTO) || state_overide)) {
9754 		/*-
9755 		 * Found the one with longest delay bounds OR it is
9756 		 * unconfirmed and still not marked unreachable.
9757 		 */
9758 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "net:%p is the hb winner -", hnet);
9759 #ifdef SCTP_DEBUG
9760 		if (hnet) {
9761 			SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT4,
9762 			    (struct sockaddr *)&hnet->ro._l_addr);
9763 		} else {
9764 			SCTPDBG(SCTP_DEBUG_OUTPUT4, " none\n");
9765 		}
9766 #endif
9767 		/* update the timer now */
9768 		hnet->last_sent_time = *now;
9769 		return (hnet);
9770 	}
9771 	/* Nothing to HB */
9772 	return (NULL);
9773 }
9774 
9775 int
9776 sctp_send_hb(struct sctp_tcb *stcb, int user_req, struct sctp_nets *u_net)
9777 {
9778 	struct sctp_tmit_chunk *chk;
9779 	struct sctp_nets *net;
9780 	struct sctp_heartbeat_chunk *hb;
9781 	struct timeval now;
9782 	struct sockaddr_in *sin;
9783 	struct sockaddr_in6 *sin6;
9784 
9785 	SCTP_TCB_LOCK_ASSERT(stcb);
9786 	if (user_req == 0) {
9787 		net = sctp_select_hb_destination(stcb, &now);
9788 		if (net == NULL) {
9789 			/*-
9790 			 * All our busy none to send to, just start the
9791 			 * timer again.
9792 			 */
9793 			if (stcb->asoc.state == 0) {
9794 				return (0);
9795 			}
9796 			sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT,
9797 			    stcb->sctp_ep,
9798 			    stcb,
9799 			    net);
9800 			return (0);
9801 		}
9802 	} else {
9803 		net = u_net;
9804 		if (net == NULL) {
9805 			return (0);
9806 		}
9807 		(void)SCTP_GETTIME_TIMEVAL(&now);
9808 	}
9809 	sin = (struct sockaddr_in *)&net->ro._l_addr;
9810 	if (sin->sin_family != AF_INET) {
9811 		if (sin->sin_family != AF_INET6) {
9812 			/* huh */
9813 			return (0);
9814 		}
9815 	}
9816 	sctp_alloc_a_chunk(stcb, chk);
9817 	if (chk == NULL) {
9818 		SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
9819 		return (0);
9820 	}
9821 	chk->copy_by_ref = 0;
9822 	chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
9823 	chk->rec.chunk_id.can_take_data = 1;
9824 	chk->asoc = &stcb->asoc;
9825 	chk->send_size = sizeof(struct sctp_heartbeat_chunk);
9826 
9827 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
9828 	if (chk->data == NULL) {
9829 		sctp_free_a_chunk(stcb, chk);
9830 		return (0);
9831 	}
9832 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9833 	SCTP_BUF_LEN(chk->data) = chk->send_size;
9834 	chk->sent = SCTP_DATAGRAM_UNSENT;
9835 	chk->snd_count = 0;
9836 	chk->whoTo = net;
9837 	atomic_add_int(&chk->whoTo->ref_count, 1);
9838 	/* Now we have a mbuf that we can fill in with the details */
9839 	hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
9840 	memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
9841 	/* fill out chunk header */
9842 	hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
9843 	hb->ch.chunk_flags = 0;
9844 	hb->ch.chunk_length = htons(chk->send_size);
9845 	/* Fill out hb parameter */
9846 	hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
9847 	hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
9848 	hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
9849 	hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
9850 	/* Did our user request this one, put it in */
9851 	hb->heartbeat.hb_info.user_req = user_req;
9852 	hb->heartbeat.hb_info.addr_family = sin->sin_family;
9853 	hb->heartbeat.hb_info.addr_len = sin->sin_len;
9854 	if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
9855 		/*
9856 		 * we only take from the entropy pool if the address is not
9857 		 * confirmed.
9858 		 */
9859 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
9860 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
9861 	} else {
9862 		net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
9863 		net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
9864 	}
9865 	if (sin->sin_family == AF_INET) {
9866 		memcpy(hb->heartbeat.hb_info.address, &sin->sin_addr, sizeof(sin->sin_addr));
9867 	} else if (sin->sin_family == AF_INET6) {
9868 		/* We leave the scope the way it is in our lookup table. */
9869 		sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
9870 		memcpy(hb->heartbeat.hb_info.address, &sin6->sin6_addr, sizeof(sin6->sin6_addr));
9871 	} else {
9872 		/* huh compiler bug */
9873 		return (0);
9874 	}
9875 
9876 	/*
9877 	 * JRS 5/14/07 - In CMT PF, the T3 timer is used to track
9878 	 * PF-heartbeats.  Because of this, threshold management is done by
9879 	 * the t3 timer handler, and does not need to be done upon the send
9880 	 * of a PF-heartbeat. If CMT PF is on and the destination to which a
9881 	 * heartbeat is being sent is in PF state, do NOT do threshold
9882 	 * management.
9883 	 */
9884 	if ((sctp_cmt_pf == 0) || ((net->dest_state & SCTP_ADDR_PF) != SCTP_ADDR_PF)) {
9885 		/* ok we have a destination that needs a beat */
9886 		/* lets do the theshold management Qiaobing style */
9887 		if (sctp_threshold_management(stcb->sctp_ep, stcb, net,
9888 		    stcb->asoc.max_send_times)) {
9889 			/*-
9890 			 * we have lost the association, in a way this is
9891 			 * quite bad since we really are one less time since
9892 			 * we really did not send yet. This is the down side
9893 			 * to the Q's style as defined in the RFC and not my
9894 			 * alternate style defined in the RFC.
9895 			 */
9896 			if (chk->data != NULL) {
9897 				sctp_m_freem(chk->data);
9898 				chk->data = NULL;
9899 			}
9900 			/*
9901 			 * Here we do NOT use the macro since the
9902 			 * association is now gone.
9903 			 */
9904 			if (chk->whoTo) {
9905 				sctp_free_remote_addr(chk->whoTo);
9906 				chk->whoTo = NULL;
9907 			}
9908 			sctp_free_a_chunk((struct sctp_tcb *)NULL, chk);
9909 			return (-1);
9910 		}
9911 	}
9912 	net->hb_responded = 0;
9913 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
9914 	stcb->asoc.ctrl_queue_cnt++;
9915 	SCTP_STAT_INCR(sctps_sendheartbeat);
9916 	/*-
9917 	 * Call directly med level routine to put out the chunk. It will
9918 	 * always tumble out control chunks aka HB but it may even tumble
9919 	 * out data too.
9920 	 */
9921 	return (1);
9922 }
9923 
9924 void
9925 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
9926     uint32_t high_tsn)
9927 {
9928 	struct sctp_association *asoc;
9929 	struct sctp_ecne_chunk *ecne;
9930 	struct sctp_tmit_chunk *chk;
9931 
9932 	asoc = &stcb->asoc;
9933 	SCTP_TCB_LOCK_ASSERT(stcb);
9934 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9935 		if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
9936 			/* found a previous ECN_ECHO update it if needed */
9937 			ecne = mtod(chk->data, struct sctp_ecne_chunk *);
9938 			ecne->tsn = htonl(high_tsn);
9939 			return;
9940 		}
9941 	}
9942 	/* nope could not find one to update so we must build one */
9943 	sctp_alloc_a_chunk(stcb, chk);
9944 	if (chk == NULL) {
9945 		return;
9946 	}
9947 	chk->copy_by_ref = 0;
9948 	SCTP_STAT_INCR(sctps_sendecne);
9949 	chk->rec.chunk_id.id = SCTP_ECN_ECHO;
9950 	chk->rec.chunk_id.can_take_data = 0;
9951 	chk->asoc = &stcb->asoc;
9952 	chk->send_size = sizeof(struct sctp_ecne_chunk);
9953 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
9954 	if (chk->data == NULL) {
9955 		sctp_free_a_chunk(stcb, chk);
9956 		return;
9957 	}
9958 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
9959 	SCTP_BUF_LEN(chk->data) = chk->send_size;
9960 	chk->sent = SCTP_DATAGRAM_UNSENT;
9961 	chk->snd_count = 0;
9962 	chk->whoTo = net;
9963 	atomic_add_int(&chk->whoTo->ref_count, 1);
9964 	stcb->asoc.ecn_echo_cnt_onq++;
9965 	ecne = mtod(chk->data, struct sctp_ecne_chunk *);
9966 	ecne->ch.chunk_type = SCTP_ECN_ECHO;
9967 	ecne->ch.chunk_flags = 0;
9968 	ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
9969 	ecne->tsn = htonl(high_tsn);
9970 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
9971 	asoc->ctrl_queue_cnt++;
9972 }
9973 
9974 void
9975 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
9976     struct mbuf *m, int iphlen, int bad_crc)
9977 {
9978 	struct sctp_association *asoc;
9979 	struct sctp_pktdrop_chunk *drp;
9980 	struct sctp_tmit_chunk *chk;
9981 	uint8_t *datap;
9982 	int len;
9983 	int was_trunc = 0;
9984 	struct ip *iph;
9985 	int fullsz = 0, extra = 0;
9986 	long spc;
9987 	int offset;
9988 	struct sctp_chunkhdr *ch, chunk_buf;
9989 	unsigned int chk_length;
9990 
9991 	if (!stcb) {
9992 		return;
9993 	}
9994 	asoc = &stcb->asoc;
9995 	SCTP_TCB_LOCK_ASSERT(stcb);
9996 	if (asoc->peer_supports_pktdrop == 0) {
9997 		/*-
9998 		 * peer must declare support before I send one.
9999 		 */
10000 		return;
10001 	}
10002 	if (stcb->sctp_socket == NULL) {
10003 		return;
10004 	}
10005 	sctp_alloc_a_chunk(stcb, chk);
10006 	if (chk == NULL) {
10007 		return;
10008 	}
10009 	chk->copy_by_ref = 0;
10010 	iph = mtod(m, struct ip *);
10011 	if (iph == NULL) {
10012 		sctp_free_a_chunk(stcb, chk);
10013 		return;
10014 	}
10015 	if (iph->ip_v == IPVERSION) {
10016 		/* IPv4 */
10017 		len = chk->send_size = iph->ip_len;
10018 	} else {
10019 		struct ip6_hdr *ip6h;
10020 
10021 		/* IPv6 */
10022 		ip6h = mtod(m, struct ip6_hdr *);
10023 		len = chk->send_size = htons(ip6h->ip6_plen);
10024 	}
10025 	/* Validate that we do not have an ABORT in here. */
10026 	offset = iphlen + sizeof(struct sctphdr);
10027 	ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
10028 	    sizeof(*ch), (uint8_t *) & chunk_buf);
10029 	while (ch != NULL) {
10030 		chk_length = ntohs(ch->chunk_length);
10031 		if (chk_length < sizeof(*ch)) {
10032 			/* break to abort land */
10033 			break;
10034 		}
10035 		switch (ch->chunk_type) {
10036 		case SCTP_PACKET_DROPPED:
10037 		case SCTP_ABORT_ASSOCIATION:
10038 			/*-
10039 			 * we don't respond with an PKT-DROP to an ABORT
10040 			 * or PKT-DROP
10041 			 */
10042 			sctp_free_a_chunk(stcb, chk);
10043 			return;
10044 		default:
10045 			break;
10046 		}
10047 		offset += SCTP_SIZE32(chk_length);
10048 		ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
10049 		    sizeof(*ch), (uint8_t *) & chunk_buf);
10050 	}
10051 
10052 	if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
10053 	    min(stcb->asoc.smallest_mtu, MCLBYTES)) {
10054 		/*
10055 		 * only send 1 mtu worth, trim off the excess on the end.
10056 		 */
10057 		fullsz = len - extra;
10058 		len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
10059 		was_trunc = 1;
10060 	}
10061 	chk->asoc = &stcb->asoc;
10062 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
10063 	if (chk->data == NULL) {
10064 jump_out:
10065 		sctp_free_a_chunk(stcb, chk);
10066 		return;
10067 	}
10068 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10069 	drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
10070 	if (drp == NULL) {
10071 		sctp_m_freem(chk->data);
10072 		chk->data = NULL;
10073 		goto jump_out;
10074 	}
10075 	chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
10076 	    sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
10077 	chk->book_size_scale = 0;
10078 	if (was_trunc) {
10079 		drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
10080 		drp->trunc_len = htons(fullsz);
10081 		/*
10082 		 * Len is already adjusted to size minus overhead above take
10083 		 * out the pkt_drop chunk itself from it.
10084 		 */
10085 		chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
10086 		len = chk->send_size;
10087 	} else {
10088 		/* no truncation needed */
10089 		drp->ch.chunk_flags = 0;
10090 		drp->trunc_len = htons(0);
10091 	}
10092 	if (bad_crc) {
10093 		drp->ch.chunk_flags |= SCTP_BADCRC;
10094 	}
10095 	chk->send_size += sizeof(struct sctp_pktdrop_chunk);
10096 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10097 	chk->sent = SCTP_DATAGRAM_UNSENT;
10098 	chk->snd_count = 0;
10099 	if (net) {
10100 		/* we should hit here */
10101 		chk->whoTo = net;
10102 	} else {
10103 		chk->whoTo = asoc->primary_destination;
10104 	}
10105 	atomic_add_int(&chk->whoTo->ref_count, 1);
10106 	chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
10107 	chk->rec.chunk_id.can_take_data = 1;
10108 	drp->ch.chunk_type = SCTP_PACKET_DROPPED;
10109 	drp->ch.chunk_length = htons(chk->send_size);
10110 	spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
10111 	if (spc < 0) {
10112 		spc = 0;
10113 	}
10114 	drp->bottle_bw = htonl(spc);
10115 	if (asoc->my_rwnd) {
10116 		drp->current_onq = htonl(asoc->size_on_reasm_queue +
10117 		    asoc->size_on_all_streams +
10118 		    asoc->my_rwnd_control_len +
10119 		    stcb->sctp_socket->so_rcv.sb_cc);
10120 	} else {
10121 		/*-
10122 		 * If my rwnd is 0, possibly from mbuf depletion as well as
10123 		 * space used, tell the peer there is NO space aka onq == bw
10124 		 */
10125 		drp->current_onq = htonl(spc);
10126 	}
10127 	drp->reserved = 0;
10128 	datap = drp->data;
10129 	m_copydata(m, iphlen, len, (caddr_t)datap);
10130 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
10131 	asoc->ctrl_queue_cnt++;
10132 }
10133 
10134 void
10135 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn)
10136 {
10137 	struct sctp_association *asoc;
10138 	struct sctp_cwr_chunk *cwr;
10139 	struct sctp_tmit_chunk *chk;
10140 
10141 	asoc = &stcb->asoc;
10142 	SCTP_TCB_LOCK_ASSERT(stcb);
10143 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10144 		if (chk->rec.chunk_id.id == SCTP_ECN_CWR) {
10145 			/* found a previous ECN_CWR update it if needed */
10146 			cwr = mtod(chk->data, struct sctp_cwr_chunk *);
10147 			if (compare_with_wrap(high_tsn, ntohl(cwr->tsn),
10148 			    MAX_TSN)) {
10149 				cwr->tsn = htonl(high_tsn);
10150 			}
10151 			return;
10152 		}
10153 	}
10154 	/* nope could not find one to update so we must build one */
10155 	sctp_alloc_a_chunk(stcb, chk);
10156 	if (chk == NULL) {
10157 		return;
10158 	}
10159 	chk->copy_by_ref = 0;
10160 	chk->rec.chunk_id.id = SCTP_ECN_CWR;
10161 	chk->rec.chunk_id.can_take_data = 1;
10162 	chk->asoc = &stcb->asoc;
10163 	chk->send_size = sizeof(struct sctp_cwr_chunk);
10164 	chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_DONTWAIT, 1, MT_HEADER);
10165 	if (chk->data == NULL) {
10166 		sctp_free_a_chunk(stcb, chk);
10167 		return;
10168 	}
10169 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10170 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10171 	chk->sent = SCTP_DATAGRAM_UNSENT;
10172 	chk->snd_count = 0;
10173 	chk->whoTo = net;
10174 	atomic_add_int(&chk->whoTo->ref_count, 1);
10175 	cwr = mtod(chk->data, struct sctp_cwr_chunk *);
10176 	cwr->ch.chunk_type = SCTP_ECN_CWR;
10177 	cwr->ch.chunk_flags = 0;
10178 	cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
10179 	cwr->tsn = htonl(high_tsn);
10180 	TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
10181 	asoc->ctrl_queue_cnt++;
10182 }
10183 
10184 void
10185 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
10186     int number_entries, uint16_t * list,
10187     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
10188 {
10189 	int len, old_len, i;
10190 	struct sctp_stream_reset_out_request *req_out;
10191 	struct sctp_chunkhdr *ch;
10192 
10193 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10194 
10195 
10196 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10197 
10198 	/* get to new offset for the param. */
10199 	req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
10200 	/* now how long will this param be? */
10201 	len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
10202 	req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
10203 	req_out->ph.param_length = htons(len);
10204 	req_out->request_seq = htonl(seq);
10205 	req_out->response_seq = htonl(resp_seq);
10206 	req_out->send_reset_at_tsn = htonl(last_sent);
10207 	if (number_entries) {
10208 		for (i = 0; i < number_entries; i++) {
10209 			req_out->list_of_streams[i] = htons(list[i]);
10210 		}
10211 	}
10212 	if (SCTP_SIZE32(len) > len) {
10213 		/*-
10214 		 * Need to worry about the pad we may end up adding to the
10215 		 * end. This is easy since the struct is either aligned to 4
10216 		 * bytes or 2 bytes off.
10217 		 */
10218 		req_out->list_of_streams[number_entries] = 0;
10219 	}
10220 	/* now fix the chunk length */
10221 	ch->chunk_length = htons(len + old_len);
10222 	chk->book_size = len + old_len;
10223 	chk->book_size_scale = 0;
10224 	chk->send_size = SCTP_SIZE32(chk->book_size);
10225 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10226 	return;
10227 }
10228 
10229 
10230 void
10231 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
10232     int number_entries, uint16_t * list,
10233     uint32_t seq)
10234 {
10235 	int len, old_len, i;
10236 	struct sctp_stream_reset_in_request *req_in;
10237 	struct sctp_chunkhdr *ch;
10238 
10239 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10240 
10241 
10242 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10243 
10244 	/* get to new offset for the param. */
10245 	req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
10246 	/* now how long will this param be? */
10247 	len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
10248 	req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
10249 	req_in->ph.param_length = htons(len);
10250 	req_in->request_seq = htonl(seq);
10251 	if (number_entries) {
10252 		for (i = 0; i < number_entries; i++) {
10253 			req_in->list_of_streams[i] = htons(list[i]);
10254 		}
10255 	}
10256 	if (SCTP_SIZE32(len) > len) {
10257 		/*-
10258 		 * Need to worry about the pad we may end up adding to the
10259 		 * end. This is easy since the struct is either aligned to 4
10260 		 * bytes or 2 bytes off.
10261 		 */
10262 		req_in->list_of_streams[number_entries] = 0;
10263 	}
10264 	/* now fix the chunk length */
10265 	ch->chunk_length = htons(len + old_len);
10266 	chk->book_size = len + old_len;
10267 	chk->book_size_scale = 0;
10268 	chk->send_size = SCTP_SIZE32(chk->book_size);
10269 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10270 	return;
10271 }
10272 
10273 
10274 void
10275 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
10276     uint32_t seq)
10277 {
10278 	int len, old_len;
10279 	struct sctp_stream_reset_tsn_request *req_tsn;
10280 	struct sctp_chunkhdr *ch;
10281 
10282 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10283 
10284 
10285 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10286 
10287 	/* get to new offset for the param. */
10288 	req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
10289 	/* now how long will this param be? */
10290 	len = sizeof(struct sctp_stream_reset_tsn_request);
10291 	req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
10292 	req_tsn->ph.param_length = htons(len);
10293 	req_tsn->request_seq = htonl(seq);
10294 
10295 	/* now fix the chunk length */
10296 	ch->chunk_length = htons(len + old_len);
10297 	chk->send_size = len + old_len;
10298 	chk->book_size = SCTP_SIZE32(chk->send_size);
10299 	chk->book_size_scale = 0;
10300 	SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
10301 	return;
10302 }
10303 
10304 void
10305 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
10306     uint32_t resp_seq, uint32_t result)
10307 {
10308 	int len, old_len;
10309 	struct sctp_stream_reset_response *resp;
10310 	struct sctp_chunkhdr *ch;
10311 
10312 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10313 
10314 
10315 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10316 
10317 	/* get to new offset for the param. */
10318 	resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
10319 	/* now how long will this param be? */
10320 	len = sizeof(struct sctp_stream_reset_response);
10321 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
10322 	resp->ph.param_length = htons(len);
10323 	resp->response_seq = htonl(resp_seq);
10324 	resp->result = ntohl(result);
10325 
10326 	/* now fix the chunk length */
10327 	ch->chunk_length = htons(len + old_len);
10328 	chk->book_size = len + old_len;
10329 	chk->book_size_scale = 0;
10330 	chk->send_size = SCTP_SIZE32(chk->book_size);
10331 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10332 	return;
10333 
10334 }
10335 
10336 
10337 void
10338 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
10339     uint32_t resp_seq, uint32_t result,
10340     uint32_t send_una, uint32_t recv_next)
10341 {
10342 	int len, old_len;
10343 	struct sctp_stream_reset_response_tsn *resp;
10344 	struct sctp_chunkhdr *ch;
10345 
10346 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10347 
10348 
10349 	old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
10350 
10351 	/* get to new offset for the param. */
10352 	resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
10353 	/* now how long will this param be? */
10354 	len = sizeof(struct sctp_stream_reset_response_tsn);
10355 	resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
10356 	resp->ph.param_length = htons(len);
10357 	resp->response_seq = htonl(resp_seq);
10358 	resp->result = htonl(result);
10359 	resp->senders_next_tsn = htonl(send_una);
10360 	resp->receivers_next_tsn = htonl(recv_next);
10361 
10362 	/* now fix the chunk length */
10363 	ch->chunk_length = htons(len + old_len);
10364 	chk->book_size = len + old_len;
10365 	chk->send_size = SCTP_SIZE32(chk->book_size);
10366 	chk->book_size_scale = 0;
10367 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10368 	return;
10369 }
10370 
10371 
10372 int
10373 sctp_send_str_reset_req(struct sctp_tcb *stcb,
10374     int number_entries, uint16_t * list,
10375     uint8_t send_out_req, uint32_t resp_seq,
10376     uint8_t send_in_req,
10377     uint8_t send_tsn_req)
10378 {
10379 
10380 	struct sctp_association *asoc;
10381 	struct sctp_tmit_chunk *chk;
10382 	struct sctp_chunkhdr *ch;
10383 	uint32_t seq;
10384 
10385 	asoc = &stcb->asoc;
10386 	if (asoc->stream_reset_outstanding) {
10387 		/*-
10388 		 * Already one pending, must get ACK back to clear the flag.
10389 		 */
10390 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
10391 		return (EBUSY);
10392 	}
10393 	if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0)) {
10394 		/* nothing to do */
10395 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10396 		return (EINVAL);
10397 	}
10398 	if (send_tsn_req && (send_out_req || send_in_req)) {
10399 		/* error, can't do that */
10400 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10401 		return (EINVAL);
10402 	}
10403 	sctp_alloc_a_chunk(stcb, chk);
10404 	if (chk == NULL) {
10405 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10406 		return (ENOMEM);
10407 	}
10408 	chk->copy_by_ref = 0;
10409 	chk->rec.chunk_id.id = SCTP_STREAM_RESET;
10410 	chk->rec.chunk_id.can_take_data = 0;
10411 	chk->asoc = &stcb->asoc;
10412 	chk->book_size = sizeof(struct sctp_chunkhdr);
10413 	chk->send_size = SCTP_SIZE32(chk->book_size);
10414 	chk->book_size_scale = 0;
10415 
10416 	chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_DONTWAIT, 1, MT_DATA);
10417 	if (chk->data == NULL) {
10418 		sctp_free_a_chunk(stcb, chk);
10419 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10420 		return (ENOMEM);
10421 	}
10422 	SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10423 
10424 	/* setup chunk parameters */
10425 	chk->sent = SCTP_DATAGRAM_UNSENT;
10426 	chk->snd_count = 0;
10427 	chk->whoTo = asoc->primary_destination;
10428 	atomic_add_int(&chk->whoTo->ref_count, 1);
10429 
10430 	ch = mtod(chk->data, struct sctp_chunkhdr *);
10431 	ch->chunk_type = SCTP_STREAM_RESET;
10432 	ch->chunk_flags = 0;
10433 	ch->chunk_length = htons(chk->book_size);
10434 	SCTP_BUF_LEN(chk->data) = chk->send_size;
10435 
10436 	seq = stcb->asoc.str_reset_seq_out;
10437 	if (send_out_req) {
10438 		sctp_add_stream_reset_out(chk, number_entries, list,
10439 		    seq, resp_seq, (stcb->asoc.sending_seq - 1));
10440 		asoc->stream_reset_out_is_outstanding = 1;
10441 		seq++;
10442 		asoc->stream_reset_outstanding++;
10443 	}
10444 	if (send_in_req) {
10445 		sctp_add_stream_reset_in(chk, number_entries, list, seq);
10446 		asoc->stream_reset_outstanding++;
10447 	}
10448 	if (send_tsn_req) {
10449 		sctp_add_stream_reset_tsn(chk, seq);
10450 		asoc->stream_reset_outstanding++;
10451 	}
10452 	asoc->str_reset = chk;
10453 
10454 	/* insert the chunk for sending */
10455 	TAILQ_INSERT_TAIL(&asoc->control_send_queue,
10456 	    chk,
10457 	    sctp_next);
10458 	asoc->ctrl_queue_cnt++;
10459 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
10460 	return (0);
10461 }
10462 
10463 void
10464 sctp_send_abort(struct mbuf *m, int iphlen, struct sctphdr *sh, uint32_t vtag,
10465     struct mbuf *err_cause, uint32_t vrf_id)
10466 {
10467 	/*-
10468 	 * Formulate the abort message, and send it back down.
10469 	 */
10470 	struct mbuf *o_pak;
10471 	struct mbuf *mout;
10472 	struct sctp_abort_msg *abm;
10473 	struct ip *iph, *iph_out;
10474 	struct ip6_hdr *ip6, *ip6_out;
10475 	int iphlen_out, len;
10476 
10477 	/* don't respond to ABORT with ABORT */
10478 	if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
10479 		if (err_cause)
10480 			sctp_m_freem(err_cause);
10481 		return;
10482 	}
10483 	len = (sizeof(struct ip6_hdr) + sizeof(struct sctp_abort_msg));
10484 
10485 	mout = sctp_get_mbuf_for_msg(len, 1, M_DONTWAIT, 1, MT_DATA);
10486 	if (mout == NULL) {
10487 		if (err_cause)
10488 			sctp_m_freem(err_cause);
10489 		return;
10490 	}
10491 	iph = mtod(m, struct ip *);
10492 	iph_out = NULL;
10493 	ip6_out = NULL;
10494 	if (iph->ip_v == IPVERSION) {
10495 		iph_out = mtod(mout, struct ip *);
10496 		SCTP_BUF_LEN(mout) = sizeof(*iph_out) + sizeof(*abm);
10497 		SCTP_BUF_NEXT(mout) = err_cause;
10498 
10499 		/* Fill in the IP header for the ABORT */
10500 		iph_out->ip_v = IPVERSION;
10501 		iph_out->ip_hl = (sizeof(struct ip) / 4);
10502 		iph_out->ip_tos = (u_char)0;
10503 		iph_out->ip_id = 0;
10504 		iph_out->ip_off = 0;
10505 		iph_out->ip_ttl = MAXTTL;
10506 		iph_out->ip_p = IPPROTO_SCTP;
10507 		iph_out->ip_src.s_addr = iph->ip_dst.s_addr;
10508 		iph_out->ip_dst.s_addr = iph->ip_src.s_addr;
10509 		/* let IP layer calculate this */
10510 		iph_out->ip_sum = 0;
10511 
10512 		iphlen_out = sizeof(*iph_out);
10513 		abm = (struct sctp_abort_msg *)((caddr_t)iph_out + iphlen_out);
10514 	} else if (iph->ip_v == (IPV6_VERSION >> 4)) {
10515 		ip6 = (struct ip6_hdr *)iph;
10516 		ip6_out = mtod(mout, struct ip6_hdr *);
10517 		SCTP_BUF_LEN(mout) = sizeof(*ip6_out) + sizeof(*abm);
10518 		SCTP_BUF_NEXT(mout) = err_cause;
10519 
10520 		/* Fill in the IP6 header for the ABORT */
10521 		ip6_out->ip6_flow = ip6->ip6_flow;
10522 		ip6_out->ip6_hlim = ip6_defhlim;
10523 		ip6_out->ip6_nxt = IPPROTO_SCTP;
10524 		ip6_out->ip6_src = ip6->ip6_dst;
10525 		ip6_out->ip6_dst = ip6->ip6_src;
10526 
10527 		iphlen_out = sizeof(*ip6_out);
10528 		abm = (struct sctp_abort_msg *)((caddr_t)ip6_out + iphlen_out);
10529 	} else {
10530 		/* Currently not supported */
10531 		if (err_cause)
10532 			sctp_m_freem(err_cause);
10533 		sctp_m_freem(mout);
10534 		return;
10535 	}
10536 
10537 	abm->sh.src_port = sh->dest_port;
10538 	abm->sh.dest_port = sh->src_port;
10539 	abm->sh.checksum = 0;
10540 	if (vtag == 0) {
10541 		abm->sh.v_tag = sh->v_tag;
10542 		abm->msg.ch.chunk_flags = SCTP_HAD_NO_TCB;
10543 	} else {
10544 		abm->sh.v_tag = htonl(vtag);
10545 		abm->msg.ch.chunk_flags = 0;
10546 	}
10547 	abm->msg.ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10548 
10549 	if (err_cause) {
10550 		struct mbuf *m_tmp = err_cause;
10551 		int err_len = 0;
10552 
10553 		/* get length of the err_cause chain */
10554 		while (m_tmp != NULL) {
10555 			err_len += SCTP_BUF_LEN(m_tmp);
10556 			m_tmp = SCTP_BUF_NEXT(m_tmp);
10557 		}
10558 		len = SCTP_BUF_LEN(mout) + err_len;
10559 		if (err_len % 4) {
10560 			/* need pad at end of chunk */
10561 			uint32_t cpthis = 0;
10562 			int padlen;
10563 
10564 			padlen = 4 - (len % 4);
10565 			m_copyback(mout, len, padlen, (caddr_t)&cpthis);
10566 			len += padlen;
10567 		}
10568 		abm->msg.ch.chunk_length = htons(sizeof(abm->msg.ch) + err_len);
10569 	} else {
10570 		len = SCTP_BUF_LEN(mout);
10571 		abm->msg.ch.chunk_length = htons(sizeof(abm->msg.ch));
10572 	}
10573 
10574 	/* add checksum */
10575 	abm->sh.checksum = sctp_calculate_sum(mout, NULL, iphlen_out);
10576 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10577 		/* no mbuf's */
10578 		sctp_m_freem(mout);
10579 		return;
10580 	}
10581 	if (iph_out != NULL) {
10582 		sctp_route_t ro;
10583 		struct sctp_tcb *stcb = NULL;
10584 		int ret;
10585 
10586 		/* zap the stack pointer to the route */
10587 		bzero(&ro, sizeof ro);
10588 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_send_abort calling ip_output:\n");
10589 		SCTPDBG_PKT(SCTP_DEBUG_OUTPUT2, iph_out, &abm->sh);
10590 		/* set IPv4 length */
10591 		iph_out->ip_len = len;
10592 		/* out it goes */
10593 #ifdef  SCTP_PACKET_LOGGING
10594 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10595 			sctp_packet_log(mout, len);
10596 #endif
10597 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10598 		SCTP_IP_OUTPUT(ret, o_pak, &ro, stcb, vrf_id);
10599 
10600 		/* Free the route if we got one back */
10601 		if (ro.ro_rt)
10602 			RTFREE(ro.ro_rt);
10603 	} else if (ip6_out != NULL) {
10604 		struct route_in6 ro;
10605 		int ret;
10606 		struct sctp_tcb *stcb = NULL;
10607 		struct ifnet *ifp = NULL;
10608 
10609 		/* zap the stack pointer to the route */
10610 		bzero(&ro, sizeof(ro));
10611 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_send_abort calling ip6_output:\n");
10612 		SCTPDBG_PKT(SCTP_DEBUG_OUTPUT2, (struct ip *)ip6_out, &abm->sh);
10613 		ip6_out->ip6_plen = len - sizeof(*ip6_out);
10614 #ifdef  SCTP_PACKET_LOGGING
10615 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10616 			sctp_packet_log(mout, len);
10617 #endif
10618 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10619 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
10620 
10621 		/* Free the route if we got one back */
10622 		if (ro.ro_rt)
10623 			RTFREE(ro.ro_rt);
10624 	}
10625 	SCTP_STAT_INCR(sctps_sendpackets);
10626 	SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10627 }
10628 
10629 void
10630 sctp_send_operr_to(struct mbuf *m, int iphlen, struct mbuf *scm, uint32_t vtag,
10631     uint32_t vrf_id)
10632 {
10633 	struct mbuf *o_pak;
10634 	struct sctphdr *ihdr;
10635 	int retcode;
10636 	struct sctphdr *ohdr;
10637 	struct sctp_chunkhdr *ophdr;
10638 	struct ip *iph;
10639 	struct mbuf *mout;
10640 
10641 #ifdef SCTP_DEBUG
10642 	struct sockaddr_in6 lsa6, fsa6;
10643 
10644 #endif
10645 	uint32_t val;
10646 	struct mbuf *at;
10647 	int len;
10648 
10649 	iph = mtod(m, struct ip *);
10650 	ihdr = (struct sctphdr *)((caddr_t)iph + iphlen);
10651 
10652 	SCTP_BUF_PREPEND(scm, (sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr)), M_DONTWAIT);
10653 	if (scm == NULL) {
10654 		/* can't send because we can't add a mbuf */
10655 		return;
10656 	}
10657 	ohdr = mtod(scm, struct sctphdr *);
10658 	ohdr->src_port = ihdr->dest_port;
10659 	ohdr->dest_port = ihdr->src_port;
10660 	ohdr->v_tag = vtag;
10661 	ohdr->checksum = 0;
10662 	ophdr = (struct sctp_chunkhdr *)(ohdr + 1);
10663 	ophdr->chunk_type = SCTP_OPERATION_ERROR;
10664 	ophdr->chunk_flags = 0;
10665 	len = 0;
10666 	at = scm;
10667 	while (at) {
10668 		len += SCTP_BUF_LEN(at);
10669 		at = SCTP_BUF_NEXT(at);
10670 	}
10671 	ophdr->chunk_length = htons(len - sizeof(struct sctphdr));
10672 	if (len % 4) {
10673 		/* need padding */
10674 		uint32_t cpthis = 0;
10675 		int padlen;
10676 
10677 		padlen = 4 - (len % 4);
10678 		m_copyback(scm, len, padlen, (caddr_t)&cpthis);
10679 		len += padlen;
10680 	}
10681 	val = sctp_calculate_sum(scm, NULL, 0);
10682 	mout = sctp_get_mbuf_for_msg(sizeof(struct ip6_hdr), 1, M_DONTWAIT, 1, MT_DATA);
10683 	if (mout == NULL) {
10684 		sctp_m_freem(scm);
10685 		return;
10686 	}
10687 	SCTP_BUF_NEXT(mout) = scm;
10688 	if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10689 		sctp_m_freem(mout);
10690 		return;
10691 	}
10692 	ohdr->checksum = val;
10693 	if (iph->ip_v == IPVERSION) {
10694 		/* V4 */
10695 		struct ip *out;
10696 		sctp_route_t ro;
10697 		struct sctp_tcb *stcb = NULL;
10698 
10699 		SCTP_BUF_LEN(mout) = sizeof(struct ip);
10700 		len += sizeof(struct ip);
10701 
10702 		bzero(&ro, sizeof ro);
10703 		out = mtod(mout, struct ip *);
10704 		out->ip_v = iph->ip_v;
10705 		out->ip_hl = (sizeof(struct ip) / 4);
10706 		out->ip_tos = iph->ip_tos;
10707 		out->ip_id = iph->ip_id;
10708 		out->ip_off = 0;
10709 		out->ip_ttl = MAXTTL;
10710 		out->ip_p = IPPROTO_SCTP;
10711 		out->ip_sum = 0;
10712 		out->ip_src = iph->ip_dst;
10713 		out->ip_dst = iph->ip_src;
10714 		out->ip_len = len;
10715 #ifdef  SCTP_PACKET_LOGGING
10716 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10717 			sctp_packet_log(mout, len);
10718 #endif
10719 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10720 
10721 		SCTP_IP_OUTPUT(retcode, o_pak, &ro, stcb, vrf_id);
10722 
10723 		SCTP_STAT_INCR(sctps_sendpackets);
10724 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10725 		/* Free the route if we got one back */
10726 		if (ro.ro_rt)
10727 			RTFREE(ro.ro_rt);
10728 	} else {
10729 		/* V6 */
10730 		struct route_in6 ro;
10731 		int ret;
10732 		struct sctp_tcb *stcb = NULL;
10733 		struct ifnet *ifp = NULL;
10734 		struct ip6_hdr *out6, *in6;
10735 
10736 		SCTP_BUF_LEN(mout) = sizeof(struct ip6_hdr);
10737 		len += sizeof(struct ip6_hdr);
10738 		bzero(&ro, sizeof ro);
10739 		in6 = mtod(m, struct ip6_hdr *);
10740 		out6 = mtod(mout, struct ip6_hdr *);
10741 		out6->ip6_flow = in6->ip6_flow;
10742 		out6->ip6_hlim = ip6_defhlim;
10743 		out6->ip6_nxt = IPPROTO_SCTP;
10744 		out6->ip6_src = in6->ip6_dst;
10745 		out6->ip6_dst = in6->ip6_src;
10746 		out6->ip6_plen = len - sizeof(struct ip6_hdr);
10747 
10748 #ifdef SCTP_DEBUG
10749 		bzero(&lsa6, sizeof(lsa6));
10750 		lsa6.sin6_len = sizeof(lsa6);
10751 		lsa6.sin6_family = AF_INET6;
10752 		lsa6.sin6_addr = out6->ip6_src;
10753 		bzero(&fsa6, sizeof(fsa6));
10754 		fsa6.sin6_len = sizeof(fsa6);
10755 		fsa6.sin6_family = AF_INET6;
10756 		fsa6.sin6_addr = out6->ip6_dst;
10757 #endif
10758 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "sctp_operr_to calling ipv6 output:\n");
10759 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "src: ");
10760 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&lsa6);
10761 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "dst ");
10762 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&fsa6);
10763 
10764 #ifdef  SCTP_PACKET_LOGGING
10765 		if (sctp_logging_level & SCTP_LAST_PACKET_TRACING)
10766 			sctp_packet_log(mout, len);
10767 #endif
10768 		SCTP_ATTACH_CHAIN(o_pak, mout, len);
10769 		SCTP_IP6_OUTPUT(ret, o_pak, &ro, &ifp, stcb, vrf_id);
10770 
10771 		SCTP_STAT_INCR(sctps_sendpackets);
10772 		SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
10773 		/* Free the route if we got one back */
10774 		if (ro.ro_rt)
10775 			RTFREE(ro.ro_rt);
10776 	}
10777 }
10778 
10779 static struct mbuf *
10780 sctp_copy_resume(struct sctp_stream_queue_pending *sp,
10781     struct uio *uio,
10782     struct sctp_sndrcvinfo *srcv,
10783     int max_send_len,
10784     int user_marks_eor,
10785     int *error,
10786     uint32_t * sndout,
10787     struct mbuf **new_tail)
10788 {
10789 	struct mbuf *m;
10790 
10791 	m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
10792 	    (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
10793 	if (m == NULL) {
10794 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10795 		*error = ENOMEM;
10796 	} else {
10797 		*sndout = m_length(m, NULL);
10798 		*new_tail = m_last(m);
10799 	}
10800 	return (m);
10801 }
10802 
10803 static int
10804 sctp_copy_one(struct sctp_stream_queue_pending *sp,
10805     struct uio *uio,
10806     int resv_upfront)
10807 {
10808 	int left;
10809 
10810 	left = sp->length;
10811 	sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
10812 	    resv_upfront, 0);
10813 	if (sp->data == NULL) {
10814 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10815 		return (ENOMEM);
10816 	}
10817 	sp->tail_mbuf = m_last(sp->data);
10818 	return (0);
10819 }
10820 
10821 
10822 
10823 static struct sctp_stream_queue_pending *
10824 sctp_copy_it_in(struct sctp_tcb *stcb,
10825     struct sctp_association *asoc,
10826     struct sctp_sndrcvinfo *srcv,
10827     struct uio *uio,
10828     struct sctp_nets *net,
10829     int max_send_len,
10830     int user_marks_eor,
10831     int *error,
10832     int non_blocking)
10833 {
10834 	/*-
10835 	 * This routine must be very careful in its work. Protocol
10836 	 * processing is up and running so care must be taken to spl...()
10837 	 * when you need to do something that may effect the stcb/asoc. The
10838 	 * sb is locked however. When data is copied the protocol processing
10839 	 * should be enabled since this is a slower operation...
10840 	 */
10841 	struct sctp_stream_queue_pending *sp = NULL;
10842 	int resv_in_first;
10843 
10844 	*error = 0;
10845 	/* Now can we send this? */
10846 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
10847 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
10848 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
10849 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
10850 		/* got data while shutting down */
10851 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
10852 		*error = ECONNRESET;
10853 		goto out_now;
10854 	}
10855 	sctp_alloc_a_strmoq(stcb, sp);
10856 	if (sp == NULL) {
10857 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
10858 		*error = ENOMEM;
10859 		goto out_now;
10860 	}
10861 	sp->act_flags = 0;
10862 	sp->sender_all_done = 0;
10863 	sp->sinfo_flags = srcv->sinfo_flags;
10864 	sp->timetolive = srcv->sinfo_timetolive;
10865 	sp->ppid = srcv->sinfo_ppid;
10866 	sp->context = srcv->sinfo_context;
10867 	sp->strseq = 0;
10868 	(void)SCTP_GETTIME_TIMEVAL(&sp->ts);
10869 
10870 	sp->stream = srcv->sinfo_stream;
10871 	sp->length = min(uio->uio_resid, max_send_len);
10872 	if ((sp->length == (uint32_t) uio->uio_resid) &&
10873 	    ((user_marks_eor == 0) ||
10874 	    (srcv->sinfo_flags & SCTP_EOF) ||
10875 	    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
10876 		sp->msg_is_complete = 1;
10877 	} else {
10878 		sp->msg_is_complete = 0;
10879 	}
10880 	sp->sender_all_done = 0;
10881 	sp->some_taken = 0;
10882 	sp->put_last_out = 0;
10883 	resv_in_first = sizeof(struct sctp_data_chunk);
10884 	sp->data = sp->tail_mbuf = NULL;
10885 	*error = sctp_copy_one(sp, uio, resv_in_first);
10886 	if (*error) {
10887 		sctp_free_a_strmoq(stcb, sp);
10888 		sp = NULL;
10889 	} else {
10890 		if (sp->sinfo_flags & SCTP_ADDR_OVER) {
10891 			sp->net = net;
10892 			sp->addr_over = 1;
10893 		} else {
10894 			sp->net = asoc->primary_destination;
10895 			sp->addr_over = 0;
10896 		}
10897 		atomic_add_int(&sp->net->ref_count, 1);
10898 		sctp_set_prsctp_policy(stcb, sp);
10899 	}
10900 out_now:
10901 	return (sp);
10902 }
10903 
10904 
10905 int
10906 sctp_sosend(struct socket *so,
10907     struct sockaddr *addr,
10908     struct uio *uio,
10909     struct mbuf *top,
10910     struct mbuf *control,
10911     int flags,
10912     struct thread *p
10913 )
10914 {
10915 	struct sctp_inpcb *inp;
10916 	int error, use_rcvinfo = 0;
10917 	struct sctp_sndrcvinfo srcv;
10918 
10919 	inp = (struct sctp_inpcb *)so->so_pcb;
10920 	if (control) {
10921 		/* process cmsg snd/rcv info (maybe a assoc-id) */
10922 		if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&srcv, control,
10923 		    sizeof(srcv))) {
10924 			/* got one */
10925 			use_rcvinfo = 1;
10926 		}
10927 	}
10928 	error = sctp_lower_sosend(so, addr, uio, top,
10929 	    control,
10930 	    flags,
10931 	    use_rcvinfo, &srcv
10932 	    ,p
10933 	    );
10934 	return (error);
10935 }
10936 
10937 
10938 int
10939 sctp_lower_sosend(struct socket *so,
10940     struct sockaddr *addr,
10941     struct uio *uio,
10942     struct mbuf *i_pak,
10943     struct mbuf *control,
10944     int flags,
10945     int use_rcvinfo,
10946     struct sctp_sndrcvinfo *srcv
10947     ,
10948     struct thread *p
10949 )
10950 {
10951 	unsigned int sndlen = 0, max_len;
10952 	int error, len;
10953 	struct mbuf *top = NULL;
10954 
10955 #if defined(__NetBSD__) || defined(__OpenBSD_)
10956 	int s;
10957 
10958 #endif
10959 	int queue_only = 0, queue_only_for_init = 0;
10960 	int free_cnt_applied = 0;
10961 	int un_sent = 0;
10962 	int now_filled = 0;
10963 	struct sctp_block_entry be;
10964 	struct sctp_inpcb *inp;
10965 	struct sctp_tcb *stcb = NULL;
10966 	struct timeval now;
10967 	struct sctp_nets *net;
10968 	struct sctp_association *asoc;
10969 	struct sctp_inpcb *t_inp;
10970 	int user_marks_eor;
10971 	int create_lock_applied = 0;
10972 	int nagle_applies = 0;
10973 	int some_on_control = 0;
10974 	int got_all_of_the_send = 0;
10975 	int hold_tcblock = 0;
10976 	int non_blocking = 0;
10977 	int temp_flags = 0;
10978 	uint32_t local_add_more;
10979 
10980 	error = 0;
10981 	net = NULL;
10982 	stcb = NULL;
10983 	asoc = NULL;
10984 
10985 	t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
10986 	if (inp == NULL) {
10987 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
10988 		error = EFAULT;
10989 		if (i_pak) {
10990 			SCTP_RELEASE_PKT(i_pak);
10991 		}
10992 		return (error);
10993 	}
10994 	if ((uio == NULL) && (i_pak == NULL)) {
10995 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10996 		return (EINVAL);
10997 	}
10998 	user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
10999 	atomic_add_int(&inp->total_sends, 1);
11000 	if (uio) {
11001 		if (uio->uio_resid < 0) {
11002 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11003 			return (EINVAL);
11004 		}
11005 		sndlen = uio->uio_resid;
11006 	} else {
11007 		top = SCTP_HEADER_TO_CHAIN(i_pak);
11008 		sndlen = SCTP_HEADER_LEN(i_pak);
11009 	}
11010 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
11011 	    addr,
11012 	    sndlen);
11013 	/*-
11014 	 * Pre-screen address, if one is given the sin-len
11015 	 * must be set correctly!
11016 	 */
11017 	if (addr) {
11018 		if ((addr->sa_family == AF_INET) &&
11019 		    (addr->sa_len != sizeof(struct sockaddr_in))) {
11020 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11021 			error = EINVAL;
11022 			goto out_unlocked;
11023 		} else if ((addr->sa_family == AF_INET6) &&
11024 		    (addr->sa_len != sizeof(struct sockaddr_in6))) {
11025 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11026 			error = EINVAL;
11027 			goto out_unlocked;
11028 		}
11029 	}
11030 	hold_tcblock = 0;
11031 
11032 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
11033 	    (inp->sctp_socket->so_qlimit)) {
11034 		/* The listener can NOT send */
11035 		SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11036 		error = EFAULT;
11037 		goto out_unlocked;
11038 	}
11039 	if ((use_rcvinfo) && srcv) {
11040 		if (INVALID_SINFO_FLAG(srcv->sinfo_flags) ||
11041 		    PR_SCTP_INVALID_POLICY(srcv->sinfo_flags)) {
11042 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11043 			error = EINVAL;
11044 			goto out_unlocked;
11045 		}
11046 		if (srcv->sinfo_flags)
11047 			SCTP_STAT_INCR(sctps_sends_with_flags);
11048 
11049 		if (srcv->sinfo_flags & SCTP_SENDALL) {
11050 			/* its a sendall */
11051 			error = sctp_sendall(inp, uio, top, srcv);
11052 			top = NULL;
11053 			goto out_unlocked;
11054 		}
11055 	}
11056 	/* now we must find the assoc */
11057 	if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
11058 	    (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
11059 		SCTP_INP_RLOCK(inp);
11060 		stcb = LIST_FIRST(&inp->sctp_asoc_list);
11061 		if (stcb == NULL) {
11062 			SCTP_INP_RUNLOCK(inp);
11063 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
11064 			error = ENOTCONN;
11065 			goto out_unlocked;
11066 		}
11067 		hold_tcblock = 0;
11068 		SCTP_INP_RUNLOCK(inp);
11069 		if (addr) {
11070 			/* Must locate the net structure if addr given */
11071 			net = sctp_findnet(stcb, addr);
11072 			if (net) {
11073 				/* validate port was 0 or correct */
11074 				struct sockaddr_in *sin;
11075 
11076 				sin = (struct sockaddr_in *)addr;
11077 				if ((sin->sin_port != 0) &&
11078 				    (sin->sin_port != stcb->rport)) {
11079 					net = NULL;
11080 				}
11081 			}
11082 			temp_flags |= SCTP_ADDR_OVER;
11083 		} else
11084 			net = stcb->asoc.primary_destination;
11085 		if (addr && (net == NULL)) {
11086 			/* Could not find address, was it legal */
11087 			if (addr->sa_family == AF_INET) {
11088 				struct sockaddr_in *sin;
11089 
11090 				sin = (struct sockaddr_in *)addr;
11091 				if (sin->sin_addr.s_addr == 0) {
11092 					if ((sin->sin_port == 0) ||
11093 					    (sin->sin_port == stcb->rport)) {
11094 						net = stcb->asoc.primary_destination;
11095 					}
11096 				}
11097 			} else {
11098 				struct sockaddr_in6 *sin6;
11099 
11100 				sin6 = (struct sockaddr_in6 *)addr;
11101 				if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
11102 					if ((sin6->sin6_port == 0) ||
11103 					    (sin6->sin6_port == stcb->rport)) {
11104 						net = stcb->asoc.primary_destination;
11105 					}
11106 				}
11107 			}
11108 		}
11109 		if (net == NULL) {
11110 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11111 			error = EINVAL;
11112 			goto out_unlocked;
11113 		}
11114 	} else if (use_rcvinfo && srcv && srcv->sinfo_assoc_id) {
11115 		stcb = sctp_findassociation_ep_asocid(inp, srcv->sinfo_assoc_id, 0);
11116 		if (stcb) {
11117 			if (addr)
11118 				/*
11119 				 * Must locate the net structure if addr
11120 				 * given
11121 				 */
11122 				net = sctp_findnet(stcb, addr);
11123 			else
11124 				net = stcb->asoc.primary_destination;
11125 			if ((srcv->sinfo_flags & SCTP_ADDR_OVER) &&
11126 			    ((net == NULL) || (addr == NULL))) {
11127 				struct sockaddr_in *sin;
11128 
11129 				if (addr == NULL) {
11130 					SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11131 					error = EINVAL;
11132 					goto out_unlocked;
11133 				}
11134 				sin = (struct sockaddr_in *)addr;
11135 				/* Validate port is 0 or correct */
11136 				if ((sin->sin_port != 0) &&
11137 				    (sin->sin_port != stcb->rport)) {
11138 					net = NULL;
11139 				}
11140 			}
11141 		}
11142 		hold_tcblock = 0;
11143 	} else if (addr) {
11144 		/*-
11145 		 * Since we did not use findep we must
11146 		 * increment it, and if we don't find a tcb
11147 		 * decrement it.
11148 		 */
11149 		SCTP_INP_WLOCK(inp);
11150 		SCTP_INP_INCR_REF(inp);
11151 		SCTP_INP_WUNLOCK(inp);
11152 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
11153 		if (stcb == NULL) {
11154 			SCTP_INP_WLOCK(inp);
11155 			SCTP_INP_DECR_REF(inp);
11156 			SCTP_INP_WUNLOCK(inp);
11157 		} else {
11158 			hold_tcblock = 1;
11159 		}
11160 	}
11161 	if ((stcb == NULL) && (addr)) {
11162 		/* Possible implicit send? */
11163 		SCTP_ASOC_CREATE_LOCK(inp);
11164 		create_lock_applied = 1;
11165 		if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
11166 		    (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
11167 			/* Should I really unlock ? */
11168 			SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11169 			error = EFAULT;
11170 			goto out_unlocked;
11171 
11172 		}
11173 		if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
11174 		    (addr->sa_family == AF_INET6)) {
11175 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11176 			error = EINVAL;
11177 			goto out_unlocked;
11178 		}
11179 		SCTP_INP_WLOCK(inp);
11180 		SCTP_INP_INCR_REF(inp);
11181 		SCTP_INP_WUNLOCK(inp);
11182 		/* With the lock applied look again */
11183 		stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
11184 		if (stcb == NULL) {
11185 			SCTP_INP_WLOCK(inp);
11186 			SCTP_INP_DECR_REF(inp);
11187 			SCTP_INP_WUNLOCK(inp);
11188 		} else {
11189 			hold_tcblock = 1;
11190 		}
11191 		if (t_inp != inp) {
11192 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
11193 			error = ENOTCONN;
11194 			goto out_unlocked;
11195 		}
11196 	}
11197 	if (stcb == NULL) {
11198 		if (addr == NULL) {
11199 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
11200 			error = ENOENT;
11201 			goto out_unlocked;
11202 		} else {
11203 			/*
11204 			 * UDP style, we must go ahead and start the INIT
11205 			 * process
11206 			 */
11207 			uint32_t vrf_id;
11208 
11209 			if ((use_rcvinfo) && (srcv) &&
11210 			    ((srcv->sinfo_flags & SCTP_ABORT) ||
11211 			    ((srcv->sinfo_flags & SCTP_EOF) &&
11212 			    (sndlen == 0)))) {
11213 				/*-
11214 				 * User asks to abort a non-existant assoc,
11215 				 * or EOF a non-existant assoc with no data
11216 				 */
11217 				SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
11218 				error = ENOENT;
11219 				goto out_unlocked;
11220 			}
11221 			/* get an asoc/stcb struct */
11222 			vrf_id = inp->def_vrf_id;
11223 #ifdef INVARIANTS
11224 			if (create_lock_applied == 0) {
11225 				panic("Error, should hold create lock and I don't?");
11226 			}
11227 #endif
11228 			stcb = sctp_aloc_assoc(inp, addr, 1, &error, 0, vrf_id,
11229 			    p
11230 			    );
11231 			if (stcb == NULL) {
11232 				/* Error is setup for us in the call */
11233 				goto out_unlocked;
11234 			}
11235 			if (create_lock_applied) {
11236 				SCTP_ASOC_CREATE_UNLOCK(inp);
11237 				create_lock_applied = 0;
11238 			} else {
11239 				SCTP_PRINTF("Huh-3? create lock should have been on??\n");
11240 			}
11241 			/*
11242 			 * Turn on queue only flag to prevent data from
11243 			 * being sent
11244 			 */
11245 			queue_only = 1;
11246 			asoc = &stcb->asoc;
11247 			SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
11248 			(void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
11249 
11250 			/* initialize authentication params for the assoc */
11251 			sctp_initialize_auth_params(inp, stcb);
11252 
11253 			if (control) {
11254 				/*
11255 				 * see if a init structure exists in cmsg
11256 				 * headers
11257 				 */
11258 				struct sctp_initmsg initm;
11259 				int i;
11260 
11261 				if (sctp_find_cmsg(SCTP_INIT, (void *)&initm, control,
11262 				    sizeof(initm))) {
11263 					/*
11264 					 * we have an INIT override of the
11265 					 * default
11266 					 */
11267 					if (initm.sinit_max_attempts)
11268 						asoc->max_init_times = initm.sinit_max_attempts;
11269 					if (initm.sinit_num_ostreams)
11270 						asoc->pre_open_streams = initm.sinit_num_ostreams;
11271 					if (initm.sinit_max_instreams)
11272 						asoc->max_inbound_streams = initm.sinit_max_instreams;
11273 					if (initm.sinit_max_init_timeo)
11274 						asoc->initial_init_rto_max = initm.sinit_max_init_timeo;
11275 					if (asoc->streamoutcnt < asoc->pre_open_streams) {
11276 						/* Default is NOT correct */
11277 						SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, defout:%d pre_open:%d\n",
11278 						    asoc->streamoutcnt, asoc->pre_open_streams);
11279 						/*
11280 						 * What happens if this
11281 						 * fails? we panic ...
11282 						 */
11283 						{
11284 							struct sctp_stream_out *tmp_str;
11285 							int had_lock = 0;
11286 
11287 							if (hold_tcblock) {
11288 								had_lock = 1;
11289 								SCTP_TCB_UNLOCK(stcb);
11290 							}
11291 							SCTP_MALLOC(tmp_str,
11292 							    struct sctp_stream_out *,
11293 							    (asoc->pre_open_streams *
11294 							    sizeof(struct sctp_stream_out)),
11295 							    SCTP_M_STRMO);
11296 							if (had_lock) {
11297 								SCTP_TCB_LOCK(stcb);
11298 							}
11299 							if (tmp_str != NULL) {
11300 								SCTP_FREE(asoc->strmout, SCTP_M_STRMO);
11301 								asoc->strmout = tmp_str;
11302 								asoc->streamoutcnt = asoc->pre_open_streams;
11303 							} else {
11304 								asoc->pre_open_streams = asoc->streamoutcnt;
11305 							}
11306 						}
11307 						for (i = 0; i < asoc->streamoutcnt; i++) {
11308 							/*-
11309 							 * inbound side must be set
11310 							 * to 0xffff, also NOTE when
11311 							 * we get the INIT-ACK back
11312 							 * (for INIT sender) we MUST
11313 							 * reduce the count
11314 							 * (streamoutcnt) but first
11315 							 * check if we sent to any
11316 							 * of the upper streams that
11317 							 * were dropped (if some
11318 							 * were). Those that were
11319 							 * dropped must be notified
11320 							 * to the upper layer as
11321 							 * failed to send.
11322 							 */
11323 							asoc->strmout[i].next_sequence_sent = 0x0;
11324 							TAILQ_INIT(&asoc->strmout[i].outqueue);
11325 							asoc->strmout[i].stream_no = i;
11326 							asoc->strmout[i].last_msg_incomplete = 0;
11327 							asoc->strmout[i].next_spoke.tqe_next = 0;
11328 							asoc->strmout[i].next_spoke.tqe_prev = 0;
11329 						}
11330 					}
11331 				}
11332 			}
11333 			hold_tcblock = 1;
11334 			/* out with the INIT */
11335 			queue_only_for_init = 1;
11336 			/*-
11337 			 * we may want to dig in after this call and adjust the MTU
11338 			 * value. It defaulted to 1500 (constant) but the ro
11339 			 * structure may now have an update and thus we may need to
11340 			 * change it BEFORE we append the message.
11341 			 */
11342 			net = stcb->asoc.primary_destination;
11343 			asoc = &stcb->asoc;
11344 		}
11345 	}
11346 	if ((SCTP_SO_IS_NBIO(so)
11347 	    || (flags & MSG_NBIO)
11348 	    )) {
11349 		non_blocking = 1;
11350 	}
11351 	asoc = &stcb->asoc;
11352 
11353 	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
11354 		if (sndlen > asoc->smallest_mtu) {
11355 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11356 			error = EMSGSIZE;
11357 			goto out_unlocked;
11358 		}
11359 	}
11360 	/* would we block? */
11361 	if (non_blocking) {
11362 		if ((SCTP_SB_LIMIT_SND(so) <
11363 		    (sndlen + stcb->asoc.total_output_queue_size)) ||
11364 		    (stcb->asoc.chunks_on_out_queue >
11365 		    sctp_max_chunks_on_queue)) {
11366 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
11367 			if (sndlen > SCTP_SB_LIMIT_SND(so))
11368 				error = EMSGSIZE;
11369 			else
11370 				error = EWOULDBLOCK;
11371 
11372 			atomic_add_int(&stcb->sctp_ep->total_nospaces, 1);
11373 			goto out_unlocked;
11374 		}
11375 	}
11376 	/* Keep the stcb from being freed under our feet */
11377 	if (free_cnt_applied) {
11378 #ifdef INVARIANTS
11379 		panic("refcnt already incremented");
11380 #else
11381 		printf("refcnt:1 already incremented?\n");
11382 #endif
11383 	} else {
11384 		atomic_add_int(&stcb->asoc.refcnt, 1);
11385 		free_cnt_applied = 1;
11386 	}
11387 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11388 		SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11389 		error = ECONNRESET;
11390 		goto out_unlocked;
11391 	}
11392 	if (create_lock_applied) {
11393 		SCTP_ASOC_CREATE_UNLOCK(inp);
11394 		create_lock_applied = 0;
11395 	}
11396 	if (asoc->stream_reset_outstanding) {
11397 		/*
11398 		 * Can't queue any data while stream reset is underway.
11399 		 */
11400 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
11401 		error = EAGAIN;
11402 		goto out_unlocked;
11403 	}
11404 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
11405 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
11406 		queue_only = 1;
11407 	}
11408 	if ((use_rcvinfo == 0) || (srcv == NULL)) {
11409 		/* Grab the default stuff from the asoc */
11410 		srcv = (struct sctp_sndrcvinfo *)&stcb->asoc.def_send;
11411 	}
11412 	/* we are now done with all control */
11413 	if (control) {
11414 		sctp_m_freem(control);
11415 		control = NULL;
11416 	}
11417 	if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
11418 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
11419 	    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
11420 	    (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
11421 		if ((use_rcvinfo) &&
11422 		    (srcv->sinfo_flags & SCTP_ABORT)) {
11423 			;
11424 		} else {
11425 			SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11426 			error = ECONNRESET;
11427 			goto out_unlocked;
11428 		}
11429 	}
11430 	/* Ok, we will attempt a msgsnd :> */
11431 	if (p) {
11432 		p->td_ru.ru_msgsnd++;
11433 	}
11434 	if (stcb) {
11435 		if (((srcv->sinfo_flags | temp_flags) & SCTP_ADDR_OVER) == 0) {
11436 			net = stcb->asoc.primary_destination;
11437 		}
11438 	}
11439 	if (net == NULL) {
11440 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11441 		error = EINVAL;
11442 		goto out_unlocked;
11443 	}
11444 	if ((net->flight_size > net->cwnd) && (sctp_cmt_on_off == 0)) {
11445 		/*-
11446 		 * CMT: Added check for CMT above. net above is the primary
11447 		 * dest. If CMT is ON, sender should always attempt to send
11448 		 * with the output routine sctp_fill_outqueue() that loops
11449 		 * through all destination addresses. Therefore, if CMT is
11450 		 * ON, queue_only is NOT set to 1 here, so that
11451 		 * sctp_chunk_output() can be called below.
11452 		 */
11453 		queue_only = 1;
11454 
11455 	} else if (asoc->ifp_had_enobuf) {
11456 		SCTP_STAT_INCR(sctps_ifnomemqueued);
11457 		if (net->flight_size > (net->mtu * 2))
11458 			queue_only = 1;
11459 		asoc->ifp_had_enobuf = 0;
11460 	} else {
11461 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11462 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) * sizeof(struct sctp_data_chunk)));
11463 	}
11464 	/* Are we aborting? */
11465 	if (srcv->sinfo_flags & SCTP_ABORT) {
11466 		struct mbuf *mm;
11467 		int tot_demand, tot_out = 0, max_out;
11468 
11469 		SCTP_STAT_INCR(sctps_sends_with_abort);
11470 		if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
11471 		    (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
11472 			/* It has to be up before we abort */
11473 			/* how big is the user initiated abort? */
11474 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11475 			error = EINVAL;
11476 			goto out;
11477 		}
11478 		if (hold_tcblock) {
11479 			SCTP_TCB_UNLOCK(stcb);
11480 			hold_tcblock = 0;
11481 		}
11482 		if (top) {
11483 			struct mbuf *cntm = NULL;
11484 
11485 			mm = sctp_get_mbuf_for_msg(1, 0, M_WAIT, 1, MT_DATA);
11486 			if (sndlen != 0) {
11487 				cntm = top;
11488 				while (cntm) {
11489 					tot_out += SCTP_BUF_LEN(cntm);
11490 					cntm = SCTP_BUF_NEXT(cntm);
11491 				}
11492 			}
11493 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
11494 		} else {
11495 			/* Must fit in a MTU */
11496 			tot_out = sndlen;
11497 			tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
11498 			if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
11499 				/* To big */
11500 				SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11501 				error = EMSGSIZE;
11502 				goto out;
11503 			}
11504 			mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAIT, 1, MT_DATA);
11505 		}
11506 		if (mm == NULL) {
11507 			SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11508 			error = ENOMEM;
11509 			goto out;
11510 		}
11511 		max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
11512 		max_out -= sizeof(struct sctp_abort_msg);
11513 		if (tot_out > max_out) {
11514 			tot_out = max_out;
11515 		}
11516 		if (mm) {
11517 			struct sctp_paramhdr *ph;
11518 
11519 			/* now move forward the data pointer */
11520 			ph = mtod(mm, struct sctp_paramhdr *);
11521 			ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
11522 			ph->param_length = htons((sizeof(struct sctp_paramhdr) + tot_out));
11523 			ph++;
11524 			SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
11525 			if (top == NULL) {
11526 				error = uiomove((caddr_t)ph, (int)tot_out, uio);
11527 				if (error) {
11528 					/*-
11529 					 * Here if we can't get his data we
11530 					 * still abort we just don't get to
11531 					 * send the users note :-0
11532 					 */
11533 					sctp_m_freem(mm);
11534 					mm = NULL;
11535 				}
11536 			} else {
11537 				if (sndlen != 0) {
11538 					SCTP_BUF_NEXT(mm) = top;
11539 				}
11540 			}
11541 		}
11542 		if (hold_tcblock == 0) {
11543 			SCTP_TCB_LOCK(stcb);
11544 			hold_tcblock = 1;
11545 		}
11546 		atomic_add_int(&stcb->asoc.refcnt, -1);
11547 		free_cnt_applied = 0;
11548 		/* release this lock, otherwise we hang on ourselves */
11549 		sctp_abort_an_association(stcb->sctp_ep, stcb,
11550 		    SCTP_RESPONSE_TO_USER_REQ,
11551 		    mm, SCTP_SO_LOCKED);
11552 		/* now relock the stcb so everything is sane */
11553 		hold_tcblock = 0;
11554 		stcb = NULL;
11555 		/*
11556 		 * In this case top is already chained to mm avoid double
11557 		 * free, since we free it below if top != NULL and driver
11558 		 * would free it after sending the packet out
11559 		 */
11560 		if (sndlen != 0) {
11561 			top = NULL;
11562 		}
11563 		goto out_unlocked;
11564 	}
11565 	/* Calculate the maximum we can send */
11566 	if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) {
11567 		max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11568 	} else {
11569 		max_len = 0;
11570 	}
11571 	if (hold_tcblock) {
11572 		SCTP_TCB_UNLOCK(stcb);
11573 		hold_tcblock = 0;
11574 	}
11575 	/* Is the stream no. valid? */
11576 	if (srcv->sinfo_stream >= asoc->streamoutcnt) {
11577 		/* Invalid stream number */
11578 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11579 		error = EINVAL;
11580 		goto out_unlocked;
11581 	}
11582 	if (asoc->strmout == NULL) {
11583 		/* huh? software error */
11584 		SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11585 		error = EFAULT;
11586 		goto out_unlocked;
11587 	}
11588 	/* Unless E_EOR mode is on, we must make a send FIT in one call. */
11589 	if ((user_marks_eor == 0) &&
11590 	    (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
11591 		/* It will NEVER fit */
11592 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
11593 		error = EMSGSIZE;
11594 		goto out_unlocked;
11595 	}
11596 	if ((uio == NULL) && user_marks_eor) {
11597 		/*-
11598 		 * We do not support eeor mode for
11599 		 * sending with mbuf chains (like sendfile).
11600 		 */
11601 		SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11602 		error = EINVAL;
11603 		goto out_unlocked;
11604 	}
11605 	if (user_marks_eor) {
11606 		local_add_more = sctp_add_more_threshold;
11607 	} else {
11608 		/*-
11609 		 * For non-eeor the whole message must fit in
11610 		 * the socket send buffer.
11611 		 */
11612 		local_add_more = sndlen;
11613 	}
11614 	len = 0;
11615 	if (((max_len < local_add_more) &&
11616 	    (SCTP_SB_LIMIT_SND(so) > local_add_more)) ||
11617 	    ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) > sctp_max_chunks_on_queue)) {
11618 		/* No room right no ! */
11619 		SOCKBUF_LOCK(&so->so_snd);
11620 		while ((SCTP_SB_LIMIT_SND(so) < (stcb->asoc.total_output_queue_size + sctp_add_more_threshold)) ||
11621 		    ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) > sctp_max_chunks_on_queue)) {
11622 
11623 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11624 				sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA,
11625 				    so, asoc, sndlen);
11626 			}
11627 			be.error = 0;
11628 			stcb->block_entry = &be;
11629 			error = sbwait(&so->so_snd);
11630 			stcb->block_entry = NULL;
11631 			if (error || so->so_error || be.error) {
11632 				if (error == 0) {
11633 					if (so->so_error)
11634 						error = so->so_error;
11635 					if (be.error) {
11636 						error = be.error;
11637 					}
11638 				}
11639 				SOCKBUF_UNLOCK(&so->so_snd);
11640 				goto out_unlocked;
11641 			}
11642 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11643 				sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
11644 				    so, asoc, stcb->asoc.total_output_queue_size);
11645 			}
11646 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11647 				goto out_unlocked;
11648 			}
11649 		}
11650 		if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) {
11651 			max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11652 		} else {
11653 			max_len = 0;
11654 		}
11655 		SOCKBUF_UNLOCK(&so->so_snd);
11656 	}
11657 	if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11658 		goto out_unlocked;
11659 	}
11660 	atomic_add_int(&stcb->total_sends, 1);
11661 	/*
11662 	 * sndlen covers for mbuf case uio_resid covers for the non-mbuf
11663 	 * case NOTE: uio will be null when top/mbuf is passed
11664 	 */
11665 	if (sndlen == 0) {
11666 		if (srcv->sinfo_flags & SCTP_EOF) {
11667 			got_all_of_the_send = 1;
11668 			goto dataless_eof;
11669 		} else {
11670 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11671 			error = EINVAL;
11672 			goto out;
11673 		}
11674 	}
11675 	if (top == NULL) {
11676 		struct sctp_stream_queue_pending *sp;
11677 		struct sctp_stream_out *strm;
11678 		uint32_t sndout, initial_out;
11679 
11680 		initial_out = uio->uio_resid;
11681 
11682 		SCTP_TCB_SEND_LOCK(stcb);
11683 		if ((asoc->stream_locked) &&
11684 		    (asoc->stream_locked_on != srcv->sinfo_stream)) {
11685 			SCTP_TCB_SEND_UNLOCK(stcb);
11686 			SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11687 			error = EINVAL;
11688 			goto out;
11689 		}
11690 		SCTP_TCB_SEND_UNLOCK(stcb);
11691 
11692 		strm = &stcb->asoc.strmout[srcv->sinfo_stream];
11693 		if (strm->last_msg_incomplete == 0) {
11694 	do_a_copy_in:
11695 			sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error, non_blocking);
11696 			if ((sp == NULL) || (error)) {
11697 				goto out;
11698 			}
11699 			SCTP_TCB_SEND_LOCK(stcb);
11700 			if (sp->msg_is_complete) {
11701 				strm->last_msg_incomplete = 0;
11702 				asoc->stream_locked = 0;
11703 			} else {
11704 				/*
11705 				 * Just got locked to this guy in case of an
11706 				 * interrupt.
11707 				 */
11708 				strm->last_msg_incomplete = 1;
11709 				asoc->stream_locked = 1;
11710 				asoc->stream_locked_on = srcv->sinfo_stream;
11711 				sp->sender_all_done = 0;
11712 			}
11713 			sctp_snd_sb_alloc(stcb, sp->length);
11714 			atomic_add_int(&asoc->stream_queue_cnt, 1);
11715 			if ((srcv->sinfo_flags & SCTP_UNORDERED) == 0) {
11716 				sp->strseq = strm->next_sequence_sent;
11717 #ifdef SCTP_LOG_SENDING_STR
11718 				sctp_misc_ints(SCTP_STRMOUT_LOG_ASSIGN,
11719 				    (uintptr_t) stcb, (uintptr_t) sp,
11720 				    (uint32_t) ((srcv->sinfo_stream << 16) | sp->strseq), 0);
11721 #endif
11722 				strm->next_sequence_sent++;
11723 			} else {
11724 				SCTP_STAT_INCR(sctps_sends_with_unord);
11725 			}
11726 			TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
11727 			if ((strm->next_spoke.tqe_next == NULL) &&
11728 			    (strm->next_spoke.tqe_prev == NULL)) {
11729 				/* Not on wheel, insert */
11730 				sctp_insert_on_wheel(stcb, asoc, strm, 1);
11731 			}
11732 			SCTP_TCB_SEND_UNLOCK(stcb);
11733 		} else {
11734 			SCTP_TCB_SEND_LOCK(stcb);
11735 			sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
11736 			SCTP_TCB_SEND_UNLOCK(stcb);
11737 			if (sp == NULL) {
11738 				/* ???? Huh ??? last msg is gone */
11739 #ifdef INVARIANTS
11740 				panic("Warning: Last msg marked incomplete, yet nothing left?");
11741 #else
11742 				SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
11743 				strm->last_msg_incomplete = 0;
11744 #endif
11745 				goto do_a_copy_in;
11746 
11747 			}
11748 		}
11749 		while (uio->uio_resid > 0) {
11750 			/* How much room do we have? */
11751 			struct mbuf *new_tail, *mm;
11752 
11753 			if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
11754 				max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11755 			else
11756 				max_len = 0;
11757 
11758 			if ((max_len > sctp_add_more_threshold) ||
11759 			    (max_len && (SCTP_SB_LIMIT_SND(so) < sctp_add_more_threshold)) ||
11760 			    (uio->uio_resid &&
11761 			    (uio->uio_resid <= (int)max_len))) {
11762 				sndout = 0;
11763 				new_tail = NULL;
11764 				if (hold_tcblock) {
11765 					SCTP_TCB_UNLOCK(stcb);
11766 					hold_tcblock = 0;
11767 				}
11768 				mm = sctp_copy_resume(sp, uio, srcv, max_len, user_marks_eor, &error, &sndout, &new_tail);
11769 				if ((mm == NULL) || error) {
11770 					if (mm) {
11771 						sctp_m_freem(mm);
11772 					}
11773 					goto out;
11774 				}
11775 				/* Update the mbuf and count */
11776 				SCTP_TCB_SEND_LOCK(stcb);
11777 				if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11778 					/*
11779 					 * we need to get out. Peer probably
11780 					 * aborted.
11781 					 */
11782 					sctp_m_freem(mm);
11783 					if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
11784 						SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11785 						error = ECONNRESET;
11786 					}
11787 					SCTP_TCB_SEND_UNLOCK(stcb);
11788 					goto out;
11789 				}
11790 				if (sp->tail_mbuf) {
11791 					/* tack it to the end */
11792 					SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
11793 					sp->tail_mbuf = new_tail;
11794 				} else {
11795 					/* A stolen mbuf */
11796 					sp->data = mm;
11797 					sp->tail_mbuf = new_tail;
11798 				}
11799 				sctp_snd_sb_alloc(stcb, sndout);
11800 				atomic_add_int(&sp->length, sndout);
11801 				len += sndout;
11802 
11803 				/* Did we reach EOR? */
11804 				if ((uio->uio_resid == 0) &&
11805 				    ((user_marks_eor == 0) ||
11806 				    (srcv->sinfo_flags & SCTP_EOF) ||
11807 				    (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))
11808 				    ) {
11809 					sp->msg_is_complete = 1;
11810 				} else {
11811 					sp->msg_is_complete = 0;
11812 				}
11813 				SCTP_TCB_SEND_UNLOCK(stcb);
11814 			}
11815 			if (uio->uio_resid == 0) {
11816 				/* got it all? */
11817 				continue;
11818 			}
11819 			/* PR-SCTP? */
11820 			if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
11821 				/*
11822 				 * This is ugly but we must assure locking
11823 				 * order
11824 				 */
11825 				if (hold_tcblock == 0) {
11826 					SCTP_TCB_LOCK(stcb);
11827 					hold_tcblock = 1;
11828 				}
11829 				sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
11830 				if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
11831 					max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
11832 				else
11833 					max_len = 0;
11834 				if (max_len > 0) {
11835 					continue;
11836 				}
11837 				SCTP_TCB_UNLOCK(stcb);
11838 				hold_tcblock = 0;
11839 			}
11840 			/* wait for space now */
11841 			if (non_blocking) {
11842 				/* Non-blocking io in place out */
11843 				goto skip_out_eof;
11844 			}
11845 			if ((net->flight_size > net->cwnd) &&
11846 			    (sctp_cmt_on_off == 0)) {
11847 				queue_only = 1;
11848 			} else if (asoc->ifp_had_enobuf) {
11849 				SCTP_STAT_INCR(sctps_ifnomemqueued);
11850 				if (net->flight_size > (net->mtu * 2)) {
11851 					queue_only = 1;
11852 				} else {
11853 					queue_only = 0;
11854 				}
11855 				asoc->ifp_had_enobuf = 0;
11856 				un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11857 				    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
11858 				    sizeof(struct sctp_data_chunk)));
11859 			} else {
11860 				un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
11861 				    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
11862 				    sizeof(struct sctp_data_chunk)));
11863 				if (net->flight_size > (net->mtu * stcb->asoc.max_burst)) {
11864 					queue_only = 1;
11865 					SCTP_STAT_INCR(sctps_send_burst_avoid);
11866 				} else if (net->flight_size > net->cwnd) {
11867 					queue_only = 1;
11868 					SCTP_STAT_INCR(sctps_send_cwnd_avoid);
11869 				} else {
11870 					queue_only = 0;
11871 				}
11872 			}
11873 			if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
11874 			    (stcb->asoc.total_flight > 0) &&
11875 			    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
11876 			    ) {
11877 
11878 				/*-
11879 				 * Ok, Nagle is set on and we have data outstanding.
11880 				 * Don't send anything and let SACKs drive out the
11881 				 * data unless wen have a "full" segment to send.
11882 				 */
11883 				if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
11884 					sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
11885 				}
11886 				SCTP_STAT_INCR(sctps_naglequeued);
11887 				nagle_applies = 1;
11888 			} else {
11889 				if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
11890 					if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
11891 						sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
11892 				}
11893 				SCTP_STAT_INCR(sctps_naglesent);
11894 				nagle_applies = 0;
11895 			}
11896 			/* What about the INIT, send it maybe */
11897 			if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11898 
11899 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
11900 				    nagle_applies, un_sent);
11901 				sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
11902 				    stcb->asoc.total_flight,
11903 				    stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
11904 			}
11905 			if (queue_only_for_init) {
11906 				if (hold_tcblock == 0) {
11907 					SCTP_TCB_LOCK(stcb);
11908 					hold_tcblock = 1;
11909 				}
11910 				if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
11911 					/* a collision took us forward? */
11912 					queue_only_for_init = 0;
11913 					queue_only = 0;
11914 				} else {
11915 					sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
11916 					SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
11917 					queue_only_for_init = 0;
11918 					queue_only = 1;
11919 				}
11920 			}
11921 			if ((queue_only == 0) && (nagle_applies == 0)
11922 			    ) {
11923 				/*-
11924 				 * need to start chunk output
11925 				 * before blocking.. note that if
11926 				 * a lock is already applied, then
11927 				 * the input via the net is happening
11928 				 * and I don't need to start output :-D
11929 				 */
11930 				if (hold_tcblock == 0) {
11931 					if (SCTP_TCB_TRYLOCK(stcb)) {
11932 						hold_tcblock = 1;
11933 						sctp_chunk_output(inp,
11934 						    stcb,
11935 						    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
11936 					}
11937 				} else {
11938 					sctp_chunk_output(inp,
11939 					    stcb,
11940 					    SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
11941 				}
11942 				if (hold_tcblock == 1) {
11943 					SCTP_TCB_UNLOCK(stcb);
11944 					hold_tcblock = 0;
11945 				}
11946 			}
11947 			SOCKBUF_LOCK(&so->so_snd);
11948 			/*-
11949 			 * This is a bit strange, but I think it will
11950 			 * work. The total_output_queue_size is locked and
11951 			 * protected by the TCB_LOCK, which we just released.
11952 			 * There is a race that can occur between releasing it
11953 			 * above, and me getting the socket lock, where sacks
11954 			 * come in but we have not put the SB_WAIT on the
11955 			 * so_snd buffer to get the wakeup. After the LOCK
11956 			 * is applied the sack_processing will also need to
11957 			 * LOCK the so->so_snd to do the actual sowwakeup(). So
11958 			 * once we have the socket buffer lock if we recheck the
11959 			 * size we KNOW we will get to sleep safely with the
11960 			 * wakeup flag in place.
11961 			 */
11962 			if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
11963 			    min(sctp_add_more_threshold, SCTP_SB_LIMIT_SND(so)))
11964 			    ) {
11965 				if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11966 					sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
11967 					    so, asoc, uio->uio_resid);
11968 				}
11969 				be.error = 0;
11970 				stcb->block_entry = &be;
11971 				error = sbwait(&so->so_snd);
11972 				stcb->block_entry = NULL;
11973 
11974 				if (error || so->so_error || be.error) {
11975 					if (error == 0) {
11976 						if (so->so_error)
11977 							error = so->so_error;
11978 						if (be.error) {
11979 							error = be.error;
11980 						}
11981 					}
11982 					SOCKBUF_UNLOCK(&so->so_snd);
11983 					goto out_unlocked;
11984 				}
11985 				if (sctp_logging_level & SCTP_BLK_LOGGING_ENABLE) {
11986 					sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
11987 					    so, asoc, stcb->asoc.total_output_queue_size);
11988 				}
11989 			}
11990 			SOCKBUF_UNLOCK(&so->so_snd);
11991 			if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
11992 				goto out_unlocked;
11993 			}
11994 		}
11995 		SCTP_TCB_SEND_LOCK(stcb);
11996 		if (sp) {
11997 			if (sp->msg_is_complete == 0) {
11998 				strm->last_msg_incomplete = 1;
11999 				asoc->stream_locked = 1;
12000 				asoc->stream_locked_on = srcv->sinfo_stream;
12001 			} else {
12002 				sp->sender_all_done = 1;
12003 				strm->last_msg_incomplete = 0;
12004 				asoc->stream_locked = 0;
12005 			}
12006 		} else {
12007 			SCTP_PRINTF("Huh no sp TSNH?\n");
12008 			strm->last_msg_incomplete = 0;
12009 			asoc->stream_locked = 0;
12010 		}
12011 		SCTP_TCB_SEND_UNLOCK(stcb);
12012 		if (uio->uio_resid == 0) {
12013 			got_all_of_the_send = 1;
12014 		}
12015 	} else if (top) {
12016 		/* We send in a 0, since we do NOT have any locks */
12017 		error = sctp_msg_append(stcb, net, top, srcv, 0);
12018 		top = NULL;
12019 		if (srcv->sinfo_flags & SCTP_EOF) {
12020 			/*
12021 			 * This should only happen for Panda for the mbuf
12022 			 * send case, which does NOT yet support EEOR mode.
12023 			 * Thus, we can just set this flag to do the proper
12024 			 * EOF handling.
12025 			 */
12026 			got_all_of_the_send = 1;
12027 		}
12028 	}
12029 	if (error) {
12030 		goto out;
12031 	}
12032 dataless_eof:
12033 	/* EOF thing ? */
12034 	if ((srcv->sinfo_flags & SCTP_EOF) &&
12035 	    (got_all_of_the_send == 1) &&
12036 	    (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)
12037 	    ) {
12038 		int cnt;
12039 
12040 		SCTP_STAT_INCR(sctps_sends_with_eof);
12041 		error = 0;
12042 		if (hold_tcblock == 0) {
12043 			SCTP_TCB_LOCK(stcb);
12044 			hold_tcblock = 1;
12045 		}
12046 		cnt = sctp_is_there_unsent_data(stcb);
12047 		if (TAILQ_EMPTY(&asoc->send_queue) &&
12048 		    TAILQ_EMPTY(&asoc->sent_queue) &&
12049 		    (cnt == 0)) {
12050 			if (asoc->locked_on_sending) {
12051 				goto abort_anyway;
12052 			}
12053 			/* there is nothing queued to send, so I'm done... */
12054 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
12055 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
12056 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
12057 				/* only send SHUTDOWN the first time through */
12058 				sctp_send_shutdown(stcb, stcb->asoc.primary_destination);
12059 				if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
12060 					SCTP_STAT_DECR_GAUGE32(sctps_currestab);
12061 				}
12062 				SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
12063 				SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
12064 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
12065 				    asoc->primary_destination);
12066 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
12067 				    asoc->primary_destination);
12068 			}
12069 		} else {
12070 			/*-
12071 			 * we still got (or just got) data to send, so set
12072 			 * SHUTDOWN_PENDING
12073 			 */
12074 			/*-
12075 			 * XXX sockets draft says that SCTP_EOF should be
12076 			 * sent with no data.  currently, we will allow user
12077 			 * data to be sent first and move to
12078 			 * SHUTDOWN-PENDING
12079 			 */
12080 			if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
12081 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
12082 			    (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
12083 				if (hold_tcblock == 0) {
12084 					SCTP_TCB_LOCK(stcb);
12085 					hold_tcblock = 1;
12086 				}
12087 				if (asoc->locked_on_sending) {
12088 					/* Locked to send out the data */
12089 					struct sctp_stream_queue_pending *sp;
12090 
12091 					sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
12092 					if (sp) {
12093 						if ((sp->length == 0) && (sp->msg_is_complete == 0))
12094 							asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
12095 					}
12096 				}
12097 				asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
12098 				if (TAILQ_EMPTY(&asoc->send_queue) &&
12099 				    TAILQ_EMPTY(&asoc->sent_queue) &&
12100 				    (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
12101 			abort_anyway:
12102 					if (free_cnt_applied) {
12103 						atomic_add_int(&stcb->asoc.refcnt, -1);
12104 						free_cnt_applied = 0;
12105 					}
12106 					sctp_abort_an_association(stcb->sctp_ep, stcb,
12107 					    SCTP_RESPONSE_TO_USER_REQ,
12108 					    NULL, SCTP_SO_LOCKED);
12109 					/*
12110 					 * now relock the stcb so everything
12111 					 * is sane
12112 					 */
12113 					hold_tcblock = 0;
12114 					stcb = NULL;
12115 					goto out;
12116 				}
12117 				sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
12118 				    asoc->primary_destination);
12119 				sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
12120 			}
12121 		}
12122 	}
12123 skip_out_eof:
12124 	if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
12125 		some_on_control = 1;
12126 	}
12127 	if ((net->flight_size > net->cwnd) &&
12128 	    (sctp_cmt_on_off == 0)) {
12129 		queue_only = 1;
12130 	} else if (asoc->ifp_had_enobuf) {
12131 		SCTP_STAT_INCR(sctps_ifnomemqueued);
12132 		if (net->flight_size > (net->mtu * 2)) {
12133 			queue_only = 1;
12134 		} else {
12135 			queue_only = 0;
12136 		}
12137 		asoc->ifp_had_enobuf = 0;
12138 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12139 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
12140 		    sizeof(struct sctp_data_chunk)));
12141 	} else {
12142 		un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12143 		    ((stcb->asoc.chunks_on_out_queue - stcb->asoc.total_flight_count) *
12144 		    sizeof(struct sctp_data_chunk)));
12145 		if (net->flight_size > (net->mtu * stcb->asoc.max_burst)) {
12146 			queue_only = 1;
12147 			SCTP_STAT_INCR(sctps_send_burst_avoid);
12148 		} else if (net->flight_size > net->cwnd) {
12149 			queue_only = 1;
12150 			SCTP_STAT_INCR(sctps_send_cwnd_avoid);
12151 		} else {
12152 			queue_only = 0;
12153 		}
12154 	}
12155 	if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
12156 	    (stcb->asoc.total_flight > 0) &&
12157 	    (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))
12158 	    ) {
12159 		/*-
12160 		 * Ok, Nagle is set on and we have data outstanding.
12161 		 * Don't send anything and let SACKs drive out the
12162 		 * data unless wen have a "full" segment to send.
12163 		 */
12164 		if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
12165 			sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
12166 		}
12167 		SCTP_STAT_INCR(sctps_naglequeued);
12168 		nagle_applies = 1;
12169 	} else {
12170 		if (sctp_logging_level & SCTP_NAGLE_LOGGING_ENABLE) {
12171 			if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
12172 				sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
12173 		}
12174 		SCTP_STAT_INCR(sctps_naglesent);
12175 		nagle_applies = 0;
12176 	}
12177 	if (queue_only_for_init) {
12178 		if (hold_tcblock == 0) {
12179 			SCTP_TCB_LOCK(stcb);
12180 			hold_tcblock = 1;
12181 		}
12182 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
12183 			/* a collision took us forward? */
12184 			queue_only_for_init = 0;
12185 			queue_only = 0;
12186 		} else {
12187 			sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
12188 			SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
12189 			queue_only_for_init = 0;
12190 			queue_only = 1;
12191 		}
12192 	}
12193 	if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
12194 		/* we can attempt to send too. */
12195 		if (hold_tcblock == 0) {
12196 			/*
12197 			 * If there is activity recv'ing sacks no need to
12198 			 * send
12199 			 */
12200 			if (SCTP_TCB_TRYLOCK(stcb)) {
12201 				sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12202 				hold_tcblock = 1;
12203 			}
12204 		} else {
12205 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12206 		}
12207 	} else if ((queue_only == 0) &&
12208 		    (stcb->asoc.peers_rwnd == 0) &&
12209 	    (stcb->asoc.total_flight == 0)) {
12210 		/* We get to have a probe outstanding */
12211 		if (hold_tcblock == 0) {
12212 			hold_tcblock = 1;
12213 			SCTP_TCB_LOCK(stcb);
12214 		}
12215 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12216 	} else if (some_on_control) {
12217 		int num_out, reason, cwnd_full, frag_point;
12218 
12219 		/* Here we do control only */
12220 		if (hold_tcblock == 0) {
12221 			hold_tcblock = 1;
12222 			SCTP_TCB_LOCK(stcb);
12223 		}
12224 		frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
12225 		(void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
12226 		    &reason, 1, &cwnd_full, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
12227 	}
12228 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d",
12229 	    queue_only, stcb->asoc.peers_rwnd, un_sent,
12230 	    stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
12231 	    stcb->asoc.total_output_queue_size, error);
12232 
12233 out:
12234 out_unlocked:
12235 
12236 
12237 	if (create_lock_applied) {
12238 		SCTP_ASOC_CREATE_UNLOCK(inp);
12239 		create_lock_applied = 0;
12240 	}
12241 	if ((stcb) && hold_tcblock) {
12242 		SCTP_TCB_UNLOCK(stcb);
12243 	}
12244 	if (stcb && free_cnt_applied) {
12245 		atomic_add_int(&stcb->asoc.refcnt, -1);
12246 	}
12247 #ifdef INVARIANTS
12248 	if (stcb) {
12249 		if (mtx_owned(&stcb->tcb_mtx)) {
12250 			panic("Leaving with tcb mtx owned?");
12251 		}
12252 		if (mtx_owned(&stcb->tcb_send_mtx)) {
12253 			panic("Leaving with tcb send mtx owned?");
12254 		}
12255 	}
12256 #endif
12257 	if (top) {
12258 		sctp_m_freem(top);
12259 	}
12260 	if (control) {
12261 		sctp_m_freem(control);
12262 	}
12263 	return (error);
12264 }
12265 
12266 
12267 /*
12268  * generate an AUTHentication chunk, if required
12269  */
12270 struct mbuf *
12271 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
12272     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
12273     struct sctp_tcb *stcb, uint8_t chunk)
12274 {
12275 	struct mbuf *m_auth;
12276 	struct sctp_auth_chunk *auth;
12277 	int chunk_len;
12278 
12279 	if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
12280 	    (stcb == NULL))
12281 		return (m);
12282 
12283 	/* sysctl disabled auth? */
12284 	if (sctp_auth_disable)
12285 		return (m);
12286 
12287 	/* peer doesn't do auth... */
12288 	if (!stcb->asoc.peer_supports_auth) {
12289 		return (m);
12290 	}
12291 	/* does the requested chunk require auth? */
12292 	if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
12293 		return (m);
12294 	}
12295 	m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_DONTWAIT, 1, MT_HEADER);
12296 	if (m_auth == NULL) {
12297 		/* no mbuf's */
12298 		return (m);
12299 	}
12300 	/* reserve some space if this will be the first mbuf */
12301 	if (m == NULL)
12302 		SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
12303 	/* fill in the AUTH chunk details */
12304 	auth = mtod(m_auth, struct sctp_auth_chunk *);
12305 	bzero(auth, sizeof(*auth));
12306 	auth->ch.chunk_type = SCTP_AUTHENTICATION;
12307 	auth->ch.chunk_flags = 0;
12308 	chunk_len = sizeof(*auth) +
12309 	    sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
12310 	auth->ch.chunk_length = htons(chunk_len);
12311 	auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
12312 	/* key id and hmac digest will be computed and filled in upon send */
12313 
12314 	/* save the offset where the auth was inserted into the chain */
12315 	if (m != NULL) {
12316 		struct mbuf *cn;
12317 
12318 		*offset = 0;
12319 		cn = m;
12320 		while (cn) {
12321 			*offset += SCTP_BUF_LEN(cn);
12322 			cn = SCTP_BUF_NEXT(cn);
12323 		}
12324 	} else
12325 		*offset = 0;
12326 
12327 	/* update length and return pointer to the auth chunk */
12328 	SCTP_BUF_LEN(m_auth) = chunk_len;
12329 	m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
12330 	if (auth_ret != NULL)
12331 		*auth_ret = auth;
12332 
12333 	return (m);
12334 }
12335 
12336 int
12337 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
12338 {
12339 	struct nd_prefix *pfx = NULL;
12340 	struct nd_pfxrouter *pfxrtr = NULL;
12341 	struct sockaddr_in6 gw6;
12342 
12343 	if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
12344 		return (0);
12345 
12346 	/* get prefix entry of address */
12347 	LIST_FOREACH(pfx, &nd_prefix, ndpr_entry) {
12348 		if (pfx->ndpr_stateflags & NDPRF_DETACHED)
12349 			continue;
12350 		if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
12351 		    &src6->sin6_addr, &pfx->ndpr_mask))
12352 			break;
12353 	}
12354 	/* no prefix entry in the prefix list */
12355 	if (pfx == NULL) {
12356 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
12357 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
12358 		return (0);
12359 	}
12360 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
12361 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
12362 
12363 	/* search installed gateway from prefix entry */
12364 	for (pfxrtr = pfx->ndpr_advrtrs.lh_first; pfxrtr; pfxrtr =
12365 	    pfxrtr->pfr_next) {
12366 		memset(&gw6, 0, sizeof(struct sockaddr_in6));
12367 		gw6.sin6_family = AF_INET6;
12368 		gw6.sin6_len = sizeof(struct sockaddr_in6);
12369 		memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
12370 		    sizeof(struct in6_addr));
12371 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
12372 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
12373 		SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
12374 		SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
12375 		if (sctp_cmpaddr((struct sockaddr *)&gw6,
12376 		    ro->ro_rt->rt_gateway)) {
12377 			SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
12378 			return (1);
12379 		}
12380 	}
12381 	SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
12382 	return (0);
12383 }
12384 int
12385 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
12386 {
12387 	struct sockaddr_in *sin, *mask;
12388 	struct ifaddr *ifa;
12389 	struct in_addr srcnetaddr, gwnetaddr;
12390 
12391 	if (ro == NULL || ro->ro_rt == NULL ||
12392 	    sifa->address.sa.sa_family != AF_INET) {
12393 		return (0);
12394 	}
12395 	ifa = (struct ifaddr *)sifa->ifa;
12396 	mask = (struct sockaddr_in *)(ifa->ifa_netmask);
12397 	sin = (struct sockaddr_in *)&sifa->address.sin;
12398 	srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
12399 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
12400 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
12401 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
12402 
12403 	sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
12404 	gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
12405 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
12406 	SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
12407 	SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
12408 	if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
12409 		return (1);
12410 	}
12411 	return (0);
12412 }
12413