]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_output.c
Merge ACPICA 20160930.
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_output.c
1 /*-
2  * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * a) Redistributions of source code must retain the above copyright notice,
10  *    this list of conditions and the following disclaimer.
11  *
12  * b) Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the distribution.
15  *
16  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <netinet/sctp_os.h>
37 #include <sys/proc.h>
38 #include <netinet/sctp_var.h>
39 #include <netinet/sctp_sysctl.h>
40 #include <netinet/sctp_header.h>
41 #include <netinet/sctp_pcb.h>
42 #include <netinet/sctputil.h>
43 #include <netinet/sctp_output.h>
44 #include <netinet/sctp_uio.h>
45 #include <netinet/sctputil.h>
46 #include <netinet/sctp_auth.h>
47 #include <netinet/sctp_timer.h>
48 #include <netinet/sctp_asconf.h>
49 #include <netinet/sctp_indata.h>
50 #include <netinet/sctp_bsd_addr.h>
51 #include <netinet/sctp_input.h>
52 #include <netinet/sctp_crc32.h>
53 #if defined(INET) || defined(INET6)
54 #include <netinet/udp.h>
55 #endif
56 #include <netinet/udp_var.h>
57 #include <machine/in_cksum.h>
58
59
60
61 #define SCTP_MAX_GAPS_INARRAY 4
62 struct sack_track {
63         uint8_t right_edge;     /* mergable on the right edge */
64         uint8_t left_edge;      /* mergable on the left edge */
65         uint8_t num_entries;
66         uint8_t spare;
67         struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
68 };
69
70 const struct sack_track sack_array[256] = {
71         {0, 0, 0, 0,            /* 0x00 */
72                 {{0, 0},
73                 {0, 0},
74                 {0, 0},
75                 {0, 0}
76                 }
77         },
78         {1, 0, 1, 0,            /* 0x01 */
79                 {{0, 0},
80                 {0, 0},
81                 {0, 0},
82                 {0, 0}
83                 }
84         },
85         {0, 0, 1, 0,            /* 0x02 */
86                 {{1, 1},
87                 {0, 0},
88                 {0, 0},
89                 {0, 0}
90                 }
91         },
92         {1, 0, 1, 0,            /* 0x03 */
93                 {{0, 1},
94                 {0, 0},
95                 {0, 0},
96                 {0, 0}
97                 }
98         },
99         {0, 0, 1, 0,            /* 0x04 */
100                 {{2, 2},
101                 {0, 0},
102                 {0, 0},
103                 {0, 0}
104                 }
105         },
106         {1, 0, 2, 0,            /* 0x05 */
107                 {{0, 0},
108                 {2, 2},
109                 {0, 0},
110                 {0, 0}
111                 }
112         },
113         {0, 0, 1, 0,            /* 0x06 */
114                 {{1, 2},
115                 {0, 0},
116                 {0, 0},
117                 {0, 0}
118                 }
119         },
120         {1, 0, 1, 0,            /* 0x07 */
121                 {{0, 2},
122                 {0, 0},
123                 {0, 0},
124                 {0, 0}
125                 }
126         },
127         {0, 0, 1, 0,            /* 0x08 */
128                 {{3, 3},
129                 {0, 0},
130                 {0, 0},
131                 {0, 0}
132                 }
133         },
134         {1, 0, 2, 0,            /* 0x09 */
135                 {{0, 0},
136                 {3, 3},
137                 {0, 0},
138                 {0, 0}
139                 }
140         },
141         {0, 0, 2, 0,            /* 0x0a */
142                 {{1, 1},
143                 {3, 3},
144                 {0, 0},
145                 {0, 0}
146                 }
147         },
148         {1, 0, 2, 0,            /* 0x0b */
149                 {{0, 1},
150                 {3, 3},
151                 {0, 0},
152                 {0, 0}
153                 }
154         },
155         {0, 0, 1, 0,            /* 0x0c */
156                 {{2, 3},
157                 {0, 0},
158                 {0, 0},
159                 {0, 0}
160                 }
161         },
162         {1, 0, 2, 0,            /* 0x0d */
163                 {{0, 0},
164                 {2, 3},
165                 {0, 0},
166                 {0, 0}
167                 }
168         },
169         {0, 0, 1, 0,            /* 0x0e */
170                 {{1, 3},
171                 {0, 0},
172                 {0, 0},
173                 {0, 0}
174                 }
175         },
176         {1, 0, 1, 0,            /* 0x0f */
177                 {{0, 3},
178                 {0, 0},
179                 {0, 0},
180                 {0, 0}
181                 }
182         },
183         {0, 0, 1, 0,            /* 0x10 */
184                 {{4, 4},
185                 {0, 0},
186                 {0, 0},
187                 {0, 0}
188                 }
189         },
190         {1, 0, 2, 0,            /* 0x11 */
191                 {{0, 0},
192                 {4, 4},
193                 {0, 0},
194                 {0, 0}
195                 }
196         },
197         {0, 0, 2, 0,            /* 0x12 */
198                 {{1, 1},
199                 {4, 4},
200                 {0, 0},
201                 {0, 0}
202                 }
203         },
204         {1, 0, 2, 0,            /* 0x13 */
205                 {{0, 1},
206                 {4, 4},
207                 {0, 0},
208                 {0, 0}
209                 }
210         },
211         {0, 0, 2, 0,            /* 0x14 */
212                 {{2, 2},
213                 {4, 4},
214                 {0, 0},
215                 {0, 0}
216                 }
217         },
218         {1, 0, 3, 0,            /* 0x15 */
219                 {{0, 0},
220                 {2, 2},
221                 {4, 4},
222                 {0, 0}
223                 }
224         },
225         {0, 0, 2, 0,            /* 0x16 */
226                 {{1, 2},
227                 {4, 4},
228                 {0, 0},
229                 {0, 0}
230                 }
231         },
232         {1, 0, 2, 0,            /* 0x17 */
233                 {{0, 2},
234                 {4, 4},
235                 {0, 0},
236                 {0, 0}
237                 }
238         },
239         {0, 0, 1, 0,            /* 0x18 */
240                 {{3, 4},
241                 {0, 0},
242                 {0, 0},
243                 {0, 0}
244                 }
245         },
246         {1, 0, 2, 0,            /* 0x19 */
247                 {{0, 0},
248                 {3, 4},
249                 {0, 0},
250                 {0, 0}
251                 }
252         },
253         {0, 0, 2, 0,            /* 0x1a */
254                 {{1, 1},
255                 {3, 4},
256                 {0, 0},
257                 {0, 0}
258                 }
259         },
260         {1, 0, 2, 0,            /* 0x1b */
261                 {{0, 1},
262                 {3, 4},
263                 {0, 0},
264                 {0, 0}
265                 }
266         },
267         {0, 0, 1, 0,            /* 0x1c */
268                 {{2, 4},
269                 {0, 0},
270                 {0, 0},
271                 {0, 0}
272                 }
273         },
274         {1, 0, 2, 0,            /* 0x1d */
275                 {{0, 0},
276                 {2, 4},
277                 {0, 0},
278                 {0, 0}
279                 }
280         },
281         {0, 0, 1, 0,            /* 0x1e */
282                 {{1, 4},
283                 {0, 0},
284                 {0, 0},
285                 {0, 0}
286                 }
287         },
288         {1, 0, 1, 0,            /* 0x1f */
289                 {{0, 4},
290                 {0, 0},
291                 {0, 0},
292                 {0, 0}
293                 }
294         },
295         {0, 0, 1, 0,            /* 0x20 */
296                 {{5, 5},
297                 {0, 0},
298                 {0, 0},
299                 {0, 0}
300                 }
301         },
302         {1, 0, 2, 0,            /* 0x21 */
303                 {{0, 0},
304                 {5, 5},
305                 {0, 0},
306                 {0, 0}
307                 }
308         },
309         {0, 0, 2, 0,            /* 0x22 */
310                 {{1, 1},
311                 {5, 5},
312                 {0, 0},
313                 {0, 0}
314                 }
315         },
316         {1, 0, 2, 0,            /* 0x23 */
317                 {{0, 1},
318                 {5, 5},
319                 {0, 0},
320                 {0, 0}
321                 }
322         },
323         {0, 0, 2, 0,            /* 0x24 */
324                 {{2, 2},
325                 {5, 5},
326                 {0, 0},
327                 {0, 0}
328                 }
329         },
330         {1, 0, 3, 0,            /* 0x25 */
331                 {{0, 0},
332                 {2, 2},
333                 {5, 5},
334                 {0, 0}
335                 }
336         },
337         {0, 0, 2, 0,            /* 0x26 */
338                 {{1, 2},
339                 {5, 5},
340                 {0, 0},
341                 {0, 0}
342                 }
343         },
344         {1, 0, 2, 0,            /* 0x27 */
345                 {{0, 2},
346                 {5, 5},
347                 {0, 0},
348                 {0, 0}
349                 }
350         },
351         {0, 0, 2, 0,            /* 0x28 */
352                 {{3, 3},
353                 {5, 5},
354                 {0, 0},
355                 {0, 0}
356                 }
357         },
358         {1, 0, 3, 0,            /* 0x29 */
359                 {{0, 0},
360                 {3, 3},
361                 {5, 5},
362                 {0, 0}
363                 }
364         },
365         {0, 0, 3, 0,            /* 0x2a */
366                 {{1, 1},
367                 {3, 3},
368                 {5, 5},
369                 {0, 0}
370                 }
371         },
372         {1, 0, 3, 0,            /* 0x2b */
373                 {{0, 1},
374                 {3, 3},
375                 {5, 5},
376                 {0, 0}
377                 }
378         },
379         {0, 0, 2, 0,            /* 0x2c */
380                 {{2, 3},
381                 {5, 5},
382                 {0, 0},
383                 {0, 0}
384                 }
385         },
386         {1, 0, 3, 0,            /* 0x2d */
387                 {{0, 0},
388                 {2, 3},
389                 {5, 5},
390                 {0, 0}
391                 }
392         },
393         {0, 0, 2, 0,            /* 0x2e */
394                 {{1, 3},
395                 {5, 5},
396                 {0, 0},
397                 {0, 0}
398                 }
399         },
400         {1, 0, 2, 0,            /* 0x2f */
401                 {{0, 3},
402                 {5, 5},
403                 {0, 0},
404                 {0, 0}
405                 }
406         },
407         {0, 0, 1, 0,            /* 0x30 */
408                 {{4, 5},
409                 {0, 0},
410                 {0, 0},
411                 {0, 0}
412                 }
413         },
414         {1, 0, 2, 0,            /* 0x31 */
415                 {{0, 0},
416                 {4, 5},
417                 {0, 0},
418                 {0, 0}
419                 }
420         },
421         {0, 0, 2, 0,            /* 0x32 */
422                 {{1, 1},
423                 {4, 5},
424                 {0, 0},
425                 {0, 0}
426                 }
427         },
428         {1, 0, 2, 0,            /* 0x33 */
429                 {{0, 1},
430                 {4, 5},
431                 {0, 0},
432                 {0, 0}
433                 }
434         },
435         {0, 0, 2, 0,            /* 0x34 */
436                 {{2, 2},
437                 {4, 5},
438                 {0, 0},
439                 {0, 0}
440                 }
441         },
442         {1, 0, 3, 0,            /* 0x35 */
443                 {{0, 0},
444                 {2, 2},
445                 {4, 5},
446                 {0, 0}
447                 }
448         },
449         {0, 0, 2, 0,            /* 0x36 */
450                 {{1, 2},
451                 {4, 5},
452                 {0, 0},
453                 {0, 0}
454                 }
455         },
456         {1, 0, 2, 0,            /* 0x37 */
457                 {{0, 2},
458                 {4, 5},
459                 {0, 0},
460                 {0, 0}
461                 }
462         },
463         {0, 0, 1, 0,            /* 0x38 */
464                 {{3, 5},
465                 {0, 0},
466                 {0, 0},
467                 {0, 0}
468                 }
469         },
470         {1, 0, 2, 0,            /* 0x39 */
471                 {{0, 0},
472                 {3, 5},
473                 {0, 0},
474                 {0, 0}
475                 }
476         },
477         {0, 0, 2, 0,            /* 0x3a */
478                 {{1, 1},
479                 {3, 5},
480                 {0, 0},
481                 {0, 0}
482                 }
483         },
484         {1, 0, 2, 0,            /* 0x3b */
485                 {{0, 1},
486                 {3, 5},
487                 {0, 0},
488                 {0, 0}
489                 }
490         },
491         {0, 0, 1, 0,            /* 0x3c */
492                 {{2, 5},
493                 {0, 0},
494                 {0, 0},
495                 {0, 0}
496                 }
497         },
498         {1, 0, 2, 0,            /* 0x3d */
499                 {{0, 0},
500                 {2, 5},
501                 {0, 0},
502                 {0, 0}
503                 }
504         },
505         {0, 0, 1, 0,            /* 0x3e */
506                 {{1, 5},
507                 {0, 0},
508                 {0, 0},
509                 {0, 0}
510                 }
511         },
512         {1, 0, 1, 0,            /* 0x3f */
513                 {{0, 5},
514                 {0, 0},
515                 {0, 0},
516                 {0, 0}
517                 }
518         },
519         {0, 0, 1, 0,            /* 0x40 */
520                 {{6, 6},
521                 {0, 0},
522                 {0, 0},
523                 {0, 0}
524                 }
525         },
526         {1, 0, 2, 0,            /* 0x41 */
527                 {{0, 0},
528                 {6, 6},
529                 {0, 0},
530                 {0, 0}
531                 }
532         },
533         {0, 0, 2, 0,            /* 0x42 */
534                 {{1, 1},
535                 {6, 6},
536                 {0, 0},
537                 {0, 0}
538                 }
539         },
540         {1, 0, 2, 0,            /* 0x43 */
541                 {{0, 1},
542                 {6, 6},
543                 {0, 0},
544                 {0, 0}
545                 }
546         },
547         {0, 0, 2, 0,            /* 0x44 */
548                 {{2, 2},
549                 {6, 6},
550                 {0, 0},
551                 {0, 0}
552                 }
553         },
554         {1, 0, 3, 0,            /* 0x45 */
555                 {{0, 0},
556                 {2, 2},
557                 {6, 6},
558                 {0, 0}
559                 }
560         },
561         {0, 0, 2, 0,            /* 0x46 */
562                 {{1, 2},
563                 {6, 6},
564                 {0, 0},
565                 {0, 0}
566                 }
567         },
568         {1, 0, 2, 0,            /* 0x47 */
569                 {{0, 2},
570                 {6, 6},
571                 {0, 0},
572                 {0, 0}
573                 }
574         },
575         {0, 0, 2, 0,            /* 0x48 */
576                 {{3, 3},
577                 {6, 6},
578                 {0, 0},
579                 {0, 0}
580                 }
581         },
582         {1, 0, 3, 0,            /* 0x49 */
583                 {{0, 0},
584                 {3, 3},
585                 {6, 6},
586                 {0, 0}
587                 }
588         },
589         {0, 0, 3, 0,            /* 0x4a */
590                 {{1, 1},
591                 {3, 3},
592                 {6, 6},
593                 {0, 0}
594                 }
595         },
596         {1, 0, 3, 0,            /* 0x4b */
597                 {{0, 1},
598                 {3, 3},
599                 {6, 6},
600                 {0, 0}
601                 }
602         },
603         {0, 0, 2, 0,            /* 0x4c */
604                 {{2, 3},
605                 {6, 6},
606                 {0, 0},
607                 {0, 0}
608                 }
609         },
610         {1, 0, 3, 0,            /* 0x4d */
611                 {{0, 0},
612                 {2, 3},
613                 {6, 6},
614                 {0, 0}
615                 }
616         },
617         {0, 0, 2, 0,            /* 0x4e */
618                 {{1, 3},
619                 {6, 6},
620                 {0, 0},
621                 {0, 0}
622                 }
623         },
624         {1, 0, 2, 0,            /* 0x4f */
625                 {{0, 3},
626                 {6, 6},
627                 {0, 0},
628                 {0, 0}
629                 }
630         },
631         {0, 0, 2, 0,            /* 0x50 */
632                 {{4, 4},
633                 {6, 6},
634                 {0, 0},
635                 {0, 0}
636                 }
637         },
638         {1, 0, 3, 0,            /* 0x51 */
639                 {{0, 0},
640                 {4, 4},
641                 {6, 6},
642                 {0, 0}
643                 }
644         },
645         {0, 0, 3, 0,            /* 0x52 */
646                 {{1, 1},
647                 {4, 4},
648                 {6, 6},
649                 {0, 0}
650                 }
651         },
652         {1, 0, 3, 0,            /* 0x53 */
653                 {{0, 1},
654                 {4, 4},
655                 {6, 6},
656                 {0, 0}
657                 }
658         },
659         {0, 0, 3, 0,            /* 0x54 */
660                 {{2, 2},
661                 {4, 4},
662                 {6, 6},
663                 {0, 0}
664                 }
665         },
666         {1, 0, 4, 0,            /* 0x55 */
667                 {{0, 0},
668                 {2, 2},
669                 {4, 4},
670                 {6, 6}
671                 }
672         },
673         {0, 0, 3, 0,            /* 0x56 */
674                 {{1, 2},
675                 {4, 4},
676                 {6, 6},
677                 {0, 0}
678                 }
679         },
680         {1, 0, 3, 0,            /* 0x57 */
681                 {{0, 2},
682                 {4, 4},
683                 {6, 6},
684                 {0, 0}
685                 }
686         },
687         {0, 0, 2, 0,            /* 0x58 */
688                 {{3, 4},
689                 {6, 6},
690                 {0, 0},
691                 {0, 0}
692                 }
693         },
694         {1, 0, 3, 0,            /* 0x59 */
695                 {{0, 0},
696                 {3, 4},
697                 {6, 6},
698                 {0, 0}
699                 }
700         },
701         {0, 0, 3, 0,            /* 0x5a */
702                 {{1, 1},
703                 {3, 4},
704                 {6, 6},
705                 {0, 0}
706                 }
707         },
708         {1, 0, 3, 0,            /* 0x5b */
709                 {{0, 1},
710                 {3, 4},
711                 {6, 6},
712                 {0, 0}
713                 }
714         },
715         {0, 0, 2, 0,            /* 0x5c */
716                 {{2, 4},
717                 {6, 6},
718                 {0, 0},
719                 {0, 0}
720                 }
721         },
722         {1, 0, 3, 0,            /* 0x5d */
723                 {{0, 0},
724                 {2, 4},
725                 {6, 6},
726                 {0, 0}
727                 }
728         },
729         {0, 0, 2, 0,            /* 0x5e */
730                 {{1, 4},
731                 {6, 6},
732                 {0, 0},
733                 {0, 0}
734                 }
735         },
736         {1, 0, 2, 0,            /* 0x5f */
737                 {{0, 4},
738                 {6, 6},
739                 {0, 0},
740                 {0, 0}
741                 }
742         },
743         {0, 0, 1, 0,            /* 0x60 */
744                 {{5, 6},
745                 {0, 0},
746                 {0, 0},
747                 {0, 0}
748                 }
749         },
750         {1, 0, 2, 0,            /* 0x61 */
751                 {{0, 0},
752                 {5, 6},
753                 {0, 0},
754                 {0, 0}
755                 }
756         },
757         {0, 0, 2, 0,            /* 0x62 */
758                 {{1, 1},
759                 {5, 6},
760                 {0, 0},
761                 {0, 0}
762                 }
763         },
764         {1, 0, 2, 0,            /* 0x63 */
765                 {{0, 1},
766                 {5, 6},
767                 {0, 0},
768                 {0, 0}
769                 }
770         },
771         {0, 0, 2, 0,            /* 0x64 */
772                 {{2, 2},
773                 {5, 6},
774                 {0, 0},
775                 {0, 0}
776                 }
777         },
778         {1, 0, 3, 0,            /* 0x65 */
779                 {{0, 0},
780                 {2, 2},
781                 {5, 6},
782                 {0, 0}
783                 }
784         },
785         {0, 0, 2, 0,            /* 0x66 */
786                 {{1, 2},
787                 {5, 6},
788                 {0, 0},
789                 {0, 0}
790                 }
791         },
792         {1, 0, 2, 0,            /* 0x67 */
793                 {{0, 2},
794                 {5, 6},
795                 {0, 0},
796                 {0, 0}
797                 }
798         },
799         {0, 0, 2, 0,            /* 0x68 */
800                 {{3, 3},
801                 {5, 6},
802                 {0, 0},
803                 {0, 0}
804                 }
805         },
806         {1, 0, 3, 0,            /* 0x69 */
807                 {{0, 0},
808                 {3, 3},
809                 {5, 6},
810                 {0, 0}
811                 }
812         },
813         {0, 0, 3, 0,            /* 0x6a */
814                 {{1, 1},
815                 {3, 3},
816                 {5, 6},
817                 {0, 0}
818                 }
819         },
820         {1, 0, 3, 0,            /* 0x6b */
821                 {{0, 1},
822                 {3, 3},
823                 {5, 6},
824                 {0, 0}
825                 }
826         },
827         {0, 0, 2, 0,            /* 0x6c */
828                 {{2, 3},
829                 {5, 6},
830                 {0, 0},
831                 {0, 0}
832                 }
833         },
834         {1, 0, 3, 0,            /* 0x6d */
835                 {{0, 0},
836                 {2, 3},
837                 {5, 6},
838                 {0, 0}
839                 }
840         },
841         {0, 0, 2, 0,            /* 0x6e */
842                 {{1, 3},
843                 {5, 6},
844                 {0, 0},
845                 {0, 0}
846                 }
847         },
848         {1, 0, 2, 0,            /* 0x6f */
849                 {{0, 3},
850                 {5, 6},
851                 {0, 0},
852                 {0, 0}
853                 }
854         },
855         {0, 0, 1, 0,            /* 0x70 */
856                 {{4, 6},
857                 {0, 0},
858                 {0, 0},
859                 {0, 0}
860                 }
861         },
862         {1, 0, 2, 0,            /* 0x71 */
863                 {{0, 0},
864                 {4, 6},
865                 {0, 0},
866                 {0, 0}
867                 }
868         },
869         {0, 0, 2, 0,            /* 0x72 */
870                 {{1, 1},
871                 {4, 6},
872                 {0, 0},
873                 {0, 0}
874                 }
875         },
876         {1, 0, 2, 0,            /* 0x73 */
877                 {{0, 1},
878                 {4, 6},
879                 {0, 0},
880                 {0, 0}
881                 }
882         },
883         {0, 0, 2, 0,            /* 0x74 */
884                 {{2, 2},
885                 {4, 6},
886                 {0, 0},
887                 {0, 0}
888                 }
889         },
890         {1, 0, 3, 0,            /* 0x75 */
891                 {{0, 0},
892                 {2, 2},
893                 {4, 6},
894                 {0, 0}
895                 }
896         },
897         {0, 0, 2, 0,            /* 0x76 */
898                 {{1, 2},
899                 {4, 6},
900                 {0, 0},
901                 {0, 0}
902                 }
903         },
904         {1, 0, 2, 0,            /* 0x77 */
905                 {{0, 2},
906                 {4, 6},
907                 {0, 0},
908                 {0, 0}
909                 }
910         },
911         {0, 0, 1, 0,            /* 0x78 */
912                 {{3, 6},
913                 {0, 0},
914                 {0, 0},
915                 {0, 0}
916                 }
917         },
918         {1, 0, 2, 0,            /* 0x79 */
919                 {{0, 0},
920                 {3, 6},
921                 {0, 0},
922                 {0, 0}
923                 }
924         },
925         {0, 0, 2, 0,            /* 0x7a */
926                 {{1, 1},
927                 {3, 6},
928                 {0, 0},
929                 {0, 0}
930                 }
931         },
932         {1, 0, 2, 0,            /* 0x7b */
933                 {{0, 1},
934                 {3, 6},
935                 {0, 0},
936                 {0, 0}
937                 }
938         },
939         {0, 0, 1, 0,            /* 0x7c */
940                 {{2, 6},
941                 {0, 0},
942                 {0, 0},
943                 {0, 0}
944                 }
945         },
946         {1, 0, 2, 0,            /* 0x7d */
947                 {{0, 0},
948                 {2, 6},
949                 {0, 0},
950                 {0, 0}
951                 }
952         },
953         {0, 0, 1, 0,            /* 0x7e */
954                 {{1, 6},
955                 {0, 0},
956                 {0, 0},
957                 {0, 0}
958                 }
959         },
960         {1, 0, 1, 0,            /* 0x7f */
961                 {{0, 6},
962                 {0, 0},
963                 {0, 0},
964                 {0, 0}
965                 }
966         },
967         {0, 1, 1, 0,            /* 0x80 */
968                 {{7, 7},
969                 {0, 0},
970                 {0, 0},
971                 {0, 0}
972                 }
973         },
974         {1, 1, 2, 0,            /* 0x81 */
975                 {{0, 0},
976                 {7, 7},
977                 {0, 0},
978                 {0, 0}
979                 }
980         },
981         {0, 1, 2, 0,            /* 0x82 */
982                 {{1, 1},
983                 {7, 7},
984                 {0, 0},
985                 {0, 0}
986                 }
987         },
988         {1, 1, 2, 0,            /* 0x83 */
989                 {{0, 1},
990                 {7, 7},
991                 {0, 0},
992                 {0, 0}
993                 }
994         },
995         {0, 1, 2, 0,            /* 0x84 */
996                 {{2, 2},
997                 {7, 7},
998                 {0, 0},
999                 {0, 0}
1000                 }
1001         },
1002         {1, 1, 3, 0,            /* 0x85 */
1003                 {{0, 0},
1004                 {2, 2},
1005                 {7, 7},
1006                 {0, 0}
1007                 }
1008         },
1009         {0, 1, 2, 0,            /* 0x86 */
1010                 {{1, 2},
1011                 {7, 7},
1012                 {0, 0},
1013                 {0, 0}
1014                 }
1015         },
1016         {1, 1, 2, 0,            /* 0x87 */
1017                 {{0, 2},
1018                 {7, 7},
1019                 {0, 0},
1020                 {0, 0}
1021                 }
1022         },
1023         {0, 1, 2, 0,            /* 0x88 */
1024                 {{3, 3},
1025                 {7, 7},
1026                 {0, 0},
1027                 {0, 0}
1028                 }
1029         },
1030         {1, 1, 3, 0,            /* 0x89 */
1031                 {{0, 0},
1032                 {3, 3},
1033                 {7, 7},
1034                 {0, 0}
1035                 }
1036         },
1037         {0, 1, 3, 0,            /* 0x8a */
1038                 {{1, 1},
1039                 {3, 3},
1040                 {7, 7},
1041                 {0, 0}
1042                 }
1043         },
1044         {1, 1, 3, 0,            /* 0x8b */
1045                 {{0, 1},
1046                 {3, 3},
1047                 {7, 7},
1048                 {0, 0}
1049                 }
1050         },
1051         {0, 1, 2, 0,            /* 0x8c */
1052                 {{2, 3},
1053                 {7, 7},
1054                 {0, 0},
1055                 {0, 0}
1056                 }
1057         },
1058         {1, 1, 3, 0,            /* 0x8d */
1059                 {{0, 0},
1060                 {2, 3},
1061                 {7, 7},
1062                 {0, 0}
1063                 }
1064         },
1065         {0, 1, 2, 0,            /* 0x8e */
1066                 {{1, 3},
1067                 {7, 7},
1068                 {0, 0},
1069                 {0, 0}
1070                 }
1071         },
1072         {1, 1, 2, 0,            /* 0x8f */
1073                 {{0, 3},
1074                 {7, 7},
1075                 {0, 0},
1076                 {0, 0}
1077                 }
1078         },
1079         {0, 1, 2, 0,            /* 0x90 */
1080                 {{4, 4},
1081                 {7, 7},
1082                 {0, 0},
1083                 {0, 0}
1084                 }
1085         },
1086         {1, 1, 3, 0,            /* 0x91 */
1087                 {{0, 0},
1088                 {4, 4},
1089                 {7, 7},
1090                 {0, 0}
1091                 }
1092         },
1093         {0, 1, 3, 0,            /* 0x92 */
1094                 {{1, 1},
1095                 {4, 4},
1096                 {7, 7},
1097                 {0, 0}
1098                 }
1099         },
1100         {1, 1, 3, 0,            /* 0x93 */
1101                 {{0, 1},
1102                 {4, 4},
1103                 {7, 7},
1104                 {0, 0}
1105                 }
1106         },
1107         {0, 1, 3, 0,            /* 0x94 */
1108                 {{2, 2},
1109                 {4, 4},
1110                 {7, 7},
1111                 {0, 0}
1112                 }
1113         },
1114         {1, 1, 4, 0,            /* 0x95 */
1115                 {{0, 0},
1116                 {2, 2},
1117                 {4, 4},
1118                 {7, 7}
1119                 }
1120         },
1121         {0, 1, 3, 0,            /* 0x96 */
1122                 {{1, 2},
1123                 {4, 4},
1124                 {7, 7},
1125                 {0, 0}
1126                 }
1127         },
1128         {1, 1, 3, 0,            /* 0x97 */
1129                 {{0, 2},
1130                 {4, 4},
1131                 {7, 7},
1132                 {0, 0}
1133                 }
1134         },
1135         {0, 1, 2, 0,            /* 0x98 */
1136                 {{3, 4},
1137                 {7, 7},
1138                 {0, 0},
1139                 {0, 0}
1140                 }
1141         },
1142         {1, 1, 3, 0,            /* 0x99 */
1143                 {{0, 0},
1144                 {3, 4},
1145                 {7, 7},
1146                 {0, 0}
1147                 }
1148         },
1149         {0, 1, 3, 0,            /* 0x9a */
1150                 {{1, 1},
1151                 {3, 4},
1152                 {7, 7},
1153                 {0, 0}
1154                 }
1155         },
1156         {1, 1, 3, 0,            /* 0x9b */
1157                 {{0, 1},
1158                 {3, 4},
1159                 {7, 7},
1160                 {0, 0}
1161                 }
1162         },
1163         {0, 1, 2, 0,            /* 0x9c */
1164                 {{2, 4},
1165                 {7, 7},
1166                 {0, 0},
1167                 {0, 0}
1168                 }
1169         },
1170         {1, 1, 3, 0,            /* 0x9d */
1171                 {{0, 0},
1172                 {2, 4},
1173                 {7, 7},
1174                 {0, 0}
1175                 }
1176         },
1177         {0, 1, 2, 0,            /* 0x9e */
1178                 {{1, 4},
1179                 {7, 7},
1180                 {0, 0},
1181                 {0, 0}
1182                 }
1183         },
1184         {1, 1, 2, 0,            /* 0x9f */
1185                 {{0, 4},
1186                 {7, 7},
1187                 {0, 0},
1188                 {0, 0}
1189                 }
1190         },
1191         {0, 1, 2, 0,            /* 0xa0 */
1192                 {{5, 5},
1193                 {7, 7},
1194                 {0, 0},
1195                 {0, 0}
1196                 }
1197         },
1198         {1, 1, 3, 0,            /* 0xa1 */
1199                 {{0, 0},
1200                 {5, 5},
1201                 {7, 7},
1202                 {0, 0}
1203                 }
1204         },
1205         {0, 1, 3, 0,            /* 0xa2 */
1206                 {{1, 1},
1207                 {5, 5},
1208                 {7, 7},
1209                 {0, 0}
1210                 }
1211         },
1212         {1, 1, 3, 0,            /* 0xa3 */
1213                 {{0, 1},
1214                 {5, 5},
1215                 {7, 7},
1216                 {0, 0}
1217                 }
1218         },
1219         {0, 1, 3, 0,            /* 0xa4 */
1220                 {{2, 2},
1221                 {5, 5},
1222                 {7, 7},
1223                 {0, 0}
1224                 }
1225         },
1226         {1, 1, 4, 0,            /* 0xa5 */
1227                 {{0, 0},
1228                 {2, 2},
1229                 {5, 5},
1230                 {7, 7}
1231                 }
1232         },
1233         {0, 1, 3, 0,            /* 0xa6 */
1234                 {{1, 2},
1235                 {5, 5},
1236                 {7, 7},
1237                 {0, 0}
1238                 }
1239         },
1240         {1, 1, 3, 0,            /* 0xa7 */
1241                 {{0, 2},
1242                 {5, 5},
1243                 {7, 7},
1244                 {0, 0}
1245                 }
1246         },
1247         {0, 1, 3, 0,            /* 0xa8 */
1248                 {{3, 3},
1249                 {5, 5},
1250                 {7, 7},
1251                 {0, 0}
1252                 }
1253         },
1254         {1, 1, 4, 0,            /* 0xa9 */
1255                 {{0, 0},
1256                 {3, 3},
1257                 {5, 5},
1258                 {7, 7}
1259                 }
1260         },
1261         {0, 1, 4, 0,            /* 0xaa */
1262                 {{1, 1},
1263                 {3, 3},
1264                 {5, 5},
1265                 {7, 7}
1266                 }
1267         },
1268         {1, 1, 4, 0,            /* 0xab */
1269                 {{0, 1},
1270                 {3, 3},
1271                 {5, 5},
1272                 {7, 7}
1273                 }
1274         },
1275         {0, 1, 3, 0,            /* 0xac */
1276                 {{2, 3},
1277                 {5, 5},
1278                 {7, 7},
1279                 {0, 0}
1280                 }
1281         },
1282         {1, 1, 4, 0,            /* 0xad */
1283                 {{0, 0},
1284                 {2, 3},
1285                 {5, 5},
1286                 {7, 7}
1287                 }
1288         },
1289         {0, 1, 3, 0,            /* 0xae */
1290                 {{1, 3},
1291                 {5, 5},
1292                 {7, 7},
1293                 {0, 0}
1294                 }
1295         },
1296         {1, 1, 3, 0,            /* 0xaf */
1297                 {{0, 3},
1298                 {5, 5},
1299                 {7, 7},
1300                 {0, 0}
1301                 }
1302         },
1303         {0, 1, 2, 0,            /* 0xb0 */
1304                 {{4, 5},
1305                 {7, 7},
1306                 {0, 0},
1307                 {0, 0}
1308                 }
1309         },
1310         {1, 1, 3, 0,            /* 0xb1 */
1311                 {{0, 0},
1312                 {4, 5},
1313                 {7, 7},
1314                 {0, 0}
1315                 }
1316         },
1317         {0, 1, 3, 0,            /* 0xb2 */
1318                 {{1, 1},
1319                 {4, 5},
1320                 {7, 7},
1321                 {0, 0}
1322                 }
1323         },
1324         {1, 1, 3, 0,            /* 0xb3 */
1325                 {{0, 1},
1326                 {4, 5},
1327                 {7, 7},
1328                 {0, 0}
1329                 }
1330         },
1331         {0, 1, 3, 0,            /* 0xb4 */
1332                 {{2, 2},
1333                 {4, 5},
1334                 {7, 7},
1335                 {0, 0}
1336                 }
1337         },
1338         {1, 1, 4, 0,            /* 0xb5 */
1339                 {{0, 0},
1340                 {2, 2},
1341                 {4, 5},
1342                 {7, 7}
1343                 }
1344         },
1345         {0, 1, 3, 0,            /* 0xb6 */
1346                 {{1, 2},
1347                 {4, 5},
1348                 {7, 7},
1349                 {0, 0}
1350                 }
1351         },
1352         {1, 1, 3, 0,            /* 0xb7 */
1353                 {{0, 2},
1354                 {4, 5},
1355                 {7, 7},
1356                 {0, 0}
1357                 }
1358         },
1359         {0, 1, 2, 0,            /* 0xb8 */
1360                 {{3, 5},
1361                 {7, 7},
1362                 {0, 0},
1363                 {0, 0}
1364                 }
1365         },
1366         {1, 1, 3, 0,            /* 0xb9 */
1367                 {{0, 0},
1368                 {3, 5},
1369                 {7, 7},
1370                 {0, 0}
1371                 }
1372         },
1373         {0, 1, 3, 0,            /* 0xba */
1374                 {{1, 1},
1375                 {3, 5},
1376                 {7, 7},
1377                 {0, 0}
1378                 }
1379         },
1380         {1, 1, 3, 0,            /* 0xbb */
1381                 {{0, 1},
1382                 {3, 5},
1383                 {7, 7},
1384                 {0, 0}
1385                 }
1386         },
1387         {0, 1, 2, 0,            /* 0xbc */
1388                 {{2, 5},
1389                 {7, 7},
1390                 {0, 0},
1391                 {0, 0}
1392                 }
1393         },
1394         {1, 1, 3, 0,            /* 0xbd */
1395                 {{0, 0},
1396                 {2, 5},
1397                 {7, 7},
1398                 {0, 0}
1399                 }
1400         },
1401         {0, 1, 2, 0,            /* 0xbe */
1402                 {{1, 5},
1403                 {7, 7},
1404                 {0, 0},
1405                 {0, 0}
1406                 }
1407         },
1408         {1, 1, 2, 0,            /* 0xbf */
1409                 {{0, 5},
1410                 {7, 7},
1411                 {0, 0},
1412                 {0, 0}
1413                 }
1414         },
1415         {0, 1, 1, 0,            /* 0xc0 */
1416                 {{6, 7},
1417                 {0, 0},
1418                 {0, 0},
1419                 {0, 0}
1420                 }
1421         },
1422         {1, 1, 2, 0,            /* 0xc1 */
1423                 {{0, 0},
1424                 {6, 7},
1425                 {0, 0},
1426                 {0, 0}
1427                 }
1428         },
1429         {0, 1, 2, 0,            /* 0xc2 */
1430                 {{1, 1},
1431                 {6, 7},
1432                 {0, 0},
1433                 {0, 0}
1434                 }
1435         },
1436         {1, 1, 2, 0,            /* 0xc3 */
1437                 {{0, 1},
1438                 {6, 7},
1439                 {0, 0},
1440                 {0, 0}
1441                 }
1442         },
1443         {0, 1, 2, 0,            /* 0xc4 */
1444                 {{2, 2},
1445                 {6, 7},
1446                 {0, 0},
1447                 {0, 0}
1448                 }
1449         },
1450         {1, 1, 3, 0,            /* 0xc5 */
1451                 {{0, 0},
1452                 {2, 2},
1453                 {6, 7},
1454                 {0, 0}
1455                 }
1456         },
1457         {0, 1, 2, 0,            /* 0xc6 */
1458                 {{1, 2},
1459                 {6, 7},
1460                 {0, 0},
1461                 {0, 0}
1462                 }
1463         },
1464         {1, 1, 2, 0,            /* 0xc7 */
1465                 {{0, 2},
1466                 {6, 7},
1467                 {0, 0},
1468                 {0, 0}
1469                 }
1470         },
1471         {0, 1, 2, 0,            /* 0xc8 */
1472                 {{3, 3},
1473                 {6, 7},
1474                 {0, 0},
1475                 {0, 0}
1476                 }
1477         },
1478         {1, 1, 3, 0,            /* 0xc9 */
1479                 {{0, 0},
1480                 {3, 3},
1481                 {6, 7},
1482                 {0, 0}
1483                 }
1484         },
1485         {0, 1, 3, 0,            /* 0xca */
1486                 {{1, 1},
1487                 {3, 3},
1488                 {6, 7},
1489                 {0, 0}
1490                 }
1491         },
1492         {1, 1, 3, 0,            /* 0xcb */
1493                 {{0, 1},
1494                 {3, 3},
1495                 {6, 7},
1496                 {0, 0}
1497                 }
1498         },
1499         {0, 1, 2, 0,            /* 0xcc */
1500                 {{2, 3},
1501                 {6, 7},
1502                 {0, 0},
1503                 {0, 0}
1504                 }
1505         },
1506         {1, 1, 3, 0,            /* 0xcd */
1507                 {{0, 0},
1508                 {2, 3},
1509                 {6, 7},
1510                 {0, 0}
1511                 }
1512         },
1513         {0, 1, 2, 0,            /* 0xce */
1514                 {{1, 3},
1515                 {6, 7},
1516                 {0, 0},
1517                 {0, 0}
1518                 }
1519         },
1520         {1, 1, 2, 0,            /* 0xcf */
1521                 {{0, 3},
1522                 {6, 7},
1523                 {0, 0},
1524                 {0, 0}
1525                 }
1526         },
1527         {0, 1, 2, 0,            /* 0xd0 */
1528                 {{4, 4},
1529                 {6, 7},
1530                 {0, 0},
1531                 {0, 0}
1532                 }
1533         },
1534         {1, 1, 3, 0,            /* 0xd1 */
1535                 {{0, 0},
1536                 {4, 4},
1537                 {6, 7},
1538                 {0, 0}
1539                 }
1540         },
1541         {0, 1, 3, 0,            /* 0xd2 */
1542                 {{1, 1},
1543                 {4, 4},
1544                 {6, 7},
1545                 {0, 0}
1546                 }
1547         },
1548         {1, 1, 3, 0,            /* 0xd3 */
1549                 {{0, 1},
1550                 {4, 4},
1551                 {6, 7},
1552                 {0, 0}
1553                 }
1554         },
1555         {0, 1, 3, 0,            /* 0xd4 */
1556                 {{2, 2},
1557                 {4, 4},
1558                 {6, 7},
1559                 {0, 0}
1560                 }
1561         },
1562         {1, 1, 4, 0,            /* 0xd5 */
1563                 {{0, 0},
1564                 {2, 2},
1565                 {4, 4},
1566                 {6, 7}
1567                 }
1568         },
1569         {0, 1, 3, 0,            /* 0xd6 */
1570                 {{1, 2},
1571                 {4, 4},
1572                 {6, 7},
1573                 {0, 0}
1574                 }
1575         },
1576         {1, 1, 3, 0,            /* 0xd7 */
1577                 {{0, 2},
1578                 {4, 4},
1579                 {6, 7},
1580                 {0, 0}
1581                 }
1582         },
1583         {0, 1, 2, 0,            /* 0xd8 */
1584                 {{3, 4},
1585                 {6, 7},
1586                 {0, 0},
1587                 {0, 0}
1588                 }
1589         },
1590         {1, 1, 3, 0,            /* 0xd9 */
1591                 {{0, 0},
1592                 {3, 4},
1593                 {6, 7},
1594                 {0, 0}
1595                 }
1596         },
1597         {0, 1, 3, 0,            /* 0xda */
1598                 {{1, 1},
1599                 {3, 4},
1600                 {6, 7},
1601                 {0, 0}
1602                 }
1603         },
1604         {1, 1, 3, 0,            /* 0xdb */
1605                 {{0, 1},
1606                 {3, 4},
1607                 {6, 7},
1608                 {0, 0}
1609                 }
1610         },
1611         {0, 1, 2, 0,            /* 0xdc */
1612                 {{2, 4},
1613                 {6, 7},
1614                 {0, 0},
1615                 {0, 0}
1616                 }
1617         },
1618         {1, 1, 3, 0,            /* 0xdd */
1619                 {{0, 0},
1620                 {2, 4},
1621                 {6, 7},
1622                 {0, 0}
1623                 }
1624         },
1625         {0, 1, 2, 0,            /* 0xde */
1626                 {{1, 4},
1627                 {6, 7},
1628                 {0, 0},
1629                 {0, 0}
1630                 }
1631         },
1632         {1, 1, 2, 0,            /* 0xdf */
1633                 {{0, 4},
1634                 {6, 7},
1635                 {0, 0},
1636                 {0, 0}
1637                 }
1638         },
1639         {0, 1, 1, 0,            /* 0xe0 */
1640                 {{5, 7},
1641                 {0, 0},
1642                 {0, 0},
1643                 {0, 0}
1644                 }
1645         },
1646         {1, 1, 2, 0,            /* 0xe1 */
1647                 {{0, 0},
1648                 {5, 7},
1649                 {0, 0},
1650                 {0, 0}
1651                 }
1652         },
1653         {0, 1, 2, 0,            /* 0xe2 */
1654                 {{1, 1},
1655                 {5, 7},
1656                 {0, 0},
1657                 {0, 0}
1658                 }
1659         },
1660         {1, 1, 2, 0,            /* 0xe3 */
1661                 {{0, 1},
1662                 {5, 7},
1663                 {0, 0},
1664                 {0, 0}
1665                 }
1666         },
1667         {0, 1, 2, 0,            /* 0xe4 */
1668                 {{2, 2},
1669                 {5, 7},
1670                 {0, 0},
1671                 {0, 0}
1672                 }
1673         },
1674         {1, 1, 3, 0,            /* 0xe5 */
1675                 {{0, 0},
1676                 {2, 2},
1677                 {5, 7},
1678                 {0, 0}
1679                 }
1680         },
1681         {0, 1, 2, 0,            /* 0xe6 */
1682                 {{1, 2},
1683                 {5, 7},
1684                 {0, 0},
1685                 {0, 0}
1686                 }
1687         },
1688         {1, 1, 2, 0,            /* 0xe7 */
1689                 {{0, 2},
1690                 {5, 7},
1691                 {0, 0},
1692                 {0, 0}
1693                 }
1694         },
1695         {0, 1, 2, 0,            /* 0xe8 */
1696                 {{3, 3},
1697                 {5, 7},
1698                 {0, 0},
1699                 {0, 0}
1700                 }
1701         },
1702         {1, 1, 3, 0,            /* 0xe9 */
1703                 {{0, 0},
1704                 {3, 3},
1705                 {5, 7},
1706                 {0, 0}
1707                 }
1708         },
1709         {0, 1, 3, 0,            /* 0xea */
1710                 {{1, 1},
1711                 {3, 3},
1712                 {5, 7},
1713                 {0, 0}
1714                 }
1715         },
1716         {1, 1, 3, 0,            /* 0xeb */
1717                 {{0, 1},
1718                 {3, 3},
1719                 {5, 7},
1720                 {0, 0}
1721                 }
1722         },
1723         {0, 1, 2, 0,            /* 0xec */
1724                 {{2, 3},
1725                 {5, 7},
1726                 {0, 0},
1727                 {0, 0}
1728                 }
1729         },
1730         {1, 1, 3, 0,            /* 0xed */
1731                 {{0, 0},
1732                 {2, 3},
1733                 {5, 7},
1734                 {0, 0}
1735                 }
1736         },
1737         {0, 1, 2, 0,            /* 0xee */
1738                 {{1, 3},
1739                 {5, 7},
1740                 {0, 0},
1741                 {0, 0}
1742                 }
1743         },
1744         {1, 1, 2, 0,            /* 0xef */
1745                 {{0, 3},
1746                 {5, 7},
1747                 {0, 0},
1748                 {0, 0}
1749                 }
1750         },
1751         {0, 1, 1, 0,            /* 0xf0 */
1752                 {{4, 7},
1753                 {0, 0},
1754                 {0, 0},
1755                 {0, 0}
1756                 }
1757         },
1758         {1, 1, 2, 0,            /* 0xf1 */
1759                 {{0, 0},
1760                 {4, 7},
1761                 {0, 0},
1762                 {0, 0}
1763                 }
1764         },
1765         {0, 1, 2, 0,            /* 0xf2 */
1766                 {{1, 1},
1767                 {4, 7},
1768                 {0, 0},
1769                 {0, 0}
1770                 }
1771         },
1772         {1, 1, 2, 0,            /* 0xf3 */
1773                 {{0, 1},
1774                 {4, 7},
1775                 {0, 0},
1776                 {0, 0}
1777                 }
1778         },
1779         {0, 1, 2, 0,            /* 0xf4 */
1780                 {{2, 2},
1781                 {4, 7},
1782                 {0, 0},
1783                 {0, 0}
1784                 }
1785         },
1786         {1, 1, 3, 0,            /* 0xf5 */
1787                 {{0, 0},
1788                 {2, 2},
1789                 {4, 7},
1790                 {0, 0}
1791                 }
1792         },
1793         {0, 1, 2, 0,            /* 0xf6 */
1794                 {{1, 2},
1795                 {4, 7},
1796                 {0, 0},
1797                 {0, 0}
1798                 }
1799         },
1800         {1, 1, 2, 0,            /* 0xf7 */
1801                 {{0, 2},
1802                 {4, 7},
1803                 {0, 0},
1804                 {0, 0}
1805                 }
1806         },
1807         {0, 1, 1, 0,            /* 0xf8 */
1808                 {{3, 7},
1809                 {0, 0},
1810                 {0, 0},
1811                 {0, 0}
1812                 }
1813         },
1814         {1, 1, 2, 0,            /* 0xf9 */
1815                 {{0, 0},
1816                 {3, 7},
1817                 {0, 0},
1818                 {0, 0}
1819                 }
1820         },
1821         {0, 1, 2, 0,            /* 0xfa */
1822                 {{1, 1},
1823                 {3, 7},
1824                 {0, 0},
1825                 {0, 0}
1826                 }
1827         },
1828         {1, 1, 2, 0,            /* 0xfb */
1829                 {{0, 1},
1830                 {3, 7},
1831                 {0, 0},
1832                 {0, 0}
1833                 }
1834         },
1835         {0, 1, 1, 0,            /* 0xfc */
1836                 {{2, 7},
1837                 {0, 0},
1838                 {0, 0},
1839                 {0, 0}
1840                 }
1841         },
1842         {1, 1, 2, 0,            /* 0xfd */
1843                 {{0, 0},
1844                 {2, 7},
1845                 {0, 0},
1846                 {0, 0}
1847                 }
1848         },
1849         {0, 1, 1, 0,            /* 0xfe */
1850                 {{1, 7},
1851                 {0, 0},
1852                 {0, 0},
1853                 {0, 0}
1854                 }
1855         },
1856         {1, 1, 1, 0,            /* 0xff */
1857                 {{0, 7},
1858                 {0, 0},
1859                 {0, 0},
1860                 {0, 0}
1861                 }
1862         }
1863 };
1864
1865
1866 int
1867 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1868     struct sctp_scoping *scope,
1869     int do_update)
1870 {
1871         if ((scope->loopback_scope == 0) &&
1872             (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1873                 /*
1874                  * skip loopback if not in scope *
1875                  */
1876                 return (0);
1877         }
1878         switch (ifa->address.sa.sa_family) {
1879 #ifdef INET
1880         case AF_INET:
1881                 if (scope->ipv4_addr_legal) {
1882                         struct sockaddr_in *sin;
1883
1884                         sin = &ifa->address.sin;
1885                         if (sin->sin_addr.s_addr == 0) {
1886                                 /* not in scope , unspecified */
1887                                 return (0);
1888                         }
1889                         if ((scope->ipv4_local_scope == 0) &&
1890                             (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1891                                 /* private address not in scope */
1892                                 return (0);
1893                         }
1894                 } else {
1895                         return (0);
1896                 }
1897                 break;
1898 #endif
1899 #ifdef INET6
1900         case AF_INET6:
1901                 if (scope->ipv6_addr_legal) {
1902                         struct sockaddr_in6 *sin6;
1903
1904                         /*
1905                          * Must update the flags,  bummer, which means any
1906                          * IFA locks must now be applied HERE <->
1907                          */
1908                         if (do_update) {
1909                                 sctp_gather_internal_ifa_flags(ifa);
1910                         }
1911                         if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1912                                 return (0);
1913                         }
1914                         /* ok to use deprecated addresses? */
1915                         sin6 = &ifa->address.sin6;
1916                         if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1917                                 /* skip unspecifed addresses */
1918                                 return (0);
1919                         }
1920                         if (    /* (local_scope == 0) && */
1921                             (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1922                                 return (0);
1923                         }
1924                         if ((scope->site_scope == 0) &&
1925                             (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1926                                 return (0);
1927                         }
1928                 } else {
1929                         return (0);
1930                 }
1931                 break;
1932 #endif
1933         default:
1934                 return (0);
1935         }
1936         return (1);
1937 }
1938
1939 static struct mbuf *
1940 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t * len)
1941 {
1942 #if defined(INET) || defined(INET6)
1943         struct sctp_paramhdr *parmh;
1944         struct mbuf *mret;
1945         uint16_t plen;
1946
1947 #endif
1948
1949         switch (ifa->address.sa.sa_family) {
1950 #ifdef INET
1951         case AF_INET:
1952                 plen = (uint16_t) sizeof(struct sctp_ipv4addr_param);
1953                 break;
1954 #endif
1955 #ifdef INET6
1956         case AF_INET6:
1957                 plen = (uint16_t) sizeof(struct sctp_ipv6addr_param);
1958                 break;
1959 #endif
1960         default:
1961                 return (m);
1962         }
1963 #if defined(INET) || defined(INET6)
1964         if (M_TRAILINGSPACE(m) >= plen) {
1965                 /* easy side we just drop it on the end */
1966                 parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1967                 mret = m;
1968         } else {
1969                 /* Need more space */
1970                 mret = m;
1971                 while (SCTP_BUF_NEXT(mret) != NULL) {
1972                         mret = SCTP_BUF_NEXT(mret);
1973                 }
1974                 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA);
1975                 if (SCTP_BUF_NEXT(mret) == NULL) {
1976                         /* We are hosed, can't add more addresses */
1977                         return (m);
1978                 }
1979                 mret = SCTP_BUF_NEXT(mret);
1980                 parmh = mtod(mret, struct sctp_paramhdr *);
1981         }
1982         /* now add the parameter */
1983         switch (ifa->address.sa.sa_family) {
1984 #ifdef INET
1985         case AF_INET:
1986                 {
1987                         struct sctp_ipv4addr_param *ipv4p;
1988                         struct sockaddr_in *sin;
1989
1990                         sin = &ifa->address.sin;
1991                         ipv4p = (struct sctp_ipv4addr_param *)parmh;
1992                         parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1993                         parmh->param_length = htons(plen);
1994                         ipv4p->addr = sin->sin_addr.s_addr;
1995                         SCTP_BUF_LEN(mret) += plen;
1996                         break;
1997                 }
1998 #endif
1999 #ifdef INET6
2000         case AF_INET6:
2001                 {
2002                         struct sctp_ipv6addr_param *ipv6p;
2003                         struct sockaddr_in6 *sin6;
2004
2005                         sin6 = &ifa->address.sin6;
2006                         ipv6p = (struct sctp_ipv6addr_param *)parmh;
2007                         parmh->param_type = htons(SCTP_IPV6_ADDRESS);
2008                         parmh->param_length = htons(plen);
2009                         memcpy(ipv6p->addr, &sin6->sin6_addr,
2010                             sizeof(ipv6p->addr));
2011                         /* clear embedded scope in the address */
2012                         in6_clearscope((struct in6_addr *)ipv6p->addr);
2013                         SCTP_BUF_LEN(mret) += plen;
2014                         break;
2015                 }
2016 #endif
2017         default:
2018                 return (m);
2019         }
2020         if (len != NULL) {
2021                 *len += plen;
2022         }
2023         return (mret);
2024 #endif
2025 }
2026
2027
2028 struct mbuf *
2029 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2030     struct sctp_scoping *scope,
2031     struct mbuf *m_at, int cnt_inits_to,
2032     uint16_t * padding_len, uint16_t * chunk_len)
2033 {
2034         struct sctp_vrf *vrf = NULL;
2035         int cnt, limit_out = 0, total_count;
2036         uint32_t vrf_id;
2037
2038         vrf_id = inp->def_vrf_id;
2039         SCTP_IPI_ADDR_RLOCK();
2040         vrf = sctp_find_vrf(vrf_id);
2041         if (vrf == NULL) {
2042                 SCTP_IPI_ADDR_RUNLOCK();
2043                 return (m_at);
2044         }
2045         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2046                 struct sctp_ifa *sctp_ifap;
2047                 struct sctp_ifn *sctp_ifnp;
2048
2049                 cnt = cnt_inits_to;
2050                 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2051                         limit_out = 1;
2052                         cnt = SCTP_ADDRESS_LIMIT;
2053                         goto skip_count;
2054                 }
2055                 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2056                         if ((scope->loopback_scope == 0) &&
2057                             SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2058                                 /*
2059                                  * Skip loopback devices if loopback_scope
2060                                  * not set
2061                                  */
2062                                 continue;
2063                         }
2064                         LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2065 #ifdef INET
2066                                 if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2067                                     (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2068                                     &sctp_ifap->address.sin.sin_addr) != 0)) {
2069                                         continue;
2070                                 }
2071 #endif
2072 #ifdef INET6
2073                                 if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2074                                     (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2075                                     &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2076                                         continue;
2077                                 }
2078 #endif
2079                                 if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2080                                         continue;
2081                                 }
2082                                 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) {
2083                                         continue;
2084                                 }
2085                                 cnt++;
2086                                 if (cnt > SCTP_ADDRESS_LIMIT) {
2087                                         break;
2088                                 }
2089                         }
2090                         if (cnt > SCTP_ADDRESS_LIMIT) {
2091                                 break;
2092                         }
2093                 }
2094 skip_count:
2095                 if (cnt > 1) {
2096                         total_count = 0;
2097                         LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2098                                 cnt = 0;
2099                                 if ((scope->loopback_scope == 0) &&
2100                                     SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2101                                         /*
2102                                          * Skip loopback devices if
2103                                          * loopback_scope not set
2104                                          */
2105                                         continue;
2106                                 }
2107                                 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2108 #ifdef INET
2109                                         if ((sctp_ifap->address.sa.sa_family == AF_INET) &&
2110                                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2111                                             &sctp_ifap->address.sin.sin_addr) != 0)) {
2112                                                 continue;
2113                                         }
2114 #endif
2115 #ifdef INET6
2116                                         if ((sctp_ifap->address.sa.sa_family == AF_INET6) &&
2117                                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2118                                             &sctp_ifap->address.sin6.sin6_addr) != 0)) {
2119                                                 continue;
2120                                         }
2121 #endif
2122                                         if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2123                                                 continue;
2124                                         }
2125                                         if (sctp_is_address_in_scope(sctp_ifap,
2126                                             scope, 0) == 0) {
2127                                                 continue;
2128                                         }
2129                                         if ((chunk_len != NULL) &&
2130                                             (padding_len != NULL) &&
2131                                             (*padding_len > 0)) {
2132                                                 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2133                                                 SCTP_BUF_LEN(m_at) += *padding_len;
2134                                                 *chunk_len += *padding_len;
2135                                                 *padding_len = 0;
2136                                         }
2137                                         m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len);
2138                                         if (limit_out) {
2139                                                 cnt++;
2140                                                 total_count++;
2141                                                 if (cnt >= 2) {
2142                                                         /*
2143                                                          * two from each
2144                                                          * address
2145                                                          */
2146                                                         break;
2147                                                 }
2148                                                 if (total_count > SCTP_ADDRESS_LIMIT) {
2149                                                         /* No more addresses */
2150                                                         break;
2151                                                 }
2152                                         }
2153                                 }
2154                         }
2155                 }
2156         } else {
2157                 struct sctp_laddr *laddr;
2158
2159                 cnt = cnt_inits_to;
2160                 /* First, how many ? */
2161                 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2162                         if (laddr->ifa == NULL) {
2163                                 continue;
2164                         }
2165                         if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2166                                 /*
2167                                  * Address being deleted by the system, dont
2168                                  * list.
2169                                  */
2170                                 continue;
2171                         if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2172                                 /*
2173                                  * Address being deleted on this ep don't
2174                                  * list.
2175                                  */
2176                                 continue;
2177                         }
2178                         if (sctp_is_address_in_scope(laddr->ifa,
2179                             scope, 1) == 0) {
2180                                 continue;
2181                         }
2182                         cnt++;
2183                 }
2184                 /*
2185                  * To get through a NAT we only list addresses if we have
2186                  * more than one. That way if you just bind a single address
2187                  * we let the source of the init dictate our address.
2188                  */
2189                 if (cnt > 1) {
2190                         cnt = cnt_inits_to;
2191                         LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2192                                 if (laddr->ifa == NULL) {
2193                                         continue;
2194                                 }
2195                                 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) {
2196                                         continue;
2197                                 }
2198                                 if (sctp_is_address_in_scope(laddr->ifa,
2199                                     scope, 0) == 0) {
2200                                         continue;
2201                                 }
2202                                 if ((chunk_len != NULL) &&
2203                                     (padding_len != NULL) &&
2204                                     (*padding_len > 0)) {
2205                                         memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2206                                         SCTP_BUF_LEN(m_at) += *padding_len;
2207                                         *chunk_len += *padding_len;
2208                                         *padding_len = 0;
2209                                 }
2210                                 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len);
2211                                 cnt++;
2212                                 if (cnt >= SCTP_ADDRESS_LIMIT) {
2213                                         break;
2214                                 }
2215                         }
2216                 }
2217         }
2218         SCTP_IPI_ADDR_RUNLOCK();
2219         return (m_at);
2220 }
2221
2222 static struct sctp_ifa *
2223 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2224     uint8_t dest_is_loop,
2225     uint8_t dest_is_priv,
2226     sa_family_t fam)
2227 {
2228         uint8_t dest_is_global = 0;
2229
2230         /* dest_is_priv is true if destination is a private address */
2231         /* dest_is_loop is true if destination is a loopback addresses */
2232
2233         /**
2234          * Here we determine if its a preferred address. A preferred address
2235          * means it is the same scope or higher scope then the destination.
2236          * L = loopback, P = private, G = global
2237          * -----------------------------------------
2238          *    src    |  dest | result
2239          *  ----------------------------------------
2240          *     L     |    L  |    yes
2241          *  -----------------------------------------
2242          *     P     |    L  |    yes-v4 no-v6
2243          *  -----------------------------------------
2244          *     G     |    L  |    yes-v4 no-v6
2245          *  -----------------------------------------
2246          *     L     |    P  |    no
2247          *  -----------------------------------------
2248          *     P     |    P  |    yes
2249          *  -----------------------------------------
2250          *     G     |    P  |    no
2251          *   -----------------------------------------
2252          *     L     |    G  |    no
2253          *   -----------------------------------------
2254          *     P     |    G  |    no
2255          *    -----------------------------------------
2256          *     G     |    G  |    yes
2257          *    -----------------------------------------
2258          */
2259
2260         if (ifa->address.sa.sa_family != fam) {
2261                 /* forget mis-matched family */
2262                 return (NULL);
2263         }
2264         if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2265                 dest_is_global = 1;
2266         }
2267         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2268         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2269         /* Ok the address may be ok */
2270 #ifdef INET6
2271         if (fam == AF_INET6) {
2272                 /* ok to use deprecated addresses? no lets not! */
2273                 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2274                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2275                         return (NULL);
2276                 }
2277                 if (ifa->src_is_priv && !ifa->src_is_loop) {
2278                         if (dest_is_loop) {
2279                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2280                                 return (NULL);
2281                         }
2282                 }
2283                 if (ifa->src_is_glob) {
2284                         if (dest_is_loop) {
2285                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2286                                 return (NULL);
2287                         }
2288                 }
2289         }
2290 #endif
2291         /*
2292          * Now that we know what is what, implement or table this could in
2293          * theory be done slicker (it used to be), but this is
2294          * straightforward and easier to validate :-)
2295          */
2296         SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2297             ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2298         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2299             dest_is_loop, dest_is_priv, dest_is_global);
2300
2301         if ((ifa->src_is_loop) && (dest_is_priv)) {
2302                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2303                 return (NULL);
2304         }
2305         if ((ifa->src_is_glob) && (dest_is_priv)) {
2306                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2307                 return (NULL);
2308         }
2309         if ((ifa->src_is_loop) && (dest_is_global)) {
2310                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2311                 return (NULL);
2312         }
2313         if ((ifa->src_is_priv) && (dest_is_global)) {
2314                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2315                 return (NULL);
2316         }
2317         SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2318         /* its a preferred address */
2319         return (ifa);
2320 }
2321
2322 static struct sctp_ifa *
2323 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2324     uint8_t dest_is_loop,
2325     uint8_t dest_is_priv,
2326     sa_family_t fam)
2327 {
2328         uint8_t dest_is_global = 0;
2329
2330         /**
2331          * Here we determine if its a acceptable address. A acceptable
2332          * address means it is the same scope or higher scope but we can
2333          * allow for NAT which means its ok to have a global dest and a
2334          * private src.
2335          *
2336          * L = loopback, P = private, G = global
2337          * -----------------------------------------
2338          *  src    |  dest | result
2339          * -----------------------------------------
2340          *   L     |   L   |    yes
2341          *  -----------------------------------------
2342          *   P     |   L   |    yes-v4 no-v6
2343          *  -----------------------------------------
2344          *   G     |   L   |    yes
2345          * -----------------------------------------
2346          *   L     |   P   |    no
2347          * -----------------------------------------
2348          *   P     |   P   |    yes
2349          * -----------------------------------------
2350          *   G     |   P   |    yes - May not work
2351          * -----------------------------------------
2352          *   L     |   G   |    no
2353          * -----------------------------------------
2354          *   P     |   G   |    yes - May not work
2355          * -----------------------------------------
2356          *   G     |   G   |    yes
2357          * -----------------------------------------
2358          */
2359
2360         if (ifa->address.sa.sa_family != fam) {
2361                 /* forget non matching family */
2362                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2363                     ifa->address.sa.sa_family, fam);
2364                 return (NULL);
2365         }
2366         /* Ok the address may be ok */
2367         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2368         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2369             dest_is_loop, dest_is_priv);
2370         if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2371                 dest_is_global = 1;
2372         }
2373 #ifdef INET6
2374         if (fam == AF_INET6) {
2375                 /* ok to use deprecated addresses? */
2376                 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2377                         return (NULL);
2378                 }
2379                 if (ifa->src_is_priv) {
2380                         /* Special case, linklocal to loop */
2381                         if (dest_is_loop)
2382                                 return (NULL);
2383                 }
2384         }
2385 #endif
2386         /*
2387          * Now that we know what is what, implement our table. This could in
2388          * theory be done slicker (it used to be), but this is
2389          * straightforward and easier to validate :-)
2390          */
2391         SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2392             ifa->src_is_loop,
2393             dest_is_priv);
2394         if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2395                 return (NULL);
2396         }
2397         SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2398             ifa->src_is_loop,
2399             dest_is_global);
2400         if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2401                 return (NULL);
2402         }
2403         SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2404         /* its an acceptable address */
2405         return (ifa);
2406 }
2407
2408 int
2409 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2410 {
2411         struct sctp_laddr *laddr;
2412
2413         if (stcb == NULL) {
2414                 /* There are no restrictions, no TCB :-) */
2415                 return (0);
2416         }
2417         LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2418                 if (laddr->ifa == NULL) {
2419                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2420                             __func__);
2421                         continue;
2422                 }
2423                 if (laddr->ifa == ifa) {
2424                         /* Yes it is on the list */
2425                         return (1);
2426                 }
2427         }
2428         return (0);
2429 }
2430
2431
2432 int
2433 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2434 {
2435         struct sctp_laddr *laddr;
2436
2437         if (ifa == NULL)
2438                 return (0);
2439         LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2440                 if (laddr->ifa == NULL) {
2441                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2442                             __func__);
2443                         continue;
2444                 }
2445                 if ((laddr->ifa == ifa) && laddr->action == 0)
2446                         /* same pointer */
2447                         return (1);
2448         }
2449         return (0);
2450 }
2451
2452
2453
2454 static struct sctp_ifa *
2455 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2456     sctp_route_t * ro,
2457     uint32_t vrf_id,
2458     int non_asoc_addr_ok,
2459     uint8_t dest_is_priv,
2460     uint8_t dest_is_loop,
2461     sa_family_t fam)
2462 {
2463         struct sctp_laddr *laddr, *starting_point;
2464         void *ifn;
2465         int resettotop = 0;
2466         struct sctp_ifn *sctp_ifn;
2467         struct sctp_ifa *sctp_ifa, *sifa;
2468         struct sctp_vrf *vrf;
2469         uint32_t ifn_index;
2470
2471         vrf = sctp_find_vrf(vrf_id);
2472         if (vrf == NULL)
2473                 return (NULL);
2474
2475         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2476         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2477         sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2478         /*
2479          * first question, is the ifn we will emit on in our list, if so, we
2480          * want such an address. Note that we first looked for a preferred
2481          * address.
2482          */
2483         if (sctp_ifn) {
2484                 /* is a preferred one on the interface we route out? */
2485                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2486 #ifdef INET
2487                         if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2488                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2489                             &sctp_ifa->address.sin.sin_addr) != 0)) {
2490                                 continue;
2491                         }
2492 #endif
2493 #ifdef INET6
2494                         if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2495                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2496                             &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2497                                 continue;
2498                         }
2499 #endif
2500                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2501                             (non_asoc_addr_ok == 0))
2502                                 continue;
2503                         sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2504                             dest_is_loop,
2505                             dest_is_priv, fam);
2506                         if (sifa == NULL)
2507                                 continue;
2508                         if (sctp_is_addr_in_ep(inp, sifa)) {
2509                                 atomic_add_int(&sifa->refcount, 1);
2510                                 return (sifa);
2511                         }
2512                 }
2513         }
2514         /*
2515          * ok, now we now need to find one on the list of the addresses. We
2516          * can't get one on the emitting interface so let's find first a
2517          * preferred one. If not that an acceptable one otherwise... we
2518          * return NULL.
2519          */
2520         starting_point = inp->next_addr_touse;
2521 once_again:
2522         if (inp->next_addr_touse == NULL) {
2523                 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2524                 resettotop = 1;
2525         }
2526         for (laddr = inp->next_addr_touse; laddr;
2527             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2528                 if (laddr->ifa == NULL) {
2529                         /* address has been removed */
2530                         continue;
2531                 }
2532                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2533                         /* address is being deleted */
2534                         continue;
2535                 }
2536                 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2537                     dest_is_priv, fam);
2538                 if (sifa == NULL)
2539                         continue;
2540                 atomic_add_int(&sifa->refcount, 1);
2541                 return (sifa);
2542         }
2543         if (resettotop == 0) {
2544                 inp->next_addr_touse = NULL;
2545                 goto once_again;
2546         }
2547         inp->next_addr_touse = starting_point;
2548         resettotop = 0;
2549 once_again_too:
2550         if (inp->next_addr_touse == NULL) {
2551                 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2552                 resettotop = 1;
2553         }
2554         /* ok, what about an acceptable address in the inp */
2555         for (laddr = inp->next_addr_touse; laddr;
2556             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2557                 if (laddr->ifa == NULL) {
2558                         /* address has been removed */
2559                         continue;
2560                 }
2561                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2562                         /* address is being deleted */
2563                         continue;
2564                 }
2565                 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2566                     dest_is_priv, fam);
2567                 if (sifa == NULL)
2568                         continue;
2569                 atomic_add_int(&sifa->refcount, 1);
2570                 return (sifa);
2571         }
2572         if (resettotop == 0) {
2573                 inp->next_addr_touse = NULL;
2574                 goto once_again_too;
2575         }
2576         /*
2577          * no address bound can be a source for the destination we are in
2578          * trouble
2579          */
2580         return (NULL);
2581 }
2582
2583
2584
2585 static struct sctp_ifa *
2586 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2587     struct sctp_tcb *stcb,
2588     sctp_route_t * ro,
2589     uint32_t vrf_id,
2590     uint8_t dest_is_priv,
2591     uint8_t dest_is_loop,
2592     int non_asoc_addr_ok,
2593     sa_family_t fam)
2594 {
2595         struct sctp_laddr *laddr, *starting_point;
2596         void *ifn;
2597         struct sctp_ifn *sctp_ifn;
2598         struct sctp_ifa *sctp_ifa, *sifa;
2599         uint8_t start_at_beginning = 0;
2600         struct sctp_vrf *vrf;
2601         uint32_t ifn_index;
2602
2603         /*
2604          * first question, is the ifn we will emit on in our list, if so, we
2605          * want that one.
2606          */
2607         vrf = sctp_find_vrf(vrf_id);
2608         if (vrf == NULL)
2609                 return (NULL);
2610
2611         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2612         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2613         sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2614
2615         /*
2616          * first question, is the ifn we will emit on in our list?  If so,
2617          * we want that one. First we look for a preferred. Second, we go
2618          * for an acceptable.
2619          */
2620         if (sctp_ifn) {
2621                 /* first try for a preferred address on the ep */
2622                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2623 #ifdef INET
2624                         if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2625                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2626                             &sctp_ifa->address.sin.sin_addr) != 0)) {
2627                                 continue;
2628                         }
2629 #endif
2630 #ifdef INET6
2631                         if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2632                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2633                             &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2634                                 continue;
2635                         }
2636 #endif
2637                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2638                                 continue;
2639                         if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2640                                 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2641                                 if (sifa == NULL)
2642                                         continue;
2643                                 if (((non_asoc_addr_ok == 0) &&
2644                                     (sctp_is_addr_restricted(stcb, sifa))) ||
2645                                     (non_asoc_addr_ok &&
2646                                     (sctp_is_addr_restricted(stcb, sifa)) &&
2647                                     (!sctp_is_addr_pending(stcb, sifa)))) {
2648                                         /* on the no-no list */
2649                                         continue;
2650                                 }
2651                                 atomic_add_int(&sifa->refcount, 1);
2652                                 return (sifa);
2653                         }
2654                 }
2655                 /* next try for an acceptable address on the ep */
2656                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2657 #ifdef INET
2658                         if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
2659                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2660                             &sctp_ifa->address.sin.sin_addr) != 0)) {
2661                                 continue;
2662                         }
2663 #endif
2664 #ifdef INET6
2665                         if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
2666                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2667                             &sctp_ifa->address.sin6.sin6_addr) != 0)) {
2668                                 continue;
2669                         }
2670 #endif
2671                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2672                                 continue;
2673                         if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2674                                 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2675                                 if (sifa == NULL)
2676                                         continue;
2677                                 if (((non_asoc_addr_ok == 0) &&
2678                                     (sctp_is_addr_restricted(stcb, sifa))) ||
2679                                     (non_asoc_addr_ok &&
2680                                     (sctp_is_addr_restricted(stcb, sifa)) &&
2681                                     (!sctp_is_addr_pending(stcb, sifa)))) {
2682                                         /* on the no-no list */
2683                                         continue;
2684                                 }
2685                                 atomic_add_int(&sifa->refcount, 1);
2686                                 return (sifa);
2687                         }
2688                 }
2689
2690         }
2691         /*
2692          * if we can't find one like that then we must look at all addresses
2693          * bound to pick one at first preferable then secondly acceptable.
2694          */
2695         starting_point = stcb->asoc.last_used_address;
2696 sctp_from_the_top:
2697         if (stcb->asoc.last_used_address == NULL) {
2698                 start_at_beginning = 1;
2699                 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2700         }
2701         /* search beginning with the last used address */
2702         for (laddr = stcb->asoc.last_used_address; laddr;
2703             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2704                 if (laddr->ifa == NULL) {
2705                         /* address has been removed */
2706                         continue;
2707                 }
2708                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2709                         /* address is being deleted */
2710                         continue;
2711                 }
2712                 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam);
2713                 if (sifa == NULL)
2714                         continue;
2715                 if (((non_asoc_addr_ok == 0) &&
2716                     (sctp_is_addr_restricted(stcb, sifa))) ||
2717                     (non_asoc_addr_ok &&
2718                     (sctp_is_addr_restricted(stcb, sifa)) &&
2719                     (!sctp_is_addr_pending(stcb, sifa)))) {
2720                         /* on the no-no list */
2721                         continue;
2722                 }
2723                 stcb->asoc.last_used_address = laddr;
2724                 atomic_add_int(&sifa->refcount, 1);
2725                 return (sifa);
2726         }
2727         if (start_at_beginning == 0) {
2728                 stcb->asoc.last_used_address = NULL;
2729                 goto sctp_from_the_top;
2730         }
2731         /* now try for any higher scope than the destination */
2732         stcb->asoc.last_used_address = starting_point;
2733         start_at_beginning = 0;
2734 sctp_from_the_top2:
2735         if (stcb->asoc.last_used_address == NULL) {
2736                 start_at_beginning = 1;
2737                 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2738         }
2739         /* search beginning with the last used address */
2740         for (laddr = stcb->asoc.last_used_address; laddr;
2741             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2742                 if (laddr->ifa == NULL) {
2743                         /* address has been removed */
2744                         continue;
2745                 }
2746                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2747                         /* address is being deleted */
2748                         continue;
2749                 }
2750                 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2751                     dest_is_priv, fam);
2752                 if (sifa == NULL)
2753                         continue;
2754                 if (((non_asoc_addr_ok == 0) &&
2755                     (sctp_is_addr_restricted(stcb, sifa))) ||
2756                     (non_asoc_addr_ok &&
2757                     (sctp_is_addr_restricted(stcb, sifa)) &&
2758                     (!sctp_is_addr_pending(stcb, sifa)))) {
2759                         /* on the no-no list */
2760                         continue;
2761                 }
2762                 stcb->asoc.last_used_address = laddr;
2763                 atomic_add_int(&sifa->refcount, 1);
2764                 return (sifa);
2765         }
2766         if (start_at_beginning == 0) {
2767                 stcb->asoc.last_used_address = NULL;
2768                 goto sctp_from_the_top2;
2769         }
2770         return (NULL);
2771 }
2772
2773 static struct sctp_ifa *
2774 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2775     struct sctp_inpcb *inp,
2776     struct sctp_tcb *stcb,
2777     int non_asoc_addr_ok,
2778     uint8_t dest_is_loop,
2779     uint8_t dest_is_priv,
2780     int addr_wanted,
2781     sa_family_t fam,
2782     sctp_route_t * ro
2783 )
2784 {
2785         struct sctp_ifa *ifa, *sifa;
2786         int num_eligible_addr = 0;
2787
2788 #ifdef INET6
2789         struct sockaddr_in6 sin6, lsa6;
2790
2791         if (fam == AF_INET6) {
2792                 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2793                 (void)sa6_recoverscope(&sin6);
2794         }
2795 #endif                          /* INET6 */
2796         LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2797 #ifdef INET
2798                 if ((ifa->address.sa.sa_family == AF_INET) &&
2799                     (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2800                     &ifa->address.sin.sin_addr) != 0)) {
2801                         continue;
2802                 }
2803 #endif
2804 #ifdef INET6
2805                 if ((ifa->address.sa.sa_family == AF_INET6) &&
2806                     (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2807                     &ifa->address.sin6.sin6_addr) != 0)) {
2808                         continue;
2809                 }
2810 #endif
2811                 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2812                     (non_asoc_addr_ok == 0))
2813                         continue;
2814                 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2815                     dest_is_priv, fam);
2816                 if (sifa == NULL)
2817                         continue;
2818 #ifdef INET6
2819                 if (fam == AF_INET6 &&
2820                     dest_is_loop &&
2821                     sifa->src_is_loop && sifa->src_is_priv) {
2822                         /*
2823                          * don't allow fe80::1 to be a src on loop ::1, we
2824                          * don't list it to the peer so we will get an
2825                          * abort.
2826                          */
2827                         continue;
2828                 }
2829                 if (fam == AF_INET6 &&
2830                     IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2831                     IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2832                         /*
2833                          * link-local <-> link-local must belong to the same
2834                          * scope.
2835                          */
2836                         memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2837                         (void)sa6_recoverscope(&lsa6);
2838                         if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2839                                 continue;
2840                         }
2841                 }
2842 #endif                          /* INET6 */
2843
2844                 /*
2845                  * Check if the IPv6 address matches to next-hop. In the
2846                  * mobile case, old IPv6 address may be not deleted from the
2847                  * interface. Then, the interface has previous and new
2848                  * addresses.  We should use one corresponding to the
2849                  * next-hop.  (by micchie)
2850                  */
2851 #ifdef INET6
2852                 if (stcb && fam == AF_INET6 &&
2853                     sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2854                         if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2855                             == 0) {
2856                                 continue;
2857                         }
2858                 }
2859 #endif
2860 #ifdef INET
2861                 /* Avoid topologically incorrect IPv4 address */
2862                 if (stcb && fam == AF_INET &&
2863                     sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2864                         if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2865                                 continue;
2866                         }
2867                 }
2868 #endif
2869                 if (stcb) {
2870                         if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2871                                 continue;
2872                         }
2873                         if (((non_asoc_addr_ok == 0) &&
2874                             (sctp_is_addr_restricted(stcb, sifa))) ||
2875                             (non_asoc_addr_ok &&
2876                             (sctp_is_addr_restricted(stcb, sifa)) &&
2877                             (!sctp_is_addr_pending(stcb, sifa)))) {
2878                                 /*
2879                                  * It is restricted for some reason..
2880                                  * probably not yet added.
2881                                  */
2882                                 continue;
2883                         }
2884                 }
2885                 if (num_eligible_addr >= addr_wanted) {
2886                         return (sifa);
2887                 }
2888                 num_eligible_addr++;
2889         }
2890         return (NULL);
2891 }
2892
2893
2894 static int
2895 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2896     struct sctp_inpcb *inp,
2897     struct sctp_tcb *stcb,
2898     int non_asoc_addr_ok,
2899     uint8_t dest_is_loop,
2900     uint8_t dest_is_priv,
2901     sa_family_t fam)
2902 {
2903         struct sctp_ifa *ifa, *sifa;
2904         int num_eligible_addr = 0;
2905
2906         LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2907 #ifdef INET
2908                 if ((ifa->address.sa.sa_family == AF_INET) &&
2909                     (prison_check_ip4(inp->ip_inp.inp.inp_cred,
2910                     &ifa->address.sin.sin_addr) != 0)) {
2911                         continue;
2912                 }
2913 #endif
2914 #ifdef INET6
2915                 if ((ifa->address.sa.sa_family == AF_INET6) &&
2916                     (stcb != NULL) &&
2917                     (prison_check_ip6(inp->ip_inp.inp.inp_cred,
2918                     &ifa->address.sin6.sin6_addr) != 0)) {
2919                         continue;
2920                 }
2921 #endif
2922                 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2923                     (non_asoc_addr_ok == 0)) {
2924                         continue;
2925                 }
2926                 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2927                     dest_is_priv, fam);
2928                 if (sifa == NULL) {
2929                         continue;
2930                 }
2931                 if (stcb) {
2932                         if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2933                                 continue;
2934                         }
2935                         if (((non_asoc_addr_ok == 0) &&
2936                             (sctp_is_addr_restricted(stcb, sifa))) ||
2937                             (non_asoc_addr_ok &&
2938                             (sctp_is_addr_restricted(stcb, sifa)) &&
2939                             (!sctp_is_addr_pending(stcb, sifa)))) {
2940                                 /*
2941                                  * It is restricted for some reason..
2942                                  * probably not yet added.
2943                                  */
2944                                 continue;
2945                         }
2946                 }
2947                 num_eligible_addr++;
2948         }
2949         return (num_eligible_addr);
2950 }
2951
2952 static struct sctp_ifa *
2953 sctp_choose_boundall(struct sctp_inpcb *inp,
2954     struct sctp_tcb *stcb,
2955     struct sctp_nets *net,
2956     sctp_route_t * ro,
2957     uint32_t vrf_id,
2958     uint8_t dest_is_priv,
2959     uint8_t dest_is_loop,
2960     int non_asoc_addr_ok,
2961     sa_family_t fam)
2962 {
2963         int cur_addr_num = 0, num_preferred = 0;
2964         void *ifn;
2965         struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2966         struct sctp_ifa *sctp_ifa, *sifa;
2967         uint32_t ifn_index;
2968         struct sctp_vrf *vrf;
2969
2970 #ifdef INET
2971         int retried = 0;
2972
2973 #endif
2974
2975         /*-
2976          * For boundall we can use any address in the association.
2977          * If non_asoc_addr_ok is set we can use any address (at least in
2978          * theory). So we look for preferred addresses first. If we find one,
2979          * we use it. Otherwise we next try to get an address on the
2980          * interface, which we should be able to do (unless non_asoc_addr_ok
2981          * is false and we are routed out that way). In these cases where we
2982          * can't use the address of the interface we go through all the
2983          * ifn's looking for an address we can use and fill that in. Punting
2984          * means we send back address 0, which will probably cause problems
2985          * actually since then IP will fill in the address of the route ifn,
2986          * which means we probably already rejected it.. i.e. here comes an
2987          * abort :-<.
2988          */
2989         vrf = sctp_find_vrf(vrf_id);
2990         if (vrf == NULL)
2991                 return (NULL);
2992
2993         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2994         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2995         SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2996         emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2997         if (sctp_ifn == NULL) {
2998                 /* ?? We don't have this guy ?? */
2999                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
3000                 goto bound_all_plan_b;
3001         }
3002         SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
3003             ifn_index, sctp_ifn->ifn_name);
3004
3005         if (net) {
3006                 cur_addr_num = net->indx_of_eligible_next_to_use;
3007         }
3008         num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
3009             inp, stcb,
3010             non_asoc_addr_ok,
3011             dest_is_loop,
3012             dest_is_priv, fam);
3013         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
3014             num_preferred, sctp_ifn->ifn_name);
3015         if (num_preferred == 0) {
3016                 /*
3017                  * no eligible addresses, we must use some other interface
3018                  * address if we can find one.
3019                  */
3020                 goto bound_all_plan_b;
3021         }
3022         /*
3023          * Ok we have num_eligible_addr set with how many we can use, this
3024          * may vary from call to call due to addresses being deprecated
3025          * etc..
3026          */
3027         if (cur_addr_num >= num_preferred) {
3028                 cur_addr_num = 0;
3029         }
3030         /*
3031          * select the nth address from the list (where cur_addr_num is the
3032          * nth) and 0 is the first one, 1 is the second one etc...
3033          */
3034         SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
3035
3036         sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3037             dest_is_priv, cur_addr_num, fam, ro);
3038
3039         /* if sctp_ifa is NULL something changed??, fall to plan b. */
3040         if (sctp_ifa) {
3041                 atomic_add_int(&sctp_ifa->refcount, 1);
3042                 if (net) {
3043                         /* save off where the next one we will want */
3044                         net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3045                 }
3046                 return (sctp_ifa);
3047         }
3048         /*
3049          * plan_b: Look at all interfaces and find a preferred address. If
3050          * no preferred fall through to plan_c.
3051          */
3052 bound_all_plan_b:
3053         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
3054         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3055                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
3056                     sctp_ifn->ifn_name);
3057                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3058                         /* wrong base scope */
3059                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
3060                         continue;
3061                 }
3062                 if ((sctp_ifn == looked_at) && looked_at) {
3063                         /* already looked at this guy */
3064                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
3065                         continue;
3066                 }
3067                 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok,
3068                     dest_is_loop, dest_is_priv, fam);
3069                 SCTPDBG(SCTP_DEBUG_OUTPUT2,
3070                     "Found ifn:%p %d preferred source addresses\n",
3071                     ifn, num_preferred);
3072                 if (num_preferred == 0) {
3073                         /* None on this interface. */
3074                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "No preferred -- skipping to next\n");
3075                         continue;
3076                 }
3077                 SCTPDBG(SCTP_DEBUG_OUTPUT2,
3078                     "num preferred:%d on interface:%p cur_addr_num:%d\n",
3079                     num_preferred, (void *)sctp_ifn, cur_addr_num);
3080
3081                 /*
3082                  * Ok we have num_eligible_addr set with how many we can
3083                  * use, this may vary from call to call due to addresses
3084                  * being deprecated etc..
3085                  */
3086                 if (cur_addr_num >= num_preferred) {
3087                         cur_addr_num = 0;
3088                 }
3089                 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop,
3090                     dest_is_priv, cur_addr_num, fam, ro);
3091                 if (sifa == NULL)
3092                         continue;
3093                 if (net) {
3094                         net->indx_of_eligible_next_to_use = cur_addr_num + 1;
3095                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
3096                             cur_addr_num);
3097                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
3098                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
3099                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
3100                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
3101                 }
3102                 atomic_add_int(&sifa->refcount, 1);
3103                 return (sifa);
3104         }
3105 #ifdef INET
3106 again_with_private_addresses_allowed:
3107 #endif
3108         /* plan_c: do we have an acceptable address on the emit interface */
3109         sifa = NULL;
3110         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3111         if (emit_ifn == NULL) {
3112                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3113                 goto plan_d;
3114         }
3115         LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3116                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3117 #ifdef INET
3118                 if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3119                     (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3120                     &sctp_ifa->address.sin.sin_addr) != 0)) {
3121                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3122                         continue;
3123                 }
3124 #endif
3125 #ifdef INET6
3126                 if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3127                     (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3128                     &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3129                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n");
3130                         continue;
3131                 }
3132 #endif
3133                 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3134                     (non_asoc_addr_ok == 0)) {
3135                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3136                         continue;
3137                 }
3138                 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3139                     dest_is_priv, fam);
3140                 if (sifa == NULL) {
3141                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3142                         continue;
3143                 }
3144                 if (stcb) {
3145                         if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3146                                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3147                                 sifa = NULL;
3148                                 continue;
3149                         }
3150                         if (((non_asoc_addr_ok == 0) &&
3151                             (sctp_is_addr_restricted(stcb, sifa))) ||
3152                             (non_asoc_addr_ok &&
3153                             (sctp_is_addr_restricted(stcb, sifa)) &&
3154                             (!sctp_is_addr_pending(stcb, sifa)))) {
3155                                 /*
3156                                  * It is restricted for some reason..
3157                                  * probably not yet added.
3158                                  */
3159                                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its restricted\n");
3160                                 sifa = NULL;
3161                                 continue;
3162                         }
3163                 }
3164                 atomic_add_int(&sifa->refcount, 1);
3165                 goto out;
3166         }
3167 plan_d:
3168         /*
3169          * plan_d: We are in trouble. No preferred address on the emit
3170          * interface. And not even a preferred address on all interfaces. Go
3171          * out and see if we can find an acceptable address somewhere
3172          * amongst all interfaces.
3173          */
3174         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3175         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3176                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3177                         /* wrong base scope */
3178                         continue;
3179                 }
3180                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3181 #ifdef INET
3182                         if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3183                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3184                             &sctp_ifa->address.sin.sin_addr) != 0)) {
3185                                 continue;
3186                         }
3187 #endif
3188 #ifdef INET6
3189                         if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3190                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3191                             &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3192                                 continue;
3193                         }
3194 #endif
3195                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3196                             (non_asoc_addr_ok == 0))
3197                                 continue;
3198                         sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3199                             dest_is_loop,
3200                             dest_is_priv, fam);
3201                         if (sifa == NULL)
3202                                 continue;
3203                         if (stcb) {
3204                                 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3205                                         sifa = NULL;
3206                                         continue;
3207                                 }
3208                                 if (((non_asoc_addr_ok == 0) &&
3209                                     (sctp_is_addr_restricted(stcb, sifa))) ||
3210                                     (non_asoc_addr_ok &&
3211                                     (sctp_is_addr_restricted(stcb, sifa)) &&
3212                                     (!sctp_is_addr_pending(stcb, sifa)))) {
3213                                         /*
3214                                          * It is restricted for some
3215                                          * reason.. probably not yet added.
3216                                          */
3217                                         sifa = NULL;
3218                                         continue;
3219                                 }
3220                         }
3221                         goto out;
3222                 }
3223         }
3224 #ifdef INET
3225         if (stcb) {
3226                 if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) {
3227                         stcb->asoc.scope.ipv4_local_scope = 1;
3228                         retried = 1;
3229                         goto again_with_private_addresses_allowed;
3230                 } else if (retried == 1) {
3231                         stcb->asoc.scope.ipv4_local_scope = 0;
3232                 }
3233         }
3234 #endif
3235 out:
3236 #ifdef INET
3237         if (sifa) {
3238                 if (retried == 1) {
3239                         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3240                                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3241                                         /* wrong base scope */
3242                                         continue;
3243                                 }
3244                                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3245                                         struct sctp_ifa *tmp_sifa;
3246
3247 #ifdef INET
3248                                         if ((sctp_ifa->address.sa.sa_family == AF_INET) &&
3249                                             (prison_check_ip4(inp->ip_inp.inp.inp_cred,
3250                                             &sctp_ifa->address.sin.sin_addr) != 0)) {
3251                                                 continue;
3252                                         }
3253 #endif
3254 #ifdef INET6
3255                                         if ((sctp_ifa->address.sa.sa_family == AF_INET6) &&
3256                                             (prison_check_ip6(inp->ip_inp.inp.inp_cred,
3257                                             &sctp_ifa->address.sin6.sin6_addr) != 0)) {
3258                                                 continue;
3259                                         }
3260 #endif
3261                                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3262                                             (non_asoc_addr_ok == 0))
3263                                                 continue;
3264                                         tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3265                                             dest_is_loop,
3266                                             dest_is_priv, fam);
3267                                         if (tmp_sifa == NULL) {
3268                                                 continue;
3269                                         }
3270                                         if (tmp_sifa == sifa) {
3271                                                 continue;
3272                                         }
3273                                         if (stcb) {
3274                                                 if (sctp_is_address_in_scope(tmp_sifa,
3275                                                     &stcb->asoc.scope, 0) == 0) {
3276                                                         continue;
3277                                                 }
3278                                                 if (((non_asoc_addr_ok == 0) &&
3279                                                     (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3280                                                     (non_asoc_addr_ok &&
3281                                                     (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3282                                                     (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3283                                                         /*
3284                                                          * It is restricted
3285                                                          * for some reason..
3286                                                          * probably not yet
3287                                                          * added.
3288                                                          */
3289                                                         continue;
3290                                                 }
3291                                         }
3292                                         if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3293                                             (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3294                                                 sctp_add_local_addr_restricted(stcb, tmp_sifa);
3295                                         }
3296                                 }
3297                         }
3298                 }
3299                 atomic_add_int(&sifa->refcount, 1);
3300         }
3301 #endif
3302         return (sifa);
3303 }
3304
3305
3306
3307 /* tcb may be NULL */
3308 struct sctp_ifa *
3309 sctp_source_address_selection(struct sctp_inpcb *inp,
3310     struct sctp_tcb *stcb,
3311     sctp_route_t * ro,
3312     struct sctp_nets *net,
3313     int non_asoc_addr_ok, uint32_t vrf_id)
3314 {
3315         struct sctp_ifa *answer;
3316         uint8_t dest_is_priv, dest_is_loop;
3317         sa_family_t fam;
3318
3319 #ifdef INET
3320         struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3321
3322 #endif
3323 #ifdef INET6
3324         struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3325
3326 #endif
3327
3328         /**
3329          * Rules:
3330          * - Find the route if needed, cache if I can.
3331          * - Look at interface address in route, Is it in the bound list. If so we
3332          *   have the best source.
3333          * - If not we must rotate amongst the addresses.
3334          *
3335          * Cavets and issues
3336          *
3337          * Do we need to pay attention to scope. We can have a private address
3338          * or a global address we are sourcing or sending to. So if we draw
3339          * it out
3340          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3341          * For V4
3342          * ------------------------------------------
3343          *      source     *      dest  *  result
3344          * -----------------------------------------
3345          * <a>  Private    *    Global  *  NAT
3346          * -----------------------------------------
3347          * <b>  Private    *    Private *  No problem
3348          * -----------------------------------------
3349          * <c>  Global     *    Private *  Huh, How will this work?
3350          * -----------------------------------------
3351          * <d>  Global     *    Global  *  No Problem
3352          *------------------------------------------
3353          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3354          * For V6
3355          *------------------------------------------
3356          *      source     *      dest  *  result
3357          * -----------------------------------------
3358          * <a>  Linklocal  *    Global  *
3359          * -----------------------------------------
3360          * <b>  Linklocal  * Linklocal  *  No problem
3361          * -----------------------------------------
3362          * <c>  Global     * Linklocal  *  Huh, How will this work?
3363          * -----------------------------------------
3364          * <d>  Global     *    Global  *  No Problem
3365          *------------------------------------------
3366          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3367          *
3368          * And then we add to that what happens if there are multiple addresses
3369          * assigned to an interface. Remember the ifa on a ifn is a linked
3370          * list of addresses. So one interface can have more than one IP
3371          * address. What happens if we have both a private and a global
3372          * address? Do we then use context of destination to sort out which
3373          * one is best? And what about NAT's sending P->G may get you a NAT
3374          * translation, or should you select the G thats on the interface in
3375          * preference.
3376          *
3377          * Decisions:
3378          *
3379          * - count the number of addresses on the interface.
3380          * - if it is one, no problem except case <c>.
3381          *   For <a> we will assume a NAT out there.
3382          * - if there are more than one, then we need to worry about scope P
3383          *   or G. We should prefer G -> G and P -> P if possible.
3384          *   Then as a secondary fall back to mixed types G->P being a last
3385          *   ditch one.
3386          * - The above all works for bound all, but bound specific we need to
3387          *   use the same concept but instead only consider the bound
3388          *   addresses. If the bound set is NOT assigned to the interface then
3389          *   we must use rotation amongst the bound addresses..
3390          */
3391         if (ro->ro_rt == NULL) {
3392                 /*
3393                  * Need a route to cache.
3394                  */
3395                 SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
3396         }
3397         if (ro->ro_rt == NULL) {
3398                 return (NULL);
3399         }
3400         fam = ro->ro_dst.sa_family;
3401         dest_is_priv = dest_is_loop = 0;
3402         /* Setup our scopes for the destination */
3403         switch (fam) {
3404 #ifdef INET
3405         case AF_INET:
3406                 /* Scope based on outbound address */
3407                 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3408                         dest_is_loop = 1;
3409                         if (net != NULL) {
3410                                 /* mark it as local */
3411                                 net->addr_is_local = 1;
3412                         }
3413                 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3414                         dest_is_priv = 1;
3415                 }
3416                 break;
3417 #endif
3418 #ifdef INET6
3419         case AF_INET6:
3420                 /* Scope based on outbound address */
3421                 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3422                     SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3423                         /*
3424                          * If the address is a loopback address, which
3425                          * consists of "::1" OR "fe80::1%lo0", we are
3426                          * loopback scope. But we don't use dest_is_priv
3427                          * (link local addresses).
3428                          */
3429                         dest_is_loop = 1;
3430                         if (net != NULL) {
3431                                 /* mark it as local */
3432                                 net->addr_is_local = 1;
3433                         }
3434                 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3435                         dest_is_priv = 1;
3436                 }
3437                 break;
3438 #endif
3439         }
3440         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3441         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3442         SCTP_IPI_ADDR_RLOCK();
3443         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3444                 /*
3445                  * Bound all case
3446                  */
3447                 answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id,
3448                     dest_is_priv, dest_is_loop,
3449                     non_asoc_addr_ok, fam);
3450                 SCTP_IPI_ADDR_RUNLOCK();
3451                 return (answer);
3452         }
3453         /*
3454          * Subset bound case
3455          */
3456         if (stcb) {
3457                 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3458                     vrf_id, dest_is_priv,
3459                     dest_is_loop,
3460                     non_asoc_addr_ok, fam);
3461         } else {
3462                 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3463                     non_asoc_addr_ok,
3464                     dest_is_priv,
3465                     dest_is_loop, fam);
3466         }
3467         SCTP_IPI_ADDR_RUNLOCK();
3468         return (answer);
3469 }
3470
3471 static int
3472 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3473 {
3474         struct cmsghdr cmh;
3475         int tlen, at, found;
3476         struct sctp_sndinfo sndinfo;
3477         struct sctp_prinfo prinfo;
3478         struct sctp_authinfo authinfo;
3479
3480         tlen = SCTP_BUF_LEN(control);
3481         at = 0;
3482         found = 0;
3483         /*
3484          * Independent of how many mbufs, find the c_type inside the control
3485          * structure and copy out the data.
3486          */
3487         while (at < tlen) {
3488                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3489                         /* There is not enough room for one more. */
3490                         return (found);
3491                 }
3492                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3493                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3494                         /* We dont't have a complete CMSG header. */
3495                         return (found);
3496                 }
3497                 if (((int)cmh.cmsg_len + at) > tlen) {
3498                         /* We don't have the complete CMSG. */
3499                         return (found);
3500                 }
3501                 if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3502                     ((c_type == cmh.cmsg_type) ||
3503                     ((c_type == SCTP_SNDRCV) &&
3504                     ((cmh.cmsg_type == SCTP_SNDINFO) ||
3505                     (cmh.cmsg_type == SCTP_PRINFO) ||
3506                     (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3507                         if (c_type == cmh.cmsg_type) {
3508                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) {
3509                                         return (found);
3510                                 }
3511                                 /* It is exactly what we want. Copy it out. */
3512                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), (int)cpsize, (caddr_t)data);
3513                                 return (1);
3514                         } else {
3515                                 struct sctp_sndrcvinfo *sndrcvinfo;
3516
3517                                 sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3518                                 if (found == 0) {
3519                                         if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3520                                                 return (found);
3521                                         }
3522                                         memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3523                                 }
3524                                 switch (cmh.cmsg_type) {
3525                                 case SCTP_SNDINFO:
3526                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) {
3527                                                 return (found);
3528                                         }
3529                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3530                                         sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3531                                         sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3532                                         sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3533                                         sndrcvinfo->sinfo_context = sndinfo.snd_context;
3534                                         sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3535                                         break;
3536                                 case SCTP_PRINFO:
3537                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) {
3538                                                 return (found);
3539                                         }
3540                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3541                                         if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) {
3542                                                 sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3543                                         } else {
3544                                                 sndrcvinfo->sinfo_timetolive = 0;
3545                                         }
3546                                         sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3547                                         break;
3548                                 case SCTP_AUTHINFO:
3549                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) {
3550                                                 return (found);
3551                                         }
3552                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3553                                         sndrcvinfo->sinfo_keynumber_valid = 1;
3554                                         sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3555                                         break;
3556                                 default:
3557                                         return (found);
3558                                 }
3559                                 found = 1;
3560                         }
3561                 }
3562                 at += CMSG_ALIGN(cmh.cmsg_len);
3563         }
3564         return (found);
3565 }
3566
3567 static int
3568 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3569 {
3570         struct cmsghdr cmh;
3571         int tlen, at;
3572         struct sctp_initmsg initmsg;
3573
3574 #ifdef INET
3575         struct sockaddr_in sin;
3576
3577 #endif
3578 #ifdef INET6
3579         struct sockaddr_in6 sin6;
3580
3581 #endif
3582
3583         tlen = SCTP_BUF_LEN(control);
3584         at = 0;
3585         while (at < tlen) {
3586                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3587                         /* There is not enough room for one more. */
3588                         *error = EINVAL;
3589                         return (1);
3590                 }
3591                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3592                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3593                         /* We dont't have a complete CMSG header. */
3594                         *error = EINVAL;
3595                         return (1);
3596                 }
3597                 if (((int)cmh.cmsg_len + at) > tlen) {
3598                         /* We don't have the complete CMSG. */
3599                         *error = EINVAL;
3600                         return (1);
3601                 }
3602                 if (cmh.cmsg_level == IPPROTO_SCTP) {
3603                         switch (cmh.cmsg_type) {
3604                         case SCTP_INIT:
3605                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) {
3606                                         *error = EINVAL;
3607                                         return (1);
3608                                 }
3609                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3610                                 if (initmsg.sinit_max_attempts)
3611                                         stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3612                                 if (initmsg.sinit_num_ostreams)
3613                                         stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3614                                 if (initmsg.sinit_max_instreams)
3615                                         stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3616                                 if (initmsg.sinit_max_init_timeo)
3617                                         stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3618                                 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3619                                         struct sctp_stream_out *tmp_str;
3620                                         unsigned int i;
3621
3622 #if defined(SCTP_DETAILED_STR_STATS)
3623                                         int j;
3624
3625 #endif
3626
3627                                         /* Default is NOT correct */
3628                                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3629                                             stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3630                                         SCTP_TCB_UNLOCK(stcb);
3631                                         SCTP_MALLOC(tmp_str,
3632                                             struct sctp_stream_out *,
3633                                             (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3634                                             SCTP_M_STRMO);
3635                                         SCTP_TCB_LOCK(stcb);
3636                                         if (tmp_str != NULL) {
3637                                                 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3638                                                 stcb->asoc.strmout = tmp_str;
3639                                                 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3640                                         } else {
3641                                                 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3642                                         }
3643                                         for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3644                                                 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3645                                                 stcb->asoc.strmout[i].chunks_on_queues = 0;
3646                                                 stcb->asoc.strmout[i].next_mid_ordered = 0;
3647                                                 stcb->asoc.strmout[i].next_mid_unordered = 0;
3648 #if defined(SCTP_DETAILED_STR_STATS)
3649                                                 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
3650                                                         stcb->asoc.strmout[i].abandoned_sent[j] = 0;
3651                                                         stcb->asoc.strmout[i].abandoned_unsent[j] = 0;
3652                                                 }
3653 #else
3654                                                 stcb->asoc.strmout[i].abandoned_sent[0] = 0;
3655                                                 stcb->asoc.strmout[i].abandoned_unsent[0] = 0;
3656 #endif
3657                                                 stcb->asoc.strmout[i].stream_no = i;
3658                                                 stcb->asoc.strmout[i].last_msg_incomplete = 0;
3659                                                 stcb->asoc.strmout[i].state = SCTP_STREAM_OPENING;
3660                                                 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL);
3661                                         }
3662                                 }
3663                                 break;
3664 #ifdef INET
3665                         case SCTP_DSTADDRV4:
3666                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3667                                         *error = EINVAL;
3668                                         return (1);
3669                                 }
3670                                 memset(&sin, 0, sizeof(struct sockaddr_in));
3671                                 sin.sin_family = AF_INET;
3672                                 sin.sin_len = sizeof(struct sockaddr_in);
3673                                 sin.sin_port = stcb->rport;
3674                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3675                                 if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3676                                     (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3677                                     IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3678                                         *error = EINVAL;
3679                                         return (1);
3680                                 }
3681                                 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port,
3682                                     SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3683                                         *error = ENOBUFS;
3684                                         return (1);
3685                                 }
3686                                 break;
3687 #endif
3688 #ifdef INET6
3689                         case SCTP_DSTADDRV6:
3690                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3691                                         *error = EINVAL;
3692                                         return (1);
3693                                 }
3694                                 memset(&sin6, 0, sizeof(struct sockaddr_in6));
3695                                 sin6.sin6_family = AF_INET6;
3696                                 sin6.sin6_len = sizeof(struct sockaddr_in6);
3697                                 sin6.sin6_port = stcb->rport;
3698                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3699                                 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) ||
3700                                     IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) {
3701                                         *error = EINVAL;
3702                                         return (1);
3703                                 }
3704 #ifdef INET
3705                                 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3706                                         in6_sin6_2_sin(&sin, &sin6);
3707                                         if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3708                                             (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3709                                             IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3710                                                 *error = EINVAL;
3711                                                 return (1);
3712                                         }
3713                                         if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port,
3714                                             SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3715                                                 *error = ENOBUFS;
3716                                                 return (1);
3717                                         }
3718                                 } else
3719 #endif
3720                                         if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, stcb->asoc.port,
3721                                     SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3722                                         *error = ENOBUFS;
3723                                         return (1);
3724                                 }
3725                                 break;
3726 #endif
3727                         default:
3728                                 break;
3729                         }
3730                 }
3731                 at += CMSG_ALIGN(cmh.cmsg_len);
3732         }
3733         return (0);
3734 }
3735
3736 static struct sctp_tcb *
3737 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p,
3738     uint16_t port,
3739     struct mbuf *control,
3740     struct sctp_nets **net_p,
3741     int *error)
3742 {
3743         struct cmsghdr cmh;
3744         int tlen, at;
3745         struct sctp_tcb *stcb;
3746         struct sockaddr *addr;
3747
3748 #ifdef INET
3749         struct sockaddr_in sin;
3750
3751 #endif
3752 #ifdef INET6
3753         struct sockaddr_in6 sin6;
3754
3755 #endif
3756
3757         tlen = SCTP_BUF_LEN(control);
3758         at = 0;
3759         while (at < tlen) {
3760                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3761                         /* There is not enough room for one more. */
3762                         *error = EINVAL;
3763                         return (NULL);
3764                 }
3765                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3766                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3767                         /* We dont't have a complete CMSG header. */
3768                         *error = EINVAL;
3769                         return (NULL);
3770                 }
3771                 if (((int)cmh.cmsg_len + at) > tlen) {
3772                         /* We don't have the complete CMSG. */
3773                         *error = EINVAL;
3774                         return (NULL);
3775                 }
3776                 if (cmh.cmsg_level == IPPROTO_SCTP) {
3777                         switch (cmh.cmsg_type) {
3778 #ifdef INET
3779                         case SCTP_DSTADDRV4:
3780                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3781                                         *error = EINVAL;
3782                                         return (NULL);
3783                                 }
3784                                 memset(&sin, 0, sizeof(struct sockaddr_in));
3785                                 sin.sin_family = AF_INET;
3786                                 sin.sin_len = sizeof(struct sockaddr_in);
3787                                 sin.sin_port = port;
3788                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3789                                 addr = (struct sockaddr *)&sin;
3790                                 break;
3791 #endif
3792 #ifdef INET6
3793                         case SCTP_DSTADDRV6:
3794                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3795                                         *error = EINVAL;
3796                                         return (NULL);
3797                                 }
3798                                 memset(&sin6, 0, sizeof(struct sockaddr_in6));
3799                                 sin6.sin6_family = AF_INET6;
3800                                 sin6.sin6_len = sizeof(struct sockaddr_in6);
3801                                 sin6.sin6_port = port;
3802                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3803 #ifdef INET
3804                                 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3805                                         in6_sin6_2_sin(&sin, &sin6);
3806                                         addr = (struct sockaddr *)&sin;
3807                                 } else
3808 #endif
3809                                         addr = (struct sockaddr *)&sin6;
3810                                 break;
3811 #endif
3812                         default:
3813                                 addr = NULL;
3814                                 break;
3815                         }
3816                         if (addr) {
3817                                 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3818                                 if (stcb != NULL) {
3819                                         return (stcb);
3820                                 }
3821                         }
3822                 }
3823                 at += CMSG_ALIGN(cmh.cmsg_len);
3824         }
3825         return (NULL);
3826 }
3827
3828 static struct mbuf *
3829 sctp_add_cookie(struct mbuf *init, int init_offset,
3830     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3831 {
3832         struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3833         struct sctp_state_cookie *stc;
3834         struct sctp_paramhdr *ph;
3835         uint8_t *foo;
3836         int sig_offset;
3837         uint16_t cookie_sz;
3838
3839         mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3840             sizeof(struct sctp_paramhdr)), 0,
3841             M_NOWAIT, 1, MT_DATA);
3842         if (mret == NULL) {
3843                 return (NULL);
3844         }
3845         copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT);
3846         if (copy_init == NULL) {
3847                 sctp_m_freem(mret);
3848                 return (NULL);
3849         }
3850 #ifdef SCTP_MBUF_LOGGING
3851         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3852                 sctp_log_mbc(copy_init, SCTP_MBUF_ICOPY);
3853         }
3854 #endif
3855         copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3856             M_NOWAIT);
3857         if (copy_initack == NULL) {
3858                 sctp_m_freem(mret);
3859                 sctp_m_freem(copy_init);
3860                 return (NULL);
3861         }
3862 #ifdef SCTP_MBUF_LOGGING
3863         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3864                 sctp_log_mbc(copy_initack, SCTP_MBUF_ICOPY);
3865         }
3866 #endif
3867         /* easy side we just drop it on the end */
3868         ph = mtod(mret, struct sctp_paramhdr *);
3869         SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3870             sizeof(struct sctp_paramhdr);
3871         stc = (struct sctp_state_cookie *)((caddr_t)ph +
3872             sizeof(struct sctp_paramhdr));
3873         ph->param_type = htons(SCTP_STATE_COOKIE);
3874         ph->param_length = 0;   /* fill in at the end */
3875         /* Fill in the stc cookie data */
3876         memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3877
3878         /* tack the INIT and then the INIT-ACK onto the chain */
3879         cookie_sz = 0;
3880         for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3881                 cookie_sz += SCTP_BUF_LEN(m_at);
3882                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3883                         SCTP_BUF_NEXT(m_at) = copy_init;
3884                         break;
3885                 }
3886         }
3887         for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3888                 cookie_sz += SCTP_BUF_LEN(m_at);
3889                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3890                         SCTP_BUF_NEXT(m_at) = copy_initack;
3891                         break;
3892                 }
3893         }
3894         for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3895                 cookie_sz += SCTP_BUF_LEN(m_at);
3896                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3897                         break;
3898                 }
3899         }
3900         sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA);
3901         if (sig == NULL) {
3902                 /* no space, so free the entire chain */
3903                 sctp_m_freem(mret);
3904                 return (NULL);
3905         }
3906         SCTP_BUF_LEN(sig) = 0;
3907         SCTP_BUF_NEXT(m_at) = sig;
3908         sig_offset = 0;
3909         foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3910         memset(foo, 0, SCTP_SIGNATURE_SIZE);
3911         *signature = foo;
3912         SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3913         cookie_sz += SCTP_SIGNATURE_SIZE;
3914         ph->param_length = htons(cookie_sz);
3915         return (mret);
3916 }
3917
3918
3919 static uint8_t
3920 sctp_get_ect(struct sctp_tcb *stcb)
3921 {
3922         if ((stcb != NULL) && (stcb->asoc.ecn_supported == 1)) {
3923                 return (SCTP_ECT0_BIT);
3924         } else {
3925                 return (0);
3926         }
3927 }
3928
3929 #if defined(INET) || defined(INET6)
3930 static void
3931 sctp_handle_no_route(struct sctp_tcb *stcb,
3932     struct sctp_nets *net,
3933     int so_locked)
3934 {
3935         SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3936
3937         if (net) {
3938                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3939                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3940                 if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3941                         if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3942                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3943                                 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3944                                     stcb, 0,
3945                                     (void *)net,
3946                                     so_locked);
3947                                 net->dest_state &= ~SCTP_ADDR_REACHABLE;
3948                                 net->dest_state &= ~SCTP_ADDR_PF;
3949                         }
3950                 }
3951                 if (stcb) {
3952                         if (net == stcb->asoc.primary_destination) {
3953                                 /* need a new primary */
3954                                 struct sctp_nets *alt;
3955
3956                                 alt = sctp_find_alternate_net(stcb, net, 0);
3957                                 if (alt != net) {
3958                                         if (stcb->asoc.alternate) {
3959                                                 sctp_free_remote_addr(stcb->asoc.alternate);
3960                                         }
3961                                         stcb->asoc.alternate = alt;
3962                                         atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3963                                         if (net->ro._s_addr) {
3964                                                 sctp_free_ifa(net->ro._s_addr);
3965                                                 net->ro._s_addr = NULL;
3966                                         }
3967                                         net->src_addr_selected = 0;
3968                                 }
3969                         }
3970                 }
3971         }
3972 }
3973
3974 #endif
3975
3976 static int
3977 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3978     struct sctp_tcb *stcb,      /* may be NULL */
3979     struct sctp_nets *net,
3980     struct sockaddr *to,
3981     struct mbuf *m,
3982     uint32_t auth_offset,
3983     struct sctp_auth_chunk *auth,
3984     uint16_t auth_keyid,
3985     int nofragment_flag,
3986     int ecn_ok,
3987     int out_of_asoc_ok,
3988     uint16_t src_port,
3989     uint16_t dest_port,
3990     uint32_t v_tag,
3991     uint16_t port,
3992     union sctp_sockstore *over_addr,
3993     uint8_t mflowtype, uint32_t mflowid,
3994 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3995     int so_locked SCTP_UNUSED
3996 #else
3997     int so_locked
3998 #endif
3999 )
4000 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
4001 {
4002         /**
4003          * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
4004          * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
4005          * - fill in the HMAC digest of any AUTH chunk in the packet.
4006          * - calculate and fill in the SCTP checksum.
4007          * - prepend an IP address header.
4008          * - if boundall use INADDR_ANY.
4009          * - if boundspecific do source address selection.
4010          * - set fragmentation option for ipV4.
4011          * - On return from IP output, check/adjust mtu size of output
4012          *   interface and smallest_mtu size as well.
4013          */
4014         /* Will need ifdefs around this */
4015         struct mbuf *newm;
4016         struct sctphdr *sctphdr;
4017         int packet_length;
4018         int ret;
4019
4020 #if defined(INET) || defined(INET6)
4021         uint32_t vrf_id;
4022
4023 #endif
4024 #if defined(INET) || defined(INET6)
4025         struct mbuf *o_pak;
4026         sctp_route_t *ro = NULL;
4027         struct udphdr *udp = NULL;
4028
4029 #endif
4030         uint8_t tos_value;
4031
4032 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4033         struct socket *so = NULL;
4034
4035 #endif
4036
4037         if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
4038                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4039                 sctp_m_freem(m);
4040                 return (EFAULT);
4041         }
4042 #if defined(INET) || defined(INET6)
4043         if (stcb) {
4044                 vrf_id = stcb->asoc.vrf_id;
4045         } else {
4046                 vrf_id = inp->def_vrf_id;
4047         }
4048 #endif
4049         /* fill in the HMAC digest for any AUTH chunk in the packet */
4050         if ((auth != NULL) && (stcb != NULL)) {
4051                 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
4052         }
4053         if (net) {
4054                 tos_value = net->dscp;
4055         } else if (stcb) {
4056                 tos_value = stcb->asoc.default_dscp;
4057         } else {
4058                 tos_value = inp->sctp_ep.default_dscp;
4059         }
4060
4061         switch (to->sa_family) {
4062 #ifdef INET
4063         case AF_INET:
4064                 {
4065                         struct ip *ip = NULL;
4066                         sctp_route_t iproute;
4067                         int len;
4068
4069                         len = SCTP_MIN_V4_OVERHEAD;
4070                         if (port) {
4071                                 len += sizeof(struct udphdr);
4072                         }
4073                         newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4074                         if (newm == NULL) {
4075                                 sctp_m_freem(m);
4076                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4077                                 return (ENOMEM);
4078                         }
4079                         SCTP_ALIGN_TO_END(newm, len);
4080                         SCTP_BUF_LEN(newm) = len;
4081                         SCTP_BUF_NEXT(newm) = m;
4082                         m = newm;
4083                         if (net != NULL) {
4084                                 m->m_pkthdr.flowid = net->flowid;
4085                                 M_HASHTYPE_SET(m, net->flowtype);
4086                         } else {
4087                                 m->m_pkthdr.flowid = mflowid;
4088                                 M_HASHTYPE_SET(m, mflowtype);
4089                         }
4090                         packet_length = sctp_calculate_len(m);
4091                         ip = mtod(m, struct ip *);
4092                         ip->ip_v = IPVERSION;
4093                         ip->ip_hl = (sizeof(struct ip) >> 2);
4094                         if (tos_value == 0) {
4095                                 /*
4096                                  * This means especially, that it is not set
4097                                  * at the SCTP layer. So use the value from
4098                                  * the IP layer.
4099                                  */
4100                                 tos_value = inp->ip_inp.inp.inp_ip_tos;
4101                         }
4102                         tos_value &= 0xfc;
4103                         if (ecn_ok) {
4104                                 tos_value |= sctp_get_ect(stcb);
4105                         }
4106                         if ((nofragment_flag) && (port == 0)) {
4107                                 ip->ip_off = htons(IP_DF);
4108                         } else {
4109                                 ip->ip_off = htons(0);
4110                         }
4111                         /* FreeBSD has a function for ip_id's */
4112                         ip_fillid(ip);
4113
4114                         ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
4115                         ip->ip_len = htons(packet_length);
4116                         ip->ip_tos = tos_value;
4117                         if (port) {
4118                                 ip->ip_p = IPPROTO_UDP;
4119                         } else {
4120                                 ip->ip_p = IPPROTO_SCTP;
4121                         }
4122                         ip->ip_sum = 0;
4123                         if (net == NULL) {
4124                                 ro = &iproute;
4125                                 memset(&iproute, 0, sizeof(iproute));
4126                                 memcpy(&ro->ro_dst, to, to->sa_len);
4127                         } else {
4128                                 ro = (sctp_route_t *) & net->ro;
4129                         }
4130                         /* Now the address selection part */
4131                         ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
4132
4133                         /* call the routine to select the src address */
4134                         if (net && out_of_asoc_ok == 0) {
4135                                 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4136                                         sctp_free_ifa(net->ro._s_addr);
4137                                         net->ro._s_addr = NULL;
4138                                         net->src_addr_selected = 0;
4139                                         if (ro->ro_rt) {
4140                                                 RTFREE(ro->ro_rt);
4141                                                 ro->ro_rt = NULL;
4142                                         }
4143                                 }
4144                                 if (net->src_addr_selected == 0) {
4145                                         /* Cache the source address */
4146                                         net->ro._s_addr = sctp_source_address_selection(inp, stcb,
4147                                             ro, net, 0,
4148                                             vrf_id);
4149                                         net->src_addr_selected = 1;
4150                                 }
4151                                 if (net->ro._s_addr == NULL) {
4152                                         /* No route to host */
4153                                         net->src_addr_selected = 0;
4154                                         sctp_handle_no_route(stcb, net, so_locked);
4155                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4156                                         sctp_m_freem(m);
4157                                         return (EHOSTUNREACH);
4158                                 }
4159                                 ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4160                         } else {
4161                                 if (over_addr == NULL) {
4162                                         struct sctp_ifa *_lsrc;
4163
4164                                         _lsrc = sctp_source_address_selection(inp, stcb, ro,
4165                                             net,
4166                                             out_of_asoc_ok,
4167                                             vrf_id);
4168                                         if (_lsrc == NULL) {
4169                                                 sctp_handle_no_route(stcb, net, so_locked);
4170                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4171                                                 sctp_m_freem(m);
4172                                                 return (EHOSTUNREACH);
4173                                         }
4174                                         ip->ip_src = _lsrc->address.sin.sin_addr;
4175                                         sctp_free_ifa(_lsrc);
4176                                 } else {
4177                                         ip->ip_src = over_addr->sin.sin_addr;
4178                                         SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
4179                                 }
4180                         }
4181                         if (port) {
4182                                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4183                                         sctp_handle_no_route(stcb, net, so_locked);
4184                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4185                                         sctp_m_freem(m);
4186                                         return (EHOSTUNREACH);
4187                                 }
4188                                 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4189                                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4190                                 udp->uh_dport = port;
4191                                 udp->uh_ulen = htons((uint16_t) (packet_length - sizeof(struct ip)));
4192                                 if (V_udp_cksum) {
4193                                         udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4194                                 } else {
4195                                         udp->uh_sum = 0;
4196                                 }
4197                                 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4198                         } else {
4199                                 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4200                         }
4201
4202                         sctphdr->src_port = src_port;
4203                         sctphdr->dest_port = dest_port;
4204                         sctphdr->v_tag = v_tag;
4205                         sctphdr->checksum = 0;
4206
4207                         /*
4208                          * If source address selection fails and we find no
4209                          * route then the ip_output should fail as well with
4210                          * a NO_ROUTE_TO_HOST type error. We probably should
4211                          * catch that somewhere and abort the association
4212                          * right away (assuming this is an INIT being sent).
4213                          */
4214                         if (ro->ro_rt == NULL) {
4215                                 /*
4216                                  * src addr selection failed to find a route
4217                                  * (or valid source addr), so we can't get
4218                                  * there from here (yet)!
4219                                  */
4220                                 sctp_handle_no_route(stcb, net, so_locked);
4221                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4222                                 sctp_m_freem(m);
4223                                 return (EHOSTUNREACH);
4224                         }
4225                         if (ro != &iproute) {
4226                                 memcpy(&iproute, ro, sizeof(*ro));
4227                         }
4228                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4229                             (uint32_t) (ntohl(ip->ip_src.s_addr)));
4230                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4231                             (uint32_t) (ntohl(ip->ip_dst.s_addr)));
4232                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4233                             (void *)ro->ro_rt);
4234
4235                         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4236                                 /* failed to prepend data, give up */
4237                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4238                                 sctp_m_freem(m);
4239                                 return (ENOMEM);
4240                         }
4241                         SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4242                         if (port) {
4243 #if defined(SCTP_WITH_NO_CSUM)
4244                                 SCTP_STAT_INCR(sctps_sendnocrc);
4245 #else
4246                                 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4247                                 SCTP_STAT_INCR(sctps_sendswcrc);
4248 #endif
4249                                 if (V_udp_cksum) {
4250                                         SCTP_ENABLE_UDP_CSUM(o_pak);
4251                                 }
4252                         } else {
4253 #if defined(SCTP_WITH_NO_CSUM)
4254                                 SCTP_STAT_INCR(sctps_sendnocrc);
4255 #else
4256                                 m->m_pkthdr.csum_flags = CSUM_SCTP;
4257                                 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4258                                 SCTP_STAT_INCR(sctps_sendhwcrc);
4259 #endif
4260                         }
4261 #ifdef SCTP_PACKET_LOGGING
4262                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4263                                 sctp_packet_log(o_pak);
4264 #endif
4265                         /* send it out.  table id is taken from stcb */
4266 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4267                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4268                                 so = SCTP_INP_SO(inp);
4269                                 SCTP_SOCKET_UNLOCK(so, 0);
4270                         }
4271 #endif
4272                         SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
4273 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4274                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4275                                 atomic_add_int(&stcb->asoc.refcnt, 1);
4276                                 SCTP_TCB_UNLOCK(stcb);
4277                                 SCTP_SOCKET_LOCK(so, 0);
4278                                 SCTP_TCB_LOCK(stcb);
4279                                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
4280                         }
4281 #endif
4282                         SCTP_STAT_INCR(sctps_sendpackets);
4283                         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4284                         if (ret)
4285                                 SCTP_STAT_INCR(sctps_senderrors);
4286
4287                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4288                         if (net == NULL) {
4289                                 /* free tempy routes */
4290                                 RO_RTFREE(ro);
4291                         } else {
4292                                 /*
4293                                  * PMTU check versus smallest asoc MTU goes
4294                                  * here
4295                                  */
4296                                 if ((ro->ro_rt != NULL) &&
4297                                     (net->ro._s_addr)) {
4298                                         uint32_t mtu;
4299
4300                                         mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4301                                         if (net->port) {
4302                                                 mtu -= sizeof(struct udphdr);
4303                                         }
4304                                         if (mtu && (stcb->asoc.smallest_mtu > mtu)) {
4305                                                 sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4306                                                 net->mtu = mtu;
4307                                         }
4308                                 } else if (ro->ro_rt == NULL) {
4309                                         /* route was freed */
4310                                         if (net->ro._s_addr &&
4311                                             net->src_addr_selected) {
4312                                                 sctp_free_ifa(net->ro._s_addr);
4313                                                 net->ro._s_addr = NULL;
4314                                         }
4315                                         net->src_addr_selected = 0;
4316                                 }
4317                         }
4318                         return (ret);
4319                 }
4320 #endif
4321 #ifdef INET6
4322         case AF_INET6:
4323                 {
4324                         uint32_t flowlabel, flowinfo;
4325                         struct ip6_hdr *ip6h;
4326                         struct route_in6 ip6route;
4327                         struct ifnet *ifp;
4328                         struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4329                         int prev_scope = 0;
4330                         struct sockaddr_in6 lsa6_storage;
4331                         int error;
4332                         u_short prev_port = 0;
4333                         int len;
4334
4335                         if (net) {
4336                                 flowlabel = net->flowlabel;
4337                         } else if (stcb) {
4338                                 flowlabel = stcb->asoc.default_flowlabel;
4339                         } else {
4340                                 flowlabel = inp->sctp_ep.default_flowlabel;
4341                         }
4342                         if (flowlabel == 0) {
4343                                 /*
4344                                  * This means especially, that it is not set
4345                                  * at the SCTP layer. So use the value from
4346                                  * the IP layer.
4347                                  */
4348                                 flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo);
4349                         }
4350                         flowlabel &= 0x000fffff;
4351                         len = SCTP_MIN_OVERHEAD;
4352                         if (port) {
4353                                 len += sizeof(struct udphdr);
4354                         }
4355                         newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4356                         if (newm == NULL) {
4357                                 sctp_m_freem(m);
4358                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4359                                 return (ENOMEM);
4360                         }
4361                         SCTP_ALIGN_TO_END(newm, len);
4362                         SCTP_BUF_LEN(newm) = len;
4363                         SCTP_BUF_NEXT(newm) = m;
4364                         m = newm;
4365                         if (net != NULL) {
4366                                 m->m_pkthdr.flowid = net->flowid;
4367                                 M_HASHTYPE_SET(m, net->flowtype);
4368                         } else {
4369                                 m->m_pkthdr.flowid = mflowid;
4370                                 M_HASHTYPE_SET(m, mflowtype);
4371                         }
4372                         packet_length = sctp_calculate_len(m);
4373
4374                         ip6h = mtod(m, struct ip6_hdr *);
4375                         /* protect *sin6 from overwrite */
4376                         sin6 = (struct sockaddr_in6 *)to;
4377                         tmp = *sin6;
4378                         sin6 = &tmp;
4379
4380                         /* KAME hack: embed scopeid */
4381                         if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4382                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4383                                 return (EINVAL);
4384                         }
4385                         if (net == NULL) {
4386                                 memset(&ip6route, 0, sizeof(ip6route));
4387                                 ro = (sctp_route_t *) & ip6route;
4388                                 memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4389                         } else {
4390                                 ro = (sctp_route_t *) & net->ro;
4391                         }
4392                         /*
4393                          * We assume here that inp_flow is in host byte
4394                          * order within the TCB!
4395                          */
4396                         if (tos_value == 0) {
4397                                 /*
4398                                  * This means especially, that it is not set
4399                                  * at the SCTP layer. So use the value from
4400                                  * the IP layer.
4401                                  */
4402                                 tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff;
4403                         }
4404                         tos_value &= 0xfc;
4405                         if (ecn_ok) {
4406                                 tos_value |= sctp_get_ect(stcb);
4407                         }
4408                         flowinfo = 0x06;
4409                         flowinfo <<= 8;
4410                         flowinfo |= tos_value;
4411                         flowinfo <<= 20;
4412                         flowinfo |= flowlabel;
4413                         ip6h->ip6_flow = htonl(flowinfo);
4414                         if (port) {
4415                                 ip6h->ip6_nxt = IPPROTO_UDP;
4416                         } else {
4417                                 ip6h->ip6_nxt = IPPROTO_SCTP;
4418                         }
4419                         ip6h->ip6_plen = (uint16_t) (packet_length - sizeof(struct ip6_hdr));
4420                         ip6h->ip6_dst = sin6->sin6_addr;
4421
4422                         /*
4423                          * Add SRC address selection here: we can only reuse
4424                          * to a limited degree the kame src-addr-sel, since
4425                          * we can try their selection but it may not be
4426                          * bound.
4427                          */
4428                         bzero(&lsa6_tmp, sizeof(lsa6_tmp));
4429                         lsa6_tmp.sin6_family = AF_INET6;
4430                         lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4431                         lsa6 = &lsa6_tmp;
4432                         if (net && out_of_asoc_ok == 0) {
4433                                 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4434                                         sctp_free_ifa(net->ro._s_addr);
4435                                         net->ro._s_addr = NULL;
4436                                         net->src_addr_selected = 0;
4437                                         if (ro->ro_rt) {
4438                                                 RTFREE(ro->ro_rt);
4439                                                 ro->ro_rt = NULL;
4440                                         }
4441                                 }
4442                                 if (net->src_addr_selected == 0) {
4443                                         sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4444                                         /* KAME hack: embed scopeid */
4445                                         if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4446                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4447                                                 return (EINVAL);
4448                                         }
4449                                         /* Cache the source address */
4450                                         net->ro._s_addr = sctp_source_address_selection(inp,
4451                                             stcb,
4452                                             ro,
4453                                             net,
4454                                             0,
4455                                             vrf_id);
4456                                         (void)sa6_recoverscope(sin6);
4457                                         net->src_addr_selected = 1;
4458                                 }
4459                                 if (net->ro._s_addr == NULL) {
4460                                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4461                                         net->src_addr_selected = 0;
4462                                         sctp_handle_no_route(stcb, net, so_locked);
4463                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4464                                         sctp_m_freem(m);
4465                                         return (EHOSTUNREACH);
4466                                 }
4467                                 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4468                         } else {
4469                                 sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4470                                 /* KAME hack: embed scopeid */
4471                                 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4472                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4473                                         return (EINVAL);
4474                                 }
4475                                 if (over_addr == NULL) {
4476                                         struct sctp_ifa *_lsrc;
4477
4478                                         _lsrc = sctp_source_address_selection(inp, stcb, ro,
4479                                             net,
4480                                             out_of_asoc_ok,
4481                                             vrf_id);
4482                                         if (_lsrc == NULL) {
4483                                                 sctp_handle_no_route(stcb, net, so_locked);
4484                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4485                                                 sctp_m_freem(m);
4486                                                 return (EHOSTUNREACH);
4487                                         }
4488                                         lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4489                                         sctp_free_ifa(_lsrc);
4490                                 } else {
4491                                         lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4492                                         SCTP_RTALLOC(ro, vrf_id, inp->fibnum);
4493                                 }
4494                                 (void)sa6_recoverscope(sin6);
4495                         }
4496                         lsa6->sin6_port = inp->sctp_lport;
4497
4498                         if (ro->ro_rt == NULL) {
4499                                 /*
4500                                  * src addr selection failed to find a route
4501                                  * (or valid source addr), so we can't get
4502                                  * there from here!
4503                                  */
4504                                 sctp_handle_no_route(stcb, net, so_locked);
4505                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4506                                 sctp_m_freem(m);
4507                                 return (EHOSTUNREACH);
4508                         }
4509                         /*
4510                          * XXX: sa6 may not have a valid sin6_scope_id in
4511                          * the non-SCOPEDROUTING case.
4512                          */
4513                         bzero(&lsa6_storage, sizeof(lsa6_storage));
4514                         lsa6_storage.sin6_family = AF_INET6;
4515                         lsa6_storage.sin6_len = sizeof(lsa6_storage);
4516                         lsa6_storage.sin6_addr = lsa6->sin6_addr;
4517                         if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4518                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4519                                 sctp_m_freem(m);
4520                                 return (error);
4521                         }
4522                         /* XXX */
4523                         lsa6_storage.sin6_addr = lsa6->sin6_addr;
4524                         lsa6_storage.sin6_port = inp->sctp_lport;
4525                         lsa6 = &lsa6_storage;
4526                         ip6h->ip6_src = lsa6->sin6_addr;
4527
4528                         if (port) {
4529                                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4530                                         sctp_handle_no_route(stcb, net, so_locked);
4531                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4532                                         sctp_m_freem(m);
4533                                         return (EHOSTUNREACH);
4534                                 }
4535                                 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4536                                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4537                                 udp->uh_dport = port;
4538                                 udp->uh_ulen = htons((uint16_t) (packet_length - sizeof(struct ip6_hdr)));
4539                                 udp->uh_sum = 0;
4540                                 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4541                         } else {
4542                                 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4543                         }
4544
4545                         sctphdr->src_port = src_port;
4546                         sctphdr->dest_port = dest_port;
4547                         sctphdr->v_tag = v_tag;
4548                         sctphdr->checksum = 0;
4549
4550                         /*
4551                          * We set the hop limit now since there is a good
4552                          * chance that our ro pointer is now filled
4553                          */
4554                         ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4555                         ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4556
4557 #ifdef SCTP_DEBUG
4558                         /* Copy to be sure something bad is not happening */
4559                         sin6->sin6_addr = ip6h->ip6_dst;
4560                         lsa6->sin6_addr = ip6h->ip6_src;
4561 #endif
4562
4563                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4564                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4565                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4566                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4567                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4568                         if (net) {
4569                                 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4570                                 /*
4571                                  * preserve the port and scope for link
4572                                  * local send
4573                                  */
4574                                 prev_scope = sin6->sin6_scope_id;
4575                                 prev_port = sin6->sin6_port;
4576                         }
4577                         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4578                                 /* failed to prepend data, give up */
4579                                 sctp_m_freem(m);
4580                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4581                                 return (ENOMEM);
4582                         }
4583                         SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4584                         if (port) {
4585 #if defined(SCTP_WITH_NO_CSUM)
4586                                 SCTP_STAT_INCR(sctps_sendnocrc);
4587 #else
4588                                 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4589                                 SCTP_STAT_INCR(sctps_sendswcrc);
4590 #endif
4591                                 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4592                                         udp->uh_sum = 0xffff;
4593                                 }
4594                         } else {
4595 #if defined(SCTP_WITH_NO_CSUM)
4596                                 SCTP_STAT_INCR(sctps_sendnocrc);
4597 #else
4598                                 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4599                                 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4600                                 SCTP_STAT_INCR(sctps_sendhwcrc);
4601 #endif
4602                         }
4603                         /* send it out. table id is taken from stcb */
4604 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4605                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4606                                 so = SCTP_INP_SO(inp);
4607                                 SCTP_SOCKET_UNLOCK(so, 0);
4608                         }
4609 #endif
4610 #ifdef SCTP_PACKET_LOGGING
4611                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4612                                 sctp_packet_log(o_pak);
4613 #endif
4614                         SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id);
4615 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4616                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4617                                 atomic_add_int(&stcb->asoc.refcnt, 1);
4618                                 SCTP_TCB_UNLOCK(stcb);
4619                                 SCTP_SOCKET_LOCK(so, 0);
4620                                 SCTP_TCB_LOCK(stcb);
4621                                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
4622                         }
4623 #endif
4624                         if (net) {
4625                                 /* for link local this must be done */
4626                                 sin6->sin6_scope_id = prev_scope;
4627                                 sin6->sin6_port = prev_port;
4628                         }
4629                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4630                         SCTP_STAT_INCR(sctps_sendpackets);
4631                         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4632                         if (ret) {
4633                                 SCTP_STAT_INCR(sctps_senderrors);
4634                         }
4635                         if (net == NULL) {
4636                                 /* Now if we had a temp route free it */
4637                                 RO_RTFREE(ro);
4638                         } else {
4639                                 /*
4640                                  * PMTU check versus smallest asoc MTU goes
4641                                  * here
4642                                  */
4643                                 if (ro->ro_rt == NULL) {
4644                                         /* Route was freed */
4645                                         if (net->ro._s_addr &&
4646                                             net->src_addr_selected) {
4647                                                 sctp_free_ifa(net->ro._s_addr);
4648                                                 net->ro._s_addr = NULL;
4649                                         }
4650                                         net->src_addr_selected = 0;
4651                                 }
4652                                 if ((ro->ro_rt != NULL) &&
4653                                     (net->ro._s_addr)) {
4654                                         uint32_t mtu;
4655
4656                                         mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4657                                         if (mtu &&
4658                                             (stcb->asoc.smallest_mtu > mtu)) {
4659                                                 sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4660                                                 net->mtu = mtu;
4661                                                 if (net->port) {
4662                                                         net->mtu -= sizeof(struct udphdr);
4663                                                 }
4664                                         }
4665                                 } else if (ifp) {
4666                                         if (ND_IFINFO(ifp)->linkmtu &&
4667                                             (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4668                                                 sctp_mtu_size_reset(inp,
4669                                                     &stcb->asoc,
4670                                                     ND_IFINFO(ifp)->linkmtu);
4671                                         }
4672                                 }
4673                         }
4674                         return (ret);
4675                 }
4676 #endif
4677         default:
4678                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4679                     ((struct sockaddr *)to)->sa_family);
4680                 sctp_m_freem(m);
4681                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4682                 return (EFAULT);
4683         }
4684 }
4685
4686
4687 void
4688 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
4689 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
4690     SCTP_UNUSED
4691 #endif
4692 )
4693 {
4694         struct mbuf *m, *m_last;
4695         struct sctp_nets *net;
4696         struct sctp_init_chunk *init;
4697         struct sctp_supported_addr_param *sup_addr;
4698         struct sctp_adaptation_layer_indication *ali;
4699         struct sctp_supported_chunk_types_param *pr_supported;
4700         struct sctp_paramhdr *ph;
4701         int cnt_inits_to = 0;
4702         int ret;
4703         uint16_t num_ext, chunk_len, padding_len, parameter_len;
4704
4705         /* INIT's always go to the primary (and usually ONLY address) */
4706         net = stcb->asoc.primary_destination;
4707         if (net == NULL) {
4708                 net = TAILQ_FIRST(&stcb->asoc.nets);
4709                 if (net == NULL) {
4710                         /* TSNH */
4711                         return;
4712                 }
4713                 /* we confirm any address we send an INIT to */
4714                 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4715                 (void)sctp_set_primary_addr(stcb, NULL, net);
4716         } else {
4717                 /* we confirm any address we send an INIT to */
4718                 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4719         }
4720         SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4721 #ifdef INET6
4722         if (net->ro._l_addr.sa.sa_family == AF_INET6) {
4723                 /*
4724                  * special hook, if we are sending to link local it will not
4725                  * show up in our private address count.
4726                  */
4727                 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr))
4728                         cnt_inits_to = 1;
4729         }
4730 #endif
4731         if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4732                 /* This case should not happen */
4733                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4734                 return;
4735         }
4736         /* start the INIT timer */
4737         sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4738
4739         m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA);
4740         if (m == NULL) {
4741                 /* No memory, INIT timer will re-attempt. */
4742                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4743                 return;
4744         }
4745         chunk_len = (uint16_t) sizeof(struct sctp_init_chunk);
4746         padding_len = 0;
4747         /* Now lets put the chunk header in place */
4748         init = mtod(m, struct sctp_init_chunk *);
4749         /* now the chunk header */
4750         init->ch.chunk_type = SCTP_INITIATION;
4751         init->ch.chunk_flags = 0;
4752         /* fill in later from mbuf we build */
4753         init->ch.chunk_length = 0;
4754         /* place in my tag */
4755         init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4756         /* set up some of the credits. */
4757         init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4758             SCTP_MINIMAL_RWND));
4759         init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4760         init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4761         init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4762
4763         /* Adaptation layer indication parameter */
4764         if (inp->sctp_ep.adaptation_layer_indicator_provided) {
4765                 parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication);
4766                 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
4767                 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4768                 ali->ph.param_length = htons(parameter_len);
4769                 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator);
4770                 chunk_len += parameter_len;
4771         }
4772         /* ECN parameter */
4773         if (stcb->asoc.ecn_supported == 1) {
4774                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4775                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4776                 ph->param_type = htons(SCTP_ECN_CAPABLE);
4777                 ph->param_length = htons(parameter_len);
4778                 chunk_len += parameter_len;
4779         }
4780         /* PR-SCTP supported parameter */
4781         if (stcb->asoc.prsctp_supported == 1) {
4782                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4783                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4784                 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
4785                 ph->param_length = htons(parameter_len);
4786                 chunk_len += parameter_len;
4787         }
4788         /* Add NAT friendly parameter. */
4789         if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4790                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4791                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4792                 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4793                 ph->param_length = htons(parameter_len);
4794                 chunk_len += parameter_len;
4795         }
4796         /* And now tell the peer which extensions we support */
4797         num_ext = 0;
4798         pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
4799         if (stcb->asoc.prsctp_supported == 1) {
4800                 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4801                 if (stcb->asoc.idata_supported) {
4802                         pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN;
4803                 }
4804         }
4805         if (stcb->asoc.auth_supported == 1) {
4806                 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4807         }
4808         if (stcb->asoc.asconf_supported == 1) {
4809                 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4810                 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4811         }
4812         if (stcb->asoc.reconfig_supported == 1) {
4813                 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4814         }
4815         if (stcb->asoc.idata_supported) {
4816                 pr_supported->chunk_types[num_ext++] = SCTP_IDATA;
4817         }
4818         if (stcb->asoc.nrsack_supported == 1) {
4819                 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4820         }
4821         if (stcb->asoc.pktdrop_supported == 1) {
4822                 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4823         }
4824         if (num_ext > 0) {
4825                 parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext;
4826                 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4827                 pr_supported->ph.param_length = htons(parameter_len);
4828                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4829                 chunk_len += parameter_len;
4830         }
4831         /* add authentication parameters */
4832         if (stcb->asoc.auth_supported) {
4833                 /* attach RANDOM parameter, if available */
4834                 if (stcb->asoc.authinfo.random != NULL) {
4835                         struct sctp_auth_random *randp;
4836
4837                         if (padding_len > 0) {
4838                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4839                                 chunk_len += padding_len;
4840                                 padding_len = 0;
4841                         }
4842                         randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
4843                         parameter_len = (uint16_t) sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
4844                         /* random key already contains the header */
4845                         memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
4846                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4847                         chunk_len += parameter_len;
4848                 }
4849                 /* add HMAC_ALGO parameter */
4850                 if (stcb->asoc.local_hmacs != NULL) {
4851                         struct sctp_auth_hmac_algo *hmacs;
4852
4853                         if (padding_len > 0) {
4854                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4855                                 chunk_len += padding_len;
4856                                 padding_len = 0;
4857                         }
4858                         hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
4859                         parameter_len = (uint16_t) (sizeof(struct sctp_auth_hmac_algo) +
4860                             stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t));
4861                         hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4862                         hmacs->ph.param_length = htons(parameter_len);
4863                         sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *) hmacs->hmac_ids);
4864                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4865                         chunk_len += parameter_len;
4866                 }
4867                 /* add CHUNKS parameter */
4868                 if (stcb->asoc.local_auth_chunks != NULL) {
4869                         struct sctp_auth_chunk_list *chunks;
4870
4871                         if (padding_len > 0) {
4872                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4873                                 chunk_len += padding_len;
4874                                 padding_len = 0;
4875                         }
4876                         chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
4877                         parameter_len = (uint16_t) (sizeof(struct sctp_auth_chunk_list) +
4878                             sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks));
4879                         chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4880                         chunks->ph.param_length = htons(parameter_len);
4881                         sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types);
4882                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4883                         chunk_len += parameter_len;
4884                 }
4885         }
4886         /* now any cookie time extensions */
4887         if (stcb->asoc.cookie_preserve_req) {
4888                 struct sctp_cookie_perserve_param *cookie_preserve;
4889
4890                 if (padding_len > 0) {
4891                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4892                         chunk_len += padding_len;
4893                         padding_len = 0;
4894                 }
4895                 parameter_len = (uint16_t) sizeof(struct sctp_cookie_perserve_param);
4896                 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len);
4897                 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4898                 cookie_preserve->ph.param_length = htons(parameter_len);
4899                 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4900                 stcb->asoc.cookie_preserve_req = 0;
4901                 chunk_len += parameter_len;
4902         }
4903         if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) {
4904                 uint8_t i;
4905
4906                 if (padding_len > 0) {
4907                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4908                         chunk_len += padding_len;
4909                         padding_len = 0;
4910                 }
4911                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4912                 if (stcb->asoc.scope.ipv4_addr_legal) {
4913                         parameter_len += (uint16_t) sizeof(uint16_t);
4914                 }
4915                 if (stcb->asoc.scope.ipv6_addr_legal) {
4916                         parameter_len += (uint16_t) sizeof(uint16_t);
4917                 }
4918                 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len);
4919                 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4920                 sup_addr->ph.param_length = htons(parameter_len);
4921                 i = 0;
4922                 if (stcb->asoc.scope.ipv4_addr_legal) {
4923                         sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS);
4924                 }
4925                 if (stcb->asoc.scope.ipv6_addr_legal) {
4926                         sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS);
4927                 }
4928                 padding_len = 4 - 2 * i;
4929                 chunk_len += parameter_len;
4930         }
4931         SCTP_BUF_LEN(m) = chunk_len;
4932         /* now the addresses */
4933         /*
4934          * To optimize this we could put the scoping stuff into a structure
4935          * and remove the individual uint8's from the assoc structure. Then
4936          * we could just sifa in the address within the stcb. But for now
4937          * this is a quick hack to get the address stuff teased apart.
4938          */
4939         m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope,
4940             m, cnt_inits_to,
4941             &padding_len, &chunk_len);
4942
4943         init->ch.chunk_length = htons(chunk_len);
4944         if (padding_len > 0) {
4945                 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
4946                         sctp_m_freem(m);
4947                         return;
4948                 }
4949         }
4950         SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4951         ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4952             (struct sockaddr *)&net->ro._l_addr,
4953             m, 0, NULL, 0, 0, 0, 0,
4954             inp->sctp_lport, stcb->rport, htonl(0),
4955             net->port, NULL,
4956             0, 0,
4957             so_locked);
4958         SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4959         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4960         (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4961 }
4962
4963 struct mbuf *
4964 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4965     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly)
4966 {
4967         /*
4968          * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4969          * being equal to the beginning of the params i.e. (iphlen +
4970          * sizeof(struct sctp_init_msg) parse through the parameters to the
4971          * end of the mbuf verifying that all parameters are known.
4972          * 
4973          * For unknown parameters build and return a mbuf with
4974          * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4975          * processing this chunk stop, and set *abort_processing to 1.
4976          * 
4977          * By having param_offset be pre-set to where parameters begin it is
4978          * hoped that this routine may be reused in the future by new
4979          * features.
4980          */
4981         struct sctp_paramhdr *phdr, params;
4982
4983         struct mbuf *mat, *op_err;
4984         char tempbuf[SCTP_PARAM_BUFFER_SIZE];
4985         int at, limit, pad_needed;
4986         uint16_t ptype, plen, padded_size;
4987         int err_at;
4988
4989         *abort_processing = 0;
4990         mat = in_initpkt;
4991         err_at = 0;
4992         limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4993         at = param_offset;
4994         op_err = NULL;
4995         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4996         phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4997         while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4998                 ptype = ntohs(phdr->param_type);
4999                 plen = ntohs(phdr->param_length);
5000                 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
5001                         /* wacked parameter */
5002                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
5003                         goto invalid_size;
5004                 }
5005                 limit -= SCTP_SIZE32(plen);
5006                 /*-
5007                  * All parameters for all chunks that we know/understand are
5008                  * listed here. We process them other places and make
5009                  * appropriate stop actions per the upper bits. However this
5010                  * is the generic routine processor's can call to get back
5011                  * an operr.. to either incorporate (init-ack) or send.
5012                  */
5013                 padded_size = SCTP_SIZE32(plen);
5014                 switch (ptype) {
5015                         /* Param's with variable size */
5016                 case SCTP_HEARTBEAT_INFO:
5017                 case SCTP_STATE_COOKIE:
5018                 case SCTP_UNRECOG_PARAM:
5019                 case SCTP_ERROR_CAUSE_IND:
5020                         /* ok skip fwd */
5021                         at += padded_size;
5022                         break;
5023                         /* Param's with variable size within a range */
5024                 case SCTP_CHUNK_LIST:
5025                 case SCTP_SUPPORTED_CHUNK_EXT:
5026                         if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
5027                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
5028                                 goto invalid_size;
5029                         }
5030                         at += padded_size;
5031                         break;
5032                 case SCTP_SUPPORTED_ADDRTYPE:
5033                         if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
5034                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
5035                                 goto invalid_size;
5036                         }
5037                         at += padded_size;
5038                         break;
5039                 case SCTP_RANDOM:
5040                         if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
5041                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
5042                                 goto invalid_size;
5043                         }
5044                         at += padded_size;
5045                         break;
5046                 case SCTP_SET_PRIM_ADDR:
5047                 case SCTP_DEL_IP_ADDRESS:
5048                 case SCTP_ADD_IP_ADDRESS:
5049                         if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
5050                             (padded_size != sizeof(struct sctp_asconf_addr_param))) {
5051                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
5052                                 goto invalid_size;
5053                         }
5054                         at += padded_size;
5055                         break;
5056                         /* Param's with a fixed size */
5057                 case SCTP_IPV4_ADDRESS:
5058                         if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
5059                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
5060                                 goto invalid_size;
5061                         }
5062                         at += padded_size;
5063                         break;
5064                 case SCTP_IPV6_ADDRESS:
5065                         if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
5066                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
5067                                 goto invalid_size;
5068                         }
5069                         at += padded_size;
5070                         break;
5071                 case SCTP_COOKIE_PRESERVE:
5072                         if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
5073                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
5074                                 goto invalid_size;
5075                         }
5076                         at += padded_size;
5077                         break;
5078                 case SCTP_HAS_NAT_SUPPORT:
5079                         *nat_friendly = 1;
5080                         /* fall through */
5081                 case SCTP_PRSCTP_SUPPORTED:
5082                         if (padded_size != sizeof(struct sctp_paramhdr)) {
5083                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen);
5084                                 goto invalid_size;
5085                         }
5086                         at += padded_size;
5087                         break;
5088                 case SCTP_ECN_CAPABLE:
5089                         if (padded_size != sizeof(struct sctp_paramhdr)) {
5090                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
5091                                 goto invalid_size;
5092                         }
5093                         at += padded_size;
5094                         break;
5095                 case SCTP_ULP_ADAPTATION:
5096                         if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
5097                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
5098                                 goto invalid_size;
5099                         }
5100                         at += padded_size;
5101                         break;
5102                 case SCTP_SUCCESS_REPORT:
5103                         if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
5104                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
5105                                 goto invalid_size;
5106                         }
5107                         at += padded_size;
5108                         break;
5109                 case SCTP_HOSTNAME_ADDRESS:
5110                         {
5111                                 /* We can NOT handle HOST NAME addresses!! */
5112                                 int l_len;
5113
5114                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
5115                                 *abort_processing = 1;
5116                                 if (op_err == NULL) {
5117                                         /* Ok need to try to get a mbuf */
5118 #ifdef INET6
5119                                         l_len = SCTP_MIN_OVERHEAD;
5120 #else
5121                                         l_len = SCTP_MIN_V4_OVERHEAD;
5122 #endif
5123                                         l_len += sizeof(struct sctp_chunkhdr);
5124                                         l_len += plen;
5125                                         l_len += sizeof(struct sctp_paramhdr);
5126                                         op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5127                                         if (op_err) {
5128                                                 SCTP_BUF_LEN(op_err) = 0;
5129                                                 /*
5130                                                  * pre-reserve space for ip
5131                                                  * and sctp header  and
5132                                                  * chunk hdr
5133                                                  */
5134 #ifdef INET6
5135                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5136 #else
5137                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5138 #endif
5139                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5140                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5141                                         }
5142                                 }
5143                                 if (op_err) {
5144                                         /* If we have space */
5145                                         struct sctp_paramhdr s;
5146
5147                                         if (err_at % 4) {
5148                                                 uint32_t cpthis = 0;
5149
5150                                                 pad_needed = 4 - (err_at % 4);
5151                                                 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5152                                                 err_at += pad_needed;
5153                                         }
5154                                         s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5155                                         s.param_length = htons(sizeof(s) + plen);
5156                                         m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5157                                         err_at += sizeof(s);
5158                                         phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5159                                         if (phdr == NULL) {
5160                                                 sctp_m_freem(op_err);
5161                                                 /*
5162                                                  * we are out of memory but
5163                                                  * we still need to have a
5164                                                  * look at what to do (the
5165                                                  * system is in trouble
5166                                                  * though).
5167                                                  */
5168                                                 return (NULL);
5169                                         }
5170                                         m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5171                                 }
5172                                 return (op_err);
5173                                 break;
5174                         }
5175                 default:
5176                         /*
5177                          * we do not recognize the parameter figure out what
5178                          * we do.
5179                          */
5180                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5181                         if ((ptype & 0x4000) == 0x4000) {
5182                                 /* Report bit is set?? */
5183                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5184                                 if (op_err == NULL) {
5185                                         int l_len;
5186
5187                                         /* Ok need to try to get an mbuf */
5188 #ifdef INET6
5189                                         l_len = SCTP_MIN_OVERHEAD;
5190 #else
5191                                         l_len = SCTP_MIN_V4_OVERHEAD;
5192 #endif
5193                                         l_len += sizeof(struct sctp_chunkhdr);
5194                                         l_len += plen;
5195                                         l_len += sizeof(struct sctp_paramhdr);
5196                                         op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5197                                         if (op_err) {
5198                                                 SCTP_BUF_LEN(op_err) = 0;
5199 #ifdef INET6
5200                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5201 #else
5202                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5203 #endif
5204                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5205                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5206                                         }
5207                                 }
5208                                 if (op_err) {
5209                                         /* If we have space */
5210                                         struct sctp_paramhdr s;
5211
5212                                         if (err_at % 4) {
5213                                                 uint32_t cpthis = 0;
5214
5215                                                 pad_needed = 4 - (err_at % 4);
5216                                                 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5217                                                 err_at += pad_needed;
5218                                         }
5219                                         s.param_type = htons(SCTP_UNRECOG_PARAM);
5220                                         s.param_length = htons(sizeof(s) + plen);
5221                                         m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5222                                         err_at += sizeof(s);
5223                                         if (plen > sizeof(tempbuf)) {
5224                                                 plen = sizeof(tempbuf);
5225                                         }
5226                                         phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5227                                         if (phdr == NULL) {
5228                                                 sctp_m_freem(op_err);
5229                                                 /*
5230                                                  * we are out of memory but
5231                                                  * we still need to have a
5232                                                  * look at what to do (the
5233                                                  * system is in trouble
5234                                                  * though).
5235                                                  */
5236                                                 op_err = NULL;
5237                                                 goto more_processing;
5238                                         }
5239                                         m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5240                                         err_at += plen;
5241                                 }
5242                         }
5243         more_processing:
5244                         if ((ptype & 0x8000) == 0x0000) {
5245                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5246                                 return (op_err);
5247                         } else {
5248                                 /* skip this chunk and continue processing */
5249                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5250                                 at += SCTP_SIZE32(plen);
5251                         }
5252                         break;
5253
5254                 }
5255                 phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5256         }
5257         return (op_err);
5258 invalid_size:
5259         SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5260         *abort_processing = 1;
5261         if ((op_err == NULL) && phdr) {
5262                 int l_len;
5263
5264 #ifdef INET6
5265                 l_len = SCTP_MIN_OVERHEAD;
5266 #else
5267                 l_len = SCTP_MIN_V4_OVERHEAD;
5268 #endif
5269                 l_len += sizeof(struct sctp_chunkhdr);
5270                 l_len += (2 * sizeof(struct sctp_paramhdr));
5271                 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5272                 if (op_err) {
5273                         SCTP_BUF_LEN(op_err) = 0;
5274 #ifdef INET6
5275                         SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5276 #else
5277                         SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5278 #endif
5279                         SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5280                         SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5281                 }
5282         }
5283         if ((op_err) && phdr) {
5284                 struct sctp_paramhdr s;
5285
5286                 if (err_at % 4) {
5287                         uint32_t cpthis = 0;
5288
5289                         pad_needed = 4 - (err_at % 4);
5290                         m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5291                         err_at += pad_needed;
5292                 }
5293                 s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5294                 s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
5295                 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5296                 err_at += sizeof(s);
5297                 /* Only copy back the p-hdr that caused the issue */
5298                 m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
5299         }
5300         return (op_err);
5301 }
5302
5303 static int
5304 sctp_are_there_new_addresses(struct sctp_association *asoc,
5305     struct mbuf *in_initpkt, int offset, struct sockaddr *src)
5306 {
5307         /*
5308          * Given a INIT packet, look through the packet to verify that there
5309          * are NO new addresses. As we go through the parameters add reports
5310          * of any un-understood parameters that require an error.  Also we
5311          * must return (1) to drop the packet if we see a un-understood
5312          * parameter that tells us to drop the chunk.
5313          */
5314         struct sockaddr *sa_touse;
5315         struct sockaddr *sa;
5316         struct sctp_paramhdr *phdr, params;
5317         uint16_t ptype, plen;
5318         uint8_t fnd;
5319         struct sctp_nets *net;
5320         int check_src;
5321
5322 #ifdef INET
5323         struct sockaddr_in sin4, *sa4;
5324
5325 #endif
5326 #ifdef INET6
5327         struct sockaddr_in6 sin6, *sa6;
5328
5329 #endif
5330
5331 #ifdef INET
5332         memset(&sin4, 0, sizeof(sin4));
5333         sin4.sin_family = AF_INET;
5334         sin4.sin_len = sizeof(sin4);
5335 #endif
5336 #ifdef INET6
5337         memset(&sin6, 0, sizeof(sin6));
5338         sin6.sin6_family = AF_INET6;
5339         sin6.sin6_len = sizeof(sin6);
5340 #endif
5341         /* First what about the src address of the pkt ? */
5342         check_src = 0;
5343         switch (src->sa_family) {
5344 #ifdef INET
5345         case AF_INET:
5346                 if (asoc->scope.ipv4_addr_legal) {
5347                         check_src = 1;
5348                 }
5349                 break;
5350 #endif
5351 #ifdef INET6
5352         case AF_INET6:
5353                 if (asoc->scope.ipv6_addr_legal) {
5354                         check_src = 1;
5355                 }
5356                 break;
5357 #endif
5358         default:
5359                 /* TSNH */
5360                 break;
5361         }
5362         if (check_src) {
5363                 fnd = 0;
5364                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5365                         sa = (struct sockaddr *)&net->ro._l_addr;
5366                         if (sa->sa_family == src->sa_family) {
5367 #ifdef INET
5368                                 if (sa->sa_family == AF_INET) {
5369                                         struct sockaddr_in *src4;
5370
5371                                         sa4 = (struct sockaddr_in *)sa;
5372                                         src4 = (struct sockaddr_in *)src;
5373                                         if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5374                                                 fnd = 1;
5375                                                 break;
5376                                         }
5377                                 }
5378 #endif
5379 #ifdef INET6
5380                                 if (sa->sa_family == AF_INET6) {
5381                                         struct sockaddr_in6 *src6;
5382
5383                                         sa6 = (struct sockaddr_in6 *)sa;
5384                                         src6 = (struct sockaddr_in6 *)src;
5385                                         if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5386                                                 fnd = 1;
5387                                                 break;
5388                                         }
5389                                 }
5390 #endif
5391                         }
5392                 }
5393                 if (fnd == 0) {
5394                         /* New address added! no need to look further. */
5395                         return (1);
5396                 }
5397         }
5398         /* Ok so far lets munge through the rest of the packet */
5399         offset += sizeof(struct sctp_init_chunk);
5400         phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5401         while (phdr) {
5402                 sa_touse = NULL;
5403                 ptype = ntohs(phdr->param_type);
5404                 plen = ntohs(phdr->param_length);
5405                 switch (ptype) {
5406 #ifdef INET
5407                 case SCTP_IPV4_ADDRESS:
5408                         {
5409                                 struct sctp_ipv4addr_param *p4, p4_buf;
5410
5411                                 phdr = sctp_get_next_param(in_initpkt, offset,
5412                                     (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5413                                 if (plen != sizeof(struct sctp_ipv4addr_param) ||
5414                                     phdr == NULL) {
5415                                         return (1);
5416                                 }
5417                                 if (asoc->scope.ipv4_addr_legal) {
5418                                         p4 = (struct sctp_ipv4addr_param *)phdr;
5419                                         sin4.sin_addr.s_addr = p4->addr;
5420                                         sa_touse = (struct sockaddr *)&sin4;
5421                                 }
5422                                 break;
5423                         }
5424 #endif
5425 #ifdef INET6
5426                 case SCTP_IPV6_ADDRESS:
5427                         {
5428                                 struct sctp_ipv6addr_param *p6, p6_buf;
5429
5430                                 phdr = sctp_get_next_param(in_initpkt, offset,
5431                                     (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5432                                 if (plen != sizeof(struct sctp_ipv6addr_param) ||
5433                                     phdr == NULL) {
5434                                         return (1);
5435                                 }
5436                                 if (asoc->scope.ipv6_addr_legal) {
5437                                         p6 = (struct sctp_ipv6addr_param *)phdr;
5438                                         memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5439                                             sizeof(p6->addr));
5440                                         sa_touse = (struct sockaddr *)&sin6;
5441                                 }
5442                                 break;
5443                         }
5444 #endif
5445                 default:
5446                         sa_touse = NULL;
5447                         break;
5448                 }
5449                 if (sa_touse) {
5450                         /* ok, sa_touse points to one to check */
5451                         fnd = 0;
5452                         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5453                                 sa = (struct sockaddr *)&net->ro._l_addr;
5454                                 if (sa->sa_family != sa_touse->sa_family) {
5455                                         continue;
5456                                 }
5457 #ifdef INET
5458                                 if (sa->sa_family == AF_INET) {
5459                                         sa4 = (struct sockaddr_in *)sa;
5460                                         if (sa4->sin_addr.s_addr ==
5461                                             sin4.sin_addr.s_addr) {
5462                                                 fnd = 1;
5463                                                 break;
5464                                         }
5465                                 }
5466 #endif
5467 #ifdef INET6
5468                                 if (sa->sa_family == AF_INET6) {
5469                                         sa6 = (struct sockaddr_in6 *)sa;
5470                                         if (SCTP6_ARE_ADDR_EQUAL(
5471                                             sa6, &sin6)) {
5472                                                 fnd = 1;
5473                                                 break;
5474                                         }
5475                                 }
5476 #endif
5477                         }
5478                         if (!fnd) {
5479                                 /* New addr added! no need to look further */
5480                                 return (1);
5481                         }
5482                 }
5483                 offset += SCTP_SIZE32(plen);
5484                 phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5485         }
5486         return (0);
5487 }
5488
5489 /*
5490  * Given a MBUF chain that was sent into us containing an INIT. Build a
5491  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5492  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5493  * message (i.e. the struct sctp_init_msg).
5494  */
5495 void
5496 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5497     struct sctp_nets *src_net, struct mbuf *init_pkt,
5498     int iphlen, int offset,
5499     struct sockaddr *src, struct sockaddr *dst,
5500     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5501     uint8_t mflowtype, uint32_t mflowid,
5502     uint32_t vrf_id, uint16_t port, int hold_inp_lock)
5503 {
5504         struct sctp_association *asoc;
5505         struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err;
5506         struct sctp_init_ack_chunk *initack;
5507         struct sctp_adaptation_layer_indication *ali;
5508         struct sctp_supported_chunk_types_param *pr_supported;
5509         struct sctp_paramhdr *ph;
5510         union sctp_sockstore *over_addr;
5511         struct sctp_scoping scp;
5512
5513 #ifdef INET
5514         struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5515         struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5516         struct sockaddr_in *sin;
5517
5518 #endif
5519 #ifdef INET6
5520         struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5521         struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5522         struct sockaddr_in6 *sin6;
5523
5524 #endif
5525         struct sockaddr *to;
5526         struct sctp_state_cookie stc;
5527         struct sctp_nets *net = NULL;
5528         uint8_t *signature = NULL;
5529         int cnt_inits_to = 0;
5530         uint16_t his_limit, i_want;
5531         int abort_flag;
5532         int nat_friendly = 0;
5533         struct socket *so;
5534         uint16_t num_ext, chunk_len, padding_len, parameter_len;
5535
5536         if (stcb) {
5537                 asoc = &stcb->asoc;
5538         } else {
5539                 asoc = NULL;
5540         }
5541         if ((asoc != NULL) &&
5542             (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT)) {
5543                 if (sctp_are_there_new_addresses(asoc, init_pkt, offset, src)) {
5544                         /*
5545                          * new addresses, out of here in non-cookie-wait
5546                          * states
5547                          * 
5548                          * Send an ABORT, without the new address error cause.
5549                          * This looks no different than if no listener was
5550                          * present.
5551                          */
5552                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5553                             "Address added");
5554                         sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5555                             mflowtype, mflowid, inp->fibnum,
5556                             vrf_id, port);
5557                         return;
5558                 }
5559                 if (src_net != NULL && (src_net->port != port)) {
5560                         /*
5561                          * change of remote encapsulation port, out of here
5562                          * in non-cookie-wait states
5563                          * 
5564                          * Send an ABORT, without an specific error cause. This
5565                          * looks no different than if no listener was
5566                          * present.
5567                          */
5568                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5569                             "Remote encapsulation port changed");
5570                         sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5571                             mflowtype, mflowid, inp->fibnum,
5572                             vrf_id, port);
5573                         return;
5574                 }
5575         }
5576         abort_flag = 0;
5577         op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5578             (offset + sizeof(struct sctp_init_chunk)),
5579             &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly);
5580         if (abort_flag) {
5581 do_a_abort:
5582                 if (op_err == NULL) {
5583                         char msg[SCTP_DIAG_INFO_LEN];
5584
5585                         snprintf(msg, sizeof(msg), "%s:%d at %s", __FILE__, __LINE__, __func__);
5586                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5587                             msg);
5588                 }
5589                 sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5590                     init_chk->init.initiate_tag, op_err,
5591                     mflowtype, mflowid, inp->fibnum,
5592                     vrf_id, port);
5593                 return;
5594         }
5595         m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
5596         if (m == NULL) {
5597                 /* No memory, INIT timer will re-attempt. */
5598                 if (op_err)
5599                         sctp_m_freem(op_err);
5600                 return;
5601         }
5602         chunk_len = (uint16_t) sizeof(struct sctp_init_ack_chunk);
5603         padding_len = 0;
5604
5605         /*
5606          * We might not overwrite the identification[] completely and on
5607          * some platforms time_entered will contain some padding. Therefore
5608          * zero out the cookie to avoid putting uninitialized memory on the
5609          * wire.
5610          */
5611         memset(&stc, 0, sizeof(struct sctp_state_cookie));
5612
5613         /* the time I built cookie */
5614         (void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
5615
5616         /* populate any tie tags */
5617         if (asoc != NULL) {
5618                 /* unlock before tag selections */
5619                 stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5620                 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5621                 stc.cookie_life = asoc->cookie_life;
5622                 net = asoc->primary_destination;
5623         } else {
5624                 stc.tie_tag_my_vtag = 0;
5625                 stc.tie_tag_peer_vtag = 0;
5626                 /* life I will award this cookie */
5627                 stc.cookie_life = inp->sctp_ep.def_cookie_life;
5628         }
5629
5630         /* copy in the ports for later check */
5631         stc.myport = sh->dest_port;
5632         stc.peerport = sh->src_port;
5633
5634         /*
5635          * If we wanted to honor cookie life extensions, we would add to
5636          * stc.cookie_life. For now we should NOT honor any extension
5637          */
5638         stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5639         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5640                 stc.ipv6_addr_legal = 1;
5641                 if (SCTP_IPV6_V6ONLY(inp)) {
5642                         stc.ipv4_addr_legal = 0;
5643                 } else {
5644                         stc.ipv4_addr_legal = 1;
5645                 }
5646         } else {
5647                 stc.ipv6_addr_legal = 0;
5648                 stc.ipv4_addr_legal = 1;
5649         }
5650         stc.ipv4_scope = 0;
5651         if (net == NULL) {
5652                 to = src;
5653                 switch (dst->sa_family) {
5654 #ifdef INET
5655                 case AF_INET:
5656                         {
5657                                 /* lookup address */
5658                                 stc.address[0] = src4->sin_addr.s_addr;
5659                                 stc.address[1] = 0;
5660                                 stc.address[2] = 0;
5661                                 stc.address[3] = 0;
5662                                 stc.addr_type = SCTP_IPV4_ADDRESS;
5663                                 /* local from address */
5664                                 stc.laddress[0] = dst4->sin_addr.s_addr;
5665                                 stc.laddress[1] = 0;
5666                                 stc.laddress[2] = 0;
5667                                 stc.laddress[3] = 0;
5668                                 stc.laddr_type = SCTP_IPV4_ADDRESS;
5669                                 /* scope_id is only for v6 */
5670                                 stc.scope_id = 0;
5671                                 if ((IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) ||
5672                                     (IN4_ISPRIVATE_ADDRESS(&dst4->sin_addr))) {
5673                                         stc.ipv4_scope = 1;
5674                                 }
5675                                 /* Must use the address in this case */
5676                                 if (sctp_is_address_on_local_host(src, vrf_id)) {
5677                                         stc.loopback_scope = 1;
5678                                         stc.ipv4_scope = 1;
5679                                         stc.site_scope = 1;
5680                                         stc.local_scope = 0;
5681                                 }
5682                                 break;
5683                         }
5684 #endif
5685 #ifdef INET6
5686                 case AF_INET6:
5687                         {
5688                                 stc.addr_type = SCTP_IPV6_ADDRESS;
5689                                 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5690                                 stc.scope_id = ntohs(in6_getscope(&src6->sin6_addr));
5691                                 if (sctp_is_address_on_local_host(src, vrf_id)) {
5692                                         stc.loopback_scope = 1;
5693                                         stc.local_scope = 0;
5694                                         stc.site_scope = 1;
5695                                         stc.ipv4_scope = 1;
5696                                 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr) ||
5697                                     IN6_IS_ADDR_LINKLOCAL(&dst6->sin6_addr)) {
5698                                         /*
5699                                          * If the new destination or source
5700                                          * is a LINK_LOCAL we must have
5701                                          * common both site and local scope.
5702                                          * Don't set local scope though
5703                                          * since we must depend on the
5704                                          * source to be added implicitly. We
5705                                          * cannot assure just because we
5706                                          * share one link that all links are
5707                                          * common.
5708                                          */
5709                                         stc.local_scope = 0;
5710                                         stc.site_scope = 1;
5711                                         stc.ipv4_scope = 1;
5712                                         /*
5713                                          * we start counting for the private
5714                                          * address stuff at 1. since the
5715                                          * link local we source from won't
5716                                          * show up in our scoped count.
5717                                          */
5718                                         cnt_inits_to = 1;
5719                                         /*
5720                                          * pull out the scope_id from
5721                                          * incoming pkt
5722                                          */
5723                                 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr) ||
5724                                     IN6_IS_ADDR_SITELOCAL(&dst6->sin6_addr)) {
5725                                         /*
5726                                          * If the new destination or source
5727                                          * is SITE_LOCAL then we must have
5728                                          * site scope in common.
5729                                          */
5730                                         stc.site_scope = 1;
5731                                 }
5732                                 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5733                                 stc.laddr_type = SCTP_IPV6_ADDRESS;
5734                                 break;
5735                         }
5736 #endif
5737                 default:
5738                         /* TSNH */
5739                         goto do_a_abort;
5740                         break;
5741                 }
5742         } else {
5743                 /* set the scope per the existing tcb */
5744
5745 #ifdef INET6
5746                 struct sctp_nets *lnet;
5747
5748 #endif
5749
5750                 stc.loopback_scope = asoc->scope.loopback_scope;
5751                 stc.ipv4_scope = asoc->scope.ipv4_local_scope;
5752                 stc.site_scope = asoc->scope.site_scope;
5753                 stc.local_scope = asoc->scope.local_scope;
5754 #ifdef INET6
5755                 /* Why do we not consider IPv4 LL addresses? */
5756                 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5757                         if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5758                                 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5759                                         /*
5760                                          * if we have a LL address, start
5761                                          * counting at 1.
5762                                          */
5763                                         cnt_inits_to = 1;
5764                                 }
5765                         }
5766                 }
5767 #endif
5768                 /* use the net pointer */
5769                 to = (struct sockaddr *)&net->ro._l_addr;
5770                 switch (to->sa_family) {
5771 #ifdef INET
5772                 case AF_INET:
5773                         sin = (struct sockaddr_in *)to;
5774                         stc.address[0] = sin->sin_addr.s_addr;
5775                         stc.address[1] = 0;
5776                         stc.address[2] = 0;
5777                         stc.address[3] = 0;
5778                         stc.addr_type = SCTP_IPV4_ADDRESS;
5779                         if (net->src_addr_selected == 0) {
5780                                 /*
5781                                  * strange case here, the INIT should have
5782                                  * did the selection.
5783                                  */
5784                                 net->ro._s_addr = sctp_source_address_selection(inp,
5785                                     stcb, (sctp_route_t *) & net->ro,
5786                                     net, 0, vrf_id);
5787                                 if (net->ro._s_addr == NULL)
5788                                         return;
5789
5790                                 net->src_addr_selected = 1;
5791
5792                         }
5793                         stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5794                         stc.laddress[1] = 0;
5795                         stc.laddress[2] = 0;
5796                         stc.laddress[3] = 0;
5797                         stc.laddr_type = SCTP_IPV4_ADDRESS;
5798                         /* scope_id is only for v6 */
5799                         stc.scope_id = 0;
5800                         break;
5801 #endif
5802 #ifdef INET6
5803                 case AF_INET6:
5804                         sin6 = (struct sockaddr_in6 *)to;
5805                         memcpy(&stc.address, &sin6->sin6_addr,
5806                             sizeof(struct in6_addr));
5807                         stc.addr_type = SCTP_IPV6_ADDRESS;
5808                         stc.scope_id = sin6->sin6_scope_id;
5809                         if (net->src_addr_selected == 0) {
5810                                 /*
5811                                  * strange case here, the INIT should have
5812                                  * done the selection.
5813                                  */
5814                                 net->ro._s_addr = sctp_source_address_selection(inp,
5815                                     stcb, (sctp_route_t *) & net->ro,
5816                                     net, 0, vrf_id);
5817                                 if (net->ro._s_addr == NULL)
5818                                         return;
5819
5820                                 net->src_addr_selected = 1;
5821                         }
5822                         memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5823                             sizeof(struct in6_addr));
5824                         stc.laddr_type = SCTP_IPV6_ADDRESS;
5825                         break;
5826 #endif
5827                 }
5828         }
5829         /* Now lets put the SCTP header in place */
5830         initack = mtod(m, struct sctp_init_ack_chunk *);
5831         /* Save it off for quick ref */
5832         stc.peers_vtag = ntohl(init_chk->init.initiate_tag);
5833         /* who are we */
5834         memcpy(stc.identification, SCTP_VERSION_STRING,
5835             min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5836         memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5837         /* now the chunk header */
5838         initack->ch.chunk_type = SCTP_INITIATION_ACK;
5839         initack->ch.chunk_flags = 0;
5840         /* fill in later from mbuf we build */
5841         initack->ch.chunk_length = 0;
5842         /* place in my tag */
5843         if ((asoc != NULL) &&
5844             ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
5845             (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
5846             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
5847                 /* re-use the v-tags and init-seq here */
5848                 initack->init.initiate_tag = htonl(asoc->my_vtag);
5849                 initack->init.initial_tsn = htonl(asoc->init_seq_number);
5850         } else {
5851                 uint32_t vtag, itsn;
5852
5853                 if (hold_inp_lock) {
5854                         SCTP_INP_INCR_REF(inp);
5855                         SCTP_INP_RUNLOCK(inp);
5856                 }
5857                 if (asoc) {
5858                         atomic_add_int(&asoc->refcnt, 1);
5859                         SCTP_TCB_UNLOCK(stcb);
5860         new_tag:
5861                         vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5862                         if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5863                                 /*
5864                                  * Got a duplicate vtag on some guy behind a
5865                                  * nat make sure we don't use it.
5866                                  */
5867                                 goto new_tag;
5868                         }
5869                         initack->init.initiate_tag = htonl(vtag);
5870                         /* get a TSN to use too */
5871                         itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5872                         initack->init.initial_tsn = htonl(itsn);
5873                         SCTP_TCB_LOCK(stcb);
5874                         atomic_add_int(&asoc->refcnt, -1);
5875                 } else {
5876                         vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5877                         initack->init.initiate_tag = htonl(vtag);
5878                         /* get a TSN to use too */
5879                         initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5880                 }
5881                 if (hold_inp_lock) {
5882                         SCTP_INP_RLOCK(inp);
5883                         SCTP_INP_DECR_REF(inp);
5884                 }
5885         }
5886         /* save away my tag to */
5887         stc.my_vtag = initack->init.initiate_tag;
5888
5889         /* set up some of the credits. */
5890         so = inp->sctp_socket;
5891         if (so == NULL) {
5892                 /* memory problem */
5893                 sctp_m_freem(m);
5894                 return;
5895         } else {
5896                 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5897         }
5898         /* set what I want */
5899         his_limit = ntohs(init_chk->init.num_inbound_streams);
5900         /* choose what I want */
5901         if (asoc != NULL) {
5902                 if (asoc->streamoutcnt > asoc->pre_open_streams) {
5903                         i_want = asoc->streamoutcnt;
5904                 } else {
5905                         i_want = asoc->pre_open_streams;
5906                 }
5907         } else {
5908                 i_want = inp->sctp_ep.pre_open_stream_count;
5909         }
5910         if (his_limit < i_want) {
5911                 /* I Want more :< */
5912                 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5913         } else {
5914                 /* I can have what I want :> */
5915                 initack->init.num_outbound_streams = htons(i_want);
5916         }
5917         /* tell him his limit. */
5918         initack->init.num_inbound_streams =
5919             htons(inp->sctp_ep.max_open_streams_intome);
5920
5921         /* adaptation layer indication parameter */
5922         if (inp->sctp_ep.adaptation_layer_indicator_provided) {
5923                 parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication);
5924                 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
5925                 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5926                 ali->ph.param_length = htons(parameter_len);
5927                 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator);
5928                 chunk_len += parameter_len;
5929         }
5930         /* ECN parameter */
5931         if (((asoc != NULL) && (asoc->ecn_supported == 1)) ||
5932             ((asoc == NULL) && (inp->ecn_supported == 1))) {
5933                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
5934                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5935                 ph->param_type = htons(SCTP_ECN_CAPABLE);
5936                 ph->param_length = htons(parameter_len);
5937                 chunk_len += parameter_len;
5938         }
5939         /* PR-SCTP supported parameter */
5940         if (((asoc != NULL) && (asoc->prsctp_supported == 1)) ||
5941             ((asoc == NULL) && (inp->prsctp_supported == 1))) {
5942                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
5943                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5944                 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
5945                 ph->param_length = htons(parameter_len);
5946                 chunk_len += parameter_len;
5947         }
5948         /* Add NAT friendly parameter */
5949         if (nat_friendly) {
5950                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
5951                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
5952                 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5953                 ph->param_length = htons(parameter_len);
5954                 chunk_len += parameter_len;
5955         }
5956         /* And now tell the peer which extensions we support */
5957         num_ext = 0;
5958         pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
5959         if (((asoc != NULL) && (asoc->prsctp_supported == 1)) ||
5960             ((asoc == NULL) && (inp->prsctp_supported == 1))) {
5961                 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5962                 if (((asoc != NULL) && (asoc->idata_supported == 1)) ||
5963                     ((asoc == NULL) && (inp->idata_supported == 1))) {
5964                         pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN;
5965                 }
5966         }
5967         if (((asoc != NULL) && (asoc->auth_supported == 1)) ||
5968             ((asoc == NULL) && (inp->auth_supported == 1))) {
5969                 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5970         }
5971         if (((asoc != NULL) && (asoc->asconf_supported == 1)) ||
5972             ((asoc == NULL) && (inp->asconf_supported == 1))) {
5973                 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5974                 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5975         }
5976         if (((asoc != NULL) && (asoc->reconfig_supported == 1)) ||
5977             ((asoc == NULL) && (inp->reconfig_supported == 1))) {
5978                 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5979         }
5980         if (((asoc != NULL) && (asoc->idata_supported == 1)) ||
5981             ((asoc == NULL) && (inp->idata_supported == 1))) {
5982                 pr_supported->chunk_types[num_ext++] = SCTP_IDATA;
5983         }
5984         if (((asoc != NULL) && (asoc->nrsack_supported == 1)) ||
5985             ((asoc == NULL) && (inp->nrsack_supported == 1))) {
5986                 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
5987         }
5988         if (((asoc != NULL) && (asoc->pktdrop_supported == 1)) ||
5989             ((asoc == NULL) && (inp->pktdrop_supported == 1))) {
5990                 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5991         }
5992         if (num_ext > 0) {
5993                 parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext;
5994                 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5995                 pr_supported->ph.param_length = htons(parameter_len);
5996                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
5997                 chunk_len += parameter_len;
5998         }
5999         /* add authentication parameters */
6000         if (((asoc != NULL) && (asoc->auth_supported == 1)) ||
6001             ((asoc == NULL) && (inp->auth_supported == 1))) {
6002                 struct sctp_auth_random *randp;
6003                 struct sctp_auth_hmac_algo *hmacs;
6004                 struct sctp_auth_chunk_list *chunks;
6005
6006                 if (padding_len > 0) {
6007                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6008                         chunk_len += padding_len;
6009                         padding_len = 0;
6010                 }
6011                 /* generate and add RANDOM parameter */
6012                 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
6013                 parameter_len = (uint16_t) sizeof(struct sctp_auth_random) +
6014                     SCTP_AUTH_RANDOM_SIZE_DEFAULT;
6015                 randp->ph.param_type = htons(SCTP_RANDOM);
6016                 randp->ph.param_length = htons(parameter_len);
6017                 SCTP_READ_RANDOM(randp->random_data, SCTP_AUTH_RANDOM_SIZE_DEFAULT);
6018                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6019                 chunk_len += parameter_len;
6020
6021                 if (padding_len > 0) {
6022                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6023                         chunk_len += padding_len;
6024                         padding_len = 0;
6025                 }
6026                 /* add HMAC_ALGO parameter */
6027                 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
6028                 parameter_len = (uint16_t) sizeof(struct sctp_auth_hmac_algo) +
6029                     sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
6030                     (uint8_t *) hmacs->hmac_ids);
6031                 hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
6032                 hmacs->ph.param_length = htons(parameter_len);
6033                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6034                 chunk_len += parameter_len;
6035
6036                 if (padding_len > 0) {
6037                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6038                         chunk_len += padding_len;
6039                         padding_len = 0;
6040                 }
6041                 /* add CHUNKS parameter */
6042                 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
6043                 parameter_len = (uint16_t) sizeof(struct sctp_auth_chunk_list) +
6044                     sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
6045                     chunks->chunk_types);
6046                 chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
6047                 chunks->ph.param_length = htons(parameter_len);
6048                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6049                 chunk_len += parameter_len;
6050         }
6051         SCTP_BUF_LEN(m) = chunk_len;
6052         m_last = m;
6053         /* now the addresses */
6054         /*
6055          * To optimize this we could put the scoping stuff into a structure
6056          * and remove the individual uint8's from the stc structure. Then we
6057          * could just sifa in the address within the stc.. but for now this
6058          * is a quick hack to get the address stuff teased apart.
6059          */
6060         scp.ipv4_addr_legal = stc.ipv4_addr_legal;
6061         scp.ipv6_addr_legal = stc.ipv6_addr_legal;
6062         scp.loopback_scope = stc.loopback_scope;
6063         scp.ipv4_local_scope = stc.ipv4_scope;
6064         scp.local_scope = stc.local_scope;
6065         scp.site_scope = stc.site_scope;
6066         m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last,
6067             cnt_inits_to,
6068             &padding_len, &chunk_len);
6069         /* padding_len can only be positive, if no addresses have been added */
6070         if (padding_len > 0) {
6071                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
6072                 chunk_len += padding_len;
6073                 SCTP_BUF_LEN(m) += padding_len;
6074                 padding_len = 0;
6075         }
6076         /* tack on the operational error if present */
6077         if (op_err) {
6078                 parameter_len = 0;
6079                 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6080                         parameter_len += SCTP_BUF_LEN(m_tmp);
6081                 }
6082                 padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6083                 SCTP_BUF_NEXT(m_last) = op_err;
6084                 while (SCTP_BUF_NEXT(m_last) != NULL) {
6085                         m_last = SCTP_BUF_NEXT(m_last);
6086                 }
6087                 chunk_len += parameter_len;
6088         }
6089         if (padding_len > 0) {
6090                 m_last = sctp_add_pad_tombuf(m_last, padding_len);
6091                 if (m_last == NULL) {
6092                         /* Houston we have a problem, no space */
6093                         sctp_m_freem(m);
6094                         return;
6095                 }
6096                 chunk_len += padding_len;
6097                 padding_len = 0;
6098         }
6099         /* Now we must build a cookie */
6100         m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
6101         if (m_cookie == NULL) {
6102                 /* memory problem */
6103                 sctp_m_freem(m);
6104                 return;
6105         }
6106         /* Now append the cookie to the end and update the space/size */
6107         SCTP_BUF_NEXT(m_last) = m_cookie;
6108         parameter_len = 0;
6109         for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
6110                 parameter_len += SCTP_BUF_LEN(m_tmp);
6111                 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
6112                         m_last = m_tmp;
6113                 }
6114         }
6115         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
6116         chunk_len += parameter_len;
6117
6118         /*
6119          * Place in the size, but we don't include the last pad (if any) in
6120          * the INIT-ACK.
6121          */
6122         initack->ch.chunk_length = htons(chunk_len);
6123
6124         /*
6125          * Time to sign the cookie, we don't sign over the cookie signature
6126          * though thus we set trailer.
6127          */
6128         (void)sctp_hmac_m(SCTP_HMAC,
6129             (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
6130             SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
6131             (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
6132         /*
6133          * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
6134          * here since the timer will drive a retranmission.
6135          */
6136         if (padding_len > 0) {
6137                 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
6138                         sctp_m_freem(m);
6139                         return;
6140                 }
6141         }
6142         if (stc.loopback_scope) {
6143                 over_addr = (union sctp_sockstore *)dst;
6144         } else {
6145                 over_addr = NULL;
6146         }
6147
6148         (void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
6149             0, 0,
6150             inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
6151             port, over_addr,
6152             mflowtype, mflowid,
6153             SCTP_SO_NOT_LOCKED);
6154         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
6155 }
6156
6157
6158 static void
6159 sctp_prune_prsctp(struct sctp_tcb *stcb,
6160     struct sctp_association *asoc,
6161     struct sctp_sndrcvinfo *srcv,
6162     int dataout)
6163 {
6164         int freed_spc = 0;
6165         struct sctp_tmit_chunk *chk, *nchk;
6166
6167         SCTP_TCB_LOCK_ASSERT(stcb);
6168         if ((asoc->prsctp_supported) &&
6169             (asoc->sent_queue_cnt_removeable > 0)) {
6170                 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
6171                         /*
6172                          * Look for chunks marked with the PR_SCTP flag AND
6173                          * the buffer space flag. If the one being sent is
6174                          * equal or greater priority then purge the old one
6175                          * and free some space.
6176                          */
6177                         if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6178                                 /*
6179                                  * This one is PR-SCTP AND buffer space
6180                                  * limited type
6181                                  */
6182                                 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6183                                         /*
6184                                          * Lower numbers equates to higher
6185                                          * priority so if the one we are
6186                                          * looking at has a larger or equal
6187                                          * priority we want to drop the data
6188                                          * and NOT retransmit it.
6189                                          */
6190                                         if (chk->data) {
6191                                                 /*
6192                                                  * We release the book_size
6193                                                  * if the mbuf is here
6194                                                  */
6195                                                 int ret_spc;
6196                                                 uint8_t sent;
6197
6198                                                 if (chk->sent > SCTP_DATAGRAM_UNSENT)
6199                                                         sent = 1;
6200                                                 else
6201                                                         sent = 0;
6202                                                 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6203                                                     sent,
6204                                                     SCTP_SO_LOCKED);
6205                                                 freed_spc += ret_spc;
6206                                                 if (freed_spc >= dataout) {
6207                                                         return;
6208                                                 }
6209                                         }       /* if chunk was present */
6210                                 }       /* if of sufficient priority */
6211                         }       /* if chunk has enabled */
6212                 }               /* tailqforeach */
6213
6214                 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6215                         /* Here we must move to the sent queue and mark */
6216                         if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6217                                 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6218                                         if (chk->data) {
6219                                                 /*
6220                                                  * We release the book_size
6221                                                  * if the mbuf is here
6222                                                  */
6223                                                 int ret_spc;
6224
6225                                                 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6226                                                     0, SCTP_SO_LOCKED);
6227
6228                                                 freed_spc += ret_spc;
6229                                                 if (freed_spc >= dataout) {
6230                                                         return;
6231                                                 }
6232                                         }       /* end if chk->data */
6233                                 }       /* end if right class */
6234                         }       /* end if chk pr-sctp */
6235                 }               /* tailqforeachsafe (chk) */
6236         }                       /* if enabled in asoc */
6237 }
6238
6239 int
6240 sctp_get_frag_point(struct sctp_tcb *stcb,
6241     struct sctp_association *asoc)
6242 {
6243         int siz, ovh;
6244
6245         /*
6246          * For endpoints that have both v6 and v4 addresses we must reserve
6247          * room for the ipv6 header, for those that are only dealing with V4
6248          * we use a larger frag point.
6249          */
6250         if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6251                 ovh = SCTP_MIN_OVERHEAD;
6252         } else {
6253                 ovh = SCTP_MIN_V4_OVERHEAD;
6254         }
6255         if (stcb->asoc.idata_supported) {
6256                 ovh += sizeof(struct sctp_idata_chunk);
6257         } else {
6258                 ovh += sizeof(struct sctp_data_chunk);
6259         }
6260         if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
6261                 siz = asoc->smallest_mtu - ovh;
6262         else
6263                 siz = (stcb->asoc.sctp_frag_point - ovh);
6264         /*
6265          * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
6266          */
6267         /* A data chunk MUST fit in a cluster */
6268         /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
6269         /* } */
6270
6271         /* adjust for an AUTH chunk if DATA requires auth */
6272         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
6273                 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
6274
6275         if (siz % 4) {
6276                 /* make it an even word boundary please */
6277                 siz -= (siz % 4);
6278         }
6279         return (siz);
6280 }
6281
6282 static void
6283 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6284 {
6285         /*
6286          * We assume that the user wants PR_SCTP_TTL if the user provides a
6287          * positive lifetime but does not specify any PR_SCTP policy.
6288          */
6289         if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6290                 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6291         } else if (sp->timetolive > 0) {
6292                 sp->sinfo_flags |= SCTP_PR_SCTP_TTL;
6293                 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6294         } else {
6295                 return;
6296         }
6297         switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6298         case CHUNK_FLAGS_PR_SCTP_BUF:
6299                 /*
6300                  * Time to live is a priority stored in tv_sec when doing
6301                  * the buffer drop thing.
6302                  */
6303                 sp->ts.tv_sec = sp->timetolive;
6304                 sp->ts.tv_usec = 0;
6305                 break;
6306         case CHUNK_FLAGS_PR_SCTP_TTL:
6307                 {
6308                         struct timeval tv;
6309
6310                         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6311                         tv.tv_sec = sp->timetolive / 1000;
6312                         tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6313                         /*
6314                          * TODO sctp_constants.h needs alternative time
6315                          * macros when _KERNEL is undefined.
6316                          */
6317                         timevaladd(&sp->ts, &tv);
6318                 }
6319                 break;
6320         case CHUNK_FLAGS_PR_SCTP_RTX:
6321                 /*
6322                  * Time to live is a the number or retransmissions stored in
6323                  * tv_sec.
6324                  */
6325                 sp->ts.tv_sec = sp->timetolive;
6326                 sp->ts.tv_usec = 0;
6327                 break;
6328         default:
6329                 SCTPDBG(SCTP_DEBUG_USRREQ1,
6330                     "Unknown PR_SCTP policy %u.\n",
6331                     PR_SCTP_POLICY(sp->sinfo_flags));
6332                 break;
6333         }
6334 }
6335
6336 static int
6337 sctp_msg_append(struct sctp_tcb *stcb,
6338     struct sctp_nets *net,
6339     struct mbuf *m,
6340     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
6341 {
6342         int error = 0;
6343         struct mbuf *at;
6344         struct sctp_stream_queue_pending *sp = NULL;
6345         struct sctp_stream_out *strm;
6346
6347         /*
6348          * Given an mbuf chain, put it into the association send queue and
6349          * place it on the wheel
6350          */
6351         if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6352                 /* Invalid stream number */
6353                 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6354                 error = EINVAL;
6355                 goto out_now;
6356         }
6357         if ((stcb->asoc.stream_locked) &&
6358             (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6359                 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6360                 error = EINVAL;
6361                 goto out_now;
6362         }
6363         strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6364         /* Now can we send this? */
6365         if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
6366             (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6367             (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6368             (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6369                 /* got data while shutting down */
6370                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
6371                 error = ECONNRESET;
6372                 goto out_now;
6373         }
6374         sctp_alloc_a_strmoq(stcb, sp);
6375         if (sp == NULL) {
6376                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6377                 error = ENOMEM;
6378                 goto out_now;
6379         }
6380         sp->sinfo_flags = srcv->sinfo_flags;
6381         sp->timetolive = srcv->sinfo_timetolive;
6382         sp->ppid = srcv->sinfo_ppid;
6383         sp->context = srcv->sinfo_context;
6384         sp->fsn = 0;
6385         if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6386                 sp->net = net;
6387                 atomic_add_int(&sp->net->ref_count, 1);
6388         } else {
6389                 sp->net = NULL;
6390         }
6391         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6392         sp->stream = srcv->sinfo_stream;
6393         sp->msg_is_complete = 1;
6394         sp->sender_all_done = 1;
6395         sp->some_taken = 0;
6396         sp->data = m;
6397         sp->tail_mbuf = NULL;
6398         sctp_set_prsctp_policy(sp);
6399         /*
6400          * We could in theory (for sendall) sifa the length in, but we would
6401          * still have to hunt through the chain since we need to setup the
6402          * tail_mbuf
6403          */
6404         sp->length = 0;
6405         for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6406                 if (SCTP_BUF_NEXT(at) == NULL)
6407                         sp->tail_mbuf = at;
6408                 sp->length += SCTP_BUF_LEN(at);
6409         }
6410         if (srcv->sinfo_keynumber_valid) {
6411                 sp->auth_keyid = srcv->sinfo_keynumber;
6412         } else {
6413                 sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6414         }
6415         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6416                 sctp_auth_key_acquire(stcb, sp->auth_keyid);
6417                 sp->holds_key_ref = 1;
6418         }
6419         if (hold_stcb_lock == 0) {
6420                 SCTP_TCB_SEND_LOCK(stcb);
6421         }
6422         sctp_snd_sb_alloc(stcb, sp->length);
6423         atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6424         TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6425         stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1);
6426         m = NULL;
6427         if (hold_stcb_lock == 0) {
6428                 SCTP_TCB_SEND_UNLOCK(stcb);
6429         }
6430 out_now:
6431         if (m) {
6432                 sctp_m_freem(m);
6433         }
6434         return (error);
6435 }
6436
6437
6438 static struct mbuf *
6439 sctp_copy_mbufchain(struct mbuf *clonechain,
6440     struct mbuf *outchain,
6441     struct mbuf **endofchain,
6442     int can_take_mbuf,
6443     int sizeofcpy,
6444     uint8_t copy_by_ref)
6445 {
6446         struct mbuf *m;
6447         struct mbuf *appendchain;
6448         caddr_t cp;
6449         int len;
6450
6451         if (endofchain == NULL) {
6452                 /* error */
6453 error_out:
6454                 if (outchain)
6455                         sctp_m_freem(outchain);
6456                 return (NULL);
6457         }
6458         if (can_take_mbuf) {
6459                 appendchain = clonechain;
6460         } else {
6461                 if (!copy_by_ref &&
6462                     (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))
6463                     ) {
6464                         /* Its not in a cluster */
6465                         if (*endofchain == NULL) {
6466                                 /* lets get a mbuf cluster */
6467                                 if (outchain == NULL) {
6468                                         /* This is the general case */
6469                         new_mbuf:
6470                                         outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6471                                         if (outchain == NULL) {
6472                                                 goto error_out;
6473                                         }
6474                                         SCTP_BUF_LEN(outchain) = 0;
6475                                         *endofchain = outchain;
6476                                         /* get the prepend space */
6477                                         SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6478                                 } else {
6479                                         /*
6480                                          * We really should not get a NULL
6481                                          * in endofchain
6482                                          */
6483                                         /* find end */
6484                                         m = outchain;
6485                                         while (m) {
6486                                                 if (SCTP_BUF_NEXT(m) == NULL) {
6487                                                         *endofchain = m;
6488                                                         break;
6489                                                 }
6490                                                 m = SCTP_BUF_NEXT(m);
6491                                         }
6492                                         /* sanity */
6493                                         if (*endofchain == NULL) {
6494                                                 /*
6495                                                  * huh, TSNH XXX maybe we
6496                                                  * should panic
6497                                                  */
6498                                                 sctp_m_freem(outchain);
6499                                                 goto new_mbuf;
6500                                         }
6501                                 }
6502                                 /* get the new end of length */
6503                                 len = (int)M_TRAILINGSPACE(*endofchain);
6504                         } else {
6505                                 /* how much is left at the end? */
6506                                 len = (int)M_TRAILINGSPACE(*endofchain);
6507                         }
6508                         /* Find the end of the data, for appending */
6509                         cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6510
6511                         /* Now lets copy it out */
6512                         if (len >= sizeofcpy) {
6513                                 /* It all fits, copy it in */
6514                                 m_copydata(clonechain, 0, sizeofcpy, cp);
6515                                 SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6516                         } else {
6517                                 /* fill up the end of the chain */
6518                                 if (len > 0) {
6519                                         m_copydata(clonechain, 0, len, cp);
6520                                         SCTP_BUF_LEN((*endofchain)) += len;
6521                                         /* now we need another one */
6522                                         sizeofcpy -= len;
6523                                 }
6524                                 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6525                                 if (m == NULL) {
6526                                         /* We failed */
6527                                         goto error_out;
6528                                 }
6529                                 SCTP_BUF_NEXT((*endofchain)) = m;
6530                                 *endofchain = m;
6531                                 cp = mtod((*endofchain), caddr_t);
6532                                 m_copydata(clonechain, len, sizeofcpy, cp);
6533                                 SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6534                         }
6535                         return (outchain);
6536                 } else {
6537                         /* copy the old fashion way */
6538                         appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT);
6539 #ifdef SCTP_MBUF_LOGGING
6540                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6541                                 sctp_log_mbc(appendchain, SCTP_MBUF_ICOPY);
6542                         }
6543 #endif
6544                 }
6545         }
6546         if (appendchain == NULL) {
6547                 /* error */
6548                 if (outchain)
6549                         sctp_m_freem(outchain);
6550                 return (NULL);
6551         }
6552         if (outchain) {
6553                 /* tack on to the end */
6554                 if (*endofchain != NULL) {
6555                         SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6556                 } else {
6557                         m = outchain;
6558                         while (m) {
6559                                 if (SCTP_BUF_NEXT(m) == NULL) {
6560                                         SCTP_BUF_NEXT(m) = appendchain;
6561                                         break;
6562                                 }
6563                                 m = SCTP_BUF_NEXT(m);
6564                         }
6565                 }
6566                 /*
6567                  * save off the end and update the end-chain position
6568                  */
6569                 m = appendchain;
6570                 while (m) {
6571                         if (SCTP_BUF_NEXT(m) == NULL) {
6572                                 *endofchain = m;
6573                                 break;
6574                         }
6575                         m = SCTP_BUF_NEXT(m);
6576                 }
6577                 return (outchain);
6578         } else {
6579                 /* save off the end and update the end-chain position */
6580                 m = appendchain;
6581                 while (m) {
6582                         if (SCTP_BUF_NEXT(m) == NULL) {
6583                                 *endofchain = m;
6584                                 break;
6585                         }
6586                         m = SCTP_BUF_NEXT(m);
6587                 }
6588                 return (appendchain);
6589         }
6590 }
6591
6592 static int
6593 sctp_med_chunk_output(struct sctp_inpcb *inp,
6594     struct sctp_tcb *stcb,
6595     struct sctp_association *asoc,
6596     int *num_out,
6597     int *reason_code,
6598     int control_only, int from_where,
6599     struct timeval *now, int *now_filled, int frag_point, int so_locked
6600 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6601     SCTP_UNUSED
6602 #endif
6603 );
6604
6605 static void
6606 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6607     uint32_t val SCTP_UNUSED)
6608 {
6609         struct sctp_copy_all *ca;
6610         struct mbuf *m;
6611         int ret = 0;
6612         int added_control = 0;
6613         int un_sent, do_chunk_output = 1;
6614         struct sctp_association *asoc;
6615         struct sctp_nets *net;
6616
6617         ca = (struct sctp_copy_all *)ptr;
6618         if (ca->m == NULL) {
6619                 return;
6620         }
6621         if (ca->inp != inp) {
6622                 /* TSNH */
6623                 return;
6624         }
6625         if (ca->sndlen > 0) {
6626                 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT);
6627                 if (m == NULL) {
6628                         /* can't copy so we are done */
6629                         ca->cnt_failed++;
6630                         return;
6631                 }
6632 #ifdef SCTP_MBUF_LOGGING
6633                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6634                         sctp_log_mbc(m, SCTP_MBUF_ICOPY);
6635                 }
6636 #endif
6637         } else {
6638                 m = NULL;
6639         }
6640         SCTP_TCB_LOCK_ASSERT(stcb);
6641         if (stcb->asoc.alternate) {
6642                 net = stcb->asoc.alternate;
6643         } else {
6644                 net = stcb->asoc.primary_destination;
6645         }
6646         if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6647                 /* Abort this assoc with m as the user defined reason */
6648                 if (m != NULL) {
6649                         SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT);
6650                 } else {
6651                         m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr),
6652                             0, M_NOWAIT, 1, MT_DATA);
6653                         SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr);
6654                 }
6655                 if (m != NULL) {
6656                         struct sctp_paramhdr *ph;
6657
6658                         ph = mtod(m, struct sctp_paramhdr *);
6659                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6660                         ph->param_length = htons((uint16_t) (sizeof(struct sctp_paramhdr) + ca->sndlen));
6661                 }
6662                 /*
6663                  * We add one here to keep the assoc from dis-appearing on
6664                  * us.
6665                  */
6666                 atomic_add_int(&stcb->asoc.refcnt, 1);
6667                 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED);
6668                 /*
6669                  * sctp_abort_an_association calls sctp_free_asoc() free
6670                  * association will NOT free it since we incremented the
6671                  * refcnt .. we do this to prevent it being freed and things
6672                  * getting tricky since we could end up (from free_asoc)
6673                  * calling inpcb_free which would get a recursive lock call
6674                  * to the iterator lock.. But as a consequence of that the
6675                  * stcb will return to us un-locked.. since free_asoc
6676                  * returns with either no TCB or the TCB unlocked, we must
6677                  * relock.. to unlock in the iterator timer :-0
6678                  */
6679                 SCTP_TCB_LOCK(stcb);
6680                 atomic_add_int(&stcb->asoc.refcnt, -1);
6681                 goto no_chunk_output;
6682         } else {
6683                 if (m) {
6684                         ret = sctp_msg_append(stcb, net, m,
6685                             &ca->sndrcv, 1);
6686                 }
6687                 asoc = &stcb->asoc;
6688                 if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6689                         /* shutdown this assoc */
6690                         if (TAILQ_EMPTY(&asoc->send_queue) &&
6691                             TAILQ_EMPTY(&asoc->sent_queue) &&
6692                             sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED) == 0) {
6693                                 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
6694                                         goto abort_anyway;
6695                                 }
6696                                 /*
6697                                  * there is nothing queued to send, so I'm
6698                                  * done...
6699                                  */
6700                                 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6701                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6702                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6703                                         /*
6704                                          * only send SHUTDOWN the first time
6705                                          * through
6706                                          */
6707                                         if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
6708                                                 SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6709                                         }
6710                                         SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
6711                                         SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
6712                                         sctp_stop_timers_for_shutdown(stcb);
6713                                         sctp_send_shutdown(stcb, net);
6714                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6715                                             net);
6716                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6717                                             asoc->primary_destination);
6718                                         added_control = 1;
6719                                         do_chunk_output = 0;
6720                                 }
6721                         } else {
6722                                 /*
6723                                  * we still got (or just got) data to send,
6724                                  * so set SHUTDOWN_PENDING
6725                                  */
6726                                 /*
6727                                  * XXX sockets draft says that SCTP_EOF
6728                                  * should be sent with no data.  currently,
6729                                  * we will allow user data to be sent first
6730                                  * and move to SHUTDOWN-PENDING
6731                                  */
6732                                 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6733                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6734                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6735                                         if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
6736                                                 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
6737                                         }
6738                                         asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
6739                                         if (TAILQ_EMPTY(&asoc->send_queue) &&
6740                                             TAILQ_EMPTY(&asoc->sent_queue) &&
6741                                             (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6742                                                 struct mbuf *op_err;
6743                                                 char msg[SCTP_DIAG_INFO_LEN];
6744
6745                                 abort_anyway:
6746                                                 snprintf(msg, sizeof(msg),
6747                                                     "%s:%d at %s", __FILE__, __LINE__, __func__);
6748                                                 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
6749                                                     msg);
6750                                                 atomic_add_int(&stcb->asoc.refcnt, 1);
6751                                                 sctp_abort_an_association(stcb->sctp_ep, stcb,
6752                                                     op_err, SCTP_SO_NOT_LOCKED);
6753                                                 atomic_add_int(&stcb->asoc.refcnt, -1);
6754                                                 goto no_chunk_output;
6755                                         }
6756                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6757                                             asoc->primary_destination);
6758                                 }
6759                         }
6760
6761                 }
6762         }
6763         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6764             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
6765
6766         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6767             (stcb->asoc.total_flight > 0) &&
6768             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
6769                 do_chunk_output = 0;
6770         }
6771         if (do_chunk_output)
6772                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6773         else if (added_control) {
6774                 int num_out, reason, now_filled = 0;
6775                 struct timeval now;
6776                 int frag_point;
6777
6778                 frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
6779                 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6780                     &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
6781         }
6782 no_chunk_output:
6783         if (ret) {
6784                 ca->cnt_failed++;
6785         } else {
6786                 ca->cnt_sent++;
6787         }
6788 }
6789
6790 static void
6791 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6792 {
6793         struct sctp_copy_all *ca;
6794
6795         ca = (struct sctp_copy_all *)ptr;
6796         /*
6797          * Do a notify here? Kacheong suggests that the notify be done at
6798          * the send time.. so you would push up a notification if any send
6799          * failed. Don't know if this is feasible since the only failures we
6800          * have is "memory" related and if you cannot get an mbuf to send
6801          * the data you surely can't get an mbuf to send up to notify the
6802          * user you can't send the data :->
6803          */
6804
6805         /* now free everything */
6806         sctp_m_freem(ca->m);
6807         SCTP_FREE(ca, SCTP_M_COPYAL);
6808 }
6809
6810 static struct mbuf *
6811 sctp_copy_out_all(struct uio *uio, int len)
6812 {
6813         struct mbuf *ret, *at;
6814         int left, willcpy, cancpy, error;
6815
6816         ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA);
6817         if (ret == NULL) {
6818                 /* TSNH */
6819                 return (NULL);
6820         }
6821         left = len;
6822         SCTP_BUF_LEN(ret) = 0;
6823         /* save space for the data chunk header */
6824         cancpy = (int)M_TRAILINGSPACE(ret);
6825         willcpy = min(cancpy, left);
6826         at = ret;
6827         while (left > 0) {
6828                 /* Align data to the end */
6829                 error = uiomove(mtod(at, caddr_t), willcpy, uio);
6830                 if (error) {
6831         err_out_now:
6832                         sctp_m_freem(at);
6833                         return (NULL);
6834                 }
6835                 SCTP_BUF_LEN(at) = willcpy;
6836                 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6837                 left -= willcpy;
6838                 if (left > 0) {
6839                         SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA);
6840                         if (SCTP_BUF_NEXT(at) == NULL) {
6841                                 goto err_out_now;
6842                         }
6843                         at = SCTP_BUF_NEXT(at);
6844                         SCTP_BUF_LEN(at) = 0;
6845                         cancpy = (int)M_TRAILINGSPACE(at);
6846                         willcpy = min(cancpy, left);
6847                 }
6848         }
6849         return (ret);
6850 }
6851
6852 static int
6853 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6854     struct sctp_sndrcvinfo *srcv)
6855 {
6856         int ret;
6857         struct sctp_copy_all *ca;
6858
6859         SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6860             SCTP_M_COPYAL);
6861         if (ca == NULL) {
6862                 sctp_m_freem(m);
6863                 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6864                 return (ENOMEM);
6865         }
6866         memset(ca, 0, sizeof(struct sctp_copy_all));
6867
6868         ca->inp = inp;
6869         if (srcv) {
6870                 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6871         }
6872         /*
6873          * take off the sendall flag, it would be bad if we failed to do
6874          * this :-0
6875          */
6876         ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6877         /* get length and mbuf chain */
6878         if (uio) {
6879                 ca->sndlen = (int)uio->uio_resid;
6880                 ca->m = sctp_copy_out_all(uio, ca->sndlen);
6881                 if (ca->m == NULL) {
6882                         SCTP_FREE(ca, SCTP_M_COPYAL);
6883                         SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6884                         return (ENOMEM);
6885                 }
6886         } else {
6887                 /* Gather the length of the send */
6888                 struct mbuf *mat;
6889
6890                 ca->sndlen = 0;
6891                 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6892                         ca->sndlen += SCTP_BUF_LEN(mat);
6893                 }
6894         }
6895         ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6896             SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6897             SCTP_ASOC_ANY_STATE,
6898             (void *)ca, 0,
6899             sctp_sendall_completes, inp, 1);
6900         if (ret) {
6901                 SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6902                 SCTP_FREE(ca, SCTP_M_COPYAL);
6903                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6904                 return (EFAULT);
6905         }
6906         return (0);
6907 }
6908
6909
6910 void
6911 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6912 {
6913         struct sctp_tmit_chunk *chk, *nchk;
6914
6915         TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6916                 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6917                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6918                         if (chk->data) {
6919                                 sctp_m_freem(chk->data);
6920                                 chk->data = NULL;
6921                         }
6922                         asoc->ctrl_queue_cnt--;
6923                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6924                 }
6925         }
6926 }
6927
6928 void
6929 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6930 {
6931         struct sctp_association *asoc;
6932         struct sctp_tmit_chunk *chk, *nchk;
6933         struct sctp_asconf_chunk *acp;
6934
6935         asoc = &stcb->asoc;
6936         TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
6937                 /* find SCTP_ASCONF chunk in queue */
6938                 if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6939                         if (chk->data) {
6940                                 acp = mtod(chk->data, struct sctp_asconf_chunk *);
6941                                 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
6942                                         /* Not Acked yet */
6943                                         break;
6944                                 }
6945                         }
6946                         TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
6947                         if (chk->data) {
6948                                 sctp_m_freem(chk->data);
6949                                 chk->data = NULL;
6950                         }
6951                         asoc->ctrl_queue_cnt--;
6952                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6953                 }
6954         }
6955 }
6956
6957
6958 static void
6959 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6960     struct sctp_association *asoc,
6961     struct sctp_tmit_chunk **data_list,
6962     int bundle_at,
6963     struct sctp_nets *net)
6964 {
6965         int i;
6966         struct sctp_tmit_chunk *tp1;
6967
6968         for (i = 0; i < bundle_at; i++) {
6969                 /* off of the send queue */
6970                 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
6971                 asoc->send_queue_cnt--;
6972                 if (i > 0) {
6973                         /*
6974                          * Any chunk NOT 0 you zap the time chunk 0 gets
6975                          * zapped or set based on if a RTO measurment is
6976                          * needed.
6977                          */
6978                         data_list[i]->do_rtt = 0;
6979                 }
6980                 /* record time */
6981                 data_list[i]->sent_rcv_time = net->last_sent_time;
6982                 data_list[i]->rec.data.cwnd_at_send = net->cwnd;
6983                 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6984                 if (data_list[i]->whoTo == NULL) {
6985                         data_list[i]->whoTo = net;
6986                         atomic_add_int(&net->ref_count, 1);
6987                 }
6988                 /* on to the sent queue */
6989                 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6990                 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6991                         struct sctp_tmit_chunk *tpp;
6992
6993                         /* need to move back */
6994         back_up_more:
6995                         tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6996                         if (tpp == NULL) {
6997                                 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6998                                 goto all_done;
6999                         }
7000                         tp1 = tpp;
7001                         if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
7002                                 goto back_up_more;
7003                         }
7004                         TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
7005                 } else {
7006                         TAILQ_INSERT_TAIL(&asoc->sent_queue,
7007                             data_list[i],
7008                             sctp_next);
7009                 }
7010 all_done:
7011                 /* This does not lower until the cum-ack passes it */
7012                 asoc->sent_queue_cnt++;
7013                 if ((asoc->peers_rwnd <= 0) &&
7014                     (asoc->total_flight == 0) &&
7015                     (bundle_at == 1)) {
7016                         /* Mark the chunk as being a window probe */
7017                         SCTP_STAT_INCR(sctps_windowprobed);
7018                 }
7019 #ifdef SCTP_AUDITING_ENABLED
7020                 sctp_audit_log(0xC2, 3);
7021 #endif
7022                 data_list[i]->sent = SCTP_DATAGRAM_SENT;
7023                 data_list[i]->snd_count = 1;
7024                 data_list[i]->rec.data.chunk_was_revoked = 0;
7025                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
7026                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
7027                             data_list[i]->whoTo->flight_size,
7028                             data_list[i]->book_size,
7029                             (uint32_t) (uintptr_t) data_list[i]->whoTo,
7030                             data_list[i]->rec.data.TSN_seq);
7031                 }
7032                 sctp_flight_size_increase(data_list[i]);
7033                 sctp_total_flight_increase(stcb, data_list[i]);
7034                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
7035                         sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
7036                             asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
7037                 }
7038                 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
7039                     (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
7040                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
7041                         /* SWS sender side engages */
7042                         asoc->peers_rwnd = 0;
7043                 }
7044         }
7045         if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
7046                 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
7047         }
7048 }
7049
7050 static void
7051 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked
7052 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7053     SCTP_UNUSED
7054 #endif
7055 )
7056 {
7057         struct sctp_tmit_chunk *chk, *nchk;
7058
7059         TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
7060                 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7061                     (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||  /* EY */
7062                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
7063                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
7064                     (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
7065                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
7066                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
7067                     (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
7068                     (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
7069                     (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
7070                     (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
7071                     (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
7072                         /* Stray chunks must be cleaned up */
7073         clean_up_anyway:
7074                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
7075                         if (chk->data) {
7076                                 sctp_m_freem(chk->data);
7077                                 chk->data = NULL;
7078                         }
7079                         asoc->ctrl_queue_cnt--;
7080                         if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)
7081                                 asoc->fwd_tsn_cnt--;
7082                         sctp_free_a_chunk(stcb, chk, so_locked);
7083                 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
7084                         /* special handling, we must look into the param */
7085                         if (chk != asoc->str_reset) {
7086                                 goto clean_up_anyway;
7087                         }
7088                 }
7089         }
7090 }
7091
7092
7093 static int
7094 sctp_can_we_split_this(struct sctp_tcb *stcb,
7095     uint32_t length,
7096     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
7097 {
7098         /*
7099          * Make a decision on if I should split a msg into multiple parts.
7100          * This is only asked of incomplete messages.
7101          */
7102         if (eeor_on) {
7103                 /*
7104                  * If we are doing EEOR we need to always send it if its the
7105                  * entire thing, since it might be all the guy is putting in
7106                  * the hopper.
7107                  */
7108                 if (goal_mtu >= length) {
7109                         /*-
7110                          * If we have data outstanding,
7111                          * we get another chance when the sack
7112                          * arrives to transmit - wait for more data
7113                          */
7114                         if (stcb->asoc.total_flight == 0) {
7115                                 /*
7116                                  * If nothing is in flight, we zero the
7117                                  * packet counter.
7118                                  */
7119                                 return (length);
7120                         }
7121                         return (0);
7122
7123                 } else {
7124                         /* You can fill the rest */
7125                         return (goal_mtu);
7126                 }
7127         }
7128         /*-
7129          * For those strange folk that make the send buffer
7130          * smaller than our fragmentation point, we can't
7131          * get a full msg in so we have to allow splitting.
7132          */
7133         if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
7134                 return (length);
7135         }
7136         if ((length <= goal_mtu) ||
7137             ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
7138                 /* Sub-optimial residual don't split in non-eeor mode. */
7139                 return (0);
7140         }
7141         /*
7142          * If we reach here length is larger than the goal_mtu. Do we wish
7143          * to split it for the sake of packet putting together?
7144          */
7145         if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
7146                 /* Its ok to split it */
7147                 return (min(goal_mtu, frag_point));
7148         }
7149         /* Nope, can't split */
7150         return (0);
7151
7152 }
7153
7154 static uint32_t
7155 sctp_move_to_outqueue(struct sctp_tcb *stcb,
7156     struct sctp_stream_out *strq,
7157     uint32_t goal_mtu,
7158     uint32_t frag_point,
7159     int *giveup,
7160     int eeor_mode,
7161     int *bail,
7162     int so_locked
7163 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7164     SCTP_UNUSED
7165 #endif
7166 )
7167 {
7168         /* Move from the stream to the send_queue keeping track of the total */
7169         struct sctp_association *asoc;
7170         struct sctp_stream_queue_pending *sp;
7171         struct sctp_tmit_chunk *chk;
7172         struct sctp_data_chunk *dchkh = NULL;
7173         struct sctp_idata_chunk *ndchkh = NULL;
7174         uint32_t to_move, length;
7175         int leading;
7176         uint8_t rcv_flags = 0;
7177         uint8_t some_taken;
7178         uint8_t send_lock_up = 0;
7179
7180         SCTP_TCB_LOCK_ASSERT(stcb);
7181         asoc = &stcb->asoc;
7182 one_more_time:
7183         /* sa_ignore FREED_MEMORY */
7184         sp = TAILQ_FIRST(&strq->outqueue);
7185         if (sp == NULL) {
7186                 if (send_lock_up == 0) {
7187                         SCTP_TCB_SEND_LOCK(stcb);
7188                         send_lock_up = 1;
7189                 }
7190                 sp = TAILQ_FIRST(&strq->outqueue);
7191                 if (sp) {
7192                         goto one_more_time;
7193                 }
7194                 if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_EXPLICIT_EOR) == 0) &&
7195                     (stcb->asoc.idata_supported == 0) &&
7196                     (strq->last_msg_incomplete)) {
7197                         SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7198                             strq->stream_no,
7199                             strq->last_msg_incomplete);
7200                         strq->last_msg_incomplete = 0;
7201                 }
7202                 to_move = 0;
7203                 if (send_lock_up) {
7204                         SCTP_TCB_SEND_UNLOCK(stcb);
7205                         send_lock_up = 0;
7206                 }
7207                 goto out_of;
7208         }
7209         if ((sp->msg_is_complete) && (sp->length == 0)) {
7210                 if (sp->sender_all_done) {
7211                         /*
7212                          * We are doing differed cleanup. Last time through
7213                          * when we took all the data the sender_all_done was
7214                          * not set.
7215                          */
7216                         if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7217                                 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7218                                 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7219                                     sp->sender_all_done,
7220                                     sp->length,
7221                                     sp->msg_is_complete,
7222                                     sp->put_last_out,
7223                                     send_lock_up);
7224                         }
7225                         if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) {
7226                                 SCTP_TCB_SEND_LOCK(stcb);
7227                                 send_lock_up = 1;
7228                         }
7229                         atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7230                         TAILQ_REMOVE(&strq->outqueue, sp, next);
7231                         stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7232                         if ((strq->state == SCTP_STREAM_RESET_PENDING) &&
7233                             (strq->chunks_on_queues == 0) &&
7234                             TAILQ_EMPTY(&strq->outqueue)) {
7235                                 stcb->asoc.trigger_reset = 1;
7236                         }
7237                         if (sp->net) {
7238                                 sctp_free_remote_addr(sp->net);
7239                                 sp->net = NULL;
7240                         }
7241                         if (sp->data) {
7242                                 sctp_m_freem(sp->data);
7243                                 sp->data = NULL;
7244                         }
7245                         sctp_free_a_strmoq(stcb, sp, so_locked);
7246                         /* we can't be locked to it */
7247                         if (send_lock_up) {
7248                                 SCTP_TCB_SEND_UNLOCK(stcb);
7249                                 send_lock_up = 0;
7250                         }
7251                         /* back to get the next msg */
7252                         goto one_more_time;
7253                 } else {
7254                         /*
7255                          * sender just finished this but still holds a
7256                          * reference
7257                          */
7258                         *giveup = 1;
7259                         to_move = 0;
7260                         goto out_of;
7261                 }
7262         } else {
7263                 /* is there some to get */
7264                 if (sp->length == 0) {
7265                         /* no */
7266                         *giveup = 1;
7267                         to_move = 0;
7268                         goto out_of;
7269                 } else if (sp->discard_rest) {
7270                         if (send_lock_up == 0) {
7271                                 SCTP_TCB_SEND_LOCK(stcb);
7272                                 send_lock_up = 1;
7273                         }
7274                         /* Whack down the size */
7275                         atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7276                         if ((stcb->sctp_socket != NULL) &&
7277                             ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7278                             (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7279                                 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length);
7280                         }
7281                         if (sp->data) {
7282                                 sctp_m_freem(sp->data);
7283                                 sp->data = NULL;
7284                                 sp->tail_mbuf = NULL;
7285                         }
7286                         sp->length = 0;
7287                         sp->some_taken = 1;
7288                         *giveup = 1;
7289                         to_move = 0;
7290                         goto out_of;
7291                 }
7292         }
7293         some_taken = sp->some_taken;
7294 re_look:
7295         length = sp->length;
7296         if (sp->msg_is_complete) {
7297                 /* The message is complete */
7298                 to_move = min(length, frag_point);
7299                 if (to_move == length) {
7300                         /* All of it fits in the MTU */
7301                         if (sp->some_taken) {
7302                                 rcv_flags |= SCTP_DATA_LAST_FRAG;
7303                         } else {
7304                                 rcv_flags |= SCTP_DATA_NOT_FRAG;
7305                         }
7306                         sp->put_last_out = 1;
7307                         if (sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) {
7308                                 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7309                         }
7310                 } else {
7311                         /* Not all of it fits, we fragment */
7312                         if (sp->some_taken == 0) {
7313                                 rcv_flags |= SCTP_DATA_FIRST_FRAG;
7314                         }
7315                         sp->some_taken = 1;
7316                 }
7317         } else {
7318                 to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode);
7319                 if (to_move) {
7320                         /*-
7321                          * We use a snapshot of length in case it
7322                          * is expanding during the compare.
7323                          */
7324                         uint32_t llen;
7325
7326                         llen = length;
7327                         if (to_move >= llen) {
7328                                 to_move = llen;
7329                                 if (send_lock_up == 0) {
7330                                         /*-
7331                                          * We are taking all of an incomplete msg
7332                                          * thus we need a send lock.
7333                                          */
7334                                         SCTP_TCB_SEND_LOCK(stcb);
7335                                         send_lock_up = 1;
7336                                         if (sp->msg_is_complete) {
7337                                                 /*
7338                                                  * the sender finished the
7339                                                  * msg
7340                                                  */
7341                                                 goto re_look;
7342                                         }
7343                                 }
7344                         }
7345                         if (sp->some_taken == 0) {
7346                                 rcv_flags |= SCTP_DATA_FIRST_FRAG;
7347                                 sp->some_taken = 1;
7348                         }
7349                 } else {
7350                         /* Nothing to take. */
7351                         *giveup = 1;
7352                         to_move = 0;
7353                         goto out_of;
7354                 }
7355         }
7356
7357         /* If we reach here, we can copy out a chunk */
7358         sctp_alloc_a_chunk(stcb, chk);
7359         if (chk == NULL) {
7360                 /* No chunk memory */
7361                 *giveup = 1;
7362                 to_move = 0;
7363                 goto out_of;
7364         }
7365         /*
7366          * Setup for unordered if needed by looking at the user sent info
7367          * flags.
7368          */
7369         if (sp->sinfo_flags & SCTP_UNORDERED) {
7370                 rcv_flags |= SCTP_DATA_UNORDERED;
7371         }
7372         if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
7373             (sp->sinfo_flags & SCTP_EOF) == SCTP_EOF) {
7374                 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7375         }
7376         /* clear out the chunk before setting up */
7377         memset(chk, 0, sizeof(*chk));
7378         chk->rec.data.rcv_flags = rcv_flags;
7379
7380         if (to_move >= length) {
7381                 /* we think we can steal the whole thing */
7382                 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) {
7383                         SCTP_TCB_SEND_LOCK(stcb);
7384                         send_lock_up = 1;
7385                 }
7386                 if (to_move < sp->length) {
7387                         /* bail, it changed */
7388                         goto dont_do_it;
7389                 }
7390                 chk->data = sp->data;
7391                 chk->last_mbuf = sp->tail_mbuf;
7392                 /* register the stealing */
7393                 sp->data = sp->tail_mbuf = NULL;
7394         } else {
7395                 struct mbuf *m;
7396
7397 dont_do_it:
7398                 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT);
7399                 chk->last_mbuf = NULL;
7400                 if (chk->data == NULL) {
7401                         sp->some_taken = some_taken;
7402                         sctp_free_a_chunk(stcb, chk, so_locked);
7403                         *bail = 1;
7404                         to_move = 0;
7405                         goto out_of;
7406                 }
7407 #ifdef SCTP_MBUF_LOGGING
7408                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7409                         sctp_log_mbc(chk->data, SCTP_MBUF_ICOPY);
7410                 }
7411 #endif
7412                 /* Pull off the data */
7413                 m_adj(sp->data, to_move);
7414                 /* Now lets work our way down and compact it */
7415                 m = sp->data;
7416                 while (m && (SCTP_BUF_LEN(m) == 0)) {
7417                         sp->data = SCTP_BUF_NEXT(m);
7418                         SCTP_BUF_NEXT(m) = NULL;
7419                         if (sp->tail_mbuf == m) {
7420                                 /*-
7421                                  * Freeing tail? TSNH since
7422                                  * we supposedly were taking less
7423                                  * than the sp->length.
7424                                  */
7425 #ifdef INVARIANTS
7426                                 panic("Huh, freing tail? - TSNH");
7427 #else
7428                                 SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7429                                 sp->tail_mbuf = sp->data = NULL;
7430                                 sp->length = 0;
7431 #endif
7432
7433                         }
7434                         sctp_m_free(m);
7435                         m = sp->data;
7436                 }
7437         }
7438         if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7439                 chk->copy_by_ref = 1;
7440         } else {
7441                 chk->copy_by_ref = 0;
7442         }
7443         /*
7444          * get last_mbuf and counts of mb usage This is ugly but hopefully
7445          * its only one mbuf.
7446          */
7447         if (chk->last_mbuf == NULL) {
7448                 chk->last_mbuf = chk->data;
7449                 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7450                         chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7451                 }
7452         }
7453         if (to_move > length) {
7454                 /*- This should not happen either
7455                  * since we always lower to_move to the size
7456                  * of sp->length if its larger.
7457                  */
7458 #ifdef INVARIANTS
7459                 panic("Huh, how can to_move be larger?");
7460 #else
7461                 SCTP_PRINTF("Huh, how can to_move be larger?\n");
7462                 sp->length = 0;
7463 #endif
7464         } else {
7465                 atomic_subtract_int(&sp->length, to_move);
7466         }
7467         if (stcb->asoc.idata_supported == 0) {
7468                 leading = sizeof(struct sctp_data_chunk);
7469         } else {
7470                 leading = sizeof(struct sctp_idata_chunk);
7471         }
7472         if (M_LEADINGSPACE(chk->data) < leading) {
7473                 /* Not enough room for a chunk header, get some */
7474                 struct mbuf *m;
7475
7476                 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA);
7477                 if (m == NULL) {
7478                         /*
7479                          * we're in trouble here. _PREPEND below will free
7480                          * all the data if there is no leading space, so we
7481                          * must put the data back and restore.
7482                          */
7483                         if (send_lock_up == 0) {
7484                                 SCTP_TCB_SEND_LOCK(stcb);
7485                                 send_lock_up = 1;
7486                         }
7487                         if (sp->data == NULL) {
7488                                 /* unsteal the data */
7489                                 sp->data = chk->data;
7490                                 sp->tail_mbuf = chk->last_mbuf;
7491                         } else {
7492                                 struct mbuf *m_tmp;
7493
7494                                 /* reassemble the data */
7495                                 m_tmp = sp->data;
7496                                 sp->data = chk->data;
7497                                 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7498                         }
7499                         sp->some_taken = some_taken;
7500                         atomic_add_int(&sp->length, to_move);
7501                         chk->data = NULL;
7502                         *bail = 1;
7503                         sctp_free_a_chunk(stcb, chk, so_locked);
7504                         to_move = 0;
7505                         goto out_of;
7506                 } else {
7507                         SCTP_BUF_LEN(m) = 0;
7508                         SCTP_BUF_NEXT(m) = chk->data;
7509                         chk->data = m;
7510                         M_ALIGN(chk->data, 4);
7511                 }
7512         }
7513         if (stcb->asoc.idata_supported == 0) {
7514                 SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT);
7515         } else {
7516                 SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_idata_chunk), M_NOWAIT);
7517         }
7518         if (chk->data == NULL) {
7519                 /* HELP, TSNH since we assured it would not above? */
7520 #ifdef INVARIANTS
7521                 panic("prepend failes HELP?");
7522 #else
7523                 SCTP_PRINTF("prepend fails HELP?\n");
7524                 sctp_free_a_chunk(stcb, chk, so_locked);
7525 #endif
7526                 *bail = 1;
7527                 to_move = 0;
7528                 goto out_of;
7529         }
7530         if (stcb->asoc.idata_supported == 0) {
7531                 sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
7532                 chk->book_size = chk->send_size = (uint16_t) (to_move + sizeof(struct sctp_data_chunk));
7533         } else {
7534                 sctp_snd_sb_alloc(stcb, sizeof(struct sctp_idata_chunk));
7535                 chk->book_size = chk->send_size = (uint16_t) (to_move + sizeof(struct sctp_idata_chunk));
7536         }
7537         chk->book_size_scale = 0;
7538         chk->sent = SCTP_DATAGRAM_UNSENT;
7539
7540         chk->flags = 0;
7541         chk->asoc = &stcb->asoc;
7542         chk->pad_inplace = 0;
7543         chk->no_fr_allowed = 0;
7544         if (stcb->asoc.idata_supported == 0) {
7545                 if (rcv_flags & SCTP_DATA_UNORDERED) {
7546                         /* Just use 0. The receiver ignores the values. */
7547                         chk->rec.data.stream_seq = 0;
7548                 } else {
7549                         chk->rec.data.stream_seq = strq->next_mid_ordered;
7550                         if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7551                                 strq->next_mid_ordered++;
7552                         }
7553                 }
7554         } else {
7555                 if (rcv_flags & SCTP_DATA_UNORDERED) {
7556                         chk->rec.data.stream_seq = strq->next_mid_unordered;
7557                         if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7558                                 strq->next_mid_unordered++;
7559                         }
7560                 } else {
7561                         chk->rec.data.stream_seq = strq->next_mid_ordered;
7562                         if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7563                                 strq->next_mid_ordered++;
7564                         }
7565                 }
7566         }
7567         chk->rec.data.stream_number = sp->stream;
7568         chk->rec.data.payloadtype = sp->ppid;
7569         chk->rec.data.context = sp->context;
7570         chk->rec.data.doing_fast_retransmit = 0;
7571
7572         chk->rec.data.timetodrop = sp->ts;
7573         chk->flags = sp->act_flags;
7574
7575         if (sp->net) {
7576                 chk->whoTo = sp->net;
7577                 atomic_add_int(&chk->whoTo->ref_count, 1);
7578         } else
7579                 chk->whoTo = NULL;
7580
7581         if (sp->holds_key_ref) {
7582                 chk->auth_keyid = sp->auth_keyid;
7583                 sctp_auth_key_acquire(stcb, chk->auth_keyid);
7584                 chk->holds_key_ref = 1;
7585         }
7586         chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
7587         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7588                 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7589                     (uint32_t) (uintptr_t) stcb, sp->length,
7590                     (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
7591                     chk->rec.data.TSN_seq);
7592         }
7593         if (stcb->asoc.idata_supported == 0) {
7594                 dchkh = mtod(chk->data, struct sctp_data_chunk *);
7595         } else {
7596                 ndchkh = mtod(chk->data, struct sctp_idata_chunk *);
7597         }
7598         /*
7599          * Put the rest of the things in place now. Size was done earlier in
7600          * previous loop prior to padding.
7601          */
7602
7603 #ifdef SCTP_ASOCLOG_OF_TSNS
7604         SCTP_TCB_LOCK_ASSERT(stcb);
7605         if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7606                 asoc->tsn_out_at = 0;
7607                 asoc->tsn_out_wrapped = 1;
7608         }
7609         asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
7610         asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
7611         asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
7612         asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7613         asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7614         asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7615         asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7616         asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7617         asoc->tsn_out_at++;
7618 #endif
7619         if (stcb->asoc.idata_supported == 0) {
7620                 dchkh->ch.chunk_type = SCTP_DATA;
7621                 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7622                 dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7623                 dchkh->dp.stream_id = htons((strq->stream_no & 0x0000ffff));
7624                 dchkh->dp.stream_sequence = htons((uint16_t) chk->rec.data.stream_seq);
7625                 dchkh->dp.protocol_id = chk->rec.data.payloadtype;
7626                 dchkh->ch.chunk_length = htons(chk->send_size);
7627         } else {
7628                 ndchkh->ch.chunk_type = SCTP_IDATA;
7629                 ndchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7630                 ndchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7631                 ndchkh->dp.stream_id = htons(strq->stream_no);
7632                 ndchkh->dp.reserved = htons(0);
7633                 ndchkh->dp.msg_id = htonl(chk->rec.data.stream_seq);
7634                 if (sp->fsn == 0)
7635                         ndchkh->dp.ppid_fsn.protocol_id = chk->rec.data.payloadtype;
7636                 else
7637                         ndchkh->dp.ppid_fsn.fsn = htonl(sp->fsn);
7638                 sp->fsn++;
7639                 ndchkh->ch.chunk_length = htons(chk->send_size);
7640         }
7641         /* Now advance the chk->send_size by the actual pad needed. */
7642         if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7643                 /* need a pad */
7644                 struct mbuf *lm;
7645                 int pads;
7646
7647                 pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7648                 lm = sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf);
7649                 if (lm != NULL) {
7650                         chk->last_mbuf = lm;
7651                         chk->pad_inplace = 1;
7652                 }
7653                 chk->send_size += pads;
7654         }
7655         if (PR_SCTP_ENABLED(chk->flags)) {
7656                 asoc->pr_sctp_cnt++;
7657         }
7658         if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7659                 /* All done pull and kill the message */
7660                 if (sp->put_last_out == 0) {
7661                         SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7662                         SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7663                             sp->sender_all_done,
7664                             sp->length,
7665                             sp->msg_is_complete,
7666                             sp->put_last_out,
7667                             send_lock_up);
7668                 }
7669                 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
7670                         SCTP_TCB_SEND_LOCK(stcb);
7671                         send_lock_up = 1;
7672                 }
7673                 atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7674                 TAILQ_REMOVE(&strq->outqueue, sp, next);
7675                 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7676                 if ((strq->state == SCTP_STREAM_RESET_PENDING) &&
7677                     (strq->chunks_on_queues == 0) &&
7678                     TAILQ_EMPTY(&strq->outqueue)) {
7679                         stcb->asoc.trigger_reset = 1;
7680                 }
7681                 if (sp->net) {
7682                         sctp_free_remote_addr(sp->net);
7683                         sp->net = NULL;
7684                 }
7685                 if (sp->data) {
7686                         sctp_m_freem(sp->data);
7687                         sp->data = NULL;
7688                 }
7689                 sctp_free_a_strmoq(stcb, sp, so_locked);
7690         }
7691         asoc->chunks_on_out_queue++;
7692         strq->chunks_on_queues++;
7693         TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7694         asoc->send_queue_cnt++;
7695 out_of:
7696         if (send_lock_up) {
7697                 SCTP_TCB_SEND_UNLOCK(stcb);
7698         }
7699         return (to_move);
7700 }
7701
7702
7703 static void
7704 sctp_fill_outqueue(struct sctp_tcb *stcb,
7705     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked
7706 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7707     SCTP_UNUSED
7708 #endif
7709 )
7710 {
7711         struct sctp_association *asoc;
7712         struct sctp_stream_out *strq;
7713         int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
7714         int giveup;
7715
7716         SCTP_TCB_LOCK_ASSERT(stcb);
7717         asoc = &stcb->asoc;
7718         switch (net->ro._l_addr.sa.sa_family) {
7719 #ifdef INET
7720         case AF_INET:
7721                 goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
7722                 break;
7723 #endif
7724 #ifdef INET6
7725         case AF_INET6:
7726                 goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
7727                 break;
7728 #endif
7729         default:
7730                 /* TSNH */
7731                 goal_mtu = net->mtu;
7732                 break;
7733         }
7734         /* Need an allowance for the data chunk header too */
7735         if (stcb->asoc.idata_supported == 0) {
7736                 goal_mtu -= sizeof(struct sctp_data_chunk);
7737         } else {
7738                 goal_mtu -= sizeof(struct sctp_idata_chunk);
7739         }
7740
7741         /* must make even word boundary */
7742         goal_mtu &= 0xfffffffc;
7743         strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7744         while ((goal_mtu > 0) && strq) {
7745                 giveup = 0;
7746                 bail = 0;
7747                 moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point,
7748                     &giveup, eeor_mode, &bail, so_locked);
7749                 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much);
7750
7751                 if ((giveup) || bail) {
7752                         break;
7753                 }
7754                 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7755                 if (strq == NULL) {
7756                         break;
7757                 }
7758                 total_moved += moved_how_much;
7759                 goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
7760                 goal_mtu &= 0xfffffffc;
7761         }
7762         if (bail)
7763                 *quit_now = 1;
7764
7765         stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7766
7767         if (total_moved == 0) {
7768                 if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7769                     (net == stcb->asoc.primary_destination)) {
7770                         /* ran dry for primary network net */
7771                         SCTP_STAT_INCR(sctps_primary_randry);
7772                 } else if (stcb->asoc.sctp_cmt_on_off > 0) {
7773                         /* ran dry with CMT on */
7774                         SCTP_STAT_INCR(sctps_cmt_randry);
7775                 }
7776         }
7777 }
7778
7779 void
7780 sctp_fix_ecn_echo(struct sctp_association *asoc)
7781 {
7782         struct sctp_tmit_chunk *chk;
7783
7784         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7785                 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7786                         chk->sent = SCTP_DATAGRAM_UNSENT;
7787                 }
7788         }
7789 }
7790
7791 void
7792 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7793 {
7794         struct sctp_association *asoc;
7795         struct sctp_tmit_chunk *chk;
7796         struct sctp_stream_queue_pending *sp;
7797         unsigned int i;
7798
7799         if (net == NULL) {
7800                 return;
7801         }
7802         asoc = &stcb->asoc;
7803         for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7804                 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7805                         if (sp->net == net) {
7806                                 sctp_free_remote_addr(sp->net);
7807                                 sp->net = NULL;
7808                         }
7809                 }
7810         }
7811         TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7812                 if (chk->whoTo == net) {
7813                         sctp_free_remote_addr(chk->whoTo);
7814                         chk->whoTo = NULL;
7815                 }
7816         }
7817 }
7818
7819 int
7820 sctp_med_chunk_output(struct sctp_inpcb *inp,
7821     struct sctp_tcb *stcb,
7822     struct sctp_association *asoc,
7823     int *num_out,
7824     int *reason_code,
7825     int control_only, int from_where,
7826     struct timeval *now, int *now_filled, int frag_point, int so_locked
7827 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7828     SCTP_UNUSED
7829 #endif
7830 )
7831 {
7832         /**
7833          * Ok this is the generic chunk service queue. we must do the
7834          * following:
7835          * - Service the stream queue that is next, moving any
7836          *   message (note I must get a complete message i.e. FIRST/MIDDLE and
7837          *   LAST to the out queue in one pass) and assigning TSN's. This
7838          *   only applys though if the peer does not support NDATA. For NDATA
7839          *   chunks its ok to not send the entire message ;-)
7840          * - Check to see if the cwnd/rwnd allows any output, if so we go ahead and
7841          *   fomulate and send the low level chunks. Making sure to combine
7842          *   any control in the control chunk queue also.
7843          */
7844         struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7845         struct mbuf *outchain, *endoutchain;
7846         struct sctp_tmit_chunk *chk, *nchk;
7847
7848         /* temp arrays for unlinking */
7849         struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7850         int no_fragmentflg, error;
7851         unsigned int max_rwnd_per_dest, max_send_per_dest;
7852         int one_chunk, hbflag, skip_data_for_this_net;
7853         int asconf, cookie, no_out_cnt;
7854         int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7855         unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7856         int tsns_sent = 0;
7857         uint32_t auth_offset = 0;
7858         struct sctp_auth_chunk *auth = NULL;
7859         uint16_t auth_keyid;
7860         int override_ok = 1;
7861         int skip_fill_up = 0;
7862         int data_auth_reqd = 0;
7863
7864         /*
7865          * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7866          * destination.
7867          */
7868         int quit_now = 0;
7869
7870         *num_out = 0;
7871         *reason_code = 0;
7872         auth_keyid = stcb->asoc.authinfo.active_keyid;
7873         if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7874             (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
7875             (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7876                 eeor_mode = 1;
7877         } else {
7878                 eeor_mode = 0;
7879         }
7880         ctl_cnt = no_out_cnt = asconf = cookie = 0;
7881         /*
7882          * First lets prime the pump. For each destination, if there is room
7883          * in the flight size, attempt to pull an MTU's worth out of the
7884          * stream queues into the general send_queue
7885          */
7886 #ifdef SCTP_AUDITING_ENABLED
7887         sctp_audit_log(0xC2, 2);
7888 #endif
7889         SCTP_TCB_LOCK_ASSERT(stcb);
7890         hbflag = 0;
7891         if (control_only)
7892                 no_data_chunks = 1;
7893         else
7894                 no_data_chunks = 0;
7895
7896         /* Nothing to possible to send? */
7897         if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7898             (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7899             TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7900             TAILQ_EMPTY(&asoc->send_queue) &&
7901             sctp_is_there_unsent_data(stcb, so_locked) == 0) {
7902 nothing_to_send:
7903                 *reason_code = 9;
7904                 return (0);
7905         }
7906         if (asoc->peers_rwnd == 0) {
7907                 /* No room in peers rwnd */
7908                 *reason_code = 1;
7909                 if (asoc->total_flight > 0) {
7910                         /* we are allowed one chunk in flight */
7911                         no_data_chunks = 1;
7912                 }
7913         }
7914         if (stcb->asoc.ecn_echo_cnt_onq) {
7915                 /* Record where a sack goes, if any */
7916                 if (no_data_chunks &&
7917                     (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7918                         /* Nothing but ECNe to send - we don't do that */
7919                         goto nothing_to_send;
7920                 }
7921                 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7922                         if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7923                             (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7924                                 sack_goes_to = chk->whoTo;
7925                                 break;
7926                         }
7927                 }
7928         }
7929         max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7930         if (stcb->sctp_socket)
7931                 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7932         else
7933                 max_send_per_dest = 0;
7934         if (no_data_chunks == 0) {
7935                 /* How many non-directed chunks are there? */
7936                 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7937                         if (chk->whoTo == NULL) {
7938                                 /*
7939                                  * We already have non-directed chunks on
7940                                  * the queue, no need to do a fill-up.
7941                                  */
7942                                 skip_fill_up = 1;
7943                                 break;
7944                         }
7945                 }
7946
7947         }
7948         if ((no_data_chunks == 0) &&
7949             (skip_fill_up == 0) &&
7950             (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7951                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7952                         /*
7953                          * This for loop we are in takes in each net, if
7954                          * its's got space in cwnd and has data sent to it
7955                          * (when CMT is off) then it calls
7956                          * sctp_fill_outqueue for the net. This gets data on
7957                          * the send queue for that network.
7958                          * 
7959                          * In sctp_fill_outqueue TSN's are assigned and data is
7960                          * copied out of the stream buffers. Note mostly
7961                          * copy by reference (we hope).
7962                          */
7963                         net->window_probe = 0;
7964                         if ((net != stcb->asoc.alternate) &&
7965                             ((net->dest_state & SCTP_ADDR_PF) ||
7966                             (!(net->dest_state & SCTP_ADDR_REACHABLE)) ||
7967                             (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7968                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7969                                         sctp_log_cwnd(stcb, net, 1,
7970                                             SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7971                                 }
7972                                 continue;
7973                         }
7974                         if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7975                             (net->flight_size == 0)) {
7976                                 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7977                         }
7978                         if (net->flight_size >= net->cwnd) {
7979                                 /* skip this network, no room - can't fill */
7980                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7981                                         sctp_log_cwnd(stcb, net, 3,
7982                                             SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7983                                 }
7984                                 continue;
7985                         }
7986                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7987                                 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7988                         }
7989                         sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7990                         if (quit_now) {
7991                                 /* memory alloc failure */
7992                                 no_data_chunks = 1;
7993                                 break;
7994                         }
7995                 }
7996         }
7997         /* now service each destination and send out what we can for it */
7998         /* Nothing to send? */
7999         if (TAILQ_EMPTY(&asoc->control_send_queue) &&
8000             TAILQ_EMPTY(&asoc->asconf_send_queue) &&
8001             TAILQ_EMPTY(&asoc->send_queue)) {
8002                 *reason_code = 8;
8003                 return (0);
8004         }
8005         if (asoc->sctp_cmt_on_off > 0) {
8006                 /* get the last start point */
8007                 start_at = asoc->last_net_cmt_send_started;
8008                 if (start_at == NULL) {
8009                         /* null so to beginning */
8010                         start_at = TAILQ_FIRST(&asoc->nets);
8011                 } else {
8012                         start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
8013                         if (start_at == NULL) {
8014                                 start_at = TAILQ_FIRST(&asoc->nets);
8015                         }
8016                 }
8017                 asoc->last_net_cmt_send_started = start_at;
8018         } else {
8019                 start_at = TAILQ_FIRST(&asoc->nets);
8020         }
8021         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
8022                 if (chk->whoTo == NULL) {
8023                         if (asoc->alternate) {
8024                                 chk->whoTo = asoc->alternate;
8025                         } else {
8026                                 chk->whoTo = asoc->primary_destination;
8027                         }
8028                         atomic_add_int(&chk->whoTo->ref_count, 1);
8029                 }
8030         }
8031         old_start_at = NULL;
8032 again_one_more_time:
8033         for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
8034                 /* how much can we send? */
8035                 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
8036                 if (old_start_at && (old_start_at == net)) {
8037                         /* through list ocmpletely. */
8038                         break;
8039                 }
8040                 tsns_sent = 0xa;
8041                 if (TAILQ_EMPTY(&asoc->control_send_queue) &&
8042                     TAILQ_EMPTY(&asoc->asconf_send_queue) &&
8043                     (net->flight_size >= net->cwnd)) {
8044                         /*
8045                          * Nothing on control or asconf and flight is full,
8046                          * we can skip even in the CMT case.
8047                          */
8048                         continue;
8049                 }
8050                 bundle_at = 0;
8051                 endoutchain = outchain = NULL;
8052                 no_fragmentflg = 1;
8053                 one_chunk = 0;
8054                 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
8055                         skip_data_for_this_net = 1;
8056                 } else {
8057                         skip_data_for_this_net = 0;
8058                 }
8059                 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8060 #ifdef INET
8061                 case AF_INET:
8062                         mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8063                         break;
8064 #endif
8065 #ifdef INET6
8066                 case AF_INET6:
8067                         mtu = net->mtu - SCTP_MIN_OVERHEAD;
8068                         break;
8069 #endif
8070                 default:
8071                         /* TSNH */
8072                         mtu = net->mtu;
8073                         break;
8074                 }
8075                 mx_mtu = mtu;
8076                 to_out = 0;
8077                 if (mtu > asoc->peers_rwnd) {
8078                         if (asoc->total_flight > 0) {
8079                                 /* We have a packet in flight somewhere */
8080                                 r_mtu = asoc->peers_rwnd;
8081                         } else {
8082                                 /* We are always allowed to send one MTU out */
8083                                 one_chunk = 1;
8084                                 r_mtu = mtu;
8085                         }
8086                 } else {
8087                         r_mtu = mtu;
8088                 }
8089                 error = 0;
8090                 /************************/
8091                 /* ASCONF transmission */
8092                 /************************/
8093                 /* Now first lets go through the asconf queue */
8094                 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
8095                         if (chk->rec.chunk_id.id != SCTP_ASCONF) {
8096                                 continue;
8097                         }
8098                         if (chk->whoTo == NULL) {
8099                                 if (asoc->alternate == NULL) {
8100                                         if (asoc->primary_destination != net) {
8101                                                 break;
8102                                         }
8103                                 } else {
8104                                         if (asoc->alternate != net) {
8105                                                 break;
8106                                         }
8107                                 }
8108                         } else {
8109                                 if (chk->whoTo != net) {
8110                                         break;
8111                                 }
8112                         }
8113                         if (chk->data == NULL) {
8114                                 break;
8115                         }
8116                         if (chk->sent != SCTP_DATAGRAM_UNSENT &&
8117                             chk->sent != SCTP_DATAGRAM_RESEND) {
8118                                 break;
8119                         }
8120                         /*
8121                          * if no AUTH is yet included and this chunk
8122                          * requires it, make sure to account for it.  We
8123                          * don't apply the size until the AUTH chunk is
8124                          * actually added below in case there is no room for
8125                          * this chunk. NOTE: we overload the use of "omtu"
8126                          * here
8127                          */
8128                         if ((auth == NULL) &&
8129                             sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8130                             stcb->asoc.peer_auth_chunks)) {
8131                                 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8132                         } else
8133                                 omtu = 0;
8134                         /* Here we do NOT factor the r_mtu */
8135                         if ((chk->send_size < (int)(mtu - omtu)) ||
8136                             (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8137                                 /*
8138                                  * We probably should glom the mbuf chain
8139                                  * from the chk->data for control but the
8140                                  * problem is it becomes yet one more level
8141                                  * of tracking to do if for some reason
8142                                  * output fails. Then I have got to
8143                                  * reconstruct the merged control chain.. el
8144                                  * yucko.. for now we take the easy way and
8145                                  * do the copy
8146                                  */
8147                                 /*
8148                                  * Add an AUTH chunk, if chunk requires it
8149                                  * save the offset into the chain for AUTH
8150                                  */
8151                                 if ((auth == NULL) &&
8152                                     (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8153                                     stcb->asoc.peer_auth_chunks))) {
8154                                         outchain = sctp_add_auth_chunk(outchain,
8155                                             &endoutchain,
8156                                             &auth,
8157                                             &auth_offset,
8158                                             stcb,
8159                                             chk->rec.chunk_id.id);
8160                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8161                                 }
8162                                 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8163                                     (int)chk->rec.chunk_id.can_take_data,
8164                                     chk->send_size, chk->copy_by_ref);
8165                                 if (outchain == NULL) {
8166                                         *reason_code = 8;
8167                                         SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8168                                         return (ENOMEM);
8169                                 }
8170                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8171                                 /* update our MTU size */
8172                                 if (mtu > (chk->send_size + omtu))
8173                                         mtu -= (chk->send_size + omtu);
8174                                 else
8175                                         mtu = 0;
8176                                 to_out += (chk->send_size + omtu);
8177                                 /* Do clear IP_DF ? */
8178                                 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8179                                         no_fragmentflg = 0;
8180                                 }
8181                                 if (chk->rec.chunk_id.can_take_data)
8182                                         chk->data = NULL;
8183                                 /*
8184                                  * set hb flag since we can use these for
8185                                  * RTO
8186                                  */
8187                                 hbflag = 1;
8188                                 asconf = 1;
8189                                 /*
8190                                  * should sysctl this: don't bundle data
8191                                  * with ASCONF since it requires AUTH
8192                                  */
8193                                 no_data_chunks = 1;
8194                                 chk->sent = SCTP_DATAGRAM_SENT;
8195                                 if (chk->whoTo == NULL) {
8196                                         chk->whoTo = net;
8197                                         atomic_add_int(&net->ref_count, 1);
8198                                 }
8199                                 chk->snd_count++;
8200                                 if (mtu == 0) {
8201                                         /*
8202                                          * Ok we are out of room but we can
8203                                          * output without effecting the
8204                                          * flight size since this little guy
8205                                          * is a control only packet.
8206                                          */
8207                                         sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8208                                         /*
8209                                          * do NOT clear the asconf flag as
8210                                          * it is used to do appropriate
8211                                          * source address selection.
8212                                          */
8213                                         if (*now_filled == 0) {
8214                                                 (void)SCTP_GETTIME_TIMEVAL(now);
8215                                                 *now_filled = 1;
8216                                         }
8217                                         net->last_sent_time = *now;
8218                                         hbflag = 0;
8219                                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8220                                             (struct sockaddr *)&net->ro._l_addr,
8221                                             outchain, auth_offset, auth,
8222                                             stcb->asoc.authinfo.active_keyid,
8223                                             no_fragmentflg, 0, asconf,
8224                                             inp->sctp_lport, stcb->rport,
8225                                             htonl(stcb->asoc.peer_vtag),
8226                                             net->port, NULL,
8227                                             0, 0,
8228                                             so_locked))) {
8229                                                 /*
8230                                                  * error, we could not
8231                                                  * output
8232                                                  */
8233                                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8234                                                 if (from_where == 0) {
8235                                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8236                                                 }
8237                                                 if (error == ENOBUFS) {
8238                                                         asoc->ifp_had_enobuf = 1;
8239                                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8240                                                 }
8241                                                 /* error, could not output */
8242                                                 if (error == EHOSTUNREACH) {
8243                                                         /*
8244                                                          * Destination went
8245                                                          * unreachable
8246                                                          * during this send
8247                                                          */
8248                                                         sctp_move_chunks_from_net(stcb, net);
8249                                                 }
8250                                                 *reason_code = 7;
8251                                                 break;
8252                                         } else {
8253                                                 asoc->ifp_had_enobuf = 0;
8254                                         }
8255                                         /*
8256                                          * increase the number we sent, if a
8257                                          * cookie is sent we don't tell them
8258                                          * any was sent out.
8259                                          */
8260                                         outchain = endoutchain = NULL;
8261                                         auth = NULL;
8262                                         auth_offset = 0;
8263                                         if (!no_out_cnt)
8264                                                 *num_out += ctl_cnt;
8265                                         /* recalc a clean slate and setup */
8266                                         switch (net->ro._l_addr.sa.sa_family) {
8267 #ifdef INET
8268                                         case AF_INET:
8269                                                 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8270                                                 break;
8271 #endif
8272 #ifdef INET6
8273                                         case AF_INET6:
8274                                                 mtu = net->mtu - SCTP_MIN_OVERHEAD;
8275                                                 break;
8276 #endif
8277                                         default:
8278                                                 /* TSNH */
8279                                                 mtu = net->mtu;
8280                                                 break;
8281                                         }
8282                                         to_out = 0;
8283                                         no_fragmentflg = 1;
8284                                 }
8285                         }
8286                 }
8287                 if (error != 0) {
8288                         /* try next net */
8289                         continue;
8290                 }
8291                 /************************/
8292                 /* Control transmission */
8293                 /************************/
8294                 /* Now first lets go through the control queue */
8295                 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8296                         if ((sack_goes_to) &&
8297                             (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8298                             (chk->whoTo != sack_goes_to)) {
8299                                 /*
8300                                  * if we have a sack in queue, and we are
8301                                  * looking at an ecn echo that is NOT queued
8302                                  * to where the sack is going..
8303                                  */
8304                                 if (chk->whoTo == net) {
8305                                         /*
8306                                          * Don't transmit it to where its
8307                                          * going (current net)
8308                                          */
8309                                         continue;
8310                                 } else if (sack_goes_to == net) {
8311                                         /*
8312                                          * But do transmit it to this
8313                                          * address
8314                                          */
8315                                         goto skip_net_check;
8316                                 }
8317                         }
8318                         if (chk->whoTo == NULL) {
8319                                 if (asoc->alternate == NULL) {
8320                                         if (asoc->primary_destination != net) {
8321                                                 continue;
8322                                         }
8323                                 } else {
8324                                         if (asoc->alternate != net) {
8325                                                 continue;
8326                                         }
8327                                 }
8328                         } else {
8329                                 if (chk->whoTo != net) {
8330                                         continue;
8331                                 }
8332                         }
8333         skip_net_check:
8334                         if (chk->data == NULL) {
8335                                 continue;
8336                         }
8337                         if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8338                                 /*
8339                                  * It must be unsent. Cookies and ASCONF's
8340                                  * hang around but there timers will force
8341                                  * when marked for resend.
8342                                  */
8343                                 continue;
8344                         }
8345                         /*
8346                          * if no AUTH is yet included and this chunk
8347                          * requires it, make sure to account for it.  We
8348                          * don't apply the size until the AUTH chunk is
8349                          * actually added below in case there is no room for
8350                          * this chunk. NOTE: we overload the use of "omtu"
8351                          * here
8352                          */
8353                         if ((auth == NULL) &&
8354                             sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8355                             stcb->asoc.peer_auth_chunks)) {
8356                                 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8357                         } else
8358                                 omtu = 0;
8359                         /* Here we do NOT factor the r_mtu */
8360                         if ((chk->send_size <= (int)(mtu - omtu)) ||
8361                             (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8362                                 /*
8363                                  * We probably should glom the mbuf chain
8364                                  * from the chk->data for control but the
8365                                  * problem is it becomes yet one more level
8366                                  * of tracking to do if for some reason
8367                                  * output fails. Then I have got to
8368                                  * reconstruct the merged control chain.. el
8369                                  * yucko.. for now we take the easy way and
8370                                  * do the copy
8371                                  */
8372                                 /*
8373                                  * Add an AUTH chunk, if chunk requires it
8374                                  * save the offset into the chain for AUTH
8375                                  */
8376                                 if ((auth == NULL) &&
8377                                     (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8378                                     stcb->asoc.peer_auth_chunks))) {
8379                                         outchain = sctp_add_auth_chunk(outchain,
8380                                             &endoutchain,
8381                                             &auth,
8382                                             &auth_offset,
8383                                             stcb,
8384                                             chk->rec.chunk_id.id);
8385                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8386                                 }
8387                                 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8388                                     (int)chk->rec.chunk_id.can_take_data,
8389                                     chk->send_size, chk->copy_by_ref);
8390                                 if (outchain == NULL) {
8391                                         *reason_code = 8;
8392                                         SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8393                                         return (ENOMEM);
8394                                 }
8395                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8396                                 /* update our MTU size */
8397                                 if (mtu > (chk->send_size + omtu))
8398                                         mtu -= (chk->send_size + omtu);
8399                                 else
8400                                         mtu = 0;
8401                                 to_out += (chk->send_size + omtu);
8402                                 /* Do clear IP_DF ? */
8403                                 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8404                                         no_fragmentflg = 0;
8405                                 }
8406                                 if (chk->rec.chunk_id.can_take_data)
8407                                         chk->data = NULL;
8408                                 /* Mark things to be removed, if needed */
8409                                 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8410                                     (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||  /* EY */
8411                                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8412                                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8413                                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8414                                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8415                                     (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8416                                     (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8417                                     (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8418                                     (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8419                                     (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8420                                         if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8421                                                 hbflag = 1;
8422                                         }
8423                                         /* remove these chunks at the end */
8424                                         if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8425                                             (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8426                                                 /* turn off the timer */
8427                                                 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8428                                                         sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8429                                                             inp, stcb, net,
8430                                                             SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8431                                                 }
8432                                         }
8433                                         ctl_cnt++;
8434                                 } else {
8435                                         /*
8436                                          * Other chunks, since they have
8437                                          * timers running (i.e. COOKIE) we
8438                                          * just "trust" that it gets sent or
8439                                          * retransmitted.
8440                                          */
8441                                         ctl_cnt++;
8442                                         if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8443                                                 cookie = 1;
8444                                                 no_out_cnt = 1;
8445                                         } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8446                                                 /*
8447                                                  * Increment ecne send count
8448                                                  * here this means we may be
8449                                                  * over-zealous in our
8450                                                  * counting if the send
8451                                                  * fails, but its the best
8452                                                  * place to do it (we used
8453                                                  * to do it in the queue of
8454                                                  * the chunk, but that did
8455                                                  * not tell how many times
8456                                                  * it was sent.
8457                                                  */
8458                                                 SCTP_STAT_INCR(sctps_sendecne);
8459                                         }
8460                                         chk->sent = SCTP_DATAGRAM_SENT;
8461                                         if (chk->whoTo == NULL) {
8462                                                 chk->whoTo = net;
8463                                                 atomic_add_int(&net->ref_count, 1);
8464                                         }
8465                                         chk->snd_count++;
8466                                 }
8467                                 if (mtu == 0) {
8468                                         /*
8469                                          * Ok we are out of room but we can
8470                                          * output without effecting the
8471                                          * flight size since this little guy
8472                                          * is a control only packet.
8473                                          */
8474                                         if (asconf) {
8475                                                 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8476                                                 /*
8477                                                  * do NOT clear the asconf
8478                                                  * flag as it is used to do
8479                                                  * appropriate source
8480                                                  * address selection.
8481                                                  */
8482                                         }
8483                                         if (cookie) {
8484                                                 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8485                                                 cookie = 0;
8486                                         }
8487                                         /* Only HB or ASCONF advances time */
8488                                         if (hbflag) {
8489                                                 if (*now_filled == 0) {
8490                                                         (void)SCTP_GETTIME_TIMEVAL(now);
8491                                                         *now_filled = 1;
8492                                                 }
8493                                                 net->last_sent_time = *now;
8494                                                 hbflag = 0;
8495                                         }
8496                                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8497                                             (struct sockaddr *)&net->ro._l_addr,
8498                                             outchain,
8499                                             auth_offset, auth,
8500                                             stcb->asoc.authinfo.active_keyid,
8501                                             no_fragmentflg, 0, asconf,
8502                                             inp->sctp_lport, stcb->rport,
8503                                             htonl(stcb->asoc.peer_vtag),
8504                                             net->port, NULL,
8505                                             0, 0,
8506                                             so_locked))) {
8507                                                 /*
8508                                                  * error, we could not
8509                                                  * output
8510                                                  */
8511                                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8512                                                 if (from_where == 0) {
8513                                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8514                                                 }
8515                                                 if (error == ENOBUFS) {
8516                                                         asoc->ifp_had_enobuf = 1;
8517                                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8518                                                 }
8519                                                 if (error == EHOSTUNREACH) {
8520                                                         /*
8521                                                          * Destination went
8522                                                          * unreachable
8523                                                          * during this send
8524                                                          */
8525                                                         sctp_move_chunks_from_net(stcb, net);
8526                                                 }
8527                                                 *reason_code = 7;
8528                                                 break;
8529                                         } else {
8530                                                 asoc->ifp_had_enobuf = 0;
8531                                         }
8532                                         /*
8533                                          * increase the number we sent, if a
8534                                          * cookie is sent we don't tell them
8535                                          * any was sent out.
8536                                          */
8537                                         outchain = endoutchain = NULL;
8538                                         auth = NULL;
8539                                         auth_offset = 0;
8540                                         if (!no_out_cnt)
8541                                                 *num_out += ctl_cnt;
8542                                         /* recalc a clean slate and setup */
8543                                         switch (net->ro._l_addr.sa.sa_family) {
8544 #ifdef INET
8545                                         case AF_INET:
8546                                                 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8547                                                 break;
8548 #endif
8549 #ifdef INET6
8550                                         case AF_INET6:
8551                                                 mtu = net->mtu - SCTP_MIN_OVERHEAD;
8552                                                 break;
8553 #endif
8554                                         default:
8555                                                 /* TSNH */
8556                                                 mtu = net->mtu;
8557                                                 break;
8558                                         }
8559                                         to_out = 0;
8560                                         no_fragmentflg = 1;
8561                                 }
8562                         }
8563                 }
8564                 if (error != 0) {
8565                         /* try next net */
8566                         continue;
8567                 }
8568                 /* JRI: if dest is in PF state, do not send data to it */
8569                 if ((asoc->sctp_cmt_on_off > 0) &&
8570                     (net != stcb->asoc.alternate) &&
8571                     (net->dest_state & SCTP_ADDR_PF)) {
8572                         goto no_data_fill;
8573                 }
8574                 if (net->flight_size >= net->cwnd) {
8575                         goto no_data_fill;
8576                 }
8577                 if ((asoc->sctp_cmt_on_off > 0) &&
8578                     (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8579                     (net->flight_size > max_rwnd_per_dest)) {
8580                         goto no_data_fill;
8581                 }
8582                 /*
8583                  * We need a specific accounting for the usage of the send
8584                  * buffer. We also need to check the number of messages per
8585                  * net. For now, this is better than nothing and it disabled
8586                  * by default...
8587                  */
8588                 if ((asoc->sctp_cmt_on_off > 0) &&
8589                     (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8590                     (max_send_per_dest > 0) &&
8591                     (net->flight_size > max_send_per_dest)) {
8592                         goto no_data_fill;
8593                 }
8594                 /*********************/
8595                 /* Data transmission */
8596                 /*********************/
8597                 /*
8598                  * if AUTH for DATA is required and no AUTH has been added
8599                  * yet, account for this in the mtu now... if no data can be
8600                  * bundled, this adjustment won't matter anyways since the
8601                  * packet will be going out...
8602                  */
8603                 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8604                     stcb->asoc.peer_auth_chunks);
8605                 if (data_auth_reqd && (auth == NULL)) {
8606                         mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8607                 }
8608                 /* now lets add any data within the MTU constraints */
8609                 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8610 #ifdef INET
8611                 case AF_INET:
8612                         if (net->mtu > SCTP_MIN_V4_OVERHEAD)
8613                                 omtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8614                         else
8615                                 omtu = 0;
8616                         break;
8617 #endif
8618 #ifdef INET6
8619                 case AF_INET6:
8620                         if (net->mtu > SCTP_MIN_OVERHEAD)
8621                                 omtu = net->mtu - SCTP_MIN_OVERHEAD;
8622                         else
8623                                 omtu = 0;
8624                         break;
8625 #endif
8626                 default:
8627                         /* TSNH */
8628                         omtu = 0;
8629                         break;
8630                 }
8631                 if ((((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) ||
8632                     (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) &&
8633                     (skip_data_for_this_net == 0)) ||
8634                     (cookie)) {
8635                         TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8636                                 if (no_data_chunks) {
8637                                         /* let only control go out */
8638                                         *reason_code = 1;
8639                                         break;
8640                                 }
8641                                 if (net->flight_size >= net->cwnd) {
8642                                         /* skip this net, no room for data */
8643                                         *reason_code = 2;
8644                                         break;
8645                                 }
8646                                 if ((chk->whoTo != NULL) &&
8647                                     (chk->whoTo != net)) {
8648                                         /* Don't send the chunk on this net */
8649                                         continue;
8650                                 }
8651                                 if (asoc->sctp_cmt_on_off == 0) {
8652                                         if ((asoc->alternate) &&
8653                                             (asoc->alternate != net) &&
8654                                             (chk->whoTo == NULL)) {
8655                                                 continue;
8656                                         } else if ((net != asoc->primary_destination) &&
8657                                                     (asoc->alternate == NULL) &&
8658                                             (chk->whoTo == NULL)) {
8659                                                 continue;
8660                                         }
8661                                 }
8662                                 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8663                                         /*-
8664                                          * strange, we have a chunk that is
8665                                          * to big for its destination and
8666                                          * yet no fragment ok flag.
8667                                          * Something went wrong when the
8668                                          * PMTU changed...we did not mark
8669                                          * this chunk for some reason?? I
8670                                          * will fix it here by letting IP
8671                                          * fragment it for now and printing
8672                                          * a warning. This really should not
8673                                          * happen ...
8674                                          */
8675                                         SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8676                                             chk->send_size, mtu);
8677                                         chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8678                                 }
8679                                 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8680                                     ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) {
8681                                         struct sctp_data_chunk *dchkh;
8682
8683                                         dchkh = mtod(chk->data, struct sctp_data_chunk *);
8684                                         dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8685                                 }
8686                                 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8687                                     ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8688                                         /* ok we will add this one */
8689
8690                                         /*
8691                                          * Add an AUTH chunk, if chunk
8692                                          * requires it, save the offset into
8693                                          * the chain for AUTH
8694                                          */
8695                                         if (data_auth_reqd) {
8696                                                 if (auth == NULL) {
8697                                                         outchain = sctp_add_auth_chunk(outchain,
8698                                                             &endoutchain,
8699                                                             &auth,
8700                                                             &auth_offset,
8701                                                             stcb,
8702                                                             SCTP_DATA);
8703                                                         auth_keyid = chk->auth_keyid;
8704                                                         override_ok = 0;
8705                                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8706                                                 } else if (override_ok) {
8707                                                         /*
8708                                                          * use this data's
8709                                                          * keyid
8710                                                          */
8711                                                         auth_keyid = chk->auth_keyid;
8712                                                         override_ok = 0;
8713                                                 } else if (auth_keyid != chk->auth_keyid) {
8714                                                         /*
8715                                                          * different keyid,
8716                                                          * so done bundling
8717                                                          */
8718                                                         break;
8719                                                 }
8720                                         }
8721                                         outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8722                                             chk->send_size, chk->copy_by_ref);
8723                                         if (outchain == NULL) {
8724                                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8725                                                 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8726                                                         sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8727                                                 }
8728                                                 *reason_code = 3;
8729                                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8730                                                 return (ENOMEM);
8731                                         }
8732                                         /* upate our MTU size */
8733                                         /* Do clear IP_DF ? */
8734                                         if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8735                                                 no_fragmentflg = 0;
8736                                         }
8737                                         /* unsigned subtraction of mtu */
8738                                         if (mtu > chk->send_size)
8739                                                 mtu -= chk->send_size;
8740                                         else
8741                                                 mtu = 0;
8742                                         /* unsigned subtraction of r_mtu */
8743                                         if (r_mtu > chk->send_size)
8744                                                 r_mtu -= chk->send_size;
8745                                         else
8746                                                 r_mtu = 0;
8747
8748                                         to_out += chk->send_size;
8749                                         if ((to_out > mx_mtu) && no_fragmentflg) {
8750 #ifdef INVARIANTS
8751                                                 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8752 #else
8753                                                 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8754                                                     mx_mtu, to_out);
8755 #endif
8756                                         }
8757                                         chk->window_probe = 0;
8758                                         data_list[bundle_at++] = chk;
8759                                         if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8760                                                 break;
8761                                         }
8762                                         if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8763                                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8764                                                         SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8765                                                 } else {
8766                                                         SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8767                                                 }
8768                                                 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8769                                                     ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8770                                                         /*
8771                                                          * Count number of
8772                                                          * user msg's that
8773                                                          * were fragmented
8774                                                          * we do this by
8775                                                          * counting when we
8776                                                          * see a LAST
8777                                                          * fragment only.
8778                                                          */
8779                                                         SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8780                                         }
8781                                         if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8782                                                 if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8783                                                         data_list[0]->window_probe = 1;
8784                                                         net->window_probe = 1;
8785                                                 }
8786                                                 break;
8787                                         }
8788                                 } else {
8789                                         /*
8790                                          * Must be sent in order of the
8791                                          * TSN's (on a network)
8792                                          */
8793                                         break;
8794                                 }
8795                         }       /* for (chunk gather loop for this net) */
8796                 }               /* if asoc.state OPEN */
8797 no_data_fill:
8798                 /* Is there something to send for this destination? */
8799                 if (outchain) {
8800                         /* We may need to start a control timer or two */
8801                         if (asconf) {
8802                                 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8803                                     stcb, net);
8804                                 /*
8805                                  * do NOT clear the asconf flag as it is
8806                                  * used to do appropriate source address
8807                                  * selection.
8808                                  */
8809                         }
8810                         if (cookie) {
8811                                 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8812                                 cookie = 0;
8813                         }
8814                         /* must start a send timer if data is being sent */
8815                         if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8816                                 /*
8817                                  * no timer running on this destination
8818                                  * restart it.
8819                                  */
8820                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8821                         }
8822                         if (bundle_at || hbflag) {
8823                                 /* For data/asconf and hb set time */
8824                                 if (*now_filled == 0) {
8825                                         (void)SCTP_GETTIME_TIMEVAL(now);
8826                                         *now_filled = 1;
8827                                 }
8828                                 net->last_sent_time = *now;
8829                         }
8830                         /* Now send it, if there is anything to send :> */
8831                         if ((error = sctp_lowlevel_chunk_output(inp,
8832                             stcb,
8833                             net,
8834                             (struct sockaddr *)&net->ro._l_addr,
8835                             outchain,
8836                             auth_offset,
8837                             auth,
8838                             auth_keyid,
8839                             no_fragmentflg,
8840                             bundle_at,
8841                             asconf,
8842                             inp->sctp_lport, stcb->rport,
8843                             htonl(stcb->asoc.peer_vtag),
8844                             net->port, NULL,
8845                             0, 0,
8846                             so_locked))) {
8847                                 /* error, we could not output */
8848                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8849                                 if (from_where == 0) {
8850                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8851                                 }
8852                                 if (error == ENOBUFS) {
8853                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8854                                         asoc->ifp_had_enobuf = 1;
8855                                 }
8856                                 if (error == EHOSTUNREACH) {
8857                                         /*
8858                                          * Destination went unreachable
8859                                          * during this send
8860                                          */
8861                                         sctp_move_chunks_from_net(stcb, net);
8862                                 }
8863                                 *reason_code = 6;
8864                                 /*-
8865                                  * I add this line to be paranoid. As far as
8866                                  * I can tell the continue, takes us back to
8867                                  * the top of the for, but just to make sure
8868                                  * I will reset these again here.
8869                                  */
8870                                 ctl_cnt = bundle_at = 0;
8871                                 continue;       /* This takes us back to the
8872                                                  * for() for the nets. */
8873                         } else {
8874                                 asoc->ifp_had_enobuf = 0;
8875                         }
8876                         endoutchain = NULL;
8877                         auth = NULL;
8878                         auth_offset = 0;
8879                         if (!no_out_cnt) {
8880                                 *num_out += (ctl_cnt + bundle_at);
8881                         }
8882                         if (bundle_at) {
8883                                 /* setup for a RTO measurement */
8884                                 tsns_sent = data_list[0]->rec.data.TSN_seq;
8885                                 /* fill time if not already filled */
8886                                 if (*now_filled == 0) {
8887                                         (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8888                                         *now_filled = 1;
8889                                         *now = asoc->time_last_sent;
8890                                 } else {
8891                                         asoc->time_last_sent = *now;
8892                                 }
8893                                 if (net->rto_needed) {
8894                                         data_list[0]->do_rtt = 1;
8895                                         net->rto_needed = 0;
8896                                 }
8897                                 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8898                                 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8899                         }
8900                         if (one_chunk) {
8901                                 break;
8902                         }
8903                 }
8904                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8905                         sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8906                 }
8907         }
8908         if (old_start_at == NULL) {
8909                 old_start_at = start_at;
8910                 start_at = TAILQ_FIRST(&asoc->nets);
8911                 if (old_start_at)
8912                         goto again_one_more_time;
8913         }
8914         /*
8915          * At the end there should be no NON timed chunks hanging on this
8916          * queue.
8917          */
8918         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8919                 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8920         }
8921         if ((*num_out == 0) && (*reason_code == 0)) {
8922                 *reason_code = 4;
8923         } else {
8924                 *reason_code = 5;
8925         }
8926         sctp_clean_up_ctl(stcb, asoc, so_locked);
8927         return (0);
8928 }
8929
8930 void
8931 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8932 {
8933         /*-
8934          * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8935          * the control chunk queue.
8936          */
8937         struct sctp_chunkhdr *hdr;
8938         struct sctp_tmit_chunk *chk;
8939         struct mbuf *mat, *last_mbuf;
8940         uint32_t chunk_length;
8941         uint16_t padding_length;
8942
8943         SCTP_TCB_LOCK_ASSERT(stcb);
8944         SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT);
8945         if (op_err == NULL) {
8946                 return;
8947         }
8948         last_mbuf = NULL;
8949         chunk_length = 0;
8950         for (mat = op_err; mat != NULL; mat = SCTP_BUF_NEXT(mat)) {
8951                 chunk_length += SCTP_BUF_LEN(mat);
8952                 if (SCTP_BUF_NEXT(mat) == NULL) {
8953                         last_mbuf = mat;
8954                 }
8955         }
8956         if (chunk_length > SCTP_MAX_CHUNK_LENGTH) {
8957                 sctp_m_freem(op_err);
8958                 return;
8959         }
8960         padding_length = chunk_length % 4;
8961         if (padding_length != 0) {
8962                 padding_length = 4 - padding_length;
8963         }
8964         if (padding_length != 0) {
8965                 if (sctp_add_pad_tombuf(last_mbuf, padding_length) == NULL) {
8966                         sctp_m_freem(op_err);
8967                         return;
8968                 }
8969         }
8970         sctp_alloc_a_chunk(stcb, chk);
8971         if (chk == NULL) {
8972                 /* no memory */
8973                 sctp_m_freem(op_err);
8974                 return;
8975         }
8976         chk->copy_by_ref = 0;
8977         chk->send_size = (uint16_t) chunk_length;
8978         chk->sent = SCTP_DATAGRAM_UNSENT;
8979         chk->snd_count = 0;
8980         chk->asoc = &stcb->asoc;
8981         chk->data = op_err;
8982         chk->whoTo = NULL;
8983         chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8984         chk->rec.chunk_id.can_take_data = 0;
8985         hdr = mtod(op_err, struct sctp_chunkhdr *);
8986         hdr->chunk_type = SCTP_OPERATION_ERROR;
8987         hdr->chunk_flags = 0;
8988         hdr->chunk_length = htons(chk->send_size);
8989         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8990         chk->asoc->ctrl_queue_cnt++;
8991 }
8992
8993 int
8994 sctp_send_cookie_echo(struct mbuf *m,
8995     int offset,
8996     struct sctp_tcb *stcb,
8997     struct sctp_nets *net)
8998 {
8999         /*-
9000          * pull out the cookie and put it at the front of the control chunk
9001          * queue.
9002          */
9003         int at;
9004         struct mbuf *cookie;
9005         struct sctp_paramhdr parm, *phdr;
9006         struct sctp_chunkhdr *hdr;
9007         struct sctp_tmit_chunk *chk;
9008         uint16_t ptype, plen;
9009
9010         SCTP_TCB_LOCK_ASSERT(stcb);
9011         /* First find the cookie in the param area */
9012         cookie = NULL;
9013         at = offset + sizeof(struct sctp_init_chunk);
9014         for (;;) {
9015                 phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
9016                 if (phdr == NULL) {
9017                         return (-3);
9018                 }
9019                 ptype = ntohs(phdr->param_type);
9020                 plen = ntohs(phdr->param_length);
9021                 if (ptype == SCTP_STATE_COOKIE) {
9022                         int pad;
9023
9024                         /* found the cookie */
9025                         if ((pad = (plen % 4))) {
9026                                 plen += 4 - pad;
9027                         }
9028                         cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT);
9029                         if (cookie == NULL) {
9030                                 /* No memory */
9031                                 return (-2);
9032                         }
9033 #ifdef SCTP_MBUF_LOGGING
9034                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9035                                 sctp_log_mbc(cookie, SCTP_MBUF_ICOPY);
9036                         }
9037 #endif
9038                         break;
9039                 }
9040                 at += SCTP_SIZE32(plen);
9041         }
9042         /* ok, we got the cookie lets change it into a cookie echo chunk */
9043         /* first the change from param to cookie */
9044         hdr = mtod(cookie, struct sctp_chunkhdr *);
9045         hdr->chunk_type = SCTP_COOKIE_ECHO;
9046         hdr->chunk_flags = 0;
9047         /* get the chunk stuff now and place it in the FRONT of the queue */
9048         sctp_alloc_a_chunk(stcb, chk);
9049         if (chk == NULL) {
9050                 /* no memory */
9051                 sctp_m_freem(cookie);
9052                 return (-5);
9053         }
9054         chk->copy_by_ref = 0;
9055         chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
9056         chk->rec.chunk_id.can_take_data = 0;
9057         chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9058         chk->send_size = plen;
9059         chk->sent = SCTP_DATAGRAM_UNSENT;
9060         chk->snd_count = 0;
9061         chk->asoc = &stcb->asoc;
9062         chk->data = cookie;
9063         chk->whoTo = net;
9064         atomic_add_int(&chk->whoTo->ref_count, 1);
9065         TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
9066         chk->asoc->ctrl_queue_cnt++;
9067         return (0);
9068 }
9069
9070 void
9071 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
9072     struct mbuf *m,
9073     int offset,
9074     int chk_length,
9075     struct sctp_nets *net)
9076 {
9077         /*
9078          * take a HB request and make it into a HB ack and send it.
9079          */
9080         struct mbuf *outchain;
9081         struct sctp_chunkhdr *chdr;
9082         struct sctp_tmit_chunk *chk;
9083
9084
9085         if (net == NULL)
9086                 /* must have a net pointer */
9087                 return;
9088
9089         outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT);
9090         if (outchain == NULL) {
9091                 /* gak out of memory */
9092                 return;
9093         }
9094 #ifdef SCTP_MBUF_LOGGING
9095         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9096                 sctp_log_mbc(outchain, SCTP_MBUF_ICOPY);
9097         }
9098 #endif
9099         chdr = mtod(outchain, struct sctp_chunkhdr *);
9100         chdr->chunk_type = SCTP_HEARTBEAT_ACK;
9101         chdr->chunk_flags = 0;
9102         if (chk_length % 4) {
9103                 /* need pad */
9104                 uint32_t cpthis = 0;
9105                 int padlen;
9106
9107                 padlen = 4 - (chk_length % 4);
9108                 m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
9109         }
9110         sctp_alloc_a_chunk(stcb, chk);
9111         if (chk == NULL) {
9112                 /* no memory */
9113                 sctp_m_freem(outchain);
9114                 return;
9115         }
9116         chk->copy_by_ref = 0;
9117         chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
9118         chk->rec.chunk_id.can_take_data = 1;
9119         chk->flags = 0;
9120         chk->send_size = chk_length;
9121         chk->sent = SCTP_DATAGRAM_UNSENT;
9122         chk->snd_count = 0;
9123         chk->asoc = &stcb->asoc;
9124         chk->data = outchain;
9125         chk->whoTo = net;
9126         atomic_add_int(&chk->whoTo->ref_count, 1);
9127         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9128         chk->asoc->ctrl_queue_cnt++;
9129 }
9130
9131 void
9132 sctp_send_cookie_ack(struct sctp_tcb *stcb)
9133 {
9134         /* formulate and queue a cookie-ack back to sender */
9135         struct mbuf *cookie_ack;
9136         struct sctp_chunkhdr *hdr;
9137         struct sctp_tmit_chunk *chk;
9138
9139         SCTP_TCB_LOCK_ASSERT(stcb);
9140
9141         cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
9142         if (cookie_ack == NULL) {
9143                 /* no mbuf's */
9144                 return;
9145         }
9146         SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
9147         sctp_alloc_a_chunk(stcb, chk);
9148         if (chk == NULL) {
9149                 /* no memory */
9150                 sctp_m_freem(cookie_ack);
9151                 return;
9152         }
9153         chk->copy_by_ref = 0;
9154         chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
9155         chk->rec.chunk_id.can_take_data = 1;
9156         chk->flags = 0;
9157         chk->send_size = sizeof(struct sctp_chunkhdr);
9158         chk->sent = SCTP_DATAGRAM_UNSENT;
9159         chk->snd_count = 0;
9160         chk->asoc = &stcb->asoc;
9161         chk->data = cookie_ack;
9162         if (chk->asoc->last_control_chunk_from != NULL) {
9163                 chk->whoTo = chk->asoc->last_control_chunk_from;
9164                 atomic_add_int(&chk->whoTo->ref_count, 1);
9165         } else {
9166                 chk->whoTo = NULL;
9167         }
9168         hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
9169         hdr->chunk_type = SCTP_COOKIE_ACK;
9170         hdr->chunk_flags = 0;
9171         hdr->chunk_length = htons(chk->send_size);
9172         SCTP_BUF_LEN(cookie_ack) = chk->send_size;
9173         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9174         chk->asoc->ctrl_queue_cnt++;
9175         return;
9176 }
9177
9178
9179 void
9180 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
9181 {
9182         /* formulate and queue a SHUTDOWN-ACK back to the sender */
9183         struct mbuf *m_shutdown_ack;
9184         struct sctp_shutdown_ack_chunk *ack_cp;
9185         struct sctp_tmit_chunk *chk;
9186
9187         m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9188         if (m_shutdown_ack == NULL) {
9189                 /* no mbuf's */
9190                 return;
9191         }
9192         SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9193         sctp_alloc_a_chunk(stcb, chk);
9194         if (chk == NULL) {
9195                 /* no memory */
9196                 sctp_m_freem(m_shutdown_ack);
9197                 return;
9198         }
9199         chk->copy_by_ref = 0;
9200         chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9201         chk->rec.chunk_id.can_take_data = 1;
9202         chk->flags = 0;
9203         chk->send_size = sizeof(struct sctp_chunkhdr);
9204         chk->sent = SCTP_DATAGRAM_UNSENT;
9205         chk->snd_count = 0;
9206         chk->flags = 0;
9207         chk->asoc = &stcb->asoc;
9208         chk->data = m_shutdown_ack;
9209         chk->whoTo = net;
9210         if (chk->whoTo) {
9211                 atomic_add_int(&chk->whoTo->ref_count, 1);
9212         }
9213         ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9214         ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9215         ack_cp->ch.chunk_flags = 0;
9216         ack_cp->ch.chunk_length = htons(chk->send_size);
9217         SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9218         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9219         chk->asoc->ctrl_queue_cnt++;
9220         return;
9221 }
9222
9223 void
9224 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9225 {
9226         /* formulate and queue a SHUTDOWN to the sender */
9227         struct mbuf *m_shutdown;
9228         struct sctp_shutdown_chunk *shutdown_cp;
9229         struct sctp_tmit_chunk *chk;
9230
9231         m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9232         if (m_shutdown == NULL) {
9233                 /* no mbuf's */
9234                 return;
9235         }
9236         SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9237         sctp_alloc_a_chunk(stcb, chk);
9238         if (chk == NULL) {
9239                 /* no memory */
9240                 sctp_m_freem(m_shutdown);
9241                 return;
9242         }
9243         chk->copy_by_ref = 0;
9244         chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9245         chk->rec.chunk_id.can_take_data = 1;
9246         chk->flags = 0;
9247         chk->send_size = sizeof(struct sctp_shutdown_chunk);
9248         chk->sent = SCTP_DATAGRAM_UNSENT;
9249         chk->snd_count = 0;
9250         chk->flags = 0;
9251         chk->asoc = &stcb->asoc;
9252         chk->data = m_shutdown;
9253         chk->whoTo = net;
9254         if (chk->whoTo) {
9255                 atomic_add_int(&chk->whoTo->ref_count, 1);
9256         }
9257         shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9258         shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9259         shutdown_cp->ch.chunk_flags = 0;
9260         shutdown_cp->ch.chunk_length = htons(chk->send_size);
9261         shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9262         SCTP_BUF_LEN(m_shutdown) = chk->send_size;
9263         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9264         chk->asoc->ctrl_queue_cnt++;
9265         return;
9266 }
9267
9268 void
9269 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9270 {
9271         /*
9272          * formulate and queue an ASCONF to the peer. ASCONF parameters
9273          * should be queued on the assoc queue.
9274          */
9275         struct sctp_tmit_chunk *chk;
9276         struct mbuf *m_asconf;
9277         int len;
9278
9279         SCTP_TCB_LOCK_ASSERT(stcb);
9280
9281         if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9282             (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9283                 /* can't send a new one if there is one in flight already */
9284                 return;
9285         }
9286         /* compose an ASCONF chunk, maximum length is PMTU */
9287         m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9288         if (m_asconf == NULL) {
9289                 return;
9290         }
9291         sctp_alloc_a_chunk(stcb, chk);
9292         if (chk == NULL) {
9293                 /* no memory */
9294                 sctp_m_freem(m_asconf);
9295                 return;
9296         }
9297         chk->copy_by_ref = 0;
9298         chk->rec.chunk_id.id = SCTP_ASCONF;
9299         chk->rec.chunk_id.can_take_data = 0;
9300         chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9301         chk->data = m_asconf;
9302         chk->send_size = len;
9303         chk->sent = SCTP_DATAGRAM_UNSENT;
9304         chk->snd_count = 0;
9305         chk->asoc = &stcb->asoc;
9306         chk->whoTo = net;
9307         if (chk->whoTo) {
9308                 atomic_add_int(&chk->whoTo->ref_count, 1);
9309         }
9310         TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9311         chk->asoc->ctrl_queue_cnt++;
9312         return;
9313 }
9314
9315 void
9316 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9317 {
9318         /*
9319          * formulate and queue a asconf-ack back to sender. the asconf-ack
9320          * must be stored in the tcb.
9321          */
9322         struct sctp_tmit_chunk *chk;
9323         struct sctp_asconf_ack *ack, *latest_ack;
9324         struct mbuf *m_ack;
9325         struct sctp_nets *net = NULL;
9326
9327         SCTP_TCB_LOCK_ASSERT(stcb);
9328         /* Get the latest ASCONF-ACK */
9329         latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9330         if (latest_ack == NULL) {
9331                 return;
9332         }
9333         if (latest_ack->last_sent_to != NULL &&
9334             latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9335                 /* we're doing a retransmission */
9336                 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9337                 if (net == NULL) {
9338                         /* no alternate */
9339                         if (stcb->asoc.last_control_chunk_from == NULL) {
9340                                 if (stcb->asoc.alternate) {
9341                                         net = stcb->asoc.alternate;
9342                                 } else {
9343                                         net = stcb->asoc.primary_destination;
9344                                 }
9345                         } else {
9346                                 net = stcb->asoc.last_control_chunk_from;
9347                         }
9348                 }
9349         } else {
9350                 /* normal case */
9351                 if (stcb->asoc.last_control_chunk_from == NULL) {
9352                         if (stcb->asoc.alternate) {
9353                                 net = stcb->asoc.alternate;
9354                         } else {
9355                                 net = stcb->asoc.primary_destination;
9356                         }
9357                 } else {
9358                         net = stcb->asoc.last_control_chunk_from;
9359                 }
9360         }
9361         latest_ack->last_sent_to = net;
9362
9363         TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9364                 if (ack->data == NULL) {
9365                         continue;
9366                 }
9367                 /* copy the asconf_ack */
9368                 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9369                 if (m_ack == NULL) {
9370                         /* couldn't copy it */
9371                         return;
9372                 }
9373 #ifdef SCTP_MBUF_LOGGING
9374                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9375                         sctp_log_mbc(m_ack, SCTP_MBUF_ICOPY);
9376                 }
9377 #endif
9378
9379                 sctp_alloc_a_chunk(stcb, chk);
9380                 if (chk == NULL) {
9381                         /* no memory */
9382                         if (m_ack)
9383                                 sctp_m_freem(m_ack);
9384                         return;
9385                 }
9386                 chk->copy_by_ref = 0;
9387                 chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9388                 chk->rec.chunk_id.can_take_data = 1;
9389                 chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9390                 chk->whoTo = net;
9391                 if (chk->whoTo) {
9392                         atomic_add_int(&chk->whoTo->ref_count, 1);
9393                 }
9394                 chk->data = m_ack;
9395                 chk->send_size = ack->len;
9396                 chk->sent = SCTP_DATAGRAM_UNSENT;
9397                 chk->snd_count = 0;
9398                 chk->asoc = &stcb->asoc;
9399
9400                 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9401                 chk->asoc->ctrl_queue_cnt++;
9402         }
9403         return;
9404 }
9405
9406
9407 static int
9408 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9409     struct sctp_tcb *stcb,
9410     struct sctp_association *asoc,
9411     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
9412 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9413     SCTP_UNUSED
9414 #endif
9415 )
9416 {
9417         /*-
9418          * send out one MTU of retransmission. If fast_retransmit is
9419          * happening we ignore the cwnd. Otherwise we obey the cwnd and
9420          * rwnd. For a Cookie or Asconf in the control chunk queue we
9421          * retransmit them by themselves.
9422          *
9423          * For data chunks we will pick out the lowest TSN's in the sent_queue
9424          * marked for resend and bundle them all together (up to a MTU of
9425          * destination). The address to send to should have been
9426          * selected/changed where the retransmission was marked (i.e. in FR
9427          * or t3-timeout routines).
9428          */
9429         struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9430         struct sctp_tmit_chunk *chk, *fwd;
9431         struct mbuf *m, *endofchain;
9432         struct sctp_nets *net = NULL;
9433         uint32_t tsns_sent = 0;
9434         int no_fragmentflg, bundle_at, cnt_thru;
9435         unsigned int mtu;
9436         int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9437         struct sctp_auth_chunk *auth = NULL;
9438         uint32_t auth_offset = 0;
9439         uint16_t auth_keyid;
9440         int override_ok = 1;
9441         int data_auth_reqd = 0;
9442         uint32_t dmtu = 0;
9443
9444         SCTP_TCB_LOCK_ASSERT(stcb);
9445         tmr_started = ctl_cnt = bundle_at = error = 0;
9446         no_fragmentflg = 1;
9447         fwd_tsn = 0;
9448         *cnt_out = 0;
9449         fwd = NULL;
9450         endofchain = m = NULL;
9451         auth_keyid = stcb->asoc.authinfo.active_keyid;
9452 #ifdef SCTP_AUDITING_ENABLED
9453         sctp_audit_log(0xC3, 1);
9454 #endif
9455         if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9456             (TAILQ_EMPTY(&asoc->control_send_queue))) {
9457                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9458                     asoc->sent_queue_retran_cnt);
9459                 asoc->sent_queue_cnt = 0;
9460                 asoc->sent_queue_cnt_removeable = 0;
9461                 /* send back 0/0 so we enter normal transmission */
9462                 *cnt_out = 0;
9463                 return (0);
9464         }
9465         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9466                 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9467                     (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9468                     (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9469                         if (chk->sent != SCTP_DATAGRAM_RESEND) {
9470                                 continue;
9471                         }
9472                         if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9473                                 if (chk != asoc->str_reset) {
9474                                         /*
9475                                          * not eligible for retran if its
9476                                          * not ours
9477                                          */
9478                                         continue;
9479                                 }
9480                         }
9481                         ctl_cnt++;
9482                         if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9483                                 fwd_tsn = 1;
9484                         }
9485                         /*
9486                          * Add an AUTH chunk, if chunk requires it save the
9487                          * offset into the chain for AUTH
9488                          */
9489                         if ((auth == NULL) &&
9490                             (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9491                             stcb->asoc.peer_auth_chunks))) {
9492                                 m = sctp_add_auth_chunk(m, &endofchain,
9493                                     &auth, &auth_offset,
9494                                     stcb,
9495                                     chk->rec.chunk_id.id);
9496                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9497                         }
9498                         m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9499                         break;
9500                 }
9501         }
9502         one_chunk = 0;
9503         cnt_thru = 0;
9504         /* do we have control chunks to retransmit? */
9505         if (m != NULL) {
9506                 /* Start a timer no matter if we succeed or fail */
9507                 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9508                         sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9509                 } else if (chk->rec.chunk_id.id == SCTP_ASCONF)
9510                         sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9511                 chk->snd_count++;       /* update our count */
9512                 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9513                     (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9514                     auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9515                     no_fragmentflg, 0, 0,
9516                     inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9517                     chk->whoTo->port, NULL,
9518                     0, 0,
9519                     so_locked))) {
9520                         SCTP_STAT_INCR(sctps_lowlevelerr);
9521                         return (error);
9522                 }
9523                 endofchain = NULL;
9524                 auth = NULL;
9525                 auth_offset = 0;
9526                 /*
9527                  * We don't want to mark the net->sent time here since this
9528                  * we use this for HB and retrans cannot measure RTT
9529                  */
9530                 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9531                 *cnt_out += 1;
9532                 chk->sent = SCTP_DATAGRAM_SENT;
9533                 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9534                 if (fwd_tsn == 0) {
9535                         return (0);
9536                 } else {
9537                         /* Clean up the fwd-tsn list */
9538                         sctp_clean_up_ctl(stcb, asoc, so_locked);
9539                         return (0);
9540                 }
9541         }
9542         /*
9543          * Ok, it is just data retransmission we need to do or that and a
9544          * fwd-tsn with it all.
9545          */
9546         if (TAILQ_EMPTY(&asoc->sent_queue)) {
9547                 return (SCTP_RETRAN_DONE);
9548         }
9549         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
9550             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
9551                 /* not yet open, resend the cookie and that is it */
9552                 return (1);
9553         }
9554 #ifdef SCTP_AUDITING_ENABLED
9555         sctp_auditing(20, inp, stcb, NULL);
9556 #endif
9557         data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9558         TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9559                 if (chk->sent != SCTP_DATAGRAM_RESEND) {
9560                         /* No, not sent to this net or not ready for rtx */
9561                         continue;
9562                 }
9563                 if (chk->data == NULL) {
9564                         SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9565                             chk->rec.data.TSN_seq, chk->snd_count, chk->sent);
9566                         continue;
9567                 }
9568                 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9569                     (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9570                         struct mbuf *op_err;
9571                         char msg[SCTP_DIAG_INFO_LEN];
9572
9573                         snprintf(msg, sizeof(msg), "TSN %8.8x retransmitted %d times, giving up",
9574                             chk->rec.data.TSN_seq, chk->snd_count);
9575                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
9576                             msg);
9577                         atomic_add_int(&stcb->asoc.refcnt, 1);
9578                         sctp_abort_an_association(stcb->sctp_ep, stcb, op_err,
9579                             so_locked);
9580                         SCTP_TCB_LOCK(stcb);
9581                         atomic_subtract_int(&stcb->asoc.refcnt, 1);
9582                         return (SCTP_RETRAN_EXIT);
9583                 }
9584                 /* pick up the net */
9585                 net = chk->whoTo;
9586                 switch (net->ro._l_addr.sa.sa_family) {
9587 #ifdef INET
9588                 case AF_INET:
9589                         mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9590                         break;
9591 #endif
9592 #ifdef INET6
9593                 case AF_INET6:
9594                         mtu = net->mtu - SCTP_MIN_OVERHEAD;
9595                         break;
9596 #endif
9597                 default:
9598                         /* TSNH */
9599                         mtu = net->mtu;
9600                         break;
9601                 }
9602
9603                 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9604                         /* No room in peers rwnd */
9605                         uint32_t tsn;
9606
9607                         tsn = asoc->last_acked_seq + 1;
9608                         if (tsn == chk->rec.data.TSN_seq) {
9609                                 /*
9610                                  * we make a special exception for this
9611                                  * case. The peer has no rwnd but is missing
9612                                  * the lowest chunk.. which is probably what
9613                                  * is holding up the rwnd.
9614                                  */
9615                                 goto one_chunk_around;
9616                         }
9617                         return (1);
9618                 }
9619 one_chunk_around:
9620                 if (asoc->peers_rwnd < mtu) {
9621                         one_chunk = 1;
9622                         if ((asoc->peers_rwnd == 0) &&
9623                             (asoc->total_flight == 0)) {
9624                                 chk->window_probe = 1;
9625                                 chk->whoTo->window_probe = 1;
9626                         }
9627                 }
9628 #ifdef SCTP_AUDITING_ENABLED
9629                 sctp_audit_log(0xC3, 2);
9630 #endif
9631                 bundle_at = 0;
9632                 m = NULL;
9633                 net->fast_retran_ip = 0;
9634                 if (chk->rec.data.doing_fast_retransmit == 0) {
9635                         /*
9636                          * if no FR in progress skip destination that have
9637                          * flight_size > cwnd.
9638                          */
9639                         if (net->flight_size >= net->cwnd) {
9640                                 continue;
9641                         }
9642                 } else {
9643                         /*
9644                          * Mark the destination net to have FR recovery
9645                          * limits put on it.
9646                          */
9647                         *fr_done = 1;
9648                         net->fast_retran_ip = 1;
9649                 }
9650
9651                 /*
9652                  * if no AUTH is yet included and this chunk requires it,
9653                  * make sure to account for it.  We don't apply the size
9654                  * until the AUTH chunk is actually added below in case
9655                  * there is no room for this chunk.
9656                  */
9657                 if (data_auth_reqd && (auth == NULL)) {
9658                         dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9659                 } else
9660                         dmtu = 0;
9661
9662                 if ((chk->send_size <= (mtu - dmtu)) ||
9663                     (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9664                         /* ok we will add this one */
9665                         if (data_auth_reqd) {
9666                                 if (auth == NULL) {
9667                                         m = sctp_add_auth_chunk(m,
9668                                             &endofchain,
9669                                             &auth,
9670                                             &auth_offset,
9671                                             stcb,
9672                                             SCTP_DATA);
9673                                         auth_keyid = chk->auth_keyid;
9674                                         override_ok = 0;
9675                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9676                                 } else if (override_ok) {
9677                                         auth_keyid = chk->auth_keyid;
9678                                         override_ok = 0;
9679                                 } else if (chk->auth_keyid != auth_keyid) {
9680                                         /* different keyid, so done bundling */
9681                                         break;
9682                                 }
9683                         }
9684                         m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9685                         if (m == NULL) {
9686                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9687                                 return (ENOMEM);
9688                         }
9689                         /* Do clear IP_DF ? */
9690                         if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9691                                 no_fragmentflg = 0;
9692                         }
9693                         /* upate our MTU size */
9694                         if (mtu > (chk->send_size + dmtu))
9695                                 mtu -= (chk->send_size + dmtu);
9696                         else
9697                                 mtu = 0;
9698                         data_list[bundle_at++] = chk;
9699                         if (one_chunk && (asoc->total_flight <= 0)) {
9700                                 SCTP_STAT_INCR(sctps_windowprobed);
9701                         }
9702                 }
9703                 if (one_chunk == 0) {
9704                         /*
9705                          * now are there anymore forward from chk to pick
9706                          * up?
9707                          */
9708                         for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9709                                 if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9710                                         /* Nope, not for retran */
9711                                         continue;
9712                                 }
9713                                 if (fwd->whoTo != net) {
9714                                         /* Nope, not the net in question */
9715                                         continue;
9716                                 }
9717                                 if (data_auth_reqd && (auth == NULL)) {
9718                                         dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9719                                 } else
9720                                         dmtu = 0;
9721                                 if (fwd->send_size <= (mtu - dmtu)) {
9722                                         if (data_auth_reqd) {
9723                                                 if (auth == NULL) {
9724                                                         m = sctp_add_auth_chunk(m,
9725                                                             &endofchain,
9726                                                             &auth,
9727                                                             &auth_offset,
9728                                                             stcb,
9729                                                             SCTP_DATA);
9730                                                         auth_keyid = fwd->auth_keyid;
9731                                                         override_ok = 0;
9732                                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9733                                                 } else if (override_ok) {
9734                                                         auth_keyid = fwd->auth_keyid;
9735                                                         override_ok = 0;
9736                                                 } else if (fwd->auth_keyid != auth_keyid) {
9737                                                         /*
9738                                                          * different keyid,
9739                                                          * so done bundling
9740                                                          */
9741                                                         break;
9742                                                 }
9743                                         }
9744                                         m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9745                                         if (m == NULL) {
9746                                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9747                                                 return (ENOMEM);
9748                                         }
9749                                         /* Do clear IP_DF ? */
9750                                         if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9751                                                 no_fragmentflg = 0;
9752                                         }
9753                                         /* upate our MTU size */
9754                                         if (mtu > (fwd->send_size + dmtu))
9755                                                 mtu -= (fwd->send_size + dmtu);
9756                                         else
9757                                                 mtu = 0;
9758                                         data_list[bundle_at++] = fwd;
9759                                         if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9760                                                 break;
9761                                         }
9762                                 } else {
9763                                         /* can't fit so we are done */
9764                                         break;
9765                                 }
9766                         }
9767                 }
9768                 /* Is there something to send for this destination? */
9769                 if (m) {
9770                         /*
9771                          * No matter if we fail/or succeed we should start a
9772                          * timer. A failure is like a lost IP packet :-)
9773                          */
9774                         if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9775                                 /*
9776                                  * no timer running on this destination
9777                                  * restart it.
9778                                  */
9779                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9780                                 tmr_started = 1;
9781                         }
9782                         /* Now lets send it, if there is anything to send :> */
9783                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9784                             (struct sockaddr *)&net->ro._l_addr, m,
9785                             auth_offset, auth, auth_keyid,
9786                             no_fragmentflg, 0, 0,
9787                             inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9788                             net->port, NULL,
9789                             0, 0,
9790                             so_locked))) {
9791                                 /* error, we could not output */
9792                                 SCTP_STAT_INCR(sctps_lowlevelerr);
9793                                 return (error);
9794                         }
9795                         endofchain = NULL;
9796                         auth = NULL;
9797                         auth_offset = 0;
9798                         /* For HB's */
9799                         /*
9800                          * We don't want to mark the net->sent time here
9801                          * since this we use this for HB and retrans cannot
9802                          * measure RTT
9803                          */
9804                         /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9805
9806                         /* For auto-close */
9807                         cnt_thru++;
9808                         if (*now_filled == 0) {
9809                                 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9810                                 *now = asoc->time_last_sent;
9811                                 *now_filled = 1;
9812                         } else {
9813                                 asoc->time_last_sent = *now;
9814                         }
9815                         *cnt_out += bundle_at;
9816 #ifdef SCTP_AUDITING_ENABLED
9817                         sctp_audit_log(0xC4, bundle_at);
9818 #endif
9819                         if (bundle_at) {
9820                                 tsns_sent = data_list[0]->rec.data.TSN_seq;
9821                         }
9822                         for (i = 0; i < bundle_at; i++) {
9823                                 SCTP_STAT_INCR(sctps_sendretransdata);
9824                                 data_list[i]->sent = SCTP_DATAGRAM_SENT;
9825                                 /*
9826                                  * When we have a revoked data, and we
9827                                  * retransmit it, then we clear the revoked
9828                                  * flag since this flag dictates if we
9829                                  * subtracted from the fs
9830                                  */
9831                                 if (data_list[i]->rec.data.chunk_was_revoked) {
9832                                         /* Deflate the cwnd */
9833                                         data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9834                                         data_list[i]->rec.data.chunk_was_revoked = 0;
9835                                 }
9836                                 data_list[i]->snd_count++;
9837                                 sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9838                                 /* record the time */
9839                                 data_list[i]->sent_rcv_time = asoc->time_last_sent;
9840                                 if (data_list[i]->book_size_scale) {
9841                                         /*
9842                                          * need to double the book size on
9843                                          * this one
9844                                          */
9845                                         data_list[i]->book_size_scale = 0;
9846                                         /*
9847                                          * Since we double the booksize, we
9848                                          * must also double the output queue
9849                                          * size, since this get shrunk when
9850                                          * we free by this amount.
9851                                          */
9852                                         atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9853                                         data_list[i]->book_size *= 2;
9854
9855
9856                                 } else {
9857                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9858                                                 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9859                                                     asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9860                                         }
9861                                         asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9862                                             (uint32_t) (data_list[i]->send_size +
9863                                             SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9864                                 }
9865                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9866                                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9867                                             data_list[i]->whoTo->flight_size,
9868                                             data_list[i]->book_size,
9869                                             (uint32_t) (uintptr_t) data_list[i]->whoTo,
9870                                             data_list[i]->rec.data.TSN_seq);
9871                                 }
9872                                 sctp_flight_size_increase(data_list[i]);
9873                                 sctp_total_flight_increase(stcb, data_list[i]);
9874                                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9875                                         /* SWS sender side engages */
9876                                         asoc->peers_rwnd = 0;
9877                                 }
9878                                 if ((i == 0) &&
9879                                     (data_list[i]->rec.data.doing_fast_retransmit)) {
9880                                         SCTP_STAT_INCR(sctps_sendfastretrans);
9881                                         if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9882                                             (tmr_started == 0)) {
9883                                                 /*-
9884                                                  * ok we just fast-retrans'd
9885                                                  * the lowest TSN, i.e the
9886                                                  * first on the list. In
9887                                                  * this case we want to give
9888                                                  * some more time to get a
9889                                                  * SACK back without a
9890                                                  * t3-expiring.
9891                                                  */
9892                                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9893                                                     SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2);
9894                                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9895                                         }
9896                                 }
9897                         }
9898                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9899                                 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9900                         }
9901 #ifdef SCTP_AUDITING_ENABLED
9902                         sctp_auditing(21, inp, stcb, NULL);
9903 #endif
9904                 } else {
9905                         /* None will fit */
9906                         return (1);
9907                 }
9908                 if (asoc->sent_queue_retran_cnt <= 0) {
9909                         /* all done we have no more to retran */
9910                         asoc->sent_queue_retran_cnt = 0;
9911                         break;
9912                 }
9913                 if (one_chunk) {
9914                         /* No more room in rwnd */
9915                         return (1);
9916                 }
9917                 /* stop the for loop here. we sent out a packet */
9918                 break;
9919         }
9920         return (0);
9921 }
9922
9923 static void
9924 sctp_timer_validation(struct sctp_inpcb *inp,
9925     struct sctp_tcb *stcb,
9926     struct sctp_association *asoc)
9927 {
9928         struct sctp_nets *net;
9929
9930         /* Validate that a timer is running somewhere */
9931         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9932                 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9933                         /* Here is a timer */
9934                         return;
9935                 }
9936         }
9937         SCTP_TCB_LOCK_ASSERT(stcb);
9938         /* Gak, we did not have a timer somewhere */
9939         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
9940         if (asoc->alternate) {
9941                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
9942         } else {
9943                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
9944         }
9945         return;
9946 }
9947
9948 void
9949 sctp_chunk_output(struct sctp_inpcb *inp,
9950     struct sctp_tcb *stcb,
9951     int from_where,
9952     int so_locked
9953 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9954     SCTP_UNUSED
9955 #endif
9956 )
9957 {
9958         /*-
9959          * Ok this is the generic chunk service queue. we must do the
9960          * following:
9961          * - See if there are retransmits pending, if so we must
9962          *   do these first.
9963          * - Service the stream queue that is next, moving any
9964          *   message (note I must get a complete message i.e.
9965          *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
9966          *   TSN's
9967          * - Check to see if the cwnd/rwnd allows any output, if so we
9968          *   go ahead and fomulate and send the low level chunks. Making sure
9969          *   to combine any control in the control chunk queue also.
9970          */
9971         struct sctp_association *asoc;
9972         struct sctp_nets *net;
9973         int error = 0, num_out, tot_out = 0, ret = 0, reason_code;
9974         unsigned int burst_cnt = 0;
9975         struct timeval now;
9976         int now_filled = 0;
9977         int nagle_on;
9978         int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
9979         int un_sent = 0;
9980         int fr_done;
9981         unsigned int tot_frs = 0;
9982
9983         asoc = &stcb->asoc;
9984 do_it_again:
9985         /* The Nagle algorithm is only applied when handling a send call. */
9986         if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
9987                 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
9988                         nagle_on = 0;
9989                 } else {
9990                         nagle_on = 1;
9991                 }
9992         } else {
9993                 nagle_on = 0;
9994         }
9995         SCTP_TCB_LOCK_ASSERT(stcb);
9996
9997         un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
9998
9999         if ((un_sent <= 0) &&
10000             (TAILQ_EMPTY(&asoc->control_send_queue)) &&
10001             (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
10002             (asoc->sent_queue_retran_cnt == 0) &&
10003             (asoc->trigger_reset == 0)) {
10004                 /* Nothing to do unless there is something to be sent left */
10005                 return;
10006         }
10007         /*
10008          * Do we have something to send, data or control AND a sack timer
10009          * running, if so piggy-back the sack.
10010          */
10011         if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
10012                 sctp_send_sack(stcb, so_locked);
10013                 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
10014         }
10015         while (asoc->sent_queue_retran_cnt) {
10016                 /*-
10017                  * Ok, it is retransmission time only, we send out only ONE
10018                  * packet with a single call off to the retran code.
10019                  */
10020                 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
10021                         /*-
10022                          * Special hook for handling cookiess discarded
10023                          * by peer that carried data. Send cookie-ack only
10024                          * and then the next call with get the retran's.
10025                          */
10026                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10027                             from_where,
10028                             &now, &now_filled, frag_point, so_locked);
10029                         return;
10030                 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
10031                         /* if its not from a HB then do it */
10032                         fr_done = 0;
10033                         ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
10034                         if (fr_done) {
10035                                 tot_frs++;
10036                         }
10037                 } else {
10038                         /*
10039                          * its from any other place, we don't allow retran
10040                          * output (only control)
10041                          */
10042                         ret = 1;
10043                 }
10044                 if (ret > 0) {
10045                         /* Can't send anymore */
10046                         /*-
10047                          * now lets push out control by calling med-level
10048                          * output once. this assures that we WILL send HB's
10049                          * if queued too.
10050                          */
10051                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
10052                             from_where,
10053                             &now, &now_filled, frag_point, so_locked);
10054 #ifdef SCTP_AUDITING_ENABLED
10055                         sctp_auditing(8, inp, stcb, NULL);
10056 #endif
10057                         sctp_timer_validation(inp, stcb, asoc);
10058                         return;
10059                 }
10060                 if (ret < 0) {
10061                         /*-
10062                          * The count was off.. retran is not happening so do
10063                          * the normal retransmission.
10064                          */
10065 #ifdef SCTP_AUDITING_ENABLED
10066                         sctp_auditing(9, inp, stcb, NULL);
10067 #endif
10068                         if (ret == SCTP_RETRAN_EXIT) {
10069                                 return;
10070                         }
10071                         break;
10072                 }
10073                 if (from_where == SCTP_OUTPUT_FROM_T3) {
10074                         /* Only one transmission allowed out of a timeout */
10075 #ifdef SCTP_AUDITING_ENABLED
10076                         sctp_auditing(10, inp, stcb, NULL);
10077 #endif
10078                         /* Push out any control */
10079                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
10080                             &now, &now_filled, frag_point, so_locked);
10081                         return;
10082                 }
10083                 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
10084                         /* Hit FR burst limit */
10085                         return;
10086                 }
10087                 if ((num_out == 0) && (ret == 0)) {
10088                         /* No more retrans to send */
10089                         break;
10090                 }
10091         }
10092 #ifdef SCTP_AUDITING_ENABLED
10093         sctp_auditing(12, inp, stcb, NULL);
10094 #endif
10095         /* Check for bad destinations, if they exist move chunks around. */
10096         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
10097                 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
10098                         /*-
10099                          * if possible move things off of this address we
10100                          * still may send below due to the dormant state but
10101                          * we try to find an alternate address to send to
10102                          * and if we have one we move all queued data on the
10103                          * out wheel to this alternate address.
10104                          */
10105                         if (net->ref_count > 1)
10106                                 sctp_move_chunks_from_net(stcb, net);
10107                 } else {
10108                         /*-
10109                          * if ((asoc->sat_network) || (net->addr_is_local))
10110                          * { burst_limit = asoc->max_burst *
10111                          * SCTP_SAT_NETWORK_BURST_INCR; }
10112                          */
10113                         if (asoc->max_burst > 0) {
10114                                 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
10115                                         if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
10116                                                 /*
10117                                                  * JRS - Use the congestion
10118                                                  * control given in the
10119                                                  * congestion control module
10120                                                  */
10121                                                 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
10122                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10123                                                         sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
10124                                                 }
10125                                                 SCTP_STAT_INCR(sctps_maxburstqueued);
10126                                         }
10127                                         net->fast_retran_ip = 0;
10128                                 } else {
10129                                         if (net->flight_size == 0) {
10130                                                 /*
10131                                                  * Should be decaying the
10132                                                  * cwnd here
10133                                                  */
10134                                                 ;
10135                                         }
10136                                 }
10137                         }
10138                 }
10139
10140         }
10141         burst_cnt = 0;
10142         do {
10143                 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
10144                     &reason_code, 0, from_where,
10145                     &now, &now_filled, frag_point, so_locked);
10146                 if (error) {
10147                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
10148                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10149                                 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
10150                         }
10151                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10152                                 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
10153                                 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
10154                         }
10155                         break;
10156                 }
10157                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
10158
10159                 tot_out += num_out;
10160                 burst_cnt++;
10161                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10162                         sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
10163                         if (num_out == 0) {
10164                                 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
10165                         }
10166                 }
10167                 if (nagle_on) {
10168                         /*
10169                          * When the Nagle algorithm is used, look at how
10170                          * much is unsent, then if its smaller than an MTU
10171                          * and we have data in flight we stop, except if we
10172                          * are handling a fragmented user message.
10173                          */
10174                         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
10175                             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
10176                         if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
10177                             (stcb->asoc.total_flight > 0)) {
10178 /*      &&                   sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {*/
10179                                 break;
10180                         }
10181                 }
10182                 if (TAILQ_EMPTY(&asoc->control_send_queue) &&
10183                     TAILQ_EMPTY(&asoc->send_queue) &&
10184                     sctp_is_there_unsent_data(stcb, so_locked) == 0) {
10185                         /* Nothing left to send */
10186                         break;
10187                 }
10188                 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10189                         /* Nothing left to send */
10190                         break;
10191                 }
10192         } while (num_out &&
10193             ((asoc->max_burst == 0) ||
10194             SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10195             (burst_cnt < asoc->max_burst)));
10196
10197         if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10198                 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10199                         SCTP_STAT_INCR(sctps_maxburstqueued);
10200                         asoc->burst_limit_applied = 1;
10201                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10202                                 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10203                         }
10204                 } else {
10205                         asoc->burst_limit_applied = 0;
10206                 }
10207         }
10208         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10209                 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10210         }
10211         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10212             tot_out);
10213
10214         /*-
10215          * Now we need to clean up the control chunk chain if a ECNE is on
10216          * it. It must be marked as UNSENT again so next call will continue
10217          * to send it until such time that we get a CWR, to remove it.
10218          */
10219         if (stcb->asoc.ecn_echo_cnt_onq)
10220                 sctp_fix_ecn_echo(asoc);
10221
10222         if (stcb->asoc.trigger_reset) {
10223                 if (sctp_send_stream_reset_out_if_possible(stcb, so_locked) == 0) {
10224                         goto do_it_again;
10225                 }
10226         }
10227         return;
10228 }
10229
10230
10231 int
10232 sctp_output(
10233     struct sctp_inpcb *inp,
10234     struct mbuf *m,
10235     struct sockaddr *addr,
10236     struct mbuf *control,
10237     struct thread *p,
10238     int flags)
10239 {
10240         if (inp == NULL) {
10241                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10242                 return (EINVAL);
10243         }
10244         if (inp->sctp_socket == NULL) {
10245                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10246                 return (EINVAL);
10247         }
10248         return (sctp_sosend(inp->sctp_socket,
10249             addr,
10250             (struct uio *)NULL,
10251             m,
10252             control,
10253             flags, p
10254             ));
10255 }
10256
10257 void
10258 send_forward_tsn(struct sctp_tcb *stcb,
10259     struct sctp_association *asoc)
10260 {
10261         struct sctp_tmit_chunk *chk, *at, *tp1, *last;
10262         struct sctp_forward_tsn_chunk *fwdtsn;
10263         struct sctp_strseq *strseq;
10264         struct sctp_strseq_mid *strseq_m;
10265         uint32_t advance_peer_ack_point;
10266         unsigned int cnt_of_space, i, ovh;
10267         unsigned int space_needed;
10268         unsigned int cnt_of_skipped = 0;
10269         int old;
10270
10271         if (asoc->idata_supported) {
10272                 old = 0;
10273         } else {
10274                 old = 1;
10275         }
10276         SCTP_TCB_LOCK_ASSERT(stcb);
10277         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10278                 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10279                         /* mark it to unsent */
10280                         chk->sent = SCTP_DATAGRAM_UNSENT;
10281                         chk->snd_count = 0;
10282                         /* Do we correct its output location? */
10283                         if (chk->whoTo) {
10284                                 sctp_free_remote_addr(chk->whoTo);
10285                                 chk->whoTo = NULL;
10286                         }
10287                         goto sctp_fill_in_rest;
10288                 }
10289         }
10290         /* Ok if we reach here we must build one */
10291         sctp_alloc_a_chunk(stcb, chk);
10292         if (chk == NULL) {
10293                 return;
10294         }
10295         asoc->fwd_tsn_cnt++;
10296         chk->copy_by_ref = 0;
10297         /*
10298          * We don't do the old thing here since this is used not for on-wire
10299          * but to tell if we are sending a fwd-tsn by the stack during
10300          * output. And if its a IFORWARD or a FORWARD it is a fwd-tsn.
10301          */
10302         chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10303         chk->rec.chunk_id.can_take_data = 0;
10304         chk->flags = 0;
10305         chk->asoc = asoc;
10306         chk->whoTo = NULL;
10307         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
10308         if (chk->data == NULL) {
10309                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10310                 return;
10311         }
10312         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10313         chk->sent = SCTP_DATAGRAM_UNSENT;
10314         chk->snd_count = 0;
10315         TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10316         asoc->ctrl_queue_cnt++;
10317 sctp_fill_in_rest:
10318         /*-
10319          * Here we go through and fill out the part that deals with
10320          * stream/seq of the ones we skip.
10321          */
10322         SCTP_BUF_LEN(chk->data) = 0;
10323         TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10324                 if ((at->sent != SCTP_FORWARD_TSN_SKIP) &&
10325                     (at->sent != SCTP_DATAGRAM_NR_ACKED)) {
10326                         /* no more to look at */
10327                         break;
10328                 }
10329                 if (old && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) {
10330                         /* We don't report these */
10331                         continue;
10332                 }
10333                 cnt_of_skipped++;
10334         }
10335         if (old) {
10336                 space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10337                     (cnt_of_skipped * sizeof(struct sctp_strseq)));
10338         } else {
10339                 space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10340                     (cnt_of_skipped * sizeof(struct sctp_strseq_mid)));
10341         }
10342         cnt_of_space = (unsigned int)M_TRAILINGSPACE(chk->data);
10343
10344         if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10345                 ovh = SCTP_MIN_OVERHEAD;
10346         } else {
10347                 ovh = SCTP_MIN_V4_OVERHEAD;
10348         }
10349         if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10350                 /* trim to a mtu size */
10351                 cnt_of_space = asoc->smallest_mtu - ovh;
10352         }
10353         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10354                 sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10355                     0xff, 0, cnt_of_skipped,
10356                     asoc->advanced_peer_ack_point);
10357         }
10358         advance_peer_ack_point = asoc->advanced_peer_ack_point;
10359         if (cnt_of_space < space_needed) {
10360                 /*-
10361                  * ok we must trim down the chunk by lowering the
10362                  * advance peer ack point.
10363                  */
10364                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10365                         sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10366                             0xff, 0xff, cnt_of_space,
10367                             space_needed);
10368                 }
10369                 if (old) {
10370                         cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10371                         cnt_of_skipped /= sizeof(struct sctp_strseq);
10372                 } else {
10373                         cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10374                         cnt_of_skipped /= sizeof(struct sctp_strseq_mid);
10375                 }
10376                 /*-
10377                  * Go through and find the TSN that will be the one
10378                  * we report.
10379                  */
10380                 at = TAILQ_FIRST(&asoc->sent_queue);
10381                 if (at != NULL) {
10382                         for (i = 0; i < cnt_of_skipped; i++) {
10383                                 tp1 = TAILQ_NEXT(at, sctp_next);
10384                                 if (tp1 == NULL) {
10385                                         break;
10386                                 }
10387                                 at = tp1;
10388                         }
10389                 }
10390                 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10391                         sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10392                             0xff, cnt_of_skipped, at->rec.data.TSN_seq,
10393                             asoc->advanced_peer_ack_point);
10394                 }
10395                 last = at;
10396                 /*-
10397                  * last now points to last one I can report, update
10398                  * peer ack point
10399                  */
10400                 if (last) {
10401                         advance_peer_ack_point = last->rec.data.TSN_seq;
10402                 }
10403                 if (old) {
10404                         space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10405                             cnt_of_skipped * sizeof(struct sctp_strseq);
10406                 } else {
10407                         space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10408                             cnt_of_skipped * sizeof(struct sctp_strseq_mid);
10409                 }
10410         }
10411         chk->send_size = space_needed;
10412         /* Setup the chunk */
10413         fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10414         fwdtsn->ch.chunk_length = htons(chk->send_size);
10415         fwdtsn->ch.chunk_flags = 0;
10416         if (old) {
10417                 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10418         } else {
10419                 fwdtsn->ch.chunk_type = SCTP_IFORWARD_CUM_TSN;
10420         }
10421         fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10422         SCTP_BUF_LEN(chk->data) = chk->send_size;
10423         fwdtsn++;
10424         /*-
10425          * Move pointer to after the fwdtsn and transfer to the
10426          * strseq pointer.
10427          */
10428         if (old) {
10429                 strseq = (struct sctp_strseq *)fwdtsn;
10430         } else {
10431                 strseq_m = (struct sctp_strseq_mid *)fwdtsn;
10432         }
10433         /*-
10434          * Now populate the strseq list. This is done blindly
10435          * without pulling out duplicate stream info. This is
10436          * inefficent but won't harm the process since the peer will
10437          * look at these in sequence and will thus release anything.
10438          * It could mean we exceed the PMTU and chop off some that
10439          * we could have included.. but this is unlikely (aka 1432/4
10440          * would mean 300+ stream seq's would have to be reported in
10441          * one FWD-TSN. With a bit of work we can later FIX this to
10442          * optimize and pull out duplicates.. but it does add more
10443          * overhead. So for now... not!
10444          */
10445         i = 0;
10446         TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10447                 if (i >= cnt_of_skipped) {
10448                         break;
10449                 }
10450                 if (old && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) {
10451                         /* We don't report these */
10452                         continue;
10453                 }
10454                 if (at->rec.data.TSN_seq == advance_peer_ack_point) {
10455                         at->rec.data.fwd_tsn_cnt = 0;
10456                 }
10457                 if (old) {
10458                         strseq->stream = htons(at->rec.data.stream_number);
10459                         strseq->sequence = htons((uint16_t) at->rec.data.stream_seq);
10460                         strseq++;
10461                 } else {
10462                         strseq_m->stream = htons(at->rec.data.stream_number);
10463                         if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10464                                 strseq_m->flags = htons(PR_SCTP_UNORDERED_FLAG);
10465                         } else {
10466                                 strseq_m->flags = 0;
10467                         }
10468                         strseq_m->msg_id = htonl(at->rec.data.stream_seq);
10469                         strseq_m++;
10470                 }
10471                 i++;
10472         }
10473         return;
10474 }
10475
10476 void
10477 sctp_send_sack(struct sctp_tcb *stcb, int so_locked
10478 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10479     SCTP_UNUSED
10480 #endif
10481 )
10482 {
10483         /*-
10484          * Queue up a SACK or NR-SACK in the control queue.
10485          * We must first check to see if a SACK or NR-SACK is
10486          * somehow on the control queue.
10487          * If so, we will take and and remove the old one.
10488          */
10489         struct sctp_association *asoc;
10490         struct sctp_tmit_chunk *chk, *a_chk;
10491         struct sctp_sack_chunk *sack;
10492         struct sctp_nr_sack_chunk *nr_sack;
10493         struct sctp_gap_ack_block *gap_descriptor;
10494         const struct sack_track *selector;
10495         int mergeable = 0;
10496         int offset;
10497         caddr_t limit;
10498         uint32_t *dup;
10499         int limit_reached = 0;
10500         unsigned int i, siz, j;
10501         unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10502         int num_dups = 0;
10503         int space_req;
10504         uint32_t highest_tsn;
10505         uint8_t flags;
10506         uint8_t type;
10507         uint8_t tsn_map;
10508
10509         if (stcb->asoc.nrsack_supported == 1) {
10510                 type = SCTP_NR_SELECTIVE_ACK;
10511         } else {
10512                 type = SCTP_SELECTIVE_ACK;
10513         }
10514         a_chk = NULL;
10515         asoc = &stcb->asoc;
10516         SCTP_TCB_LOCK_ASSERT(stcb);
10517         if (asoc->last_data_chunk_from == NULL) {
10518                 /* Hmm we never received anything */
10519                 return;
10520         }
10521         sctp_slide_mapping_arrays(stcb);
10522         sctp_set_rwnd(stcb, asoc);
10523         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10524                 if (chk->rec.chunk_id.id == type) {
10525                         /* Hmm, found a sack already on queue, remove it */
10526                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10527                         asoc->ctrl_queue_cnt--;
10528                         a_chk = chk;
10529                         if (a_chk->data) {
10530                                 sctp_m_freem(a_chk->data);
10531                                 a_chk->data = NULL;
10532                         }
10533                         if (a_chk->whoTo) {
10534                                 sctp_free_remote_addr(a_chk->whoTo);
10535                                 a_chk->whoTo = NULL;
10536                         }
10537                         break;
10538                 }
10539         }
10540         if (a_chk == NULL) {
10541                 sctp_alloc_a_chunk(stcb, a_chk);
10542                 if (a_chk == NULL) {
10543                         /* No memory so we drop the idea, and set a timer */
10544                         if (stcb->asoc.delayed_ack) {
10545                                 sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10546                                     stcb->sctp_ep, stcb, NULL,
10547                                     SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3);
10548                                 sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10549                                     stcb->sctp_ep, stcb, NULL);
10550                         } else {
10551                                 stcb->asoc.send_sack = 1;
10552                         }
10553                         return;
10554                 }
10555                 a_chk->copy_by_ref = 0;
10556                 a_chk->rec.chunk_id.id = type;
10557                 a_chk->rec.chunk_id.can_take_data = 1;
10558         }
10559         /* Clear our pkt counts */
10560         asoc->data_pkts_seen = 0;
10561
10562         a_chk->flags = 0;
10563         a_chk->asoc = asoc;
10564         a_chk->snd_count = 0;
10565         a_chk->send_size = 0;   /* fill in later */
10566         a_chk->sent = SCTP_DATAGRAM_UNSENT;
10567         a_chk->whoTo = NULL;
10568
10569         if (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE)) {
10570                 /*-
10571                  * Ok, the destination for the SACK is unreachable, lets see if
10572                  * we can select an alternate to asoc->last_data_chunk_from
10573                  */
10574                 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10575                 if (a_chk->whoTo == NULL) {
10576                         /* Nope, no alternate */
10577                         a_chk->whoTo = asoc->last_data_chunk_from;
10578                 }
10579         } else {
10580                 a_chk->whoTo = asoc->last_data_chunk_from;
10581         }
10582         if (a_chk->whoTo) {
10583                 atomic_add_int(&a_chk->whoTo->ref_count, 1);
10584         }
10585         if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10586                 highest_tsn = asoc->highest_tsn_inside_map;
10587         } else {
10588                 highest_tsn = asoc->highest_tsn_inside_nr_map;
10589         }
10590         if (highest_tsn == asoc->cumulative_tsn) {
10591                 /* no gaps */
10592                 if (type == SCTP_SELECTIVE_ACK) {
10593                         space_req = sizeof(struct sctp_sack_chunk);
10594                 } else {
10595                         space_req = sizeof(struct sctp_nr_sack_chunk);
10596                 }
10597         } else {
10598                 /* gaps get a cluster */
10599                 space_req = MCLBYTES;
10600         }
10601         /* Ok now lets formulate a MBUF with our sack */
10602         a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA);
10603         if ((a_chk->data == NULL) ||
10604             (a_chk->whoTo == NULL)) {
10605                 /* rats, no mbuf memory */
10606                 if (a_chk->data) {
10607                         /* was a problem with the destination */
10608                         sctp_m_freem(a_chk->data);
10609                         a_chk->data = NULL;
10610                 }
10611                 sctp_free_a_chunk(stcb, a_chk, so_locked);
10612                 /* sa_ignore NO_NULL_CHK */
10613                 if (stcb->asoc.delayed_ack) {
10614                         sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10615                             stcb->sctp_ep, stcb, NULL,
10616                             SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
10617                         sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10618                             stcb->sctp_ep, stcb, NULL);
10619                 } else {
10620                         stcb->asoc.send_sack = 1;
10621                 }
10622                 return;
10623         }
10624         /* ok, lets go through and fill it in */
10625         SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10626         space = (unsigned int)M_TRAILINGSPACE(a_chk->data);
10627         if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10628                 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10629         }
10630         limit = mtod(a_chk->data, caddr_t);
10631         limit += space;
10632
10633         flags = 0;
10634
10635         if ((asoc->sctp_cmt_on_off > 0) &&
10636             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10637                 /*-
10638                  * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10639                  * received, then set high bit to 1, else 0. Reset
10640                  * pkts_rcvd.
10641                  */
10642                 flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10643                 asoc->cmt_dac_pkts_rcvd = 0;
10644         }
10645 #ifdef SCTP_ASOCLOG_OF_TSNS
10646         stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10647         stcb->asoc.cumack_log_atsnt++;
10648         if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10649                 stcb->asoc.cumack_log_atsnt = 0;
10650         }
10651 #endif
10652         /* reset the readers interpretation */
10653         stcb->freed_by_sorcv_sincelast = 0;
10654
10655         if (type == SCTP_SELECTIVE_ACK) {
10656                 sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10657                 nr_sack = NULL;
10658                 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10659                 if (highest_tsn > asoc->mapping_array_base_tsn) {
10660                         siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10661                 } else {
10662                         siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8;
10663                 }
10664         } else {
10665                 sack = NULL;
10666                 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10667                 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10668                 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10669                         siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10670                 } else {
10671                         siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10672                 }
10673         }
10674
10675         if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10676                 offset = 1;
10677         } else {
10678                 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10679         }
10680         if (((type == SCTP_SELECTIVE_ACK) &&
10681             SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10682             ((type == SCTP_NR_SELECTIVE_ACK) &&
10683             SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10684                 /* we have a gap .. maybe */
10685                 for (i = 0; i < siz; i++) {
10686                         tsn_map = asoc->mapping_array[i];
10687                         if (type == SCTP_SELECTIVE_ACK) {
10688                                 tsn_map |= asoc->nr_mapping_array[i];
10689                         }
10690                         if (i == 0) {
10691                                 /*
10692                                  * Clear all bits corresponding to TSNs
10693                                  * smaller or equal to the cumulative TSN.
10694                                  */
10695                                 tsn_map &= (~0U << (1 - offset));
10696                         }
10697                         selector = &sack_array[tsn_map];
10698                         if (mergeable && selector->right_edge) {
10699                                 /*
10700                                  * Backup, left and right edges were ok to
10701                                  * merge.
10702                                  */
10703                                 num_gap_blocks--;
10704                                 gap_descriptor--;
10705                         }
10706                         if (selector->num_entries == 0)
10707                                 mergeable = 0;
10708                         else {
10709                                 for (j = 0; j < selector->num_entries; j++) {
10710                                         if (mergeable && selector->right_edge) {
10711                                                 /*
10712                                                  * do a merge by NOT setting
10713                                                  * the left side
10714                                                  */
10715                                                 mergeable = 0;
10716                                         } else {
10717                                                 /*
10718                                                  * no merge, set the left
10719                                                  * side
10720                                                  */
10721                                                 mergeable = 0;
10722                                                 gap_descriptor->start = htons((selector->gaps[j].start + offset));
10723                                         }
10724                                         gap_descriptor->end = htons((selector->gaps[j].end + offset));
10725                                         num_gap_blocks++;
10726                                         gap_descriptor++;
10727                                         if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10728                                                 /* no more room */
10729                                                 limit_reached = 1;
10730                                                 break;
10731                                         }
10732                                 }
10733                                 if (selector->left_edge) {
10734                                         mergeable = 1;
10735                                 }
10736                         }
10737                         if (limit_reached) {
10738                                 /* Reached the limit stop */
10739                                 break;
10740                         }
10741                         offset += 8;
10742                 }
10743         }
10744         if ((type == SCTP_NR_SELECTIVE_ACK) &&
10745             (limit_reached == 0)) {
10746
10747                 mergeable = 0;
10748
10749                 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10750                         siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10751                 } else {
10752                         siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10753                 }
10754
10755                 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10756                         offset = 1;
10757                 } else {
10758                         offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10759                 }
10760                 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10761                         /* we have a gap .. maybe */
10762                         for (i = 0; i < siz; i++) {
10763                                 tsn_map = asoc->nr_mapping_array[i];
10764                                 if (i == 0) {
10765                                         /*
10766                                          * Clear all bits corresponding to
10767                                          * TSNs smaller or equal to the
10768                                          * cumulative TSN.
10769                                          */
10770                                         tsn_map &= (~0U << (1 - offset));
10771                                 }
10772                                 selector = &sack_array[tsn_map];
10773                                 if (mergeable && selector->right_edge) {
10774                                         /*
10775                                          * Backup, left and right edges were
10776                                          * ok to merge.
10777                                          */
10778                                         num_nr_gap_blocks--;
10779                                         gap_descriptor--;
10780                                 }
10781                                 if (selector->num_entries == 0)
10782                                         mergeable = 0;
10783                                 else {
10784                                         for (j = 0; j < selector->num_entries; j++) {
10785                                                 if (mergeable && selector->right_edge) {
10786                                                         /*
10787                                                          * do a merge by NOT
10788                                                          * setting the left
10789                                                          * side
10790                                                          */
10791                                                         mergeable = 0;
10792                                                 } else {
10793                                                         /*
10794                                                          * no merge, set the
10795                                                          * left side
10796                                                          */
10797                                                         mergeable = 0;
10798                                                         gap_descriptor->start = htons((selector->gaps[j].start + offset));
10799                                                 }
10800                                                 gap_descriptor->end = htons((selector->gaps[j].end + offset));
10801                                                 num_nr_gap_blocks++;
10802                                                 gap_descriptor++;
10803                                                 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10804                                                         /* no more room */
10805                                                         limit_reached = 1;
10806                                                         break;
10807                                                 }
10808                                         }
10809                                         if (selector->left_edge) {
10810                                                 mergeable = 1;
10811                                         }
10812                                 }
10813                                 if (limit_reached) {
10814                                         /* Reached the limit stop */
10815                                         break;
10816                                 }
10817                                 offset += 8;
10818                         }
10819                 }
10820         }
10821         /* now we must add any dups we are going to report. */
10822         if ((limit_reached == 0) && (asoc->numduptsns)) {
10823                 dup = (uint32_t *) gap_descriptor;
10824                 for (i = 0; i < asoc->numduptsns; i++) {
10825                         *dup = htonl(asoc->dup_tsns[i]);
10826                         dup++;
10827                         num_dups++;
10828                         if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10829                                 /* no more room */
10830                                 break;
10831                         }
10832                 }
10833                 asoc->numduptsns = 0;
10834         }
10835         /*
10836          * now that the chunk is prepared queue it to the control chunk
10837          * queue.
10838          */
10839         if (type == SCTP_SELECTIVE_ACK) {
10840                 a_chk->send_size = (uint16_t) (sizeof(struct sctp_sack_chunk) +
10841                     (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10842                     num_dups * sizeof(int32_t));
10843                 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10844                 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10845                 sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10846                 sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10847                 sack->sack.num_dup_tsns = htons(num_dups);
10848                 sack->ch.chunk_type = type;
10849                 sack->ch.chunk_flags = flags;
10850                 sack->ch.chunk_length = htons(a_chk->send_size);
10851         } else {
10852                 a_chk->send_size = (uint16_t) (sizeof(struct sctp_nr_sack_chunk) +
10853                     (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10854                     num_dups * sizeof(int32_t));
10855                 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10856                 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10857                 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10858                 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10859                 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10860                 nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10861                 nr_sack->nr_sack.reserved = 0;
10862                 nr_sack->ch.chunk_type = type;
10863                 nr_sack->ch.chunk_flags = flags;
10864                 nr_sack->ch.chunk_length = htons(a_chk->send_size);
10865         }
10866         TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10867         asoc->my_last_reported_rwnd = asoc->my_rwnd;
10868         asoc->ctrl_queue_cnt++;
10869         asoc->send_sack = 0;
10870         SCTP_STAT_INCR(sctps_sendsacks);
10871         return;
10872 }
10873
10874 void
10875 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
10876 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10877     SCTP_UNUSED
10878 #endif
10879 )
10880 {
10881         struct mbuf *m_abort, *m, *m_last;
10882         struct mbuf *m_out, *m_end = NULL;
10883         struct sctp_abort_chunk *abort;
10884         struct sctp_auth_chunk *auth = NULL;
10885         struct sctp_nets *net;
10886         uint32_t vtag;
10887         uint32_t auth_offset = 0;
10888         uint16_t cause_len, chunk_len, padding_len;
10889
10890         SCTP_TCB_LOCK_ASSERT(stcb);
10891         /*-
10892          * Add an AUTH chunk, if chunk requires it and save the offset into
10893          * the chain for AUTH
10894          */
10895         if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10896             stcb->asoc.peer_auth_chunks)) {
10897                 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10898                     stcb, SCTP_ABORT_ASSOCIATION);
10899                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10900         } else {
10901                 m_out = NULL;
10902         }
10903         m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER);
10904         if (m_abort == NULL) {
10905                 if (m_out) {
10906                         sctp_m_freem(m_out);
10907                 }
10908                 if (operr) {
10909                         sctp_m_freem(operr);
10910                 }
10911                 return;
10912         }
10913         /* link in any error */
10914         SCTP_BUF_NEXT(m_abort) = operr;
10915         cause_len = 0;
10916         m_last = NULL;
10917         for (m = operr; m; m = SCTP_BUF_NEXT(m)) {
10918                 cause_len += (uint16_t) SCTP_BUF_LEN(m);
10919                 if (SCTP_BUF_NEXT(m) == NULL) {
10920                         m_last = m;
10921                 }
10922         }
10923         SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk);
10924         chunk_len = (uint16_t) sizeof(struct sctp_abort_chunk) + cause_len;
10925         padding_len = SCTP_SIZE32(chunk_len) - chunk_len;
10926         if (m_out == NULL) {
10927                 /* NO Auth chunk prepended, so reserve space in front */
10928                 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10929                 m_out = m_abort;
10930         } else {
10931                 /* Put AUTH chunk at the front of the chain */
10932                 SCTP_BUF_NEXT(m_end) = m_abort;
10933         }
10934         if (stcb->asoc.alternate) {
10935                 net = stcb->asoc.alternate;
10936         } else {
10937                 net = stcb->asoc.primary_destination;
10938         }
10939         /* Fill in the ABORT chunk header. */
10940         abort = mtod(m_abort, struct sctp_abort_chunk *);
10941         abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10942         if (stcb->asoc.peer_vtag == 0) {
10943                 /* This happens iff the assoc is in COOKIE-WAIT state. */
10944                 vtag = stcb->asoc.my_vtag;
10945                 abort->ch.chunk_flags = SCTP_HAD_NO_TCB;
10946         } else {
10947                 vtag = stcb->asoc.peer_vtag;
10948                 abort->ch.chunk_flags = 0;
10949         }
10950         abort->ch.chunk_length = htons(chunk_len);
10951         /* Add padding, if necessary. */
10952         if (padding_len > 0) {
10953                 if ((m_last == NULL) ||
10954                     (sctp_add_pad_tombuf(m_last, padding_len) == NULL)) {
10955                         sctp_m_freem(m_out);
10956                         return;
10957                 }
10958         }
10959         (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10960             (struct sockaddr *)&net->ro._l_addr,
10961             m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
10962             stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag),
10963             stcb->asoc.primary_destination->port, NULL,
10964             0, 0,
10965             so_locked);
10966         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10967 }
10968
10969 void
10970 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
10971     struct sctp_nets *net,
10972     int reflect_vtag)
10973 {
10974         /* formulate and SEND a SHUTDOWN-COMPLETE */
10975         struct mbuf *m_shutdown_comp;
10976         struct sctp_shutdown_complete_chunk *shutdown_complete;
10977         uint32_t vtag;
10978         uint8_t flags;
10979
10980         m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
10981         if (m_shutdown_comp == NULL) {
10982                 /* no mbuf's */
10983                 return;
10984         }
10985         if (reflect_vtag) {
10986                 flags = SCTP_HAD_NO_TCB;
10987                 vtag = stcb->asoc.my_vtag;
10988         } else {
10989                 flags = 0;
10990                 vtag = stcb->asoc.peer_vtag;
10991         }
10992         shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
10993         shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
10994         shutdown_complete->ch.chunk_flags = flags;
10995         shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
10996         SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
10997         (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10998             (struct sockaddr *)&net->ro._l_addr,
10999             m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
11000             stcb->sctp_ep->sctp_lport, stcb->rport,
11001             htonl(vtag),
11002             net->port, NULL,
11003             0, 0,
11004             SCTP_SO_NOT_LOCKED);
11005         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11006         return;
11007 }
11008
11009 static void
11010 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
11011     struct sctphdr *sh, uint32_t vtag,
11012     uint8_t type, struct mbuf *cause,
11013     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
11014     uint32_t vrf_id, uint16_t port)
11015 {
11016         struct mbuf *o_pak;
11017         struct mbuf *mout;
11018         struct sctphdr *shout;
11019         struct sctp_chunkhdr *ch;
11020
11021 #if defined(INET) || defined(INET6)
11022         struct udphdr *udp;
11023         int ret;
11024
11025 #endif
11026         int len, cause_len, padding_len;
11027
11028 #ifdef INET
11029         struct sockaddr_in *src_sin, *dst_sin;
11030         struct ip *ip;
11031
11032 #endif
11033 #ifdef INET6
11034         struct sockaddr_in6 *src_sin6, *dst_sin6;
11035         struct ip6_hdr *ip6;
11036
11037 #endif
11038
11039         /* Compute the length of the cause and add final padding. */
11040         cause_len = 0;
11041         if (cause != NULL) {
11042                 struct mbuf *m_at, *m_last = NULL;
11043
11044                 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
11045                         if (SCTP_BUF_NEXT(m_at) == NULL)
11046                                 m_last = m_at;
11047                         cause_len += SCTP_BUF_LEN(m_at);
11048                 }
11049                 padding_len = cause_len % 4;
11050                 if (padding_len != 0) {
11051                         padding_len = 4 - padding_len;
11052                 }
11053                 if (padding_len != 0) {
11054                         if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) {
11055                                 sctp_m_freem(cause);
11056                                 return;
11057                         }
11058                 }
11059         } else {
11060                 padding_len = 0;
11061         }
11062         /* Get an mbuf for the header. */
11063         len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
11064         switch (dst->sa_family) {
11065 #ifdef INET
11066         case AF_INET:
11067                 len += sizeof(struct ip);
11068                 break;
11069 #endif
11070 #ifdef INET6
11071         case AF_INET6:
11072                 len += sizeof(struct ip6_hdr);
11073                 break;
11074 #endif
11075         default:
11076                 break;
11077         }
11078 #if defined(INET) || defined(INET6)
11079         if (port) {
11080                 len += sizeof(struct udphdr);
11081         }
11082 #endif
11083         mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA);
11084         if (mout == NULL) {
11085                 if (cause) {
11086                         sctp_m_freem(cause);
11087                 }
11088                 return;
11089         }
11090         SCTP_BUF_RESV_UF(mout, max_linkhdr);
11091         SCTP_BUF_LEN(mout) = len;
11092         SCTP_BUF_NEXT(mout) = cause;
11093         M_SETFIB(mout, fibnum);
11094         mout->m_pkthdr.flowid = mflowid;
11095         M_HASHTYPE_SET(mout, mflowtype);
11096 #ifdef INET
11097         ip = NULL;
11098 #endif
11099 #ifdef INET6
11100         ip6 = NULL;
11101 #endif
11102         switch (dst->sa_family) {
11103 #ifdef INET
11104         case AF_INET:
11105                 src_sin = (struct sockaddr_in *)src;
11106                 dst_sin = (struct sockaddr_in *)dst;
11107                 ip = mtod(mout, struct ip *);
11108                 ip->ip_v = IPVERSION;
11109                 ip->ip_hl = (sizeof(struct ip) >> 2);
11110                 ip->ip_tos = 0;
11111                 ip->ip_off = 0;
11112                 ip_fillid(ip);
11113                 ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
11114                 if (port) {
11115                         ip->ip_p = IPPROTO_UDP;
11116                 } else {
11117                         ip->ip_p = IPPROTO_SCTP;
11118                 }
11119                 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
11120                 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
11121                 ip->ip_sum = 0;
11122                 len = sizeof(struct ip);
11123                 shout = (struct sctphdr *)((caddr_t)ip + len);
11124                 break;
11125 #endif
11126 #ifdef INET6
11127         case AF_INET6:
11128                 src_sin6 = (struct sockaddr_in6 *)src;
11129                 dst_sin6 = (struct sockaddr_in6 *)dst;
11130                 ip6 = mtod(mout, struct ip6_hdr *);
11131                 ip6->ip6_flow = htonl(0x60000000);
11132                 if (V_ip6_auto_flowlabel) {
11133                         ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
11134                 }
11135                 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
11136                 if (port) {
11137                         ip6->ip6_nxt = IPPROTO_UDP;
11138                 } else {
11139                         ip6->ip6_nxt = IPPROTO_SCTP;
11140                 }
11141                 ip6->ip6_src = dst_sin6->sin6_addr;
11142                 ip6->ip6_dst = src_sin6->sin6_addr;
11143                 len = sizeof(struct ip6_hdr);
11144                 shout = (struct sctphdr *)((caddr_t)ip6 + len);
11145                 break;
11146 #endif
11147         default:
11148                 len = 0;
11149                 shout = mtod(mout, struct sctphdr *);
11150                 break;
11151         }
11152 #if defined(INET) || defined(INET6)
11153         if (port) {
11154                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
11155                         sctp_m_freem(mout);
11156                         return;
11157                 }
11158                 udp = (struct udphdr *)shout;
11159                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
11160                 udp->uh_dport = port;
11161                 udp->uh_sum = 0;
11162                 udp->uh_ulen = htons((uint16_t) (sizeof(struct udphdr) +
11163                     sizeof(struct sctphdr) +
11164                     sizeof(struct sctp_chunkhdr) +
11165                     cause_len + padding_len));
11166                 len += sizeof(struct udphdr);
11167                 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
11168         } else {
11169                 udp = NULL;
11170         }
11171 #endif
11172         shout->src_port = sh->dest_port;
11173         shout->dest_port = sh->src_port;
11174         shout->checksum = 0;
11175         if (vtag) {
11176                 shout->v_tag = htonl(vtag);
11177         } else {
11178                 shout->v_tag = sh->v_tag;
11179         }
11180         len += sizeof(struct sctphdr);
11181         ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
11182         ch->chunk_type = type;
11183         if (vtag) {
11184                 ch->chunk_flags = 0;
11185         } else {
11186                 ch->chunk_flags = SCTP_HAD_NO_TCB;
11187         }
11188         ch->chunk_length = htons((uint16_t) (sizeof(struct sctp_chunkhdr) + cause_len));
11189         len += sizeof(struct sctp_chunkhdr);
11190         len += cause_len + padding_len;
11191
11192         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
11193                 sctp_m_freem(mout);
11194                 return;
11195         }
11196         SCTP_ATTACH_CHAIN(o_pak, mout, len);
11197         switch (dst->sa_family) {
11198 #ifdef INET
11199         case AF_INET:
11200                 if (port) {
11201                         if (V_udp_cksum) {
11202                                 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
11203                         } else {
11204                                 udp->uh_sum = 0;
11205                         }
11206                 }
11207                 ip->ip_len = htons(len);
11208                 if (port) {
11209 #if defined(SCTP_WITH_NO_CSUM)
11210                         SCTP_STAT_INCR(sctps_sendnocrc);
11211 #else
11212                         shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
11213                         SCTP_STAT_INCR(sctps_sendswcrc);
11214 #endif
11215                         if (V_udp_cksum) {
11216                                 SCTP_ENABLE_UDP_CSUM(o_pak);
11217                         }
11218                 } else {
11219 #if defined(SCTP_WITH_NO_CSUM)
11220                         SCTP_STAT_INCR(sctps_sendnocrc);
11221 #else
11222                         mout->m_pkthdr.csum_flags = CSUM_SCTP;
11223                         mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11224                         SCTP_STAT_INCR(sctps_sendhwcrc);
11225 #endif
11226                 }
11227 #ifdef SCTP_PACKET_LOGGING
11228                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11229                         sctp_packet_log(o_pak);
11230                 }
11231 #endif
11232                 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11233                 break;
11234 #endif
11235 #ifdef INET6
11236         case AF_INET6:
11237                 ip6->ip6_plen = (uint16_t) (len - sizeof(struct ip6_hdr));
11238                 if (port) {
11239 #if defined(SCTP_WITH_NO_CSUM)
11240                         SCTP_STAT_INCR(sctps_sendnocrc);
11241 #else
11242                         shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11243                         SCTP_STAT_INCR(sctps_sendswcrc);
11244 #endif
11245                         if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11246                                 udp->uh_sum = 0xffff;
11247                         }
11248                 } else {
11249 #if defined(SCTP_WITH_NO_CSUM)
11250                         SCTP_STAT_INCR(sctps_sendnocrc);
11251 #else
11252                         mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11253                         mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11254                         SCTP_STAT_INCR(sctps_sendhwcrc);
11255 #endif
11256                 }
11257 #ifdef SCTP_PACKET_LOGGING
11258                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11259                         sctp_packet_log(o_pak);
11260                 }
11261 #endif
11262                 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11263                 break;
11264 #endif
11265         default:
11266                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11267                     dst->sa_family);
11268                 sctp_m_freem(mout);
11269                 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11270                 return;
11271         }
11272         SCTP_STAT_INCR(sctps_sendpackets);
11273         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11274         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11275         return;
11276 }
11277
11278 void
11279 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11280     struct sctphdr *sh,
11281     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
11282     uint32_t vrf_id, uint16_t port)
11283 {
11284         sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11285             mflowtype, mflowid, fibnum,
11286             vrf_id, port);
11287 }
11288
11289 void
11290 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
11291 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
11292     SCTP_UNUSED
11293 #endif
11294 )
11295 {
11296         struct sctp_tmit_chunk *chk;
11297         struct sctp_heartbeat_chunk *hb;
11298         struct timeval now;
11299
11300         SCTP_TCB_LOCK_ASSERT(stcb);
11301         if (net == NULL) {
11302                 return;
11303         }
11304         (void)SCTP_GETTIME_TIMEVAL(&now);
11305         switch (net->ro._l_addr.sa.sa_family) {
11306 #ifdef INET
11307         case AF_INET:
11308                 break;
11309 #endif
11310 #ifdef INET6
11311         case AF_INET6:
11312                 break;
11313 #endif
11314         default:
11315                 return;
11316         }
11317         sctp_alloc_a_chunk(stcb, chk);
11318         if (chk == NULL) {
11319                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11320                 return;
11321         }
11322         chk->copy_by_ref = 0;
11323         chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11324         chk->rec.chunk_id.can_take_data = 1;
11325         chk->flags = 0;
11326         chk->asoc = &stcb->asoc;
11327         chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11328
11329         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11330         if (chk->data == NULL) {
11331                 sctp_free_a_chunk(stcb, chk, so_locked);
11332                 return;
11333         }
11334         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11335         SCTP_BUF_LEN(chk->data) = chk->send_size;
11336         chk->sent = SCTP_DATAGRAM_UNSENT;
11337         chk->snd_count = 0;
11338         chk->whoTo = net;
11339         atomic_add_int(&chk->whoTo->ref_count, 1);
11340         /* Now we have a mbuf that we can fill in with the details */
11341         hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11342         memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11343         /* fill out chunk header */
11344         hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11345         hb->ch.chunk_flags = 0;
11346         hb->ch.chunk_length = htons(chk->send_size);
11347         /* Fill out hb parameter */
11348         hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11349         hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11350         hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
11351         hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11352         /* Did our user request this one, put it in */
11353         hb->heartbeat.hb_info.addr_family = (uint8_t) net->ro._l_addr.sa.sa_family;
11354         hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11355         if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11356                 /*
11357                  * we only take from the entropy pool if the address is not
11358                  * confirmed.
11359                  */
11360                 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11361                 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11362         } else {
11363                 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11364                 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11365         }
11366         switch (net->ro._l_addr.sa.sa_family) {
11367 #ifdef INET
11368         case AF_INET:
11369                 memcpy(hb->heartbeat.hb_info.address,
11370                     &net->ro._l_addr.sin.sin_addr,
11371                     sizeof(net->ro._l_addr.sin.sin_addr));
11372                 break;
11373 #endif
11374 #ifdef INET6
11375         case AF_INET6:
11376                 memcpy(hb->heartbeat.hb_info.address,
11377                     &net->ro._l_addr.sin6.sin6_addr,
11378                     sizeof(net->ro._l_addr.sin6.sin6_addr));
11379                 break;
11380 #endif
11381         default:
11382                 if (chk->data) {
11383                         sctp_m_freem(chk->data);
11384                         chk->data = NULL;
11385                 }
11386                 sctp_free_a_chunk(stcb, chk, so_locked);
11387                 return;
11388                 break;
11389         }
11390         net->hb_responded = 0;
11391         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11392         stcb->asoc.ctrl_queue_cnt++;
11393         SCTP_STAT_INCR(sctps_sendheartbeat);
11394         return;
11395 }
11396
11397 void
11398 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11399     uint32_t high_tsn)
11400 {
11401         struct sctp_association *asoc;
11402         struct sctp_ecne_chunk *ecne;
11403         struct sctp_tmit_chunk *chk;
11404
11405         if (net == NULL) {
11406                 return;
11407         }
11408         asoc = &stcb->asoc;
11409         SCTP_TCB_LOCK_ASSERT(stcb);
11410         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11411                 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11412                         /* found a previous ECN_ECHO update it if needed */
11413                         uint32_t cnt, ctsn;
11414
11415                         ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11416                         ctsn = ntohl(ecne->tsn);
11417                         if (SCTP_TSN_GT(high_tsn, ctsn)) {
11418                                 ecne->tsn = htonl(high_tsn);
11419                                 SCTP_STAT_INCR(sctps_queue_upd_ecne);
11420                         }
11421                         cnt = ntohl(ecne->num_pkts_since_cwr);
11422                         cnt++;
11423                         ecne->num_pkts_since_cwr = htonl(cnt);
11424                         return;
11425                 }
11426         }
11427         /* nope could not find one to update so we must build one */
11428         sctp_alloc_a_chunk(stcb, chk);
11429         if (chk == NULL) {
11430                 return;
11431         }
11432         SCTP_STAT_INCR(sctps_queue_upd_ecne);
11433         chk->copy_by_ref = 0;
11434         chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11435         chk->rec.chunk_id.can_take_data = 0;
11436         chk->flags = 0;
11437         chk->asoc = &stcb->asoc;
11438         chk->send_size = sizeof(struct sctp_ecne_chunk);
11439         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11440         if (chk->data == NULL) {
11441                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11442                 return;
11443         }
11444         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11445         SCTP_BUF_LEN(chk->data) = chk->send_size;
11446         chk->sent = SCTP_DATAGRAM_UNSENT;
11447         chk->snd_count = 0;
11448         chk->whoTo = net;
11449         atomic_add_int(&chk->whoTo->ref_count, 1);
11450
11451         stcb->asoc.ecn_echo_cnt_onq++;
11452         ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11453         ecne->ch.chunk_type = SCTP_ECN_ECHO;
11454         ecne->ch.chunk_flags = 0;
11455         ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11456         ecne->tsn = htonl(high_tsn);
11457         ecne->num_pkts_since_cwr = htonl(1);
11458         TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11459         asoc->ctrl_queue_cnt++;
11460 }
11461
11462 void
11463 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11464     struct mbuf *m, int len, int iphlen, int bad_crc)
11465 {
11466         struct sctp_association *asoc;
11467         struct sctp_pktdrop_chunk *drp;
11468         struct sctp_tmit_chunk *chk;
11469         uint8_t *datap;
11470         int was_trunc = 0;
11471         int fullsz = 0;
11472         long spc;
11473         int offset;
11474         struct sctp_chunkhdr *ch, chunk_buf;
11475         unsigned int chk_length;
11476
11477         if (!stcb) {
11478                 return;
11479         }
11480         asoc = &stcb->asoc;
11481         SCTP_TCB_LOCK_ASSERT(stcb);
11482         if (asoc->pktdrop_supported == 0) {
11483                 /*-
11484                  * peer must declare support before I send one.
11485                  */
11486                 return;
11487         }
11488         if (stcb->sctp_socket == NULL) {
11489                 return;
11490         }
11491         sctp_alloc_a_chunk(stcb, chk);
11492         if (chk == NULL) {
11493                 return;
11494         }
11495         chk->copy_by_ref = 0;
11496         chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11497         chk->rec.chunk_id.can_take_data = 1;
11498         chk->flags = 0;
11499         len -= iphlen;
11500         chk->send_size = len;
11501         /* Validate that we do not have an ABORT in here. */
11502         offset = iphlen + sizeof(struct sctphdr);
11503         ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11504             sizeof(*ch), (uint8_t *) & chunk_buf);
11505         while (ch != NULL) {
11506                 chk_length = ntohs(ch->chunk_length);
11507                 if (chk_length < sizeof(*ch)) {
11508                         /* break to abort land */
11509                         break;
11510                 }
11511                 switch (ch->chunk_type) {
11512                 case SCTP_PACKET_DROPPED:
11513                 case SCTP_ABORT_ASSOCIATION:
11514                 case SCTP_INITIATION_ACK:
11515                         /**
11516                          * We don't respond with an PKT-DROP to an ABORT
11517                          * or PKT-DROP. We also do not respond to an
11518                          * INIT-ACK, because we can't know if the initiation
11519                          * tag is correct or not.
11520                          */
11521                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11522                         return;
11523                 default:
11524                         break;
11525                 }
11526                 offset += SCTP_SIZE32(chk_length);
11527                 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11528                     sizeof(*ch), (uint8_t *) & chunk_buf);
11529         }
11530
11531         if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11532             min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11533                 /*
11534                  * only send 1 mtu worth, trim off the excess on the end.
11535                  */
11536                 fullsz = len;
11537                 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11538                 was_trunc = 1;
11539         }
11540         chk->asoc = &stcb->asoc;
11541         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11542         if (chk->data == NULL) {
11543 jump_out:
11544                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11545                 return;
11546         }
11547         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11548         drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11549         if (drp == NULL) {
11550                 sctp_m_freem(chk->data);
11551                 chk->data = NULL;
11552                 goto jump_out;
11553         }
11554         chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11555             sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11556         chk->book_size_scale = 0;
11557         if (was_trunc) {
11558                 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11559                 drp->trunc_len = htons(fullsz);
11560                 /*
11561                  * Len is already adjusted to size minus overhead above take
11562                  * out the pkt_drop chunk itself from it.
11563                  */
11564                 chk->send_size = (uint16_t) (len - sizeof(struct sctp_pktdrop_chunk));
11565                 len = chk->send_size;
11566         } else {
11567                 /* no truncation needed */
11568                 drp->ch.chunk_flags = 0;
11569                 drp->trunc_len = htons(0);
11570         }
11571         if (bad_crc) {
11572                 drp->ch.chunk_flags |= SCTP_BADCRC;
11573         }
11574         chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11575         SCTP_BUF_LEN(chk->data) = chk->send_size;
11576         chk->sent = SCTP_DATAGRAM_UNSENT;
11577         chk->snd_count = 0;
11578         if (net) {
11579                 /* we should hit here */
11580                 chk->whoTo = net;
11581                 atomic_add_int(&chk->whoTo->ref_count, 1);
11582         } else {
11583                 chk->whoTo = NULL;
11584         }
11585         drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11586         drp->ch.chunk_length = htons(chk->send_size);
11587         spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11588         if (spc < 0) {
11589                 spc = 0;
11590         }
11591         drp->bottle_bw = htonl(spc);
11592         if (asoc->my_rwnd) {
11593                 drp->current_onq = htonl(asoc->size_on_reasm_queue +
11594                     asoc->size_on_all_streams +
11595                     asoc->my_rwnd_control_len +
11596                     stcb->sctp_socket->so_rcv.sb_cc);
11597         } else {
11598                 /*-
11599                  * If my rwnd is 0, possibly from mbuf depletion as well as
11600                  * space used, tell the peer there is NO space aka onq == bw
11601                  */
11602                 drp->current_onq = htonl(spc);
11603         }
11604         drp->reserved = 0;
11605         datap = drp->data;
11606         m_copydata(m, iphlen, len, (caddr_t)datap);
11607         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11608         asoc->ctrl_queue_cnt++;
11609 }
11610
11611 void
11612 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11613 {
11614         struct sctp_association *asoc;
11615         struct sctp_cwr_chunk *cwr;
11616         struct sctp_tmit_chunk *chk;
11617
11618         SCTP_TCB_LOCK_ASSERT(stcb);
11619         if (net == NULL) {
11620                 return;
11621         }
11622         asoc = &stcb->asoc;
11623         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11624                 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11625                         /*
11626                          * found a previous CWR queued to same destination
11627                          * update it if needed
11628                          */
11629                         uint32_t ctsn;
11630
11631                         cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11632                         ctsn = ntohl(cwr->tsn);
11633                         if (SCTP_TSN_GT(high_tsn, ctsn)) {
11634                                 cwr->tsn = htonl(high_tsn);
11635                         }
11636                         if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11637                                 /* Make sure override is carried */
11638                                 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11639                         }
11640                         return;
11641                 }
11642         }
11643         sctp_alloc_a_chunk(stcb, chk);
11644         if (chk == NULL) {
11645                 return;
11646         }
11647         chk->copy_by_ref = 0;
11648         chk->rec.chunk_id.id = SCTP_ECN_CWR;
11649         chk->rec.chunk_id.can_take_data = 1;
11650         chk->flags = 0;
11651         chk->asoc = &stcb->asoc;
11652         chk->send_size = sizeof(struct sctp_cwr_chunk);
11653         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11654         if (chk->data == NULL) {
11655                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11656                 return;
11657         }
11658         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11659         SCTP_BUF_LEN(chk->data) = chk->send_size;
11660         chk->sent = SCTP_DATAGRAM_UNSENT;
11661         chk->snd_count = 0;
11662         chk->whoTo = net;
11663         atomic_add_int(&chk->whoTo->ref_count, 1);
11664         cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11665         cwr->ch.chunk_type = SCTP_ECN_CWR;
11666         cwr->ch.chunk_flags = override;
11667         cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11668         cwr->tsn = htonl(high_tsn);
11669         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11670         asoc->ctrl_queue_cnt++;
11671 }
11672
11673 static int
11674 sctp_add_stream_reset_out(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk,
11675     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11676 {
11677         uint16_t len, old_len, i;
11678         struct sctp_stream_reset_out_request *req_out;
11679         struct sctp_chunkhdr *ch;
11680         int at;
11681         int number_entries = 0;
11682
11683         ch = mtod(chk->data, struct sctp_chunkhdr *);
11684         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11685         /* get to new offset for the param. */
11686         req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11687         /* now how long will this param be? */
11688         for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11689                 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) &&
11690                     (stcb->asoc.strmout[i].chunks_on_queues == 0) &&
11691                     TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
11692                         number_entries++;
11693                 }
11694         }
11695         if (number_entries == 0) {
11696                 return (0);
11697         }
11698         if (number_entries == stcb->asoc.streamoutcnt) {
11699                 number_entries = 0;
11700         }
11701         if (number_entries > SCTP_MAX_STREAMS_AT_ONCE_RESET) {
11702                 number_entries = SCTP_MAX_STREAMS_AT_ONCE_RESET;
11703         }
11704         len = (uint16_t) (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11705         req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11706         req_out->ph.param_length = htons(len);
11707         req_out->request_seq = htonl(seq);
11708         req_out->response_seq = htonl(resp_seq);
11709         req_out->send_reset_at_tsn = htonl(last_sent);
11710         at = 0;
11711         if (number_entries) {
11712                 for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11713                         if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) &&
11714                             (stcb->asoc.strmout[i].chunks_on_queues == 0) &&
11715                             TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
11716                                 req_out->list_of_streams[at] = htons(i);
11717                                 at++;
11718                                 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT;
11719                                 if (at >= number_entries) {
11720                                         break;
11721                                 }
11722                         }
11723                 }
11724         } else {
11725                 for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11726                         stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT;
11727                 }
11728         }
11729         if (SCTP_SIZE32(len) > len) {
11730                 /*-
11731                  * Need to worry about the pad we may end up adding to the
11732                  * end. This is easy since the struct is either aligned to 4
11733                  * bytes or 2 bytes off.
11734                  */
11735                 req_out->list_of_streams[number_entries] = 0;
11736         }
11737         /* now fix the chunk length */
11738         ch->chunk_length = htons(len + old_len);
11739         chk->book_size = len + old_len;
11740         chk->book_size_scale = 0;
11741         chk->send_size = SCTP_SIZE32(chk->book_size);
11742         SCTP_BUF_LEN(chk->data) = chk->send_size;
11743         return (1);
11744 }
11745
11746 static void
11747 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11748     int number_entries, uint16_t * list,
11749     uint32_t seq)
11750 {
11751         uint16_t len, old_len, i;
11752         struct sctp_stream_reset_in_request *req_in;
11753         struct sctp_chunkhdr *ch;
11754
11755         ch = mtod(chk->data, struct sctp_chunkhdr *);
11756         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11757
11758         /* get to new offset for the param. */
11759         req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11760         /* now how long will this param be? */
11761         len = (uint16_t) (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11762         req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11763         req_in->ph.param_length = htons(len);
11764         req_in->request_seq = htonl(seq);
11765         if (number_entries) {
11766                 for (i = 0; i < number_entries; i++) {
11767                         req_in->list_of_streams[i] = htons(list[i]);
11768                 }
11769         }
11770         if (SCTP_SIZE32(len) > len) {
11771                 /*-
11772                  * Need to worry about the pad we may end up adding to the
11773                  * end. This is easy since the struct is either aligned to 4
11774                  * bytes or 2 bytes off.
11775                  */
11776                 req_in->list_of_streams[number_entries] = 0;
11777         }
11778         /* now fix the chunk length */
11779         ch->chunk_length = htons(len + old_len);
11780         chk->book_size = len + old_len;
11781         chk->book_size_scale = 0;
11782         chk->send_size = SCTP_SIZE32(chk->book_size);
11783         SCTP_BUF_LEN(chk->data) = chk->send_size;
11784         return;
11785 }
11786
11787 static void
11788 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11789     uint32_t seq)
11790 {
11791         uint16_t len, old_len;
11792         struct sctp_stream_reset_tsn_request *req_tsn;
11793         struct sctp_chunkhdr *ch;
11794
11795         ch = mtod(chk->data, struct sctp_chunkhdr *);
11796         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11797
11798         /* get to new offset for the param. */
11799         req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11800         /* now how long will this param be? */
11801         len = sizeof(struct sctp_stream_reset_tsn_request);
11802         req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11803         req_tsn->ph.param_length = htons(len);
11804         req_tsn->request_seq = htonl(seq);
11805
11806         /* now fix the chunk length */
11807         ch->chunk_length = htons(len + old_len);
11808         chk->send_size = len + old_len;
11809         chk->book_size = SCTP_SIZE32(chk->send_size);
11810         chk->book_size_scale = 0;
11811         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11812         return;
11813 }
11814
11815 void
11816 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11817     uint32_t resp_seq, uint32_t result)
11818 {
11819         uint16_t len, old_len;
11820         struct sctp_stream_reset_response *resp;
11821         struct sctp_chunkhdr *ch;
11822
11823         ch = mtod(chk->data, struct sctp_chunkhdr *);
11824         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11825
11826         /* get to new offset for the param. */
11827         resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11828         /* now how long will this param be? */
11829         len = sizeof(struct sctp_stream_reset_response);
11830         resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11831         resp->ph.param_length = htons(len);
11832         resp->response_seq = htonl(resp_seq);
11833         resp->result = ntohl(result);
11834
11835         /* now fix the chunk length */
11836         ch->chunk_length = htons(len + old_len);
11837         chk->book_size = len + old_len;
11838         chk->book_size_scale = 0;
11839         chk->send_size = SCTP_SIZE32(chk->book_size);
11840         SCTP_BUF_LEN(chk->data) = chk->send_size;
11841         return;
11842 }
11843
11844 void
11845 sctp_send_deferred_reset_response(struct sctp_tcb *stcb,
11846     struct sctp_stream_reset_list *ent,
11847     int response)
11848 {
11849         struct sctp_association *asoc;
11850         struct sctp_tmit_chunk *chk;
11851         struct sctp_chunkhdr *ch;
11852
11853         asoc = &stcb->asoc;
11854
11855         /*
11856          * Reset our last reset action to the new one IP -> response
11857          * (PERFORMED probably). This assures that if we fail to send, a
11858          * retran from the peer will get the new response.
11859          */
11860         asoc->last_reset_action[0] = response;
11861         if (asoc->stream_reset_outstanding) {
11862                 return;
11863         }
11864         sctp_alloc_a_chunk(stcb, chk);
11865         if (chk == NULL) {
11866                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11867                 return;
11868         }
11869         chk->copy_by_ref = 0;
11870         chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11871         chk->rec.chunk_id.can_take_data = 0;
11872         chk->flags = 0;
11873         chk->asoc = &stcb->asoc;
11874         chk->book_size = sizeof(struct sctp_chunkhdr);
11875         chk->send_size = SCTP_SIZE32(chk->book_size);
11876         chk->book_size_scale = 0;
11877         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11878         if (chk->data == NULL) {
11879                 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11880                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11881                 return;
11882         }
11883         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11884         /* setup chunk parameters */
11885         chk->sent = SCTP_DATAGRAM_UNSENT;
11886         chk->snd_count = 0;
11887         if (stcb->asoc.alternate) {
11888                 chk->whoTo = stcb->asoc.alternate;
11889         } else {
11890                 chk->whoTo = stcb->asoc.primary_destination;
11891         }
11892         ch = mtod(chk->data, struct sctp_chunkhdr *);
11893         ch->chunk_type = SCTP_STREAM_RESET;
11894         ch->chunk_flags = 0;
11895         ch->chunk_length = htons(chk->book_size);
11896         atomic_add_int(&chk->whoTo->ref_count, 1);
11897         SCTP_BUF_LEN(chk->data) = chk->send_size;
11898         sctp_add_stream_reset_result(chk, ent->seq, response);
11899         /* insert the chunk for sending */
11900         TAILQ_INSERT_TAIL(&asoc->control_send_queue,
11901             chk,
11902             sctp_next);
11903         asoc->ctrl_queue_cnt++;
11904 }
11905
11906 void
11907 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11908     uint32_t resp_seq, uint32_t result,
11909     uint32_t send_una, uint32_t recv_next)
11910 {
11911         uint16_t len, old_len;
11912         struct sctp_stream_reset_response_tsn *resp;
11913         struct sctp_chunkhdr *ch;
11914
11915         ch = mtod(chk->data, struct sctp_chunkhdr *);
11916         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11917
11918         /* get to new offset for the param. */
11919         resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11920         /* now how long will this param be? */
11921         len = sizeof(struct sctp_stream_reset_response_tsn);
11922         resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11923         resp->ph.param_length = htons(len);
11924         resp->response_seq = htonl(resp_seq);
11925         resp->result = htonl(result);
11926         resp->senders_next_tsn = htonl(send_una);
11927         resp->receivers_next_tsn = htonl(recv_next);
11928
11929         /* now fix the chunk length */
11930         ch->chunk_length = htons(len + old_len);
11931         chk->book_size = len + old_len;
11932         chk->send_size = SCTP_SIZE32(chk->book_size);
11933         chk->book_size_scale = 0;
11934         SCTP_BUF_LEN(chk->data) = chk->send_size;
11935         return;
11936 }
11937
11938 static void
11939 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
11940     uint32_t seq,
11941     uint16_t adding)
11942 {
11943         uint16_t len, old_len;
11944         struct sctp_chunkhdr *ch;
11945         struct sctp_stream_reset_add_strm *addstr;
11946
11947         ch = mtod(chk->data, struct sctp_chunkhdr *);
11948         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11949
11950         /* get to new offset for the param. */
11951         addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11952         /* now how long will this param be? */
11953         len = sizeof(struct sctp_stream_reset_add_strm);
11954
11955         /* Fill it out. */
11956         addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
11957         addstr->ph.param_length = htons(len);
11958         addstr->request_seq = htonl(seq);
11959         addstr->number_of_streams = htons(adding);
11960         addstr->reserved = 0;
11961
11962         /* now fix the chunk length */
11963         ch->chunk_length = htons(len + old_len);
11964         chk->send_size = len + old_len;
11965         chk->book_size = SCTP_SIZE32(chk->send_size);
11966         chk->book_size_scale = 0;
11967         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11968         return;
11969 }
11970
11971 static void
11972 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
11973     uint32_t seq,
11974     uint16_t adding)
11975 {
11976         uint16_t len, old_len;
11977         struct sctp_chunkhdr *ch;
11978         struct sctp_stream_reset_add_strm *addstr;
11979
11980         ch = mtod(chk->data, struct sctp_chunkhdr *);
11981         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11982
11983         /* get to new offset for the param. */
11984         addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11985         /* now how long will this param be? */
11986         len = sizeof(struct sctp_stream_reset_add_strm);
11987         /* Fill it out. */
11988         addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
11989         addstr->ph.param_length = htons(len);
11990         addstr->request_seq = htonl(seq);
11991         addstr->number_of_streams = htons(adding);
11992         addstr->reserved = 0;
11993
11994         /* now fix the chunk length */
11995         ch->chunk_length = htons(len + old_len);
11996         chk->send_size = len + old_len;
11997         chk->book_size = SCTP_SIZE32(chk->send_size);
11998         chk->book_size_scale = 0;
11999         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
12000         return;
12001 }
12002
12003 int
12004 sctp_send_stream_reset_out_if_possible(struct sctp_tcb *stcb, int so_locked)
12005 {
12006         struct sctp_association *asoc;
12007         struct sctp_tmit_chunk *chk;
12008         struct sctp_chunkhdr *ch;
12009         uint32_t seq;
12010
12011         asoc = &stcb->asoc;
12012         asoc->trigger_reset = 0;
12013         if (asoc->stream_reset_outstanding) {
12014                 return (EALREADY);
12015         }
12016         sctp_alloc_a_chunk(stcb, chk);
12017         if (chk == NULL) {
12018                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12019                 return (ENOMEM);
12020         }
12021         chk->copy_by_ref = 0;
12022         chk->rec.chunk_id.id = SCTP_STREAM_RESET;
12023         chk->rec.chunk_id.can_take_data = 0;
12024         chk->flags = 0;
12025         chk->asoc = &stcb->asoc;
12026         chk->book_size = sizeof(struct sctp_chunkhdr);
12027         chk->send_size = SCTP_SIZE32(chk->book_size);
12028         chk->book_size_scale = 0;
12029         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
12030         if (chk->data == NULL) {
12031                 sctp_free_a_chunk(stcb, chk, so_locked);
12032                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12033                 return (ENOMEM);
12034         }
12035         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
12036
12037         /* setup chunk parameters */
12038         chk->sent = SCTP_DATAGRAM_UNSENT;
12039         chk->snd_count = 0;
12040         if (stcb->asoc.alternate) {
12041                 chk->whoTo = stcb->asoc.alternate;
12042         } else {
12043                 chk->whoTo = stcb->asoc.primary_destination;
12044         }
12045         ch = mtod(chk->data, struct sctp_chunkhdr *);
12046         ch->chunk_type = SCTP_STREAM_RESET;
12047         ch->chunk_flags = 0;
12048         ch->chunk_length = htons(chk->book_size);
12049         atomic_add_int(&chk->whoTo->ref_count, 1);
12050         SCTP_BUF_LEN(chk->data) = chk->send_size;
12051         seq = stcb->asoc.str_reset_seq_out;
12052         if (sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1))) {
12053                 seq++;
12054                 asoc->stream_reset_outstanding++;
12055         } else {
12056                 m_freem(chk->data);
12057                 chk->data = NULL;
12058                 sctp_free_a_chunk(stcb, chk, so_locked);
12059                 return (ENOENT);
12060         }
12061         asoc->str_reset = chk;
12062         /* insert the chunk for sending */
12063         TAILQ_INSERT_TAIL(&asoc->control_send_queue,
12064             chk,
12065             sctp_next);
12066         asoc->ctrl_queue_cnt++;
12067
12068         if (stcb->asoc.send_sack) {
12069                 sctp_send_sack(stcb, so_locked);
12070         }
12071         sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
12072         return (0);
12073 }
12074
12075 int
12076 sctp_send_str_reset_req(struct sctp_tcb *stcb,
12077     uint16_t number_entries, uint16_t * list,
12078     uint8_t send_in_req,
12079     uint8_t send_tsn_req,
12080     uint8_t add_stream,
12081     uint16_t adding_o,
12082     uint16_t adding_i, uint8_t peer_asked)
12083 {
12084         struct sctp_association *asoc;
12085         struct sctp_tmit_chunk *chk;
12086         struct sctp_chunkhdr *ch;
12087         int can_send_out_req = 0;
12088         uint32_t seq;
12089
12090         asoc = &stcb->asoc;
12091         if (asoc->stream_reset_outstanding) {
12092                 /*-
12093                  * Already one pending, must get ACK back to clear the flag.
12094                  */
12095                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
12096                 return (EBUSY);
12097         }
12098         if ((send_in_req == 0) && (send_tsn_req == 0) &&
12099             (add_stream == 0)) {
12100                 /* nothing to do */
12101                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12102                 return (EINVAL);
12103         }
12104         if (send_tsn_req && send_in_req) {
12105                 /* error, can't do that */
12106                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12107                 return (EINVAL);
12108         } else if (send_in_req) {
12109                 can_send_out_req = 1;
12110         }
12111         if (number_entries > (MCLBYTES -
12112             SCTP_MIN_OVERHEAD -
12113             sizeof(struct sctp_chunkhdr) -
12114             sizeof(struct sctp_stream_reset_out_request)) /
12115             sizeof(uint16_t)) {
12116                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12117                 return (ENOMEM);
12118         }
12119         sctp_alloc_a_chunk(stcb, chk);
12120         if (chk == NULL) {
12121                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12122                 return (ENOMEM);
12123         }
12124         chk->copy_by_ref = 0;
12125         chk->rec.chunk_id.id = SCTP_STREAM_RESET;
12126         chk->rec.chunk_id.can_take_data = 0;
12127         chk->flags = 0;
12128         chk->asoc = &stcb->asoc;
12129         chk->book_size = sizeof(struct sctp_chunkhdr);
12130         chk->send_size = SCTP_SIZE32(chk->book_size);
12131         chk->book_size_scale = 0;
12132
12133         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
12134         if (chk->data == NULL) {
12135                 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
12136                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12137                 return (ENOMEM);
12138         }
12139         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
12140
12141         /* setup chunk parameters */
12142         chk->sent = SCTP_DATAGRAM_UNSENT;
12143         chk->snd_count = 0;
12144         if (stcb->asoc.alternate) {
12145                 chk->whoTo = stcb->asoc.alternate;
12146         } else {
12147                 chk->whoTo = stcb->asoc.primary_destination;
12148         }
12149         atomic_add_int(&chk->whoTo->ref_count, 1);
12150         ch = mtod(chk->data, struct sctp_chunkhdr *);
12151         ch->chunk_type = SCTP_STREAM_RESET;
12152         ch->chunk_flags = 0;
12153         ch->chunk_length = htons(chk->book_size);
12154         SCTP_BUF_LEN(chk->data) = chk->send_size;
12155
12156         seq = stcb->asoc.str_reset_seq_out;
12157         if (can_send_out_req) {
12158                 int ret;
12159
12160                 ret = sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
12161                 if (ret) {
12162                         seq++;
12163                         asoc->stream_reset_outstanding++;
12164                 }
12165         }
12166         if ((add_stream & 1) &&
12167             ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
12168                 /* Need to allocate more */
12169                 struct sctp_stream_out *oldstream;
12170                 struct sctp_stream_queue_pending *sp, *nsp;
12171                 int i;
12172
12173 #if defined(SCTP_DETAILED_STR_STATS)
12174                 int j;
12175
12176 #endif
12177
12178                 oldstream = stcb->asoc.strmout;
12179                 /* get some more */
12180                 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
12181                     (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out),
12182                     SCTP_M_STRMO);
12183                 if (stcb->asoc.strmout == NULL) {
12184                         uint8_t x;
12185
12186                         stcb->asoc.strmout = oldstream;
12187                         /* Turn off the bit */
12188                         x = add_stream & 0xfe;
12189                         add_stream = x;
12190                         goto skip_stuff;
12191                 }
12192                 /*
12193                  * Ok now we proceed with copying the old out stuff and
12194                  * initializing the new stuff.
12195                  */
12196                 SCTP_TCB_SEND_LOCK(stcb);
12197                 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1);
12198                 for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
12199                         TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
12200                         stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
12201                         stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered;
12202                         stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered;
12203                         stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
12204                         stcb->asoc.strmout[i].stream_no = i;
12205                         stcb->asoc.strmout[i].state = oldstream[i].state;
12206                         /* FIX ME FIX ME */
12207                         /*
12208                          * This should be a SS_COPY operation FIX ME STREAM
12209                          * SCHEDULER EXPERT
12210                          */
12211                         stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]);
12212                         /* now anything on those queues? */
12213                         TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
12214                                 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
12215                                 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
12216                         }
12217
12218                 }
12219                 /* now the new streams */
12220                 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1);
12221                 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
12222                         TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
12223                         stcb->asoc.strmout[i].chunks_on_queues = 0;
12224 #if defined(SCTP_DETAILED_STR_STATS)
12225                         for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) {
12226                                 stcb->asoc.strmout[i].abandoned_sent[j] = 0;
12227                                 stcb->asoc.strmout[i].abandoned_unsent[j] = 0;
12228                         }
12229 #else
12230                         stcb->asoc.strmout[i].abandoned_sent[0] = 0;
12231                         stcb->asoc.strmout[i].abandoned_unsent[0] = 0;
12232 #endif
12233                         stcb->asoc.strmout[i].next_mid_ordered = 0;
12234                         stcb->asoc.strmout[i].next_mid_unordered = 0;
12235                         stcb->asoc.strmout[i].stream_no = i;
12236                         stcb->asoc.strmout[i].last_msg_incomplete = 0;
12237                         stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL);
12238                         stcb->asoc.strmout[i].state = SCTP_STREAM_CLOSED;
12239                 }
12240                 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
12241                 SCTP_FREE(oldstream, SCTP_M_STRMO);
12242                 SCTP_TCB_SEND_UNLOCK(stcb);
12243         }
12244 skip_stuff:
12245         if ((add_stream & 1) && (adding_o > 0)) {
12246                 asoc->strm_pending_add_size = adding_o;
12247                 asoc->peer_req_out = peer_asked;
12248                 sctp_add_an_out_stream(chk, seq, adding_o);
12249                 seq++;
12250                 asoc->stream_reset_outstanding++;
12251         }
12252         if ((add_stream & 2) && (adding_i > 0)) {
12253                 sctp_add_an_in_stream(chk, seq, adding_i);
12254                 seq++;
12255                 asoc->stream_reset_outstanding++;
12256         }
12257         if (send_in_req) {
12258                 sctp_add_stream_reset_in(chk, number_entries, list, seq);
12259                 seq++;
12260                 asoc->stream_reset_outstanding++;
12261         }
12262         if (send_tsn_req) {
12263                 sctp_add_stream_reset_tsn(chk, seq);
12264                 asoc->stream_reset_outstanding++;
12265         }
12266         asoc->str_reset = chk;
12267         /* insert the chunk for sending */
12268         TAILQ_INSERT_TAIL(&asoc->control_send_queue,
12269             chk,
12270             sctp_next);
12271         asoc->ctrl_queue_cnt++;
12272         if (stcb->asoc.send_sack) {
12273                 sctp_send_sack(stcb, SCTP_SO_LOCKED);
12274         }
12275         sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
12276         return (0);
12277 }
12278
12279 void
12280 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
12281     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12282     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
12283     uint32_t vrf_id, uint16_t port)
12284 {
12285         /* Don't respond to an ABORT with an ABORT. */
12286         if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
12287                 if (cause)
12288                         sctp_m_freem(cause);
12289                 return;
12290         }
12291         sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
12292             mflowtype, mflowid, fibnum,
12293             vrf_id, port);
12294         return;
12295 }
12296
12297 void
12298 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
12299     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
12300     uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum,
12301     uint32_t vrf_id, uint16_t port)
12302 {
12303         sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
12304             mflowtype, mflowid, fibnum,
12305             vrf_id, port);
12306         return;
12307 }
12308
12309 static struct mbuf *
12310 sctp_copy_resume(struct uio *uio,
12311     int max_send_len,
12312     int user_marks_eor,
12313     int *error,
12314     uint32_t * sndout,
12315     struct mbuf **new_tail)
12316 {
12317         struct mbuf *m;
12318
12319         m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
12320             (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
12321         if (m == NULL) {
12322                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
12323                 *error = ENOBUFS;
12324         } else {
12325                 *sndout = m_length(m, NULL);
12326                 *new_tail = m_last(m);
12327         }
12328         return (m);
12329 }
12330
12331 static int
12332 sctp_copy_one(struct sctp_stream_queue_pending *sp,
12333     struct uio *uio,
12334     int resv_upfront)
12335 {
12336         sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
12337             resv_upfront, 0);
12338         if (sp->data == NULL) {
12339                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS);
12340                 return (ENOBUFS);
12341         }
12342         sp->tail_mbuf = m_last(sp->data);
12343         return (0);
12344 }
12345
12346
12347
12348 static struct sctp_stream_queue_pending *
12349 sctp_copy_it_in(struct sctp_tcb *stcb,
12350     struct sctp_association *asoc,
12351     struct sctp_sndrcvinfo *srcv,
12352     struct uio *uio,
12353     struct sctp_nets *net,
12354     int max_send_len,
12355     int user_marks_eor,
12356     int *error)
12357 {
12358         /*-
12359          * This routine must be very careful in its work. Protocol
12360          * processing is up and running so care must be taken to spl...()
12361          * when you need to do something that may effect the stcb/asoc. The
12362          * sb is locked however. When data is copied the protocol processing
12363          * should be enabled since this is a slower operation...
12364          */
12365         struct sctp_stream_queue_pending *sp = NULL;
12366         int resv_in_first;
12367
12368         *error = 0;
12369         /* Now can we send this? */
12370         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12371             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12372             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12373             (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12374                 /* got data while shutting down */
12375                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12376                 *error = ECONNRESET;
12377                 goto out_now;
12378         }
12379         sctp_alloc_a_strmoq(stcb, sp);
12380         if (sp == NULL) {
12381                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12382                 *error = ENOMEM;
12383                 goto out_now;
12384         }
12385         sp->act_flags = 0;
12386         sp->sender_all_done = 0;
12387         sp->sinfo_flags = srcv->sinfo_flags;
12388         sp->timetolive = srcv->sinfo_timetolive;
12389         sp->ppid = srcv->sinfo_ppid;
12390         sp->context = srcv->sinfo_context;
12391         sp->fsn = 0;
12392         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
12393
12394         sp->stream = srcv->sinfo_stream;
12395         sp->length = (uint32_t) min(uio->uio_resid, max_send_len);
12396         if ((sp->length == (uint32_t) uio->uio_resid) &&
12397             ((user_marks_eor == 0) ||
12398             (srcv->sinfo_flags & SCTP_EOF) ||
12399             (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12400                 sp->msg_is_complete = 1;
12401         } else {
12402                 sp->msg_is_complete = 0;
12403         }
12404         sp->sender_all_done = 0;
12405         sp->some_taken = 0;
12406         sp->put_last_out = 0;
12407         resv_in_first = sizeof(struct sctp_data_chunk);
12408         sp->data = sp->tail_mbuf = NULL;
12409         if (sp->length == 0) {
12410                 *error = 0;
12411                 goto skip_copy;
12412         }
12413         if (srcv->sinfo_keynumber_valid) {
12414                 sp->auth_keyid = srcv->sinfo_keynumber;
12415         } else {
12416                 sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
12417         }
12418         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
12419                 sctp_auth_key_acquire(stcb, sp->auth_keyid);
12420                 sp->holds_key_ref = 1;
12421         }
12422         *error = sctp_copy_one(sp, uio, resv_in_first);
12423 skip_copy:
12424         if (*error) {
12425                 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
12426                 sp = NULL;
12427         } else {
12428                 if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12429                         sp->net = net;
12430                         atomic_add_int(&sp->net->ref_count, 1);
12431                 } else {
12432                         sp->net = NULL;
12433                 }
12434                 sctp_set_prsctp_policy(sp);
12435         }
12436 out_now:
12437         return (sp);
12438 }
12439
12440
12441 int
12442 sctp_sosend(struct socket *so,
12443     struct sockaddr *addr,
12444     struct uio *uio,
12445     struct mbuf *top,
12446     struct mbuf *control,
12447     int flags,
12448     struct thread *p
12449 )
12450 {
12451         int error, use_sndinfo = 0;
12452         struct sctp_sndrcvinfo sndrcvninfo;
12453         struct sockaddr *addr_to_use;
12454
12455 #if defined(INET) && defined(INET6)
12456         struct sockaddr_in sin;
12457
12458 #endif
12459
12460         if (control) {
12461                 /* process cmsg snd/rcv info (maybe a assoc-id) */
12462                 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control,
12463                     sizeof(sndrcvninfo))) {
12464                         /* got one */
12465                         use_sndinfo = 1;
12466                 }
12467         }
12468         addr_to_use = addr;
12469 #if defined(INET) && defined(INET6)
12470         if ((addr) && (addr->sa_family == AF_INET6)) {
12471                 struct sockaddr_in6 *sin6;
12472
12473                 sin6 = (struct sockaddr_in6 *)addr;
12474                 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12475                         in6_sin6_2_sin(&sin, sin6);
12476                         addr_to_use = (struct sockaddr *)&sin;
12477                 }
12478         }
12479 #endif
12480         error = sctp_lower_sosend(so, addr_to_use, uio, top,
12481             control,
12482             flags,
12483             use_sndinfo ? &sndrcvninfo : NULL
12484             ,p
12485             );
12486         return (error);
12487 }
12488
12489
12490 int
12491 sctp_lower_sosend(struct socket *so,
12492     struct sockaddr *addr,
12493     struct uio *uio,
12494     struct mbuf *i_pak,
12495     struct mbuf *control,
12496     int flags,
12497     struct sctp_sndrcvinfo *srcv
12498     ,
12499     struct thread *p
12500 )
12501 {
12502         unsigned int sndlen = 0, max_len;
12503         int error, len;
12504         struct mbuf *top = NULL;
12505         int queue_only = 0, queue_only_for_init = 0;
12506         int free_cnt_applied = 0;
12507         int un_sent;
12508         int now_filled = 0;
12509         unsigned int inqueue_bytes = 0;
12510         struct sctp_block_entry be;
12511         struct sctp_inpcb *inp;
12512         struct sctp_tcb *stcb = NULL;
12513         struct timeval now;
12514         struct sctp_nets *net;
12515         struct sctp_association *asoc;
12516         struct sctp_inpcb *t_inp;
12517         int user_marks_eor;
12518         int create_lock_applied = 0;
12519         int nagle_applies = 0;
12520         int some_on_control = 0;
12521         int got_all_of_the_send = 0;
12522         int hold_tcblock = 0;
12523         int non_blocking = 0;
12524         uint32_t local_add_more, local_soresv = 0;
12525         uint16_t port;
12526         uint16_t sinfo_flags;
12527         sctp_assoc_t sinfo_assoc_id;
12528
12529         error = 0;
12530         net = NULL;
12531         stcb = NULL;
12532         asoc = NULL;
12533
12534         t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12535         if (inp == NULL) {
12536                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12537                 error = EINVAL;
12538                 if (i_pak) {
12539                         SCTP_RELEASE_PKT(i_pak);
12540                 }
12541                 return (error);
12542         }
12543         if ((uio == NULL) && (i_pak == NULL)) {
12544                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12545                 return (EINVAL);
12546         }
12547         user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12548         atomic_add_int(&inp->total_sends, 1);
12549         if (uio) {
12550                 if (uio->uio_resid < 0) {
12551                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12552                         return (EINVAL);
12553                 }
12554                 sndlen = (unsigned int)uio->uio_resid;
12555         } else {
12556                 top = SCTP_HEADER_TO_CHAIN(i_pak);
12557                 sndlen = SCTP_HEADER_LEN(i_pak);
12558         }
12559         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
12560             (void *)addr,
12561             sndlen);
12562         if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12563             (inp->sctp_socket->so_qlimit)) {
12564                 /* The listener can NOT send */
12565                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12566                 error = ENOTCONN;
12567                 goto out_unlocked;
12568         }
12569         /**
12570          * Pre-screen address, if one is given the sin-len
12571          * must be set correctly!
12572          */
12573         if (addr) {
12574                 union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12575
12576                 switch (raddr->sa.sa_family) {
12577 #ifdef INET
12578                 case AF_INET:
12579                         if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12580                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12581                                 error = EINVAL;
12582                                 goto out_unlocked;
12583                         }
12584                         port = raddr->sin.sin_port;
12585                         break;
12586 #endif
12587 #ifdef INET6
12588                 case AF_INET6:
12589                         if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12590                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12591                                 error = EINVAL;
12592                                 goto out_unlocked;
12593                         }
12594                         port = raddr->sin6.sin6_port;
12595                         break;
12596 #endif
12597                 default:
12598                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT);
12599                         error = EAFNOSUPPORT;
12600                         goto out_unlocked;
12601                 }
12602         } else
12603                 port = 0;
12604
12605         if (srcv) {
12606                 sinfo_flags = srcv->sinfo_flags;
12607                 sinfo_assoc_id = srcv->sinfo_assoc_id;
12608                 if (INVALID_SINFO_FLAG(sinfo_flags) ||
12609                     PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12610                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12611                         error = EINVAL;
12612                         goto out_unlocked;
12613                 }
12614                 if (srcv->sinfo_flags)
12615                         SCTP_STAT_INCR(sctps_sends_with_flags);
12616         } else {
12617                 sinfo_flags = inp->def_send.sinfo_flags;
12618                 sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12619         }
12620         if (sinfo_flags & SCTP_SENDALL) {
12621                 /* its a sendall */
12622                 error = sctp_sendall(inp, uio, top, srcv);
12623                 top = NULL;
12624                 goto out_unlocked;
12625         }
12626         if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12627                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12628                 error = EINVAL;
12629                 goto out_unlocked;
12630         }
12631         /* now we must find the assoc */
12632         if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12633             (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12634                 SCTP_INP_RLOCK(inp);
12635                 stcb = LIST_FIRST(&inp->sctp_asoc_list);
12636                 if (stcb) {
12637                         SCTP_TCB_LOCK(stcb);
12638                         hold_tcblock = 1;
12639                 }
12640                 SCTP_INP_RUNLOCK(inp);
12641         } else if (sinfo_assoc_id) {
12642                 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 1);
12643                 if (stcb != NULL) {
12644                         hold_tcblock = 1;
12645                 }
12646         } else if (addr) {
12647                 /*-
12648                  * Since we did not use findep we must
12649                  * increment it, and if we don't find a tcb
12650                  * decrement it.
12651                  */
12652                 SCTP_INP_WLOCK(inp);
12653                 SCTP_INP_INCR_REF(inp);
12654                 SCTP_INP_WUNLOCK(inp);
12655                 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12656                 if (stcb == NULL) {
12657                         SCTP_INP_WLOCK(inp);
12658                         SCTP_INP_DECR_REF(inp);
12659                         SCTP_INP_WUNLOCK(inp);
12660                 } else {
12661                         hold_tcblock = 1;
12662                 }
12663         }
12664         if ((stcb == NULL) && (addr)) {
12665                 /* Possible implicit send? */
12666                 SCTP_ASOC_CREATE_LOCK(inp);
12667                 create_lock_applied = 1;
12668                 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12669                     (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12670                         /* Should I really unlock ? */
12671                         SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12672                         error = EINVAL;
12673                         goto out_unlocked;
12674
12675                 }
12676                 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12677                     (addr->sa_family == AF_INET6)) {
12678                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12679                         error = EINVAL;
12680                         goto out_unlocked;
12681                 }
12682                 SCTP_INP_WLOCK(inp);
12683                 SCTP_INP_INCR_REF(inp);
12684                 SCTP_INP_WUNLOCK(inp);
12685                 /* With the lock applied look again */
12686                 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12687                 if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12688                         stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12689                 }
12690                 if (stcb == NULL) {
12691                         SCTP_INP_WLOCK(inp);
12692                         SCTP_INP_DECR_REF(inp);
12693                         SCTP_INP_WUNLOCK(inp);
12694                 } else {
12695                         hold_tcblock = 1;
12696                 }
12697                 if (error) {
12698                         goto out_unlocked;
12699                 }
12700                 if (t_inp != inp) {
12701                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12702                         error = ENOTCONN;
12703                         goto out_unlocked;
12704                 }
12705         }
12706         if (stcb == NULL) {
12707                 if (addr == NULL) {
12708                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12709                         error = ENOENT;
12710                         goto out_unlocked;
12711                 } else {
12712                         /* We must go ahead and start the INIT process */
12713                         uint32_t vrf_id;
12714
12715                         if ((sinfo_flags & SCTP_ABORT) ||
12716                             ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12717                                 /*-
12718                                  * User asks to abort a non-existant assoc,
12719                                  * or EOF a non-existant assoc with no data
12720                                  */
12721                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12722                                 error = ENOENT;
12723                                 goto out_unlocked;
12724                         }
12725                         /* get an asoc/stcb struct */
12726                         vrf_id = inp->def_vrf_id;
12727 #ifdef INVARIANTS
12728                         if (create_lock_applied == 0) {
12729                                 panic("Error, should hold create lock and I don't?");
12730                         }
12731 #endif
12732                         stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
12733                             inp->sctp_ep.pre_open_stream_count,
12734                             inp->sctp_ep.port,
12735                             p);
12736                         if (stcb == NULL) {
12737                                 /* Error is setup for us in the call */
12738                                 goto out_unlocked;
12739                         }
12740                         if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
12741                                 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
12742                                 /*
12743                                  * Set the connected flag so we can queue
12744                                  * data
12745                                  */
12746                                 soisconnecting(so);
12747                         }
12748                         hold_tcblock = 1;
12749                         if (create_lock_applied) {
12750                                 SCTP_ASOC_CREATE_UNLOCK(inp);
12751                                 create_lock_applied = 0;
12752                         } else {
12753                                 SCTP_PRINTF("Huh-3? create lock should have been on??\n");
12754                         }
12755                         /*
12756                          * Turn on queue only flag to prevent data from
12757                          * being sent
12758                          */
12759                         queue_only = 1;
12760                         asoc = &stcb->asoc;
12761                         SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12762                         (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
12763
12764                         /* initialize authentication params for the assoc */
12765                         sctp_initialize_auth_params(inp, stcb);
12766
12767                         if (control) {
12768                                 if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12769                                         sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE,
12770                                             SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
12771                                         hold_tcblock = 0;
12772                                         stcb = NULL;
12773                                         goto out_unlocked;
12774                                 }
12775                         }
12776                         /* out with the INIT */
12777                         queue_only_for_init = 1;
12778                         /*-
12779                          * we may want to dig in after this call and adjust the MTU
12780                          * value. It defaulted to 1500 (constant) but the ro
12781                          * structure may now have an update and thus we may need to
12782                          * change it BEFORE we append the message.
12783                          */
12784                 }
12785         } else
12786                 asoc = &stcb->asoc;
12787         if (srcv == NULL)
12788                 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send;
12789         if (srcv->sinfo_flags & SCTP_ADDR_OVER) {
12790                 if (addr)
12791                         net = sctp_findnet(stcb, addr);
12792                 else
12793                         net = NULL;
12794                 if ((net == NULL) ||
12795                     ((port != 0) && (port != stcb->rport))) {
12796                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12797                         error = EINVAL;
12798                         goto out_unlocked;
12799                 }
12800         } else {
12801                 if (stcb->asoc.alternate) {
12802                         net = stcb->asoc.alternate;
12803                 } else {
12804                         net = stcb->asoc.primary_destination;
12805                 }
12806         }
12807         atomic_add_int(&stcb->total_sends, 1);
12808         /* Keep the stcb from being freed under our feet */
12809         atomic_add_int(&asoc->refcnt, 1);
12810         free_cnt_applied = 1;
12811
12812         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
12813                 if (sndlen > asoc->smallest_mtu) {
12814                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12815                         error = EMSGSIZE;
12816                         goto out_unlocked;
12817                 }
12818         }
12819         if (SCTP_SO_IS_NBIO(so)
12820             || (flags & MSG_NBIO)
12821             ) {
12822                 non_blocking = 1;
12823         }
12824         /* would we block? */
12825         if (non_blocking) {
12826                 if (hold_tcblock == 0) {
12827                         SCTP_TCB_LOCK(stcb);
12828                         hold_tcblock = 1;
12829                 }
12830                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12831                 if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) ||
12832                     (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12833                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
12834                         if (sndlen > SCTP_SB_LIMIT_SND(so))
12835                                 error = EMSGSIZE;
12836                         else
12837                                 error = EWOULDBLOCK;
12838                         goto out_unlocked;
12839                 }
12840                 stcb->asoc.sb_send_resv += sndlen;
12841                 SCTP_TCB_UNLOCK(stcb);
12842                 hold_tcblock = 0;
12843         } else {
12844                 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen);
12845         }
12846         local_soresv = sndlen;
12847         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12848                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12849                 error = ECONNRESET;
12850                 goto out_unlocked;
12851         }
12852         if (create_lock_applied) {
12853                 SCTP_ASOC_CREATE_UNLOCK(inp);
12854                 create_lock_applied = 0;
12855         }
12856         /* Is the stream no. valid? */
12857         if (srcv->sinfo_stream >= asoc->streamoutcnt) {
12858                 /* Invalid stream number */
12859                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12860                 error = EINVAL;
12861                 goto out_unlocked;
12862         }
12863         if ((asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPEN) &&
12864             (asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPENING)) {
12865                 /*
12866                  * Can't queue any data while stream reset is underway.
12867                  */
12868                 if (asoc->strmout[srcv->sinfo_stream].state > SCTP_STREAM_OPEN) {
12869                         error = EAGAIN;
12870                 } else {
12871                         error = EINVAL;
12872                 }
12873                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, error);
12874                 goto out_unlocked;
12875         }
12876         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12877             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12878                 queue_only = 1;
12879         }
12880         /* we are now done with all control */
12881         if (control) {
12882                 sctp_m_freem(control);
12883                 control = NULL;
12884         }
12885         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12886             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12887             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12888             (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12889                 if (srcv->sinfo_flags & SCTP_ABORT) {
12890                         ;
12891                 } else {
12892                         SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12893                         error = ECONNRESET;
12894                         goto out_unlocked;
12895                 }
12896         }
12897         /* Ok, we will attempt a msgsnd :> */
12898         if (p) {
12899                 p->td_ru.ru_msgsnd++;
12900         }
12901         /* Are we aborting? */
12902         if (srcv->sinfo_flags & SCTP_ABORT) {
12903                 struct mbuf *mm;
12904                 int tot_demand, tot_out = 0, max_out;
12905
12906                 SCTP_STAT_INCR(sctps_sends_with_abort);
12907                 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12908                     (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12909                         /* It has to be up before we abort */
12910                         /* how big is the user initiated abort? */
12911                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12912                         error = EINVAL;
12913                         goto out;
12914                 }
12915                 if (hold_tcblock) {
12916                         SCTP_TCB_UNLOCK(stcb);
12917                         hold_tcblock = 0;
12918                 }
12919                 if (top) {
12920                         struct mbuf *cntm = NULL;
12921
12922                         mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA);
12923                         if (sndlen != 0) {
12924                                 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12925                                         tot_out += SCTP_BUF_LEN(cntm);
12926                                 }
12927                         }
12928                 } else {
12929                         /* Must fit in a MTU */
12930                         tot_out = sndlen;
12931                         tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12932                         if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12933                                 /* To big */
12934                                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12935                                 error = EMSGSIZE;
12936                                 goto out;
12937                         }
12938                         mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA);
12939                 }
12940                 if (mm == NULL) {
12941                         SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12942                         error = ENOMEM;
12943                         goto out;
12944                 }
12945                 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12946                 max_out -= sizeof(struct sctp_abort_msg);
12947                 if (tot_out > max_out) {
12948                         tot_out = max_out;
12949                 }
12950                 if (mm) {
12951                         struct sctp_paramhdr *ph;
12952
12953                         /* now move forward the data pointer */
12954                         ph = mtod(mm, struct sctp_paramhdr *);
12955                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12956                         ph->param_length = htons((uint16_t) (sizeof(struct sctp_paramhdr) + tot_out));
12957                         ph++;
12958                         SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
12959                         if (top == NULL) {
12960                                 error = uiomove((caddr_t)ph, (int)tot_out, uio);
12961                                 if (error) {
12962                                         /*-
12963                                          * Here if we can't get his data we
12964                                          * still abort we just don't get to
12965                                          * send the users note :-0
12966                                          */
12967                                         sctp_m_freem(mm);
12968                                         mm = NULL;
12969                                 }
12970                         } else {
12971                                 if (sndlen != 0) {
12972                                         SCTP_BUF_NEXT(mm) = top;
12973                                 }
12974                         }
12975                 }
12976                 if (hold_tcblock == 0) {
12977                         SCTP_TCB_LOCK(stcb);
12978                 }
12979                 atomic_add_int(&stcb->asoc.refcnt, -1);
12980                 free_cnt_applied = 0;
12981                 /* release this lock, otherwise we hang on ourselves */
12982                 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED);
12983                 /* now relock the stcb so everything is sane */
12984                 hold_tcblock = 0;
12985                 stcb = NULL;
12986                 /*
12987                  * In this case top is already chained to mm avoid double
12988                  * free, since we free it below if top != NULL and driver
12989                  * would free it after sending the packet out
12990                  */
12991                 if (sndlen != 0) {
12992                         top = NULL;
12993                 }
12994                 goto out_unlocked;
12995         }
12996         /* Calculate the maximum we can send */
12997         inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12998         if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12999                 if (non_blocking) {
13000                         /* we already checked for non-blocking above. */
13001                         max_len = sndlen;
13002                 } else {
13003                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13004                 }
13005         } else {
13006                 max_len = 0;
13007         }
13008         if (hold_tcblock) {
13009                 SCTP_TCB_UNLOCK(stcb);
13010                 hold_tcblock = 0;
13011         }
13012         if (asoc->strmout == NULL) {
13013                 /* huh? software error */
13014                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
13015                 error = EFAULT;
13016                 goto out_unlocked;
13017         }
13018         /* Unless E_EOR mode is on, we must make a send FIT in one call. */
13019         if ((user_marks_eor == 0) &&
13020             (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
13021                 /* It will NEVER fit */
13022                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
13023                 error = EMSGSIZE;
13024                 goto out_unlocked;
13025         }
13026         if ((uio == NULL) && user_marks_eor) {
13027                 /*-
13028                  * We do not support eeor mode for
13029                  * sending with mbuf chains (like sendfile).
13030                  */
13031                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
13032                 error = EINVAL;
13033                 goto out_unlocked;
13034         }
13035         if (user_marks_eor) {
13036                 local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
13037         } else {
13038                 /*-
13039                  * For non-eeor the whole message must fit in
13040                  * the socket send buffer.
13041                  */
13042                 local_add_more = sndlen;
13043         }
13044         len = 0;
13045         if (non_blocking) {
13046                 goto skip_preblock;
13047         }
13048         if (((max_len <= local_add_more) &&
13049             (SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
13050             (max_len == 0) ||
13051             ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
13052                 /* No room right now ! */
13053                 SOCKBUF_LOCK(&so->so_snd);
13054                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
13055                 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
13056                     ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
13057                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n",
13058                             (unsigned int)SCTP_SB_LIMIT_SND(so),
13059                             inqueue_bytes,
13060                             local_add_more,
13061                             stcb->asoc.stream_queue_cnt,
13062                             stcb->asoc.chunks_on_out_queue,
13063                             SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
13064                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13065                                 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
13066                         }
13067                         be.error = 0;
13068                         stcb->block_entry = &be;
13069                         error = sbwait(&so->so_snd);
13070                         stcb->block_entry = NULL;
13071                         if (error || so->so_error || be.error) {
13072                                 if (error == 0) {
13073                                         if (so->so_error)
13074                                                 error = so->so_error;
13075                                         if (be.error) {
13076                                                 error = be.error;
13077                                         }
13078                                 }
13079                                 SOCKBUF_UNLOCK(&so->so_snd);
13080                                 goto out_unlocked;
13081                         }
13082                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13083                                 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
13084                                     asoc, stcb->asoc.total_output_queue_size);
13085                         }
13086                         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13087                                 SOCKBUF_UNLOCK(&so->so_snd);
13088                                 goto out_unlocked;
13089                         }
13090                         inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
13091                 }
13092                 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
13093                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13094                 } else {
13095                         max_len = 0;
13096                 }
13097                 SOCKBUF_UNLOCK(&so->so_snd);
13098         }
13099 skip_preblock:
13100         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13101                 goto out_unlocked;
13102         }
13103         /*
13104          * sndlen covers for mbuf case uio_resid covers for the non-mbuf
13105          * case NOTE: uio will be null when top/mbuf is passed
13106          */
13107         if (sndlen == 0) {
13108                 if (srcv->sinfo_flags & SCTP_EOF) {
13109                         got_all_of_the_send = 1;
13110                         goto dataless_eof;
13111                 } else {
13112                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
13113                         error = EINVAL;
13114                         goto out;
13115                 }
13116         }
13117         if (top == NULL) {
13118                 struct sctp_stream_queue_pending *sp;
13119                 struct sctp_stream_out *strm;
13120                 uint32_t sndout;
13121
13122                 SCTP_TCB_SEND_LOCK(stcb);
13123                 if ((asoc->stream_locked) &&
13124                     (asoc->stream_locked_on != srcv->sinfo_stream)) {
13125                         SCTP_TCB_SEND_UNLOCK(stcb);
13126                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
13127                         error = EINVAL;
13128                         goto out;
13129                 }
13130                 SCTP_TCB_SEND_UNLOCK(stcb);
13131
13132                 strm = &stcb->asoc.strmout[srcv->sinfo_stream];
13133                 if (strm->last_msg_incomplete == 0) {
13134         do_a_copy_in:
13135                         sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error);
13136                         if ((sp == NULL) || (error)) {
13137                                 goto out;
13138                         }
13139                         SCTP_TCB_SEND_LOCK(stcb);
13140                         if (sp->msg_is_complete) {
13141                                 strm->last_msg_incomplete = 0;
13142                                 asoc->stream_locked = 0;
13143                         } else {
13144                                 /*
13145                                  * Just got locked to this guy in case of an
13146                                  * interrupt.
13147                                  */
13148                                 strm->last_msg_incomplete = 1;
13149                                 if (stcb->asoc.idata_supported == 0) {
13150                                         asoc->stream_locked = 1;
13151                                         asoc->stream_locked_on = srcv->sinfo_stream;
13152                                 }
13153                                 sp->sender_all_done = 0;
13154                         }
13155                         sctp_snd_sb_alloc(stcb, sp->length);
13156                         atomic_add_int(&asoc->stream_queue_cnt, 1);
13157                         if (srcv->sinfo_flags & SCTP_UNORDERED) {
13158                                 SCTP_STAT_INCR(sctps_sends_with_unord);
13159                         }
13160                         TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
13161                         stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1);
13162                         SCTP_TCB_SEND_UNLOCK(stcb);
13163                 } else {
13164                         SCTP_TCB_SEND_LOCK(stcb);
13165                         sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
13166                         SCTP_TCB_SEND_UNLOCK(stcb);
13167                         if (sp == NULL) {
13168                                 /* ???? Huh ??? last msg is gone */
13169 #ifdef INVARIANTS
13170                                 panic("Warning: Last msg marked incomplete, yet nothing left?");
13171 #else
13172                                 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
13173                                 strm->last_msg_incomplete = 0;
13174 #endif
13175                                 goto do_a_copy_in;
13176
13177                         }
13178                 }
13179                 while (uio->uio_resid > 0) {
13180                         /* How much room do we have? */
13181                         struct mbuf *new_tail, *mm;
13182
13183                         if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
13184                                 max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
13185                         else
13186                                 max_len = 0;
13187
13188                         if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
13189                             (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
13190                             (uio->uio_resid && (uio->uio_resid <= (int)max_len))) {
13191                                 sndout = 0;
13192                                 new_tail = NULL;
13193                                 if (hold_tcblock) {
13194                                         SCTP_TCB_UNLOCK(stcb);
13195                                         hold_tcblock = 0;
13196                                 }
13197                                 mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail);
13198                                 if ((mm == NULL) || error) {
13199                                         if (mm) {
13200                                                 sctp_m_freem(mm);
13201                                         }
13202                                         goto out;
13203                                 }
13204                                 /* Update the mbuf and count */
13205                                 SCTP_TCB_SEND_LOCK(stcb);
13206                                 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13207                                         /*
13208                                          * we need to get out. Peer probably
13209                                          * aborted.
13210                                          */
13211                                         sctp_m_freem(mm);
13212                                         if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
13213                                                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
13214                                                 error = ECONNRESET;
13215                                         }
13216                                         SCTP_TCB_SEND_UNLOCK(stcb);
13217                                         goto out;
13218                                 }
13219                                 if (sp->tail_mbuf) {
13220                                         /* tack it to the end */
13221                                         SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
13222                                         sp->tail_mbuf = new_tail;
13223                                 } else {
13224                                         /* A stolen mbuf */
13225                                         sp->data = mm;
13226                                         sp->tail_mbuf = new_tail;
13227                                 }
13228                                 sctp_snd_sb_alloc(stcb, sndout);
13229                                 atomic_add_int(&sp->length, sndout);
13230                                 len += sndout;
13231                                 if (srcv->sinfo_flags & SCTP_SACK_IMMEDIATELY) {
13232                                         sp->sinfo_flags |= SCTP_SACK_IMMEDIATELY;
13233                                 }
13234                                 /* Did we reach EOR? */
13235                                 if ((uio->uio_resid == 0) &&
13236                                     ((user_marks_eor == 0) ||
13237                                     (srcv->sinfo_flags & SCTP_EOF) ||
13238                                     (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
13239                                         sp->msg_is_complete = 1;
13240                                 } else {
13241                                         sp->msg_is_complete = 0;
13242                                 }
13243                                 SCTP_TCB_SEND_UNLOCK(stcb);
13244                         }
13245                         if (uio->uio_resid == 0) {
13246                                 /* got it all? */
13247                                 continue;
13248                         }
13249                         /* PR-SCTP? */
13250                         if ((asoc->prsctp_supported) && (asoc->sent_queue_cnt_removeable > 0)) {
13251                                 /*
13252                                  * This is ugly but we must assure locking
13253                                  * order
13254                                  */
13255                                 if (hold_tcblock == 0) {
13256                                         SCTP_TCB_LOCK(stcb);
13257                                         hold_tcblock = 1;
13258                                 }
13259                                 sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
13260                                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
13261                                 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
13262                                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
13263                                 else
13264                                         max_len = 0;
13265                                 if (max_len > 0) {
13266                                         continue;
13267                                 }
13268                                 SCTP_TCB_UNLOCK(stcb);
13269                                 hold_tcblock = 0;
13270                         }
13271                         /* wait for space now */
13272                         if (non_blocking) {
13273                                 /* Non-blocking io in place out */
13274                                 goto skip_out_eof;
13275                         }
13276                         /* What about the INIT, send it maybe */
13277                         if (queue_only_for_init) {
13278                                 if (hold_tcblock == 0) {
13279                                         SCTP_TCB_LOCK(stcb);
13280                                         hold_tcblock = 1;
13281                                 }
13282                                 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13283                                         /* a collision took us forward? */
13284                                         queue_only = 0;
13285                                 } else {
13286                                         sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13287                                         SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
13288                                         queue_only = 1;
13289                                 }
13290                         }
13291                         if ((net->flight_size > net->cwnd) &&
13292                             (asoc->sctp_cmt_on_off == 0)) {
13293                                 SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13294                                 queue_only = 1;
13295                         } else if (asoc->ifp_had_enobuf) {
13296                                 SCTP_STAT_INCR(sctps_ifnomemqueued);
13297                                 if (net->flight_size > (2 * net->mtu)) {
13298                                         queue_only = 1;
13299                                 }
13300                                 asoc->ifp_had_enobuf = 0;
13301                         }
13302                         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13303                             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13304                         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13305                             (stcb->asoc.total_flight > 0) &&
13306                             (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13307                             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13308
13309                                 /*-
13310                                  * Ok, Nagle is set on and we have data outstanding.
13311                                  * Don't send anything and let SACKs drive out the
13312                                  * data unless we have a "full" segment to send.
13313                                  */
13314                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13315                                         sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13316                                 }
13317                                 SCTP_STAT_INCR(sctps_naglequeued);
13318                                 nagle_applies = 1;
13319                         } else {
13320                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13321                                         if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13322                                                 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13323                                 }
13324                                 SCTP_STAT_INCR(sctps_naglesent);
13325                                 nagle_applies = 0;
13326                         }
13327                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13328
13329                                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13330                                     nagle_applies, un_sent);
13331                                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13332                                     stcb->asoc.total_flight,
13333                                     stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13334                         }
13335                         if (queue_only_for_init)
13336                                 queue_only_for_init = 0;
13337                         if ((queue_only == 0) && (nagle_applies == 0)) {
13338                                 /*-
13339                                  * need to start chunk output
13340                                  * before blocking.. note that if
13341                                  * a lock is already applied, then
13342                                  * the input via the net is happening
13343                                  * and I don't need to start output :-D
13344                                  */
13345                                 if (hold_tcblock == 0) {
13346                                         if (SCTP_TCB_TRYLOCK(stcb)) {
13347                                                 hold_tcblock = 1;
13348                                                 sctp_chunk_output(inp,
13349                                                     stcb,
13350                                                     SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13351                                         }
13352                                 } else {
13353                                         sctp_chunk_output(inp,
13354                                             stcb,
13355                                             SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13356                                 }
13357                                 if (hold_tcblock == 1) {
13358                                         SCTP_TCB_UNLOCK(stcb);
13359                                         hold_tcblock = 0;
13360                                 }
13361                         }
13362                         SOCKBUF_LOCK(&so->so_snd);
13363                         /*-
13364                          * This is a bit strange, but I think it will
13365                          * work. The total_output_queue_size is locked and
13366                          * protected by the TCB_LOCK, which we just released.
13367                          * There is a race that can occur between releasing it
13368                          * above, and me getting the socket lock, where sacks
13369                          * come in but we have not put the SB_WAIT on the
13370                          * so_snd buffer to get the wakeup. After the LOCK
13371                          * is applied the sack_processing will also need to
13372                          * LOCK the so->so_snd to do the actual sowwakeup(). So
13373                          * once we have the socket buffer lock if we recheck the
13374                          * size we KNOW we will get to sleep safely with the
13375                          * wakeup flag in place.
13376                          */
13377                         if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
13378                             min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
13379                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13380                                         sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
13381                                             asoc, (size_t)uio->uio_resid);
13382                                 }
13383                                 be.error = 0;
13384                                 stcb->block_entry = &be;
13385                                 error = sbwait(&so->so_snd);
13386                                 stcb->block_entry = NULL;
13387
13388                                 if (error || so->so_error || be.error) {
13389                                         if (error == 0) {
13390                                                 if (so->so_error)
13391                                                         error = so->so_error;
13392                                                 if (be.error) {
13393                                                         error = be.error;
13394                                                 }
13395                                         }
13396                                         SOCKBUF_UNLOCK(&so->so_snd);
13397                                         goto out_unlocked;
13398                                 }
13399                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13400                                         sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
13401                                             asoc, stcb->asoc.total_output_queue_size);
13402                                 }
13403                         }
13404                         SOCKBUF_UNLOCK(&so->so_snd);
13405                         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13406                                 goto out_unlocked;
13407                         }
13408                 }
13409                 SCTP_TCB_SEND_LOCK(stcb);
13410                 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
13411                         SCTP_TCB_SEND_UNLOCK(stcb);
13412                         goto out_unlocked;
13413                 }
13414                 if (sp) {
13415                         if (sp->msg_is_complete == 0) {
13416                                 strm->last_msg_incomplete = 1;
13417                                 if (stcb->asoc.idata_supported == 0) {
13418                                         asoc->stream_locked = 1;
13419                                         asoc->stream_locked_on = srcv->sinfo_stream;
13420                                 }
13421                         } else {
13422                                 sp->sender_all_done = 1;
13423                                 strm->last_msg_incomplete = 0;
13424                                 asoc->stream_locked = 0;
13425                         }
13426                 } else {
13427                         SCTP_PRINTF("Huh no sp TSNH?\n");
13428                         strm->last_msg_incomplete = 0;
13429                         asoc->stream_locked = 0;
13430                 }
13431                 SCTP_TCB_SEND_UNLOCK(stcb);
13432                 if (uio->uio_resid == 0) {
13433                         got_all_of_the_send = 1;
13434                 }
13435         } else {
13436                 /* We send in a 0, since we do NOT have any locks */
13437                 error = sctp_msg_append(stcb, net, top, srcv, 0);
13438                 top = NULL;
13439                 if (srcv->sinfo_flags & SCTP_EOF) {
13440                         /*
13441                          * This should only happen for Panda for the mbuf
13442                          * send case, which does NOT yet support EEOR mode.
13443                          * Thus, we can just set this flag to do the proper
13444                          * EOF handling.
13445                          */
13446                         got_all_of_the_send = 1;
13447                 }
13448         }
13449         if (error) {
13450                 goto out;
13451         }
13452 dataless_eof:
13453         /* EOF thing ? */
13454         if ((srcv->sinfo_flags & SCTP_EOF) &&
13455             (got_all_of_the_send == 1)) {
13456                 SCTP_STAT_INCR(sctps_sends_with_eof);
13457                 error = 0;
13458                 if (hold_tcblock == 0) {
13459                         SCTP_TCB_LOCK(stcb);
13460                         hold_tcblock = 1;
13461                 }
13462                 if (TAILQ_EMPTY(&asoc->send_queue) &&
13463                     TAILQ_EMPTY(&asoc->sent_queue) &&
13464                     sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED) == 0) {
13465                         if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
13466                                 goto abort_anyway;
13467                         }
13468                         /* there is nothing queued to send, so I'm done... */
13469                         if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13470                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13471                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13472                                 struct sctp_nets *netp;
13473
13474                                 /* only send SHUTDOWN the first time through */
13475                                 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
13476                                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13477                                 }
13478                                 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
13479                                 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
13480                                 sctp_stop_timers_for_shutdown(stcb);
13481                                 if (stcb->asoc.alternate) {
13482                                         netp = stcb->asoc.alternate;
13483                                 } else {
13484                                         netp = stcb->asoc.primary_destination;
13485                                 }
13486                                 sctp_send_shutdown(stcb, netp);
13487                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13488                                     netp);
13489                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13490                                     asoc->primary_destination);
13491                         }
13492                 } else {
13493                         /*-
13494                          * we still got (or just got) data to send, so set
13495                          * SHUTDOWN_PENDING
13496                          */
13497                         /*-
13498                          * XXX sockets draft says that SCTP_EOF should be
13499                          * sent with no data.  currently, we will allow user
13500                          * data to be sent first and move to
13501                          * SHUTDOWN-PENDING
13502                          */
13503                         if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13504                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13505                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13506                                 if (hold_tcblock == 0) {
13507                                         SCTP_TCB_LOCK(stcb);
13508                                         hold_tcblock = 1;
13509                                 }
13510                                 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) {
13511                                         asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
13512                                 }
13513                                 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
13514                                 if (TAILQ_EMPTY(&asoc->send_queue) &&
13515                                     TAILQ_EMPTY(&asoc->sent_queue) &&
13516                                     (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13517                                         struct mbuf *op_err;
13518                                         char msg[SCTP_DIAG_INFO_LEN];
13519
13520                         abort_anyway:
13521                                         if (free_cnt_applied) {
13522                                                 atomic_add_int(&stcb->asoc.refcnt, -1);
13523                                                 free_cnt_applied = 0;
13524                                         }
13525                                         snprintf(msg, sizeof(msg),
13526                                             "%s:%d at %s", __FILE__, __LINE__, __func__);
13527                                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
13528                                             msg);
13529                                         sctp_abort_an_association(stcb->sctp_ep, stcb,
13530                                             op_err, SCTP_SO_LOCKED);
13531                                         /*
13532                                          * now relock the stcb so everything
13533                                          * is sane
13534                                          */
13535                                         hold_tcblock = 0;
13536                                         stcb = NULL;
13537                                         goto out;
13538                                 }
13539                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13540                                     asoc->primary_destination);
13541                                 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13542                         }
13543                 }
13544         }
13545 skip_out_eof:
13546         if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
13547                 some_on_control = 1;
13548         }
13549         if (queue_only_for_init) {
13550                 if (hold_tcblock == 0) {
13551                         SCTP_TCB_LOCK(stcb);
13552                         hold_tcblock = 1;
13553                 }
13554                 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13555                         /* a collision took us forward? */
13556                         queue_only = 0;
13557                 } else {
13558                         sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13559                         SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
13560                         queue_only = 1;
13561                 }
13562         }
13563         if ((net->flight_size > net->cwnd) &&
13564             (stcb->asoc.sctp_cmt_on_off == 0)) {
13565                 SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13566                 queue_only = 1;
13567         } else if (asoc->ifp_had_enobuf) {
13568                 SCTP_STAT_INCR(sctps_ifnomemqueued);
13569                 if (net->flight_size > (2 * net->mtu)) {
13570                         queue_only = 1;
13571                 }
13572                 asoc->ifp_had_enobuf = 0;
13573         }
13574         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13575             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13576         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13577             (stcb->asoc.total_flight > 0) &&
13578             (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13579             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13580                 /*-
13581                  * Ok, Nagle is set on and we have data outstanding.
13582                  * Don't send anything and let SACKs drive out the
13583                  * data unless wen have a "full" segment to send.
13584                  */
13585                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13586                         sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13587                 }
13588                 SCTP_STAT_INCR(sctps_naglequeued);
13589                 nagle_applies = 1;
13590         } else {
13591                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13592                         if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13593                                 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13594                 }
13595                 SCTP_STAT_INCR(sctps_naglesent);
13596                 nagle_applies = 0;
13597         }
13598         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13599                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13600                     nagle_applies, un_sent);
13601                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13602                     stcb->asoc.total_flight,
13603                     stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13604         }
13605         if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
13606                 /* we can attempt to send too. */
13607                 if (hold_tcblock == 0) {
13608                         /*
13609                          * If there is activity recv'ing sacks no need to
13610                          * send
13611                          */
13612                         if (SCTP_TCB_TRYLOCK(stcb)) {
13613                                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13614                                 hold_tcblock = 1;
13615                         }
13616                 } else {
13617                         sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13618                 }
13619         } else if ((queue_only == 0) &&
13620                     (stcb->asoc.peers_rwnd == 0) &&
13621             (stcb->asoc.total_flight == 0)) {
13622                 /* We get to have a probe outstanding */
13623                 if (hold_tcblock == 0) {
13624                         hold_tcblock = 1;
13625                         SCTP_TCB_LOCK(stcb);
13626                 }
13627                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13628         } else if (some_on_control) {
13629                 int num_out, reason, frag_point;
13630
13631                 /* Here we do control only */
13632                 if (hold_tcblock == 0) {
13633                         hold_tcblock = 1;
13634                         SCTP_TCB_LOCK(stcb);
13635                 }
13636                 frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
13637                 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
13638                     &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
13639         }
13640         SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13641             queue_only, stcb->asoc.peers_rwnd, un_sent,
13642             stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
13643             stcb->asoc.total_output_queue_size, error);
13644
13645 out:
13646 out_unlocked:
13647
13648         if (local_soresv && stcb) {
13649                 atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen);
13650         }
13651         if (create_lock_applied) {
13652                 SCTP_ASOC_CREATE_UNLOCK(inp);
13653         }
13654         if ((stcb) && hold_tcblock) {
13655                 SCTP_TCB_UNLOCK(stcb);
13656         }
13657         if (stcb && free_cnt_applied) {
13658                 atomic_add_int(&stcb->asoc.refcnt, -1);
13659         }
13660 #ifdef INVARIANTS
13661         if (stcb) {
13662                 if (mtx_owned(&stcb->tcb_mtx)) {
13663                         panic("Leaving with tcb mtx owned?");
13664                 }
13665                 if (mtx_owned(&stcb->tcb_send_mtx)) {
13666                         panic("Leaving with tcb send mtx owned?");
13667                 }
13668         }
13669 #endif
13670         if (top) {
13671                 sctp_m_freem(top);
13672         }
13673         if (control) {
13674                 sctp_m_freem(control);
13675         }
13676         return (error);
13677 }
13678
13679
13680 /*
13681  * generate an AUTHentication chunk, if required
13682  */
13683 struct mbuf *
13684 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13685     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
13686     struct sctp_tcb *stcb, uint8_t chunk)
13687 {
13688         struct mbuf *m_auth;
13689         struct sctp_auth_chunk *auth;
13690         int chunk_len;
13691         struct mbuf *cn;
13692
13693         if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13694             (stcb == NULL))
13695                 return (m);
13696
13697         if (stcb->asoc.auth_supported == 0) {
13698                 return (m);
13699         }
13700         /* does the requested chunk require auth? */
13701         if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13702                 return (m);
13703         }
13704         m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER);
13705         if (m_auth == NULL) {
13706                 /* no mbuf's */
13707                 return (m);
13708         }
13709         /* reserve some space if this will be the first mbuf */
13710         if (m == NULL)
13711                 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13712         /* fill in the AUTH chunk details */
13713         auth = mtod(m_auth, struct sctp_auth_chunk *);
13714         bzero(auth, sizeof(*auth));
13715         auth->ch.chunk_type = SCTP_AUTHENTICATION;
13716         auth->ch.chunk_flags = 0;
13717         chunk_len = sizeof(*auth) +
13718             sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13719         auth->ch.chunk_length = htons(chunk_len);
13720         auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13721         /* key id and hmac digest will be computed and filled in upon send */
13722
13723         /* save the offset where the auth was inserted into the chain */
13724         *offset = 0;
13725         for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13726                 *offset += SCTP_BUF_LEN(cn);
13727         }
13728
13729         /* update length and return pointer to the auth chunk */
13730         SCTP_BUF_LEN(m_auth) = chunk_len;
13731         m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13732         if (auth_ret != NULL)
13733                 *auth_ret = auth;
13734
13735         return (m);
13736 }
13737
13738 #ifdef INET6
13739 int
13740 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
13741 {
13742         struct nd_prefix *pfx = NULL;
13743         struct nd_pfxrouter *pfxrtr = NULL;
13744         struct sockaddr_in6 gw6;
13745
13746         if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
13747                 return (0);
13748
13749         /* get prefix entry of address */
13750         LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13751                 if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13752                         continue;
13753                 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13754                     &src6->sin6_addr, &pfx->ndpr_mask))
13755                         break;
13756         }
13757         /* no prefix entry in the prefix list */
13758         if (pfx == NULL) {
13759                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13760                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13761                 return (0);
13762         }
13763         SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13764         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13765
13766         /* search installed gateway from prefix entry */
13767         LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13768                 memset(&gw6, 0, sizeof(struct sockaddr_in6));
13769                 gw6.sin6_family = AF_INET6;
13770                 gw6.sin6_len = sizeof(struct sockaddr_in6);
13771                 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13772                     sizeof(struct in6_addr));
13773                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13774                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13775                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13776                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13777                 if (sctp_cmpaddr((struct sockaddr *)&gw6,
13778                     ro->ro_rt->rt_gateway)) {
13779                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13780                         return (1);
13781                 }
13782         }
13783         SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13784         return (0);
13785 }
13786
13787 #endif
13788
13789 int
13790 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
13791 {
13792 #ifdef INET
13793         struct sockaddr_in *sin, *mask;
13794         struct ifaddr *ifa;
13795         struct in_addr srcnetaddr, gwnetaddr;
13796
13797         if (ro == NULL || ro->ro_rt == NULL ||
13798             sifa->address.sa.sa_family != AF_INET) {
13799                 return (0);
13800         }
13801         ifa = (struct ifaddr *)sifa->ifa;
13802         mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13803         sin = &sifa->address.sin;
13804         srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13805         SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13806         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13807         SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13808
13809         sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
13810         gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13811         SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13812         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13813         SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13814         if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13815                 return (1);
13816         }
13817 #endif
13818         return (0);
13819 }