]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/netinet/sctp_output.c
MFC r263237:
[FreeBSD/stable/10.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 #include <netinet/udp.h>
54 #include <netinet/udp_var.h>
55 #include <machine/in_cksum.h>
56
57
58
59 #define SCTP_MAX_GAPS_INARRAY 4
60 struct sack_track {
61         uint8_t right_edge;     /* mergable on the right edge */
62         uint8_t left_edge;      /* mergable on the left edge */
63         uint8_t num_entries;
64         uint8_t spare;
65         struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY];
66 };
67
68 struct sack_track sack_array[256] = {
69         {0, 0, 0, 0,            /* 0x00 */
70                 {{0, 0},
71                 {0, 0},
72                 {0, 0},
73                 {0, 0}
74                 }
75         },
76         {1, 0, 1, 0,            /* 0x01 */
77                 {{0, 0},
78                 {0, 0},
79                 {0, 0},
80                 {0, 0}
81                 }
82         },
83         {0, 0, 1, 0,            /* 0x02 */
84                 {{1, 1},
85                 {0, 0},
86                 {0, 0},
87                 {0, 0}
88                 }
89         },
90         {1, 0, 1, 0,            /* 0x03 */
91                 {{0, 1},
92                 {0, 0},
93                 {0, 0},
94                 {0, 0}
95                 }
96         },
97         {0, 0, 1, 0,            /* 0x04 */
98                 {{2, 2},
99                 {0, 0},
100                 {0, 0},
101                 {0, 0}
102                 }
103         },
104         {1, 0, 2, 0,            /* 0x05 */
105                 {{0, 0},
106                 {2, 2},
107                 {0, 0},
108                 {0, 0}
109                 }
110         },
111         {0, 0, 1, 0,            /* 0x06 */
112                 {{1, 2},
113                 {0, 0},
114                 {0, 0},
115                 {0, 0}
116                 }
117         },
118         {1, 0, 1, 0,            /* 0x07 */
119                 {{0, 2},
120                 {0, 0},
121                 {0, 0},
122                 {0, 0}
123                 }
124         },
125         {0, 0, 1, 0,            /* 0x08 */
126                 {{3, 3},
127                 {0, 0},
128                 {0, 0},
129                 {0, 0}
130                 }
131         },
132         {1, 0, 2, 0,            /* 0x09 */
133                 {{0, 0},
134                 {3, 3},
135                 {0, 0},
136                 {0, 0}
137                 }
138         },
139         {0, 0, 2, 0,            /* 0x0a */
140                 {{1, 1},
141                 {3, 3},
142                 {0, 0},
143                 {0, 0}
144                 }
145         },
146         {1, 0, 2, 0,            /* 0x0b */
147                 {{0, 1},
148                 {3, 3},
149                 {0, 0},
150                 {0, 0}
151                 }
152         },
153         {0, 0, 1, 0,            /* 0x0c */
154                 {{2, 3},
155                 {0, 0},
156                 {0, 0},
157                 {0, 0}
158                 }
159         },
160         {1, 0, 2, 0,            /* 0x0d */
161                 {{0, 0},
162                 {2, 3},
163                 {0, 0},
164                 {0, 0}
165                 }
166         },
167         {0, 0, 1, 0,            /* 0x0e */
168                 {{1, 3},
169                 {0, 0},
170                 {0, 0},
171                 {0, 0}
172                 }
173         },
174         {1, 0, 1, 0,            /* 0x0f */
175                 {{0, 3},
176                 {0, 0},
177                 {0, 0},
178                 {0, 0}
179                 }
180         },
181         {0, 0, 1, 0,            /* 0x10 */
182                 {{4, 4},
183                 {0, 0},
184                 {0, 0},
185                 {0, 0}
186                 }
187         },
188         {1, 0, 2, 0,            /* 0x11 */
189                 {{0, 0},
190                 {4, 4},
191                 {0, 0},
192                 {0, 0}
193                 }
194         },
195         {0, 0, 2, 0,            /* 0x12 */
196                 {{1, 1},
197                 {4, 4},
198                 {0, 0},
199                 {0, 0}
200                 }
201         },
202         {1, 0, 2, 0,            /* 0x13 */
203                 {{0, 1},
204                 {4, 4},
205                 {0, 0},
206                 {0, 0}
207                 }
208         },
209         {0, 0, 2, 0,            /* 0x14 */
210                 {{2, 2},
211                 {4, 4},
212                 {0, 0},
213                 {0, 0}
214                 }
215         },
216         {1, 0, 3, 0,            /* 0x15 */
217                 {{0, 0},
218                 {2, 2},
219                 {4, 4},
220                 {0, 0}
221                 }
222         },
223         {0, 0, 2, 0,            /* 0x16 */
224                 {{1, 2},
225                 {4, 4},
226                 {0, 0},
227                 {0, 0}
228                 }
229         },
230         {1, 0, 2, 0,            /* 0x17 */
231                 {{0, 2},
232                 {4, 4},
233                 {0, 0},
234                 {0, 0}
235                 }
236         },
237         {0, 0, 1, 0,            /* 0x18 */
238                 {{3, 4},
239                 {0, 0},
240                 {0, 0},
241                 {0, 0}
242                 }
243         },
244         {1, 0, 2, 0,            /* 0x19 */
245                 {{0, 0},
246                 {3, 4},
247                 {0, 0},
248                 {0, 0}
249                 }
250         },
251         {0, 0, 2, 0,            /* 0x1a */
252                 {{1, 1},
253                 {3, 4},
254                 {0, 0},
255                 {0, 0}
256                 }
257         },
258         {1, 0, 2, 0,            /* 0x1b */
259                 {{0, 1},
260                 {3, 4},
261                 {0, 0},
262                 {0, 0}
263                 }
264         },
265         {0, 0, 1, 0,            /* 0x1c */
266                 {{2, 4},
267                 {0, 0},
268                 {0, 0},
269                 {0, 0}
270                 }
271         },
272         {1, 0, 2, 0,            /* 0x1d */
273                 {{0, 0},
274                 {2, 4},
275                 {0, 0},
276                 {0, 0}
277                 }
278         },
279         {0, 0, 1, 0,            /* 0x1e */
280                 {{1, 4},
281                 {0, 0},
282                 {0, 0},
283                 {0, 0}
284                 }
285         },
286         {1, 0, 1, 0,            /* 0x1f */
287                 {{0, 4},
288                 {0, 0},
289                 {0, 0},
290                 {0, 0}
291                 }
292         },
293         {0, 0, 1, 0,            /* 0x20 */
294                 {{5, 5},
295                 {0, 0},
296                 {0, 0},
297                 {0, 0}
298                 }
299         },
300         {1, 0, 2, 0,            /* 0x21 */
301                 {{0, 0},
302                 {5, 5},
303                 {0, 0},
304                 {0, 0}
305                 }
306         },
307         {0, 0, 2, 0,            /* 0x22 */
308                 {{1, 1},
309                 {5, 5},
310                 {0, 0},
311                 {0, 0}
312                 }
313         },
314         {1, 0, 2, 0,            /* 0x23 */
315                 {{0, 1},
316                 {5, 5},
317                 {0, 0},
318                 {0, 0}
319                 }
320         },
321         {0, 0, 2, 0,            /* 0x24 */
322                 {{2, 2},
323                 {5, 5},
324                 {0, 0},
325                 {0, 0}
326                 }
327         },
328         {1, 0, 3, 0,            /* 0x25 */
329                 {{0, 0},
330                 {2, 2},
331                 {5, 5},
332                 {0, 0}
333                 }
334         },
335         {0, 0, 2, 0,            /* 0x26 */
336                 {{1, 2},
337                 {5, 5},
338                 {0, 0},
339                 {0, 0}
340                 }
341         },
342         {1, 0, 2, 0,            /* 0x27 */
343                 {{0, 2},
344                 {5, 5},
345                 {0, 0},
346                 {0, 0}
347                 }
348         },
349         {0, 0, 2, 0,            /* 0x28 */
350                 {{3, 3},
351                 {5, 5},
352                 {0, 0},
353                 {0, 0}
354                 }
355         },
356         {1, 0, 3, 0,            /* 0x29 */
357                 {{0, 0},
358                 {3, 3},
359                 {5, 5},
360                 {0, 0}
361                 }
362         },
363         {0, 0, 3, 0,            /* 0x2a */
364                 {{1, 1},
365                 {3, 3},
366                 {5, 5},
367                 {0, 0}
368                 }
369         },
370         {1, 0, 3, 0,            /* 0x2b */
371                 {{0, 1},
372                 {3, 3},
373                 {5, 5},
374                 {0, 0}
375                 }
376         },
377         {0, 0, 2, 0,            /* 0x2c */
378                 {{2, 3},
379                 {5, 5},
380                 {0, 0},
381                 {0, 0}
382                 }
383         },
384         {1, 0, 3, 0,            /* 0x2d */
385                 {{0, 0},
386                 {2, 3},
387                 {5, 5},
388                 {0, 0}
389                 }
390         },
391         {0, 0, 2, 0,            /* 0x2e */
392                 {{1, 3},
393                 {5, 5},
394                 {0, 0},
395                 {0, 0}
396                 }
397         },
398         {1, 0, 2, 0,            /* 0x2f */
399                 {{0, 3},
400                 {5, 5},
401                 {0, 0},
402                 {0, 0}
403                 }
404         },
405         {0, 0, 1, 0,            /* 0x30 */
406                 {{4, 5},
407                 {0, 0},
408                 {0, 0},
409                 {0, 0}
410                 }
411         },
412         {1, 0, 2, 0,            /* 0x31 */
413                 {{0, 0},
414                 {4, 5},
415                 {0, 0},
416                 {0, 0}
417                 }
418         },
419         {0, 0, 2, 0,            /* 0x32 */
420                 {{1, 1},
421                 {4, 5},
422                 {0, 0},
423                 {0, 0}
424                 }
425         },
426         {1, 0, 2, 0,            /* 0x33 */
427                 {{0, 1},
428                 {4, 5},
429                 {0, 0},
430                 {0, 0}
431                 }
432         },
433         {0, 0, 2, 0,            /* 0x34 */
434                 {{2, 2},
435                 {4, 5},
436                 {0, 0},
437                 {0, 0}
438                 }
439         },
440         {1, 0, 3, 0,            /* 0x35 */
441                 {{0, 0},
442                 {2, 2},
443                 {4, 5},
444                 {0, 0}
445                 }
446         },
447         {0, 0, 2, 0,            /* 0x36 */
448                 {{1, 2},
449                 {4, 5},
450                 {0, 0},
451                 {0, 0}
452                 }
453         },
454         {1, 0, 2, 0,            /* 0x37 */
455                 {{0, 2},
456                 {4, 5},
457                 {0, 0},
458                 {0, 0}
459                 }
460         },
461         {0, 0, 1, 0,            /* 0x38 */
462                 {{3, 5},
463                 {0, 0},
464                 {0, 0},
465                 {0, 0}
466                 }
467         },
468         {1, 0, 2, 0,            /* 0x39 */
469                 {{0, 0},
470                 {3, 5},
471                 {0, 0},
472                 {0, 0}
473                 }
474         },
475         {0, 0, 2, 0,            /* 0x3a */
476                 {{1, 1},
477                 {3, 5},
478                 {0, 0},
479                 {0, 0}
480                 }
481         },
482         {1, 0, 2, 0,            /* 0x3b */
483                 {{0, 1},
484                 {3, 5},
485                 {0, 0},
486                 {0, 0}
487                 }
488         },
489         {0, 0, 1, 0,            /* 0x3c */
490                 {{2, 5},
491                 {0, 0},
492                 {0, 0},
493                 {0, 0}
494                 }
495         },
496         {1, 0, 2, 0,            /* 0x3d */
497                 {{0, 0},
498                 {2, 5},
499                 {0, 0},
500                 {0, 0}
501                 }
502         },
503         {0, 0, 1, 0,            /* 0x3e */
504                 {{1, 5},
505                 {0, 0},
506                 {0, 0},
507                 {0, 0}
508                 }
509         },
510         {1, 0, 1, 0,            /* 0x3f */
511                 {{0, 5},
512                 {0, 0},
513                 {0, 0},
514                 {0, 0}
515                 }
516         },
517         {0, 0, 1, 0,            /* 0x40 */
518                 {{6, 6},
519                 {0, 0},
520                 {0, 0},
521                 {0, 0}
522                 }
523         },
524         {1, 0, 2, 0,            /* 0x41 */
525                 {{0, 0},
526                 {6, 6},
527                 {0, 0},
528                 {0, 0}
529                 }
530         },
531         {0, 0, 2, 0,            /* 0x42 */
532                 {{1, 1},
533                 {6, 6},
534                 {0, 0},
535                 {0, 0}
536                 }
537         },
538         {1, 0, 2, 0,            /* 0x43 */
539                 {{0, 1},
540                 {6, 6},
541                 {0, 0},
542                 {0, 0}
543                 }
544         },
545         {0, 0, 2, 0,            /* 0x44 */
546                 {{2, 2},
547                 {6, 6},
548                 {0, 0},
549                 {0, 0}
550                 }
551         },
552         {1, 0, 3, 0,            /* 0x45 */
553                 {{0, 0},
554                 {2, 2},
555                 {6, 6},
556                 {0, 0}
557                 }
558         },
559         {0, 0, 2, 0,            /* 0x46 */
560                 {{1, 2},
561                 {6, 6},
562                 {0, 0},
563                 {0, 0}
564                 }
565         },
566         {1, 0, 2, 0,            /* 0x47 */
567                 {{0, 2},
568                 {6, 6},
569                 {0, 0},
570                 {0, 0}
571                 }
572         },
573         {0, 0, 2, 0,            /* 0x48 */
574                 {{3, 3},
575                 {6, 6},
576                 {0, 0},
577                 {0, 0}
578                 }
579         },
580         {1, 0, 3, 0,            /* 0x49 */
581                 {{0, 0},
582                 {3, 3},
583                 {6, 6},
584                 {0, 0}
585                 }
586         },
587         {0, 0, 3, 0,            /* 0x4a */
588                 {{1, 1},
589                 {3, 3},
590                 {6, 6},
591                 {0, 0}
592                 }
593         },
594         {1, 0, 3, 0,            /* 0x4b */
595                 {{0, 1},
596                 {3, 3},
597                 {6, 6},
598                 {0, 0}
599                 }
600         },
601         {0, 0, 2, 0,            /* 0x4c */
602                 {{2, 3},
603                 {6, 6},
604                 {0, 0},
605                 {0, 0}
606                 }
607         },
608         {1, 0, 3, 0,            /* 0x4d */
609                 {{0, 0},
610                 {2, 3},
611                 {6, 6},
612                 {0, 0}
613                 }
614         },
615         {0, 0, 2, 0,            /* 0x4e */
616                 {{1, 3},
617                 {6, 6},
618                 {0, 0},
619                 {0, 0}
620                 }
621         },
622         {1, 0, 2, 0,            /* 0x4f */
623                 {{0, 3},
624                 {6, 6},
625                 {0, 0},
626                 {0, 0}
627                 }
628         },
629         {0, 0, 2, 0,            /* 0x50 */
630                 {{4, 4},
631                 {6, 6},
632                 {0, 0},
633                 {0, 0}
634                 }
635         },
636         {1, 0, 3, 0,            /* 0x51 */
637                 {{0, 0},
638                 {4, 4},
639                 {6, 6},
640                 {0, 0}
641                 }
642         },
643         {0, 0, 3, 0,            /* 0x52 */
644                 {{1, 1},
645                 {4, 4},
646                 {6, 6},
647                 {0, 0}
648                 }
649         },
650         {1, 0, 3, 0,            /* 0x53 */
651                 {{0, 1},
652                 {4, 4},
653                 {6, 6},
654                 {0, 0}
655                 }
656         },
657         {0, 0, 3, 0,            /* 0x54 */
658                 {{2, 2},
659                 {4, 4},
660                 {6, 6},
661                 {0, 0}
662                 }
663         },
664         {1, 0, 4, 0,            /* 0x55 */
665                 {{0, 0},
666                 {2, 2},
667                 {4, 4},
668                 {6, 6}
669                 }
670         },
671         {0, 0, 3, 0,            /* 0x56 */
672                 {{1, 2},
673                 {4, 4},
674                 {6, 6},
675                 {0, 0}
676                 }
677         },
678         {1, 0, 3, 0,            /* 0x57 */
679                 {{0, 2},
680                 {4, 4},
681                 {6, 6},
682                 {0, 0}
683                 }
684         },
685         {0, 0, 2, 0,            /* 0x58 */
686                 {{3, 4},
687                 {6, 6},
688                 {0, 0},
689                 {0, 0}
690                 }
691         },
692         {1, 0, 3, 0,            /* 0x59 */
693                 {{0, 0},
694                 {3, 4},
695                 {6, 6},
696                 {0, 0}
697                 }
698         },
699         {0, 0, 3, 0,            /* 0x5a */
700                 {{1, 1},
701                 {3, 4},
702                 {6, 6},
703                 {0, 0}
704                 }
705         },
706         {1, 0, 3, 0,            /* 0x5b */
707                 {{0, 1},
708                 {3, 4},
709                 {6, 6},
710                 {0, 0}
711                 }
712         },
713         {0, 0, 2, 0,            /* 0x5c */
714                 {{2, 4},
715                 {6, 6},
716                 {0, 0},
717                 {0, 0}
718                 }
719         },
720         {1, 0, 3, 0,            /* 0x5d */
721                 {{0, 0},
722                 {2, 4},
723                 {6, 6},
724                 {0, 0}
725                 }
726         },
727         {0, 0, 2, 0,            /* 0x5e */
728                 {{1, 4},
729                 {6, 6},
730                 {0, 0},
731                 {0, 0}
732                 }
733         },
734         {1, 0, 2, 0,            /* 0x5f */
735                 {{0, 4},
736                 {6, 6},
737                 {0, 0},
738                 {0, 0}
739                 }
740         },
741         {0, 0, 1, 0,            /* 0x60 */
742                 {{5, 6},
743                 {0, 0},
744                 {0, 0},
745                 {0, 0}
746                 }
747         },
748         {1, 0, 2, 0,            /* 0x61 */
749                 {{0, 0},
750                 {5, 6},
751                 {0, 0},
752                 {0, 0}
753                 }
754         },
755         {0, 0, 2, 0,            /* 0x62 */
756                 {{1, 1},
757                 {5, 6},
758                 {0, 0},
759                 {0, 0}
760                 }
761         },
762         {1, 0, 2, 0,            /* 0x63 */
763                 {{0, 1},
764                 {5, 6},
765                 {0, 0},
766                 {0, 0}
767                 }
768         },
769         {0, 0, 2, 0,            /* 0x64 */
770                 {{2, 2},
771                 {5, 6},
772                 {0, 0},
773                 {0, 0}
774                 }
775         },
776         {1, 0, 3, 0,            /* 0x65 */
777                 {{0, 0},
778                 {2, 2},
779                 {5, 6},
780                 {0, 0}
781                 }
782         },
783         {0, 0, 2, 0,            /* 0x66 */
784                 {{1, 2},
785                 {5, 6},
786                 {0, 0},
787                 {0, 0}
788                 }
789         },
790         {1, 0, 2, 0,            /* 0x67 */
791                 {{0, 2},
792                 {5, 6},
793                 {0, 0},
794                 {0, 0}
795                 }
796         },
797         {0, 0, 2, 0,            /* 0x68 */
798                 {{3, 3},
799                 {5, 6},
800                 {0, 0},
801                 {0, 0}
802                 }
803         },
804         {1, 0, 3, 0,            /* 0x69 */
805                 {{0, 0},
806                 {3, 3},
807                 {5, 6},
808                 {0, 0}
809                 }
810         },
811         {0, 0, 3, 0,            /* 0x6a */
812                 {{1, 1},
813                 {3, 3},
814                 {5, 6},
815                 {0, 0}
816                 }
817         },
818         {1, 0, 3, 0,            /* 0x6b */
819                 {{0, 1},
820                 {3, 3},
821                 {5, 6},
822                 {0, 0}
823                 }
824         },
825         {0, 0, 2, 0,            /* 0x6c */
826                 {{2, 3},
827                 {5, 6},
828                 {0, 0},
829                 {0, 0}
830                 }
831         },
832         {1, 0, 3, 0,            /* 0x6d */
833                 {{0, 0},
834                 {2, 3},
835                 {5, 6},
836                 {0, 0}
837                 }
838         },
839         {0, 0, 2, 0,            /* 0x6e */
840                 {{1, 3},
841                 {5, 6},
842                 {0, 0},
843                 {0, 0}
844                 }
845         },
846         {1, 0, 2, 0,            /* 0x6f */
847                 {{0, 3},
848                 {5, 6},
849                 {0, 0},
850                 {0, 0}
851                 }
852         },
853         {0, 0, 1, 0,            /* 0x70 */
854                 {{4, 6},
855                 {0, 0},
856                 {0, 0},
857                 {0, 0}
858                 }
859         },
860         {1, 0, 2, 0,            /* 0x71 */
861                 {{0, 0},
862                 {4, 6},
863                 {0, 0},
864                 {0, 0}
865                 }
866         },
867         {0, 0, 2, 0,            /* 0x72 */
868                 {{1, 1},
869                 {4, 6},
870                 {0, 0},
871                 {0, 0}
872                 }
873         },
874         {1, 0, 2, 0,            /* 0x73 */
875                 {{0, 1},
876                 {4, 6},
877                 {0, 0},
878                 {0, 0}
879                 }
880         },
881         {0, 0, 2, 0,            /* 0x74 */
882                 {{2, 2},
883                 {4, 6},
884                 {0, 0},
885                 {0, 0}
886                 }
887         },
888         {1, 0, 3, 0,            /* 0x75 */
889                 {{0, 0},
890                 {2, 2},
891                 {4, 6},
892                 {0, 0}
893                 }
894         },
895         {0, 0, 2, 0,            /* 0x76 */
896                 {{1, 2},
897                 {4, 6},
898                 {0, 0},
899                 {0, 0}
900                 }
901         },
902         {1, 0, 2, 0,            /* 0x77 */
903                 {{0, 2},
904                 {4, 6},
905                 {0, 0},
906                 {0, 0}
907                 }
908         },
909         {0, 0, 1, 0,            /* 0x78 */
910                 {{3, 6},
911                 {0, 0},
912                 {0, 0},
913                 {0, 0}
914                 }
915         },
916         {1, 0, 2, 0,            /* 0x79 */
917                 {{0, 0},
918                 {3, 6},
919                 {0, 0},
920                 {0, 0}
921                 }
922         },
923         {0, 0, 2, 0,            /* 0x7a */
924                 {{1, 1},
925                 {3, 6},
926                 {0, 0},
927                 {0, 0}
928                 }
929         },
930         {1, 0, 2, 0,            /* 0x7b */
931                 {{0, 1},
932                 {3, 6},
933                 {0, 0},
934                 {0, 0}
935                 }
936         },
937         {0, 0, 1, 0,            /* 0x7c */
938                 {{2, 6},
939                 {0, 0},
940                 {0, 0},
941                 {0, 0}
942                 }
943         },
944         {1, 0, 2, 0,            /* 0x7d */
945                 {{0, 0},
946                 {2, 6},
947                 {0, 0},
948                 {0, 0}
949                 }
950         },
951         {0, 0, 1, 0,            /* 0x7e */
952                 {{1, 6},
953                 {0, 0},
954                 {0, 0},
955                 {0, 0}
956                 }
957         },
958         {1, 0, 1, 0,            /* 0x7f */
959                 {{0, 6},
960                 {0, 0},
961                 {0, 0},
962                 {0, 0}
963                 }
964         },
965         {0, 1, 1, 0,            /* 0x80 */
966                 {{7, 7},
967                 {0, 0},
968                 {0, 0},
969                 {0, 0}
970                 }
971         },
972         {1, 1, 2, 0,            /* 0x81 */
973                 {{0, 0},
974                 {7, 7},
975                 {0, 0},
976                 {0, 0}
977                 }
978         },
979         {0, 1, 2, 0,            /* 0x82 */
980                 {{1, 1},
981                 {7, 7},
982                 {0, 0},
983                 {0, 0}
984                 }
985         },
986         {1, 1, 2, 0,            /* 0x83 */
987                 {{0, 1},
988                 {7, 7},
989                 {0, 0},
990                 {0, 0}
991                 }
992         },
993         {0, 1, 2, 0,            /* 0x84 */
994                 {{2, 2},
995                 {7, 7},
996                 {0, 0},
997                 {0, 0}
998                 }
999         },
1000         {1, 1, 3, 0,            /* 0x85 */
1001                 {{0, 0},
1002                 {2, 2},
1003                 {7, 7},
1004                 {0, 0}
1005                 }
1006         },
1007         {0, 1, 2, 0,            /* 0x86 */
1008                 {{1, 2},
1009                 {7, 7},
1010                 {0, 0},
1011                 {0, 0}
1012                 }
1013         },
1014         {1, 1, 2, 0,            /* 0x87 */
1015                 {{0, 2},
1016                 {7, 7},
1017                 {0, 0},
1018                 {0, 0}
1019                 }
1020         },
1021         {0, 1, 2, 0,            /* 0x88 */
1022                 {{3, 3},
1023                 {7, 7},
1024                 {0, 0},
1025                 {0, 0}
1026                 }
1027         },
1028         {1, 1, 3, 0,            /* 0x89 */
1029                 {{0, 0},
1030                 {3, 3},
1031                 {7, 7},
1032                 {0, 0}
1033                 }
1034         },
1035         {0, 1, 3, 0,            /* 0x8a */
1036                 {{1, 1},
1037                 {3, 3},
1038                 {7, 7},
1039                 {0, 0}
1040                 }
1041         },
1042         {1, 1, 3, 0,            /* 0x8b */
1043                 {{0, 1},
1044                 {3, 3},
1045                 {7, 7},
1046                 {0, 0}
1047                 }
1048         },
1049         {0, 1, 2, 0,            /* 0x8c */
1050                 {{2, 3},
1051                 {7, 7},
1052                 {0, 0},
1053                 {0, 0}
1054                 }
1055         },
1056         {1, 1, 3, 0,            /* 0x8d */
1057                 {{0, 0},
1058                 {2, 3},
1059                 {7, 7},
1060                 {0, 0}
1061                 }
1062         },
1063         {0, 1, 2, 0,            /* 0x8e */
1064                 {{1, 3},
1065                 {7, 7},
1066                 {0, 0},
1067                 {0, 0}
1068                 }
1069         },
1070         {1, 1, 2, 0,            /* 0x8f */
1071                 {{0, 3},
1072                 {7, 7},
1073                 {0, 0},
1074                 {0, 0}
1075                 }
1076         },
1077         {0, 1, 2, 0,            /* 0x90 */
1078                 {{4, 4},
1079                 {7, 7},
1080                 {0, 0},
1081                 {0, 0}
1082                 }
1083         },
1084         {1, 1, 3, 0,            /* 0x91 */
1085                 {{0, 0},
1086                 {4, 4},
1087                 {7, 7},
1088                 {0, 0}
1089                 }
1090         },
1091         {0, 1, 3, 0,            /* 0x92 */
1092                 {{1, 1},
1093                 {4, 4},
1094                 {7, 7},
1095                 {0, 0}
1096                 }
1097         },
1098         {1, 1, 3, 0,            /* 0x93 */
1099                 {{0, 1},
1100                 {4, 4},
1101                 {7, 7},
1102                 {0, 0}
1103                 }
1104         },
1105         {0, 1, 3, 0,            /* 0x94 */
1106                 {{2, 2},
1107                 {4, 4},
1108                 {7, 7},
1109                 {0, 0}
1110                 }
1111         },
1112         {1, 1, 4, 0,            /* 0x95 */
1113                 {{0, 0},
1114                 {2, 2},
1115                 {4, 4},
1116                 {7, 7}
1117                 }
1118         },
1119         {0, 1, 3, 0,            /* 0x96 */
1120                 {{1, 2},
1121                 {4, 4},
1122                 {7, 7},
1123                 {0, 0}
1124                 }
1125         },
1126         {1, 1, 3, 0,            /* 0x97 */
1127                 {{0, 2},
1128                 {4, 4},
1129                 {7, 7},
1130                 {0, 0}
1131                 }
1132         },
1133         {0, 1, 2, 0,            /* 0x98 */
1134                 {{3, 4},
1135                 {7, 7},
1136                 {0, 0},
1137                 {0, 0}
1138                 }
1139         },
1140         {1, 1, 3, 0,            /* 0x99 */
1141                 {{0, 0},
1142                 {3, 4},
1143                 {7, 7},
1144                 {0, 0}
1145                 }
1146         },
1147         {0, 1, 3, 0,            /* 0x9a */
1148                 {{1, 1},
1149                 {3, 4},
1150                 {7, 7},
1151                 {0, 0}
1152                 }
1153         },
1154         {1, 1, 3, 0,            /* 0x9b */
1155                 {{0, 1},
1156                 {3, 4},
1157                 {7, 7},
1158                 {0, 0}
1159                 }
1160         },
1161         {0, 1, 2, 0,            /* 0x9c */
1162                 {{2, 4},
1163                 {7, 7},
1164                 {0, 0},
1165                 {0, 0}
1166                 }
1167         },
1168         {1, 1, 3, 0,            /* 0x9d */
1169                 {{0, 0},
1170                 {2, 4},
1171                 {7, 7},
1172                 {0, 0}
1173                 }
1174         },
1175         {0, 1, 2, 0,            /* 0x9e */
1176                 {{1, 4},
1177                 {7, 7},
1178                 {0, 0},
1179                 {0, 0}
1180                 }
1181         },
1182         {1, 1, 2, 0,            /* 0x9f */
1183                 {{0, 4},
1184                 {7, 7},
1185                 {0, 0},
1186                 {0, 0}
1187                 }
1188         },
1189         {0, 1, 2, 0,            /* 0xa0 */
1190                 {{5, 5},
1191                 {7, 7},
1192                 {0, 0},
1193                 {0, 0}
1194                 }
1195         },
1196         {1, 1, 3, 0,            /* 0xa1 */
1197                 {{0, 0},
1198                 {5, 5},
1199                 {7, 7},
1200                 {0, 0}
1201                 }
1202         },
1203         {0, 1, 3, 0,            /* 0xa2 */
1204                 {{1, 1},
1205                 {5, 5},
1206                 {7, 7},
1207                 {0, 0}
1208                 }
1209         },
1210         {1, 1, 3, 0,            /* 0xa3 */
1211                 {{0, 1},
1212                 {5, 5},
1213                 {7, 7},
1214                 {0, 0}
1215                 }
1216         },
1217         {0, 1, 3, 0,            /* 0xa4 */
1218                 {{2, 2},
1219                 {5, 5},
1220                 {7, 7},
1221                 {0, 0}
1222                 }
1223         },
1224         {1, 1, 4, 0,            /* 0xa5 */
1225                 {{0, 0},
1226                 {2, 2},
1227                 {5, 5},
1228                 {7, 7}
1229                 }
1230         },
1231         {0, 1, 3, 0,            /* 0xa6 */
1232                 {{1, 2},
1233                 {5, 5},
1234                 {7, 7},
1235                 {0, 0}
1236                 }
1237         },
1238         {1, 1, 3, 0,            /* 0xa7 */
1239                 {{0, 2},
1240                 {5, 5},
1241                 {7, 7},
1242                 {0, 0}
1243                 }
1244         },
1245         {0, 1, 3, 0,            /* 0xa8 */
1246                 {{3, 3},
1247                 {5, 5},
1248                 {7, 7},
1249                 {0, 0}
1250                 }
1251         },
1252         {1, 1, 4, 0,            /* 0xa9 */
1253                 {{0, 0},
1254                 {3, 3},
1255                 {5, 5},
1256                 {7, 7}
1257                 }
1258         },
1259         {0, 1, 4, 0,            /* 0xaa */
1260                 {{1, 1},
1261                 {3, 3},
1262                 {5, 5},
1263                 {7, 7}
1264                 }
1265         },
1266         {1, 1, 4, 0,            /* 0xab */
1267                 {{0, 1},
1268                 {3, 3},
1269                 {5, 5},
1270                 {7, 7}
1271                 }
1272         },
1273         {0, 1, 3, 0,            /* 0xac */
1274                 {{2, 3},
1275                 {5, 5},
1276                 {7, 7},
1277                 {0, 0}
1278                 }
1279         },
1280         {1, 1, 4, 0,            /* 0xad */
1281                 {{0, 0},
1282                 {2, 3},
1283                 {5, 5},
1284                 {7, 7}
1285                 }
1286         },
1287         {0, 1, 3, 0,            /* 0xae */
1288                 {{1, 3},
1289                 {5, 5},
1290                 {7, 7},
1291                 {0, 0}
1292                 }
1293         },
1294         {1, 1, 3, 0,            /* 0xaf */
1295                 {{0, 3},
1296                 {5, 5},
1297                 {7, 7},
1298                 {0, 0}
1299                 }
1300         },
1301         {0, 1, 2, 0,            /* 0xb0 */
1302                 {{4, 5},
1303                 {7, 7},
1304                 {0, 0},
1305                 {0, 0}
1306                 }
1307         },
1308         {1, 1, 3, 0,            /* 0xb1 */
1309                 {{0, 0},
1310                 {4, 5},
1311                 {7, 7},
1312                 {0, 0}
1313                 }
1314         },
1315         {0, 1, 3, 0,            /* 0xb2 */
1316                 {{1, 1},
1317                 {4, 5},
1318                 {7, 7},
1319                 {0, 0}
1320                 }
1321         },
1322         {1, 1, 3, 0,            /* 0xb3 */
1323                 {{0, 1},
1324                 {4, 5},
1325                 {7, 7},
1326                 {0, 0}
1327                 }
1328         },
1329         {0, 1, 3, 0,            /* 0xb4 */
1330                 {{2, 2},
1331                 {4, 5},
1332                 {7, 7},
1333                 {0, 0}
1334                 }
1335         },
1336         {1, 1, 4, 0,            /* 0xb5 */
1337                 {{0, 0},
1338                 {2, 2},
1339                 {4, 5},
1340                 {7, 7}
1341                 }
1342         },
1343         {0, 1, 3, 0,            /* 0xb6 */
1344                 {{1, 2},
1345                 {4, 5},
1346                 {7, 7},
1347                 {0, 0}
1348                 }
1349         },
1350         {1, 1, 3, 0,            /* 0xb7 */
1351                 {{0, 2},
1352                 {4, 5},
1353                 {7, 7},
1354                 {0, 0}
1355                 }
1356         },
1357         {0, 1, 2, 0,            /* 0xb8 */
1358                 {{3, 5},
1359                 {7, 7},
1360                 {0, 0},
1361                 {0, 0}
1362                 }
1363         },
1364         {1, 1, 3, 0,            /* 0xb9 */
1365                 {{0, 0},
1366                 {3, 5},
1367                 {7, 7},
1368                 {0, 0}
1369                 }
1370         },
1371         {0, 1, 3, 0,            /* 0xba */
1372                 {{1, 1},
1373                 {3, 5},
1374                 {7, 7},
1375                 {0, 0}
1376                 }
1377         },
1378         {1, 1, 3, 0,            /* 0xbb */
1379                 {{0, 1},
1380                 {3, 5},
1381                 {7, 7},
1382                 {0, 0}
1383                 }
1384         },
1385         {0, 1, 2, 0,            /* 0xbc */
1386                 {{2, 5},
1387                 {7, 7},
1388                 {0, 0},
1389                 {0, 0}
1390                 }
1391         },
1392         {1, 1, 3, 0,            /* 0xbd */
1393                 {{0, 0},
1394                 {2, 5},
1395                 {7, 7},
1396                 {0, 0}
1397                 }
1398         },
1399         {0, 1, 2, 0,            /* 0xbe */
1400                 {{1, 5},
1401                 {7, 7},
1402                 {0, 0},
1403                 {0, 0}
1404                 }
1405         },
1406         {1, 1, 2, 0,            /* 0xbf */
1407                 {{0, 5},
1408                 {7, 7},
1409                 {0, 0},
1410                 {0, 0}
1411                 }
1412         },
1413         {0, 1, 1, 0,            /* 0xc0 */
1414                 {{6, 7},
1415                 {0, 0},
1416                 {0, 0},
1417                 {0, 0}
1418                 }
1419         },
1420         {1, 1, 2, 0,            /* 0xc1 */
1421                 {{0, 0},
1422                 {6, 7},
1423                 {0, 0},
1424                 {0, 0}
1425                 }
1426         },
1427         {0, 1, 2, 0,            /* 0xc2 */
1428                 {{1, 1},
1429                 {6, 7},
1430                 {0, 0},
1431                 {0, 0}
1432                 }
1433         },
1434         {1, 1, 2, 0,            /* 0xc3 */
1435                 {{0, 1},
1436                 {6, 7},
1437                 {0, 0},
1438                 {0, 0}
1439                 }
1440         },
1441         {0, 1, 2, 0,            /* 0xc4 */
1442                 {{2, 2},
1443                 {6, 7},
1444                 {0, 0},
1445                 {0, 0}
1446                 }
1447         },
1448         {1, 1, 3, 0,            /* 0xc5 */
1449                 {{0, 0},
1450                 {2, 2},
1451                 {6, 7},
1452                 {0, 0}
1453                 }
1454         },
1455         {0, 1, 2, 0,            /* 0xc6 */
1456                 {{1, 2},
1457                 {6, 7},
1458                 {0, 0},
1459                 {0, 0}
1460                 }
1461         },
1462         {1, 1, 2, 0,            /* 0xc7 */
1463                 {{0, 2},
1464                 {6, 7},
1465                 {0, 0},
1466                 {0, 0}
1467                 }
1468         },
1469         {0, 1, 2, 0,            /* 0xc8 */
1470                 {{3, 3},
1471                 {6, 7},
1472                 {0, 0},
1473                 {0, 0}
1474                 }
1475         },
1476         {1, 1, 3, 0,            /* 0xc9 */
1477                 {{0, 0},
1478                 {3, 3},
1479                 {6, 7},
1480                 {0, 0}
1481                 }
1482         },
1483         {0, 1, 3, 0,            /* 0xca */
1484                 {{1, 1},
1485                 {3, 3},
1486                 {6, 7},
1487                 {0, 0}
1488                 }
1489         },
1490         {1, 1, 3, 0,            /* 0xcb */
1491                 {{0, 1},
1492                 {3, 3},
1493                 {6, 7},
1494                 {0, 0}
1495                 }
1496         },
1497         {0, 1, 2, 0,            /* 0xcc */
1498                 {{2, 3},
1499                 {6, 7},
1500                 {0, 0},
1501                 {0, 0}
1502                 }
1503         },
1504         {1, 1, 3, 0,            /* 0xcd */
1505                 {{0, 0},
1506                 {2, 3},
1507                 {6, 7},
1508                 {0, 0}
1509                 }
1510         },
1511         {0, 1, 2, 0,            /* 0xce */
1512                 {{1, 3},
1513                 {6, 7},
1514                 {0, 0},
1515                 {0, 0}
1516                 }
1517         },
1518         {1, 1, 2, 0,            /* 0xcf */
1519                 {{0, 3},
1520                 {6, 7},
1521                 {0, 0},
1522                 {0, 0}
1523                 }
1524         },
1525         {0, 1, 2, 0,            /* 0xd0 */
1526                 {{4, 4},
1527                 {6, 7},
1528                 {0, 0},
1529                 {0, 0}
1530                 }
1531         },
1532         {1, 1, 3, 0,            /* 0xd1 */
1533                 {{0, 0},
1534                 {4, 4},
1535                 {6, 7},
1536                 {0, 0}
1537                 }
1538         },
1539         {0, 1, 3, 0,            /* 0xd2 */
1540                 {{1, 1},
1541                 {4, 4},
1542                 {6, 7},
1543                 {0, 0}
1544                 }
1545         },
1546         {1, 1, 3, 0,            /* 0xd3 */
1547                 {{0, 1},
1548                 {4, 4},
1549                 {6, 7},
1550                 {0, 0}
1551                 }
1552         },
1553         {0, 1, 3, 0,            /* 0xd4 */
1554                 {{2, 2},
1555                 {4, 4},
1556                 {6, 7},
1557                 {0, 0}
1558                 }
1559         },
1560         {1, 1, 4, 0,            /* 0xd5 */
1561                 {{0, 0},
1562                 {2, 2},
1563                 {4, 4},
1564                 {6, 7}
1565                 }
1566         },
1567         {0, 1, 3, 0,            /* 0xd6 */
1568                 {{1, 2},
1569                 {4, 4},
1570                 {6, 7},
1571                 {0, 0}
1572                 }
1573         },
1574         {1, 1, 3, 0,            /* 0xd7 */
1575                 {{0, 2},
1576                 {4, 4},
1577                 {6, 7},
1578                 {0, 0}
1579                 }
1580         },
1581         {0, 1, 2, 0,            /* 0xd8 */
1582                 {{3, 4},
1583                 {6, 7},
1584                 {0, 0},
1585                 {0, 0}
1586                 }
1587         },
1588         {1, 1, 3, 0,            /* 0xd9 */
1589                 {{0, 0},
1590                 {3, 4},
1591                 {6, 7},
1592                 {0, 0}
1593                 }
1594         },
1595         {0, 1, 3, 0,            /* 0xda */
1596                 {{1, 1},
1597                 {3, 4},
1598                 {6, 7},
1599                 {0, 0}
1600                 }
1601         },
1602         {1, 1, 3, 0,            /* 0xdb */
1603                 {{0, 1},
1604                 {3, 4},
1605                 {6, 7},
1606                 {0, 0}
1607                 }
1608         },
1609         {0, 1, 2, 0,            /* 0xdc */
1610                 {{2, 4},
1611                 {6, 7},
1612                 {0, 0},
1613                 {0, 0}
1614                 }
1615         },
1616         {1, 1, 3, 0,            /* 0xdd */
1617                 {{0, 0},
1618                 {2, 4},
1619                 {6, 7},
1620                 {0, 0}
1621                 }
1622         },
1623         {0, 1, 2, 0,            /* 0xde */
1624                 {{1, 4},
1625                 {6, 7},
1626                 {0, 0},
1627                 {0, 0}
1628                 }
1629         },
1630         {1, 1, 2, 0,            /* 0xdf */
1631                 {{0, 4},
1632                 {6, 7},
1633                 {0, 0},
1634                 {0, 0}
1635                 }
1636         },
1637         {0, 1, 1, 0,            /* 0xe0 */
1638                 {{5, 7},
1639                 {0, 0},
1640                 {0, 0},
1641                 {0, 0}
1642                 }
1643         },
1644         {1, 1, 2, 0,            /* 0xe1 */
1645                 {{0, 0},
1646                 {5, 7},
1647                 {0, 0},
1648                 {0, 0}
1649                 }
1650         },
1651         {0, 1, 2, 0,            /* 0xe2 */
1652                 {{1, 1},
1653                 {5, 7},
1654                 {0, 0},
1655                 {0, 0}
1656                 }
1657         },
1658         {1, 1, 2, 0,            /* 0xe3 */
1659                 {{0, 1},
1660                 {5, 7},
1661                 {0, 0},
1662                 {0, 0}
1663                 }
1664         },
1665         {0, 1, 2, 0,            /* 0xe4 */
1666                 {{2, 2},
1667                 {5, 7},
1668                 {0, 0},
1669                 {0, 0}
1670                 }
1671         },
1672         {1, 1, 3, 0,            /* 0xe5 */
1673                 {{0, 0},
1674                 {2, 2},
1675                 {5, 7},
1676                 {0, 0}
1677                 }
1678         },
1679         {0, 1, 2, 0,            /* 0xe6 */
1680                 {{1, 2},
1681                 {5, 7},
1682                 {0, 0},
1683                 {0, 0}
1684                 }
1685         },
1686         {1, 1, 2, 0,            /* 0xe7 */
1687                 {{0, 2},
1688                 {5, 7},
1689                 {0, 0},
1690                 {0, 0}
1691                 }
1692         },
1693         {0, 1, 2, 0,            /* 0xe8 */
1694                 {{3, 3},
1695                 {5, 7},
1696                 {0, 0},
1697                 {0, 0}
1698                 }
1699         },
1700         {1, 1, 3, 0,            /* 0xe9 */
1701                 {{0, 0},
1702                 {3, 3},
1703                 {5, 7},
1704                 {0, 0}
1705                 }
1706         },
1707         {0, 1, 3, 0,            /* 0xea */
1708                 {{1, 1},
1709                 {3, 3},
1710                 {5, 7},
1711                 {0, 0}
1712                 }
1713         },
1714         {1, 1, 3, 0,            /* 0xeb */
1715                 {{0, 1},
1716                 {3, 3},
1717                 {5, 7},
1718                 {0, 0}
1719                 }
1720         },
1721         {0, 1, 2, 0,            /* 0xec */
1722                 {{2, 3},
1723                 {5, 7},
1724                 {0, 0},
1725                 {0, 0}
1726                 }
1727         },
1728         {1, 1, 3, 0,            /* 0xed */
1729                 {{0, 0},
1730                 {2, 3},
1731                 {5, 7},
1732                 {0, 0}
1733                 }
1734         },
1735         {0, 1, 2, 0,            /* 0xee */
1736                 {{1, 3},
1737                 {5, 7},
1738                 {0, 0},
1739                 {0, 0}
1740                 }
1741         },
1742         {1, 1, 2, 0,            /* 0xef */
1743                 {{0, 3},
1744                 {5, 7},
1745                 {0, 0},
1746                 {0, 0}
1747                 }
1748         },
1749         {0, 1, 1, 0,            /* 0xf0 */
1750                 {{4, 7},
1751                 {0, 0},
1752                 {0, 0},
1753                 {0, 0}
1754                 }
1755         },
1756         {1, 1, 2, 0,            /* 0xf1 */
1757                 {{0, 0},
1758                 {4, 7},
1759                 {0, 0},
1760                 {0, 0}
1761                 }
1762         },
1763         {0, 1, 2, 0,            /* 0xf2 */
1764                 {{1, 1},
1765                 {4, 7},
1766                 {0, 0},
1767                 {0, 0}
1768                 }
1769         },
1770         {1, 1, 2, 0,            /* 0xf3 */
1771                 {{0, 1},
1772                 {4, 7},
1773                 {0, 0},
1774                 {0, 0}
1775                 }
1776         },
1777         {0, 1, 2, 0,            /* 0xf4 */
1778                 {{2, 2},
1779                 {4, 7},
1780                 {0, 0},
1781                 {0, 0}
1782                 }
1783         },
1784         {1, 1, 3, 0,            /* 0xf5 */
1785                 {{0, 0},
1786                 {2, 2},
1787                 {4, 7},
1788                 {0, 0}
1789                 }
1790         },
1791         {0, 1, 2, 0,            /* 0xf6 */
1792                 {{1, 2},
1793                 {4, 7},
1794                 {0, 0},
1795                 {0, 0}
1796                 }
1797         },
1798         {1, 1, 2, 0,            /* 0xf7 */
1799                 {{0, 2},
1800                 {4, 7},
1801                 {0, 0},
1802                 {0, 0}
1803                 }
1804         },
1805         {0, 1, 1, 0,            /* 0xf8 */
1806                 {{3, 7},
1807                 {0, 0},
1808                 {0, 0},
1809                 {0, 0}
1810                 }
1811         },
1812         {1, 1, 2, 0,            /* 0xf9 */
1813                 {{0, 0},
1814                 {3, 7},
1815                 {0, 0},
1816                 {0, 0}
1817                 }
1818         },
1819         {0, 1, 2, 0,            /* 0xfa */
1820                 {{1, 1},
1821                 {3, 7},
1822                 {0, 0},
1823                 {0, 0}
1824                 }
1825         },
1826         {1, 1, 2, 0,            /* 0xfb */
1827                 {{0, 1},
1828                 {3, 7},
1829                 {0, 0},
1830                 {0, 0}
1831                 }
1832         },
1833         {0, 1, 1, 0,            /* 0xfc */
1834                 {{2, 7},
1835                 {0, 0},
1836                 {0, 0},
1837                 {0, 0}
1838                 }
1839         },
1840         {1, 1, 2, 0,            /* 0xfd */
1841                 {{0, 0},
1842                 {2, 7},
1843                 {0, 0},
1844                 {0, 0}
1845                 }
1846         },
1847         {0, 1, 1, 0,            /* 0xfe */
1848                 {{1, 7},
1849                 {0, 0},
1850                 {0, 0},
1851                 {0, 0}
1852                 }
1853         },
1854         {1, 1, 1, 0,            /* 0xff */
1855                 {{0, 7},
1856                 {0, 0},
1857                 {0, 0},
1858                 {0, 0}
1859                 }
1860         }
1861 };
1862
1863
1864 int
1865 sctp_is_address_in_scope(struct sctp_ifa *ifa,
1866     struct sctp_scoping *scope,
1867     int do_update)
1868 {
1869         if ((scope->loopback_scope == 0) &&
1870             (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) {
1871                 /*
1872                  * skip loopback if not in scope *
1873                  */
1874                 return (0);
1875         }
1876         switch (ifa->address.sa.sa_family) {
1877 #ifdef INET
1878         case AF_INET:
1879                 if (scope->ipv4_addr_legal) {
1880                         struct sockaddr_in *sin;
1881
1882                         sin = (struct sockaddr_in *)&ifa->address.sin;
1883                         if (sin->sin_addr.s_addr == 0) {
1884                                 /* not in scope , unspecified */
1885                                 return (0);
1886                         }
1887                         if ((scope->ipv4_local_scope == 0) &&
1888                             (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) {
1889                                 /* private address not in scope */
1890                                 return (0);
1891                         }
1892                 } else {
1893                         return (0);
1894                 }
1895                 break;
1896 #endif
1897 #ifdef INET6
1898         case AF_INET6:
1899                 if (scope->ipv6_addr_legal) {
1900                         struct sockaddr_in6 *sin6;
1901
1902                         /*
1903                          * Must update the flags,  bummer, which means any
1904                          * IFA locks must now be applied HERE <->
1905                          */
1906                         if (do_update) {
1907                                 sctp_gather_internal_ifa_flags(ifa);
1908                         }
1909                         if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
1910                                 return (0);
1911                         }
1912                         /* ok to use deprecated addresses? */
1913                         sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
1914                         if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1915                                 /* skip unspecifed addresses */
1916                                 return (0);
1917                         }
1918                         if (    /* (local_scope == 0) && */
1919                             (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) {
1920                                 return (0);
1921                         }
1922                         if ((scope->site_scope == 0) &&
1923                             (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) {
1924                                 return (0);
1925                         }
1926                 } else {
1927                         return (0);
1928                 }
1929                 break;
1930 #endif
1931         default:
1932                 return (0);
1933         }
1934         return (1);
1935 }
1936
1937 static struct mbuf *
1938 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t * len)
1939 {
1940 #if defined(INET) || defined(INET6)
1941         struct sctp_paramhdr *parmh;
1942         struct mbuf *mret;
1943         uint16_t plen;
1944
1945 #endif
1946
1947         switch (ifa->address.sa.sa_family) {
1948 #ifdef INET
1949         case AF_INET:
1950                 plen = (uint16_t) sizeof(struct sctp_ipv4addr_param);
1951                 break;
1952 #endif
1953 #ifdef INET6
1954         case AF_INET6:
1955                 plen = (uint16_t) sizeof(struct sctp_ipv6addr_param);
1956                 break;
1957 #endif
1958         default:
1959                 return (m);
1960         }
1961 #if defined(INET) || defined(INET6)
1962         if (M_TRAILINGSPACE(m) >= plen) {
1963                 /* easy side we just drop it on the end */
1964                 parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m)));
1965                 mret = m;
1966         } else {
1967                 /* Need more space */
1968                 mret = m;
1969                 while (SCTP_BUF_NEXT(mret) != NULL) {
1970                         mret = SCTP_BUF_NEXT(mret);
1971                 }
1972                 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA);
1973                 if (SCTP_BUF_NEXT(mret) == NULL) {
1974                         /* We are hosed, can't add more addresses */
1975                         return (m);
1976                 }
1977                 mret = SCTP_BUF_NEXT(mret);
1978                 parmh = mtod(mret, struct sctp_paramhdr *);
1979         }
1980         /* now add the parameter */
1981         switch (ifa->address.sa.sa_family) {
1982 #ifdef INET
1983         case AF_INET:
1984                 {
1985                         struct sctp_ipv4addr_param *ipv4p;
1986                         struct sockaddr_in *sin;
1987
1988                         sin = (struct sockaddr_in *)&ifa->address.sin;
1989                         ipv4p = (struct sctp_ipv4addr_param *)parmh;
1990                         parmh->param_type = htons(SCTP_IPV4_ADDRESS);
1991                         parmh->param_length = htons(plen);
1992                         ipv4p->addr = sin->sin_addr.s_addr;
1993                         SCTP_BUF_LEN(mret) += plen;
1994                         break;
1995                 }
1996 #endif
1997 #ifdef INET6
1998         case AF_INET6:
1999                 {
2000                         struct sctp_ipv6addr_param *ipv6p;
2001                         struct sockaddr_in6 *sin6;
2002
2003                         sin6 = (struct sockaddr_in6 *)&ifa->address.sin6;
2004                         ipv6p = (struct sctp_ipv6addr_param *)parmh;
2005                         parmh->param_type = htons(SCTP_IPV6_ADDRESS);
2006                         parmh->param_length = htons(plen);
2007                         memcpy(ipv6p->addr, &sin6->sin6_addr,
2008                             sizeof(ipv6p->addr));
2009                         /* clear embedded scope in the address */
2010                         in6_clearscope((struct in6_addr *)ipv6p->addr);
2011                         SCTP_BUF_LEN(mret) += plen;
2012                         break;
2013                 }
2014 #endif
2015         default:
2016                 return (m);
2017         }
2018         if (len != NULL) {
2019                 *len += plen;
2020         }
2021         return (mret);
2022 #endif
2023 }
2024
2025
2026 struct mbuf *
2027 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2028     struct sctp_scoping *scope,
2029     struct mbuf *m_at, int cnt_inits_to,
2030     uint16_t * padding_len, uint16_t * chunk_len)
2031 {
2032         struct sctp_vrf *vrf = NULL;
2033         int cnt, limit_out = 0, total_count;
2034         uint32_t vrf_id;
2035
2036         vrf_id = inp->def_vrf_id;
2037         SCTP_IPI_ADDR_RLOCK();
2038         vrf = sctp_find_vrf(vrf_id);
2039         if (vrf == NULL) {
2040                 SCTP_IPI_ADDR_RUNLOCK();
2041                 return (m_at);
2042         }
2043         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
2044                 struct sctp_ifa *sctp_ifap;
2045                 struct sctp_ifn *sctp_ifnp;
2046
2047                 cnt = cnt_inits_to;
2048                 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) {
2049                         limit_out = 1;
2050                         cnt = SCTP_ADDRESS_LIMIT;
2051                         goto skip_count;
2052                 }
2053                 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2054                         if ((scope->loopback_scope == 0) &&
2055                             SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2056                                 /*
2057                                  * Skip loopback devices if loopback_scope
2058                                  * not set
2059                                  */
2060                                 continue;
2061                         }
2062                         LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2063                                 if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2064                                         continue;
2065                                 }
2066                                 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) {
2067                                         continue;
2068                                 }
2069                                 cnt++;
2070                                 if (cnt > SCTP_ADDRESS_LIMIT) {
2071                                         break;
2072                                 }
2073                         }
2074                         if (cnt > SCTP_ADDRESS_LIMIT) {
2075                                 break;
2076                         }
2077                 }
2078 skip_count:
2079                 if (cnt > 1) {
2080                         total_count = 0;
2081                         LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) {
2082                                 cnt = 0;
2083                                 if ((scope->loopback_scope == 0) &&
2084                                     SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) {
2085                                         /*
2086                                          * Skip loopback devices if
2087                                          * loopback_scope not set
2088                                          */
2089                                         continue;
2090                                 }
2091                                 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) {
2092                                         if (sctp_is_addr_restricted(stcb, sctp_ifap)) {
2093                                                 continue;
2094                                         }
2095                                         if (sctp_is_address_in_scope(sctp_ifap,
2096                                             scope, 0) == 0) {
2097                                                 continue;
2098                                         }
2099                                         if ((chunk_len != NULL) &&
2100                                             (padding_len != NULL) &&
2101                                             (*padding_len > 0)) {
2102                                                 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2103                                                 SCTP_BUF_LEN(m_at) += *padding_len;
2104                                                 *chunk_len += *padding_len;
2105                                                 *padding_len = 0;
2106                                         }
2107                                         m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len);
2108                                         if (limit_out) {
2109                                                 cnt++;
2110                                                 total_count++;
2111                                                 if (cnt >= 2) {
2112                                                         /*
2113                                                          * two from each
2114                                                          * address
2115                                                          */
2116                                                         break;
2117                                                 }
2118                                                 if (total_count > SCTP_ADDRESS_LIMIT) {
2119                                                         /* No more addresses */
2120                                                         break;
2121                                                 }
2122                                         }
2123                                 }
2124                         }
2125                 }
2126         } else {
2127                 struct sctp_laddr *laddr;
2128
2129                 cnt = cnt_inits_to;
2130                 /* First, how many ? */
2131                 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2132                         if (laddr->ifa == NULL) {
2133                                 continue;
2134                         }
2135                         if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED)
2136                                 /*
2137                                  * Address being deleted by the system, dont
2138                                  * list.
2139                                  */
2140                                 continue;
2141                         if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2142                                 /*
2143                                  * Address being deleted on this ep don't
2144                                  * list.
2145                                  */
2146                                 continue;
2147                         }
2148                         if (sctp_is_address_in_scope(laddr->ifa,
2149                             scope, 1) == 0) {
2150                                 continue;
2151                         }
2152                         cnt++;
2153                 }
2154                 /*
2155                  * To get through a NAT we only list addresses if we have
2156                  * more than one. That way if you just bind a single address
2157                  * we let the source of the init dictate our address.
2158                  */
2159                 if (cnt > 1) {
2160                         cnt = cnt_inits_to;
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                                         continue;
2167                                 }
2168                                 if (sctp_is_address_in_scope(laddr->ifa,
2169                                     scope, 0) == 0) {
2170                                         continue;
2171                                 }
2172                                 if ((chunk_len != NULL) &&
2173                                     (padding_len != NULL) &&
2174                                     (*padding_len > 0)) {
2175                                         memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len);
2176                                         SCTP_BUF_LEN(m_at) += *padding_len;
2177                                         *chunk_len += *padding_len;
2178                                         *padding_len = 0;
2179                                 }
2180                                 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len);
2181                                 cnt++;
2182                                 if (cnt >= SCTP_ADDRESS_LIMIT) {
2183                                         break;
2184                                 }
2185                         }
2186                 }
2187         }
2188         SCTP_IPI_ADDR_RUNLOCK();
2189         return (m_at);
2190 }
2191
2192 static struct sctp_ifa *
2193 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa,
2194     uint8_t dest_is_loop,
2195     uint8_t dest_is_priv,
2196     sa_family_t fam)
2197 {
2198         uint8_t dest_is_global = 0;
2199
2200         /* dest_is_priv is true if destination is a private address */
2201         /* dest_is_loop is true if destination is a loopback addresses */
2202
2203         /**
2204          * Here we determine if its a preferred address. A preferred address
2205          * means it is the same scope or higher scope then the destination.
2206          * L = loopback, P = private, G = global
2207          * -----------------------------------------
2208          *    src    |  dest | result
2209          *  ----------------------------------------
2210          *     L     |    L  |    yes
2211          *  -----------------------------------------
2212          *     P     |    L  |    yes-v4 no-v6
2213          *  -----------------------------------------
2214          *     G     |    L  |    yes-v4 no-v6
2215          *  -----------------------------------------
2216          *     L     |    P  |    no
2217          *  -----------------------------------------
2218          *     P     |    P  |    yes
2219          *  -----------------------------------------
2220          *     G     |    P  |    no
2221          *   -----------------------------------------
2222          *     L     |    G  |    no
2223          *   -----------------------------------------
2224          *     P     |    G  |    no
2225          *    -----------------------------------------
2226          *     G     |    G  |    yes
2227          *    -----------------------------------------
2228          */
2229
2230         if (ifa->address.sa.sa_family != fam) {
2231                 /* forget mis-matched family */
2232                 return (NULL);
2233         }
2234         if ((dest_is_priv == 0) && (dest_is_loop == 0)) {
2235                 dest_is_global = 1;
2236         }
2237         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:");
2238         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa);
2239         /* Ok the address may be ok */
2240 #ifdef INET6
2241         if (fam == AF_INET6) {
2242                 /* ok to use deprecated addresses? no lets not! */
2243                 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2244                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n");
2245                         return (NULL);
2246                 }
2247                 if (ifa->src_is_priv && !ifa->src_is_loop) {
2248                         if (dest_is_loop) {
2249                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n");
2250                                 return (NULL);
2251                         }
2252                 }
2253                 if (ifa->src_is_glob) {
2254                         if (dest_is_loop) {
2255                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n");
2256                                 return (NULL);
2257                         }
2258                 }
2259         }
2260 #endif
2261         /*
2262          * Now that we know what is what, implement or table this could in
2263          * theory be done slicker (it used to be), but this is
2264          * straightforward and easier to validate :-)
2265          */
2266         SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n",
2267             ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob);
2268         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n",
2269             dest_is_loop, dest_is_priv, dest_is_global);
2270
2271         if ((ifa->src_is_loop) && (dest_is_priv)) {
2272                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n");
2273                 return (NULL);
2274         }
2275         if ((ifa->src_is_glob) && (dest_is_priv)) {
2276                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n");
2277                 return (NULL);
2278         }
2279         if ((ifa->src_is_loop) && (dest_is_global)) {
2280                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n");
2281                 return (NULL);
2282         }
2283         if ((ifa->src_is_priv) && (dest_is_global)) {
2284                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n");
2285                 return (NULL);
2286         }
2287         SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n");
2288         /* its a preferred address */
2289         return (ifa);
2290 }
2291
2292 static struct sctp_ifa *
2293 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa,
2294     uint8_t dest_is_loop,
2295     uint8_t dest_is_priv,
2296     sa_family_t fam)
2297 {
2298         uint8_t dest_is_global = 0;
2299
2300         /**
2301          * Here we determine if its a acceptable address. A acceptable
2302          * address means it is the same scope or higher scope but we can
2303          * allow for NAT which means its ok to have a global dest and a
2304          * private src.
2305          *
2306          * L = loopback, P = private, G = global
2307          * -----------------------------------------
2308          *  src    |  dest | result
2309          * -----------------------------------------
2310          *   L     |   L   |    yes
2311          *  -----------------------------------------
2312          *   P     |   L   |    yes-v4 no-v6
2313          *  -----------------------------------------
2314          *   G     |   L   |    yes
2315          * -----------------------------------------
2316          *   L     |   P   |    no
2317          * -----------------------------------------
2318          *   P     |   P   |    yes
2319          * -----------------------------------------
2320          *   G     |   P   |    yes - May not work
2321          * -----------------------------------------
2322          *   L     |   G   |    no
2323          * -----------------------------------------
2324          *   P     |   G   |    yes - May not work
2325          * -----------------------------------------
2326          *   G     |   G   |    yes
2327          * -----------------------------------------
2328          */
2329
2330         if (ifa->address.sa.sa_family != fam) {
2331                 /* forget non matching family */
2332                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n",
2333                     ifa->address.sa.sa_family, fam);
2334                 return (NULL);
2335         }
2336         /* Ok the address may be ok */
2337         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa);
2338         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n",
2339             dest_is_loop, dest_is_priv);
2340         if ((dest_is_loop == 0) && (dest_is_priv == 0)) {
2341                 dest_is_global = 1;
2342         }
2343 #ifdef INET6
2344         if (fam == AF_INET6) {
2345                 /* ok to use deprecated addresses? */
2346                 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) {
2347                         return (NULL);
2348                 }
2349                 if (ifa->src_is_priv) {
2350                         /* Special case, linklocal to loop */
2351                         if (dest_is_loop)
2352                                 return (NULL);
2353                 }
2354         }
2355 #endif
2356         /*
2357          * Now that we know what is what, implement our table. This could in
2358          * theory be done slicker (it used to be), but this is
2359          * straightforward and easier to validate :-)
2360          */
2361         SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n",
2362             ifa->src_is_loop,
2363             dest_is_priv);
2364         if ((ifa->src_is_loop == 1) && (dest_is_priv)) {
2365                 return (NULL);
2366         }
2367         SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n",
2368             ifa->src_is_loop,
2369             dest_is_global);
2370         if ((ifa->src_is_loop == 1) && (dest_is_global)) {
2371                 return (NULL);
2372         }
2373         SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n");
2374         /* its an acceptable address */
2375         return (ifa);
2376 }
2377
2378 int
2379 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa)
2380 {
2381         struct sctp_laddr *laddr;
2382
2383         if (stcb == NULL) {
2384                 /* There are no restrictions, no TCB :-) */
2385                 return (0);
2386         }
2387         LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) {
2388                 if (laddr->ifa == NULL) {
2389                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2390                             __FUNCTION__);
2391                         continue;
2392                 }
2393                 if (laddr->ifa == ifa) {
2394                         /* Yes it is on the list */
2395                         return (1);
2396                 }
2397         }
2398         return (0);
2399 }
2400
2401
2402 int
2403 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa)
2404 {
2405         struct sctp_laddr *laddr;
2406
2407         if (ifa == NULL)
2408                 return (0);
2409         LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) {
2410                 if (laddr->ifa == NULL) {
2411                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n",
2412                             __FUNCTION__);
2413                         continue;
2414                 }
2415                 if ((laddr->ifa == ifa) && laddr->action == 0)
2416                         /* same pointer */
2417                         return (1);
2418         }
2419         return (0);
2420 }
2421
2422
2423
2424 static struct sctp_ifa *
2425 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp,
2426     sctp_route_t * ro,
2427     uint32_t vrf_id,
2428     int non_asoc_addr_ok,
2429     uint8_t dest_is_priv,
2430     uint8_t dest_is_loop,
2431     sa_family_t fam)
2432 {
2433         struct sctp_laddr *laddr, *starting_point;
2434         void *ifn;
2435         int resettotop = 0;
2436         struct sctp_ifn *sctp_ifn;
2437         struct sctp_ifa *sctp_ifa, *sifa;
2438         struct sctp_vrf *vrf;
2439         uint32_t ifn_index;
2440
2441         vrf = sctp_find_vrf(vrf_id);
2442         if (vrf == NULL)
2443                 return (NULL);
2444
2445         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2446         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2447         sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2448         /*
2449          * first question, is the ifn we will emit on in our list, if so, we
2450          * want such an address. Note that we first looked for a preferred
2451          * address.
2452          */
2453         if (sctp_ifn) {
2454                 /* is a preferred one on the interface we route out? */
2455                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2456                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2457                             (non_asoc_addr_ok == 0))
2458                                 continue;
2459                         sifa = sctp_is_ifa_addr_preferred(sctp_ifa,
2460                             dest_is_loop,
2461                             dest_is_priv, fam);
2462                         if (sifa == NULL)
2463                                 continue;
2464                         if (sctp_is_addr_in_ep(inp, sifa)) {
2465                                 atomic_add_int(&sifa->refcount, 1);
2466                                 return (sifa);
2467                         }
2468                 }
2469         }
2470         /*
2471          * ok, now we now need to find one on the list of the addresses. We
2472          * can't get one on the emitting interface so let's find first a
2473          * preferred one. If not that an acceptable one otherwise... we
2474          * return NULL.
2475          */
2476         starting_point = inp->next_addr_touse;
2477 once_again:
2478         if (inp->next_addr_touse == NULL) {
2479                 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2480                 resettotop = 1;
2481         }
2482         for (laddr = inp->next_addr_touse; laddr;
2483             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2484                 if (laddr->ifa == NULL) {
2485                         /* address has been removed */
2486                         continue;
2487                 }
2488                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2489                         /* address is being deleted */
2490                         continue;
2491                 }
2492                 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop,
2493                     dest_is_priv, fam);
2494                 if (sifa == NULL)
2495                         continue;
2496                 atomic_add_int(&sifa->refcount, 1);
2497                 return (sifa);
2498         }
2499         if (resettotop == 0) {
2500                 inp->next_addr_touse = NULL;
2501                 goto once_again;
2502         }
2503         inp->next_addr_touse = starting_point;
2504         resettotop = 0;
2505 once_again_too:
2506         if (inp->next_addr_touse == NULL) {
2507                 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list);
2508                 resettotop = 1;
2509         }
2510         /* ok, what about an acceptable address in the inp */
2511         for (laddr = inp->next_addr_touse; laddr;
2512             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2513                 if (laddr->ifa == NULL) {
2514                         /* address has been removed */
2515                         continue;
2516                 }
2517                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2518                         /* address is being deleted */
2519                         continue;
2520                 }
2521                 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2522                     dest_is_priv, fam);
2523                 if (sifa == NULL)
2524                         continue;
2525                 atomic_add_int(&sifa->refcount, 1);
2526                 return (sifa);
2527         }
2528         if (resettotop == 0) {
2529                 inp->next_addr_touse = NULL;
2530                 goto once_again_too;
2531         }
2532         /*
2533          * no address bound can be a source for the destination we are in
2534          * trouble
2535          */
2536         return (NULL);
2537 }
2538
2539
2540
2541 static struct sctp_ifa *
2542 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp,
2543     struct sctp_tcb *stcb,
2544     sctp_route_t * ro,
2545     uint32_t vrf_id,
2546     uint8_t dest_is_priv,
2547     uint8_t dest_is_loop,
2548     int non_asoc_addr_ok,
2549     sa_family_t fam)
2550 {
2551         struct sctp_laddr *laddr, *starting_point;
2552         void *ifn;
2553         struct sctp_ifn *sctp_ifn;
2554         struct sctp_ifa *sctp_ifa, *sifa;
2555         uint8_t start_at_beginning = 0;
2556         struct sctp_vrf *vrf;
2557         uint32_t ifn_index;
2558
2559         /*
2560          * first question, is the ifn we will emit on in our list, if so, we
2561          * want that one.
2562          */
2563         vrf = sctp_find_vrf(vrf_id);
2564         if (vrf == NULL)
2565                 return (NULL);
2566
2567         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2568         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2569         sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2570
2571         /*
2572          * first question, is the ifn we will emit on in our list?  If so,
2573          * we want that one. First we look for a preferred. Second, we go
2574          * for an acceptable.
2575          */
2576         if (sctp_ifn) {
2577                 /* first try for a preferred address on the ep */
2578                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2579                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2580                                 continue;
2581                         if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2582                                 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2583                                 if (sifa == NULL)
2584                                         continue;
2585                                 if (((non_asoc_addr_ok == 0) &&
2586                                     (sctp_is_addr_restricted(stcb, sifa))) ||
2587                                     (non_asoc_addr_ok &&
2588                                     (sctp_is_addr_restricted(stcb, sifa)) &&
2589                                     (!sctp_is_addr_pending(stcb, sifa)))) {
2590                                         /* on the no-no list */
2591                                         continue;
2592                                 }
2593                                 atomic_add_int(&sifa->refcount, 1);
2594                                 return (sifa);
2595                         }
2596                 }
2597                 /* next try for an acceptable address on the ep */
2598                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
2599                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0))
2600                                 continue;
2601                         if (sctp_is_addr_in_ep(inp, sctp_ifa)) {
2602                                 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam);
2603                                 if (sifa == NULL)
2604                                         continue;
2605                                 if (((non_asoc_addr_ok == 0) &&
2606                                     (sctp_is_addr_restricted(stcb, sifa))) ||
2607                                     (non_asoc_addr_ok &&
2608                                     (sctp_is_addr_restricted(stcb, sifa)) &&
2609                                     (!sctp_is_addr_pending(stcb, sifa)))) {
2610                                         /* on the no-no list */
2611                                         continue;
2612                                 }
2613                                 atomic_add_int(&sifa->refcount, 1);
2614                                 return (sifa);
2615                         }
2616                 }
2617
2618         }
2619         /*
2620          * if we can't find one like that then we must look at all addresses
2621          * bound to pick one at first preferable then secondly acceptable.
2622          */
2623         starting_point = stcb->asoc.last_used_address;
2624 sctp_from_the_top:
2625         if (stcb->asoc.last_used_address == NULL) {
2626                 start_at_beginning = 1;
2627                 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2628         }
2629         /* search beginning with the last used address */
2630         for (laddr = stcb->asoc.last_used_address; laddr;
2631             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2632                 if (laddr->ifa == NULL) {
2633                         /* address has been removed */
2634                         continue;
2635                 }
2636                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2637                         /* address is being deleted */
2638                         continue;
2639                 }
2640                 sifa = sctp_is_ifa_addr_preferred(laddr->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                 stcb->asoc.last_used_address = laddr;
2652                 atomic_add_int(&sifa->refcount, 1);
2653                 return (sifa);
2654         }
2655         if (start_at_beginning == 0) {
2656                 stcb->asoc.last_used_address = NULL;
2657                 goto sctp_from_the_top;
2658         }
2659         /* now try for any higher scope than the destination */
2660         stcb->asoc.last_used_address = starting_point;
2661         start_at_beginning = 0;
2662 sctp_from_the_top2:
2663         if (stcb->asoc.last_used_address == NULL) {
2664                 start_at_beginning = 1;
2665                 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list);
2666         }
2667         /* search beginning with the last used address */
2668         for (laddr = stcb->asoc.last_used_address; laddr;
2669             laddr = LIST_NEXT(laddr, sctp_nxt_addr)) {
2670                 if (laddr->ifa == NULL) {
2671                         /* address has been removed */
2672                         continue;
2673                 }
2674                 if (laddr->action == SCTP_DEL_IP_ADDRESS) {
2675                         /* address is being deleted */
2676                         continue;
2677                 }
2678                 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop,
2679                     dest_is_priv, fam);
2680                 if (sifa == NULL)
2681                         continue;
2682                 if (((non_asoc_addr_ok == 0) &&
2683                     (sctp_is_addr_restricted(stcb, sifa))) ||
2684                     (non_asoc_addr_ok &&
2685                     (sctp_is_addr_restricted(stcb, sifa)) &&
2686                     (!sctp_is_addr_pending(stcb, sifa)))) {
2687                         /* on the no-no list */
2688                         continue;
2689                 }
2690                 stcb->asoc.last_used_address = laddr;
2691                 atomic_add_int(&sifa->refcount, 1);
2692                 return (sifa);
2693         }
2694         if (start_at_beginning == 0) {
2695                 stcb->asoc.last_used_address = NULL;
2696                 goto sctp_from_the_top2;
2697         }
2698         return (NULL);
2699 }
2700
2701 static struct sctp_ifa *
2702 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn,
2703     struct sctp_tcb *stcb,
2704     int non_asoc_addr_ok,
2705     uint8_t dest_is_loop,
2706     uint8_t dest_is_priv,
2707     int addr_wanted,
2708     sa_family_t fam,
2709     sctp_route_t * ro
2710 )
2711 {
2712         struct sctp_ifa *ifa, *sifa;
2713         int num_eligible_addr = 0;
2714
2715 #ifdef INET6
2716         struct sockaddr_in6 sin6, lsa6;
2717
2718         if (fam == AF_INET6) {
2719                 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6));
2720                 (void)sa6_recoverscope(&sin6);
2721         }
2722 #endif                          /* INET6 */
2723         LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2724                 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2725                     (non_asoc_addr_ok == 0))
2726                         continue;
2727                 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2728                     dest_is_priv, fam);
2729                 if (sifa == NULL)
2730                         continue;
2731 #ifdef INET6
2732                 if (fam == AF_INET6 &&
2733                     dest_is_loop &&
2734                     sifa->src_is_loop && sifa->src_is_priv) {
2735                         /*
2736                          * don't allow fe80::1 to be a src on loop ::1, we
2737                          * don't list it to the peer so we will get an
2738                          * abort.
2739                          */
2740                         continue;
2741                 }
2742                 if (fam == AF_INET6 &&
2743                     IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) &&
2744                     IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) {
2745                         /*
2746                          * link-local <-> link-local must belong to the same
2747                          * scope.
2748                          */
2749                         memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6));
2750                         (void)sa6_recoverscope(&lsa6);
2751                         if (sin6.sin6_scope_id != lsa6.sin6_scope_id) {
2752                                 continue;
2753                         }
2754                 }
2755 #endif                          /* INET6 */
2756
2757                 /*
2758                  * Check if the IPv6 address matches to next-hop. In the
2759                  * mobile case, old IPv6 address may be not deleted from the
2760                  * interface. Then, the interface has previous and new
2761                  * addresses.  We should use one corresponding to the
2762                  * next-hop.  (by micchie)
2763                  */
2764 #ifdef INET6
2765                 if (stcb && fam == AF_INET6 &&
2766                     sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2767                         if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro)
2768                             == 0) {
2769                                 continue;
2770                         }
2771                 }
2772 #endif
2773 #ifdef INET
2774                 /* Avoid topologically incorrect IPv4 address */
2775                 if (stcb && fam == AF_INET &&
2776                     sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) {
2777                         if (sctp_v4src_match_nexthop(sifa, ro) == 0) {
2778                                 continue;
2779                         }
2780                 }
2781 #endif
2782                 if (stcb) {
2783                         if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2784                                 continue;
2785                         }
2786                         if (((non_asoc_addr_ok == 0) &&
2787                             (sctp_is_addr_restricted(stcb, sifa))) ||
2788                             (non_asoc_addr_ok &&
2789                             (sctp_is_addr_restricted(stcb, sifa)) &&
2790                             (!sctp_is_addr_pending(stcb, sifa)))) {
2791                                 /*
2792                                  * It is restricted for some reason..
2793                                  * probably not yet added.
2794                                  */
2795                                 continue;
2796                         }
2797                 }
2798                 if (num_eligible_addr >= addr_wanted) {
2799                         return (sifa);
2800                 }
2801                 num_eligible_addr++;
2802         }
2803         return (NULL);
2804 }
2805
2806
2807 static int
2808 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn,
2809     struct sctp_tcb *stcb,
2810     int non_asoc_addr_ok,
2811     uint8_t dest_is_loop,
2812     uint8_t dest_is_priv,
2813     sa_family_t fam)
2814 {
2815         struct sctp_ifa *ifa, *sifa;
2816         int num_eligible_addr = 0;
2817
2818         LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) {
2819                 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
2820                     (non_asoc_addr_ok == 0)) {
2821                         continue;
2822                 }
2823                 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop,
2824                     dest_is_priv, fam);
2825                 if (sifa == NULL) {
2826                         continue;
2827                 }
2828                 if (stcb) {
2829                         if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) {
2830                                 continue;
2831                         }
2832                         if (((non_asoc_addr_ok == 0) &&
2833                             (sctp_is_addr_restricted(stcb, sifa))) ||
2834                             (non_asoc_addr_ok &&
2835                             (sctp_is_addr_restricted(stcb, sifa)) &&
2836                             (!sctp_is_addr_pending(stcb, sifa)))) {
2837                                 /*
2838                                  * It is restricted for some reason..
2839                                  * probably not yet added.
2840                                  */
2841                                 continue;
2842                         }
2843                 }
2844                 num_eligible_addr++;
2845         }
2846         return (num_eligible_addr);
2847 }
2848
2849 static struct sctp_ifa *
2850 sctp_choose_boundall(struct sctp_tcb *stcb,
2851     struct sctp_nets *net,
2852     sctp_route_t * ro,
2853     uint32_t vrf_id,
2854     uint8_t dest_is_priv,
2855     uint8_t dest_is_loop,
2856     int non_asoc_addr_ok,
2857     sa_family_t fam)
2858 {
2859         int cur_addr_num = 0, num_preferred = 0;
2860         void *ifn;
2861         struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn;
2862         struct sctp_ifa *sctp_ifa, *sifa;
2863         uint32_t ifn_index;
2864         struct sctp_vrf *vrf;
2865
2866 #ifdef INET
2867         int retried = 0;
2868
2869 #endif
2870
2871         /*-
2872          * For boundall we can use any address in the association.
2873          * If non_asoc_addr_ok is set we can use any address (at least in
2874          * theory). So we look for preferred addresses first. If we find one,
2875          * we use it. Otherwise we next try to get an address on the
2876          * interface, which we should be able to do (unless non_asoc_addr_ok
2877          * is false and we are routed out that way). In these cases where we
2878          * can't use the address of the interface we go through all the
2879          * ifn's looking for an address we can use and fill that in. Punting
2880          * means we send back address 0, which will probably cause problems
2881          * actually since then IP will fill in the address of the route ifn,
2882          * which means we probably already rejected it.. i.e. here comes an
2883          * abort :-<.
2884          */
2885         vrf = sctp_find_vrf(vrf_id);
2886         if (vrf == NULL)
2887                 return (NULL);
2888
2889         ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
2890         ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro);
2891         SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index);
2892         emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index);
2893         if (sctp_ifn == NULL) {
2894                 /* ?? We don't have this guy ?? */
2895                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n");
2896                 goto bound_all_plan_b;
2897         }
2898         SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n",
2899             ifn_index, sctp_ifn->ifn_name);
2900
2901         if (net) {
2902                 cur_addr_num = net->indx_of_eligible_next_to_use;
2903         }
2904         num_preferred = sctp_count_num_preferred_boundall(sctp_ifn,
2905             stcb,
2906             non_asoc_addr_ok,
2907             dest_is_loop,
2908             dest_is_priv, fam);
2909         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n",
2910             num_preferred, sctp_ifn->ifn_name);
2911         if (num_preferred == 0) {
2912                 /*
2913                  * no eligible addresses, we must use some other interface
2914                  * address if we can find one.
2915                  */
2916                 goto bound_all_plan_b;
2917         }
2918         /*
2919          * Ok we have num_eligible_addr set with how many we can use, this
2920          * may vary from call to call due to addresses being deprecated
2921          * etc..
2922          */
2923         if (cur_addr_num >= num_preferred) {
2924                 cur_addr_num = 0;
2925         }
2926         /*
2927          * select the nth address from the list (where cur_addr_num is the
2928          * nth) and 0 is the first one, 1 is the second one etc...
2929          */
2930         SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num);
2931
2932         sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2933             dest_is_priv, cur_addr_num, fam, ro);
2934
2935         /* if sctp_ifa is NULL something changed??, fall to plan b. */
2936         if (sctp_ifa) {
2937                 atomic_add_int(&sctp_ifa->refcount, 1);
2938                 if (net) {
2939                         /* save off where the next one we will want */
2940                         net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2941                 }
2942                 return (sctp_ifa);
2943         }
2944         /*
2945          * plan_b: Look at all interfaces and find a preferred address. If
2946          * no preferred fall through to plan_c.
2947          */
2948 bound_all_plan_b:
2949         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n");
2950         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
2951                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n",
2952                     sctp_ifn->ifn_name);
2953                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
2954                         /* wrong base scope */
2955                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n");
2956                         continue;
2957                 }
2958                 if ((sctp_ifn == looked_at) && looked_at) {
2959                         /* already looked at this guy */
2960                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n");
2961                         continue;
2962                 }
2963                 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok,
2964                     dest_is_loop, dest_is_priv, fam);
2965                 SCTPDBG(SCTP_DEBUG_OUTPUT2,
2966                     "Found ifn:%p %d preferred source addresses\n",
2967                     ifn, num_preferred);
2968                 if (num_preferred == 0) {
2969                         /* None on this interface. */
2970                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n");
2971                         continue;
2972                 }
2973                 SCTPDBG(SCTP_DEBUG_OUTPUT2,
2974                     "num preferred:%d on interface:%p cur_addr_num:%d\n",
2975                     num_preferred, (void *)sctp_ifn, cur_addr_num);
2976
2977                 /*
2978                  * Ok we have num_eligible_addr set with how many we can
2979                  * use, this may vary from call to call due to addresses
2980                  * being deprecated etc..
2981                  */
2982                 if (cur_addr_num >= num_preferred) {
2983                         cur_addr_num = 0;
2984                 }
2985                 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop,
2986                     dest_is_priv, cur_addr_num, fam, ro);
2987                 if (sifa == NULL)
2988                         continue;
2989                 if (net) {
2990                         net->indx_of_eligible_next_to_use = cur_addr_num + 1;
2991                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n",
2992                             cur_addr_num);
2993                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:");
2994                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
2995                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:");
2996                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa);
2997                 }
2998                 atomic_add_int(&sifa->refcount, 1);
2999                 return (sifa);
3000         }
3001 #ifdef INET
3002 again_with_private_addresses_allowed:
3003 #endif
3004         /* plan_c: do we have an acceptable address on the emit interface */
3005         sifa = NULL;
3006         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n");
3007         if (emit_ifn == NULL) {
3008                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n");
3009                 goto plan_d;
3010         }
3011         LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) {
3012                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa);
3013                 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3014                     (non_asoc_addr_ok == 0)) {
3015                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n");
3016                         continue;
3017                 }
3018                 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop,
3019                     dest_is_priv, fam);
3020                 if (sifa == NULL) {
3021                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n");
3022                         continue;
3023                 }
3024                 if (stcb) {
3025                         if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3026                                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n");
3027                                 sifa = NULL;
3028                                 continue;
3029                         }
3030                         if (((non_asoc_addr_ok == 0) &&
3031                             (sctp_is_addr_restricted(stcb, sifa))) ||
3032                             (non_asoc_addr_ok &&
3033                             (sctp_is_addr_restricted(stcb, sifa)) &&
3034                             (!sctp_is_addr_pending(stcb, sifa)))) {
3035                                 /*
3036                                  * It is restricted for some reason..
3037                                  * probably not yet added.
3038                                  */
3039                                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n");
3040                                 sifa = NULL;
3041                                 continue;
3042                         }
3043                 } else {
3044                         SCTP_PRINTF("Stcb is null - no print\n");
3045                 }
3046                 atomic_add_int(&sifa->refcount, 1);
3047                 goto out;
3048         }
3049 plan_d:
3050         /*
3051          * plan_d: We are in trouble. No preferred address on the emit
3052          * interface. And not even a preferred address on all interfaces. Go
3053          * out and see if we can find an acceptable address somewhere
3054          * amongst all interfaces.
3055          */
3056         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at);
3057         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3058                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3059                         /* wrong base scope */
3060                         continue;
3061                 }
3062                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3063                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3064                             (non_asoc_addr_ok == 0))
3065                                 continue;
3066                         sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3067                             dest_is_loop,
3068                             dest_is_priv, fam);
3069                         if (sifa == NULL)
3070                                 continue;
3071                         if (stcb) {
3072                                 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) {
3073                                         sifa = NULL;
3074                                         continue;
3075                                 }
3076                                 if (((non_asoc_addr_ok == 0) &&
3077                                     (sctp_is_addr_restricted(stcb, sifa))) ||
3078                                     (non_asoc_addr_ok &&
3079                                     (sctp_is_addr_restricted(stcb, sifa)) &&
3080                                     (!sctp_is_addr_pending(stcb, sifa)))) {
3081                                         /*
3082                                          * It is restricted for some
3083                                          * reason.. probably not yet added.
3084                                          */
3085                                         sifa = NULL;
3086                                         continue;
3087                                 }
3088                         }
3089                         goto out;
3090                 }
3091         }
3092 #ifdef INET
3093         if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) {
3094                 stcb->asoc.scope.ipv4_local_scope = 1;
3095                 retried = 1;
3096                 goto again_with_private_addresses_allowed;
3097         } else if (retried == 1) {
3098                 stcb->asoc.scope.ipv4_local_scope = 0;
3099         }
3100 #endif
3101 out:
3102 #ifdef INET
3103         if (sifa) {
3104                 if (retried == 1) {
3105                         LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) {
3106                                 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) {
3107                                         /* wrong base scope */
3108                                         continue;
3109                                 }
3110                                 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) {
3111                                         struct sctp_ifa *tmp_sifa;
3112
3113                                         if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) &&
3114                                             (non_asoc_addr_ok == 0))
3115                                                 continue;
3116                                         tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa,
3117                                             dest_is_loop,
3118                                             dest_is_priv, fam);
3119                                         if (tmp_sifa == NULL) {
3120                                                 continue;
3121                                         }
3122                                         if (tmp_sifa == sifa) {
3123                                                 continue;
3124                                         }
3125                                         if (stcb) {
3126                                                 if (sctp_is_address_in_scope(tmp_sifa,
3127                                                     &stcb->asoc.scope, 0) == 0) {
3128                                                         continue;
3129                                                 }
3130                                                 if (((non_asoc_addr_ok == 0) &&
3131                                                     (sctp_is_addr_restricted(stcb, tmp_sifa))) ||
3132                                                     (non_asoc_addr_ok &&
3133                                                     (sctp_is_addr_restricted(stcb, tmp_sifa)) &&
3134                                                     (!sctp_is_addr_pending(stcb, tmp_sifa)))) {
3135                                                         /*
3136                                                          * It is restricted
3137                                                          * for some reason..
3138                                                          * probably not yet
3139                                                          * added.
3140                                                          */
3141                                                         continue;
3142                                                 }
3143                                         }
3144                                         if ((tmp_sifa->address.sin.sin_family == AF_INET) &&
3145                                             (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) {
3146                                                 sctp_add_local_addr_restricted(stcb, tmp_sifa);
3147                                         }
3148                                 }
3149                         }
3150                 }
3151                 atomic_add_int(&sifa->refcount, 1);
3152         }
3153 #endif
3154         return (sifa);
3155 }
3156
3157
3158
3159 /* tcb may be NULL */
3160 struct sctp_ifa *
3161 sctp_source_address_selection(struct sctp_inpcb *inp,
3162     struct sctp_tcb *stcb,
3163     sctp_route_t * ro,
3164     struct sctp_nets *net,
3165     int non_asoc_addr_ok, uint32_t vrf_id)
3166 {
3167         struct sctp_ifa *answer;
3168         uint8_t dest_is_priv, dest_is_loop;
3169         sa_family_t fam;
3170
3171 #ifdef INET
3172         struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst;
3173
3174 #endif
3175 #ifdef INET6
3176         struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst;
3177
3178 #endif
3179
3180         /**
3181          * Rules: - Find the route if needed, cache if I can. - Look at
3182          * interface address in route, Is it in the bound list. If so we
3183          * have the best source. - If not we must rotate amongst the
3184          * addresses.
3185          *
3186          * Cavets and issues
3187          *
3188          * Do we need to pay attention to scope. We can have a private address
3189          * or a global address we are sourcing or sending to. So if we draw
3190          * it out
3191          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3192          * For V4
3193          * ------------------------------------------
3194          *      source     *      dest  *  result
3195          * -----------------------------------------
3196          * <a>  Private    *    Global  *  NAT
3197          * -----------------------------------------
3198          * <b>  Private    *    Private *  No problem
3199          * -----------------------------------------
3200          * <c>  Global     *    Private *  Huh, How will this work?
3201          * -----------------------------------------
3202          * <d>  Global     *    Global  *  No Problem
3203          *------------------------------------------
3204          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3205          * For V6
3206          *------------------------------------------
3207          *      source     *      dest  *  result
3208          * -----------------------------------------
3209          * <a>  Linklocal  *    Global  *
3210          * -----------------------------------------
3211          * <b>  Linklocal  * Linklocal  *  No problem
3212          * -----------------------------------------
3213          * <c>  Global     * Linklocal  *  Huh, How will this work?
3214          * -----------------------------------------
3215          * <d>  Global     *    Global  *  No Problem
3216          *------------------------------------------
3217          * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
3218          *
3219          * And then we add to that what happens if there are multiple addresses
3220          * assigned to an interface. Remember the ifa on a ifn is a linked
3221          * list of addresses. So one interface can have more than one IP
3222          * address. What happens if we have both a private and a global
3223          * address? Do we then use context of destination to sort out which
3224          * one is best? And what about NAT's sending P->G may get you a NAT
3225          * translation, or should you select the G thats on the interface in
3226          * preference.
3227          *
3228          * Decisions:
3229          *
3230          * - count the number of addresses on the interface.
3231          * - if it is one, no problem except case <c>.
3232          *   For <a> we will assume a NAT out there.
3233          * - if there are more than one, then we need to worry about scope P
3234          *   or G. We should prefer G -> G and P -> P if possible.
3235          *   Then as a secondary fall back to mixed types G->P being a last
3236          *   ditch one.
3237          * - The above all works for bound all, but bound specific we need to
3238          *   use the same concept but instead only consider the bound
3239          *   addresses. If the bound set is NOT assigned to the interface then
3240          *   we must use rotation amongst the bound addresses..
3241          */
3242         if (ro->ro_rt == NULL) {
3243                 /*
3244                  * Need a route to cache.
3245                  */
3246                 SCTP_RTALLOC(ro, vrf_id);
3247         }
3248         if (ro->ro_rt == NULL) {
3249                 return (NULL);
3250         }
3251         fam = ro->ro_dst.sa_family;
3252         dest_is_priv = dest_is_loop = 0;
3253         /* Setup our scopes for the destination */
3254         switch (fam) {
3255 #ifdef INET
3256         case AF_INET:
3257                 /* Scope based on outbound address */
3258                 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) {
3259                         dest_is_loop = 1;
3260                         if (net != NULL) {
3261                                 /* mark it as local */
3262                                 net->addr_is_local = 1;
3263                         }
3264                 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) {
3265                         dest_is_priv = 1;
3266                 }
3267                 break;
3268 #endif
3269 #ifdef INET6
3270         case AF_INET6:
3271                 /* Scope based on outbound address */
3272                 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) ||
3273                     SCTP_ROUTE_IS_REAL_LOOP(ro)) {
3274                         /*
3275                          * If the address is a loopback address, which
3276                          * consists of "::1" OR "fe80::1%lo0", we are
3277                          * loopback scope. But we don't use dest_is_priv
3278                          * (link local addresses).
3279                          */
3280                         dest_is_loop = 1;
3281                         if (net != NULL) {
3282                                 /* mark it as local */
3283                                 net->addr_is_local = 1;
3284                         }
3285                 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) {
3286                         dest_is_priv = 1;
3287                 }
3288                 break;
3289 #endif
3290         }
3291         SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:");
3292         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst);
3293         SCTP_IPI_ADDR_RLOCK();
3294         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
3295                 /*
3296                  * Bound all case
3297                  */
3298                 answer = sctp_choose_boundall(stcb, net, ro, vrf_id,
3299                     dest_is_priv, dest_is_loop,
3300                     non_asoc_addr_ok, fam);
3301                 SCTP_IPI_ADDR_RUNLOCK();
3302                 return (answer);
3303         }
3304         /*
3305          * Subset bound case
3306          */
3307         if (stcb) {
3308                 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro,
3309                     vrf_id, dest_is_priv,
3310                     dest_is_loop,
3311                     non_asoc_addr_ok, fam);
3312         } else {
3313                 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id,
3314                     non_asoc_addr_ok,
3315                     dest_is_priv,
3316                     dest_is_loop, fam);
3317         }
3318         SCTP_IPI_ADDR_RUNLOCK();
3319         return (answer);
3320 }
3321
3322 static int
3323 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize)
3324 {
3325         struct cmsghdr cmh;
3326         int tlen, at, found;
3327         struct sctp_sndinfo sndinfo;
3328         struct sctp_prinfo prinfo;
3329         struct sctp_authinfo authinfo;
3330
3331         tlen = SCTP_BUF_LEN(control);
3332         at = 0;
3333         found = 0;
3334         /*
3335          * Independent of how many mbufs, find the c_type inside the control
3336          * structure and copy out the data.
3337          */
3338         while (at < tlen) {
3339                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3340                         /* There is not enough room for one more. */
3341                         return (found);
3342                 }
3343                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3344                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3345                         /* We dont't have a complete CMSG header. */
3346                         return (found);
3347                 }
3348                 if (((int)cmh.cmsg_len + at) > tlen) {
3349                         /* We don't have the complete CMSG. */
3350                         return (found);
3351                 }
3352                 if ((cmh.cmsg_level == IPPROTO_SCTP) &&
3353                     ((c_type == cmh.cmsg_type) ||
3354                     ((c_type == SCTP_SNDRCV) &&
3355                     ((cmh.cmsg_type == SCTP_SNDINFO) ||
3356                     (cmh.cmsg_type == SCTP_PRINFO) ||
3357                     (cmh.cmsg_type == SCTP_AUTHINFO))))) {
3358                         if (c_type == cmh.cmsg_type) {
3359                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) {
3360                                         return (found);
3361                                 }
3362                                 /* It is exactly what we want. Copy it out. */
3363                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data);
3364                                 return (1);
3365                         } else {
3366                                 struct sctp_sndrcvinfo *sndrcvinfo;
3367
3368                                 sndrcvinfo = (struct sctp_sndrcvinfo *)data;
3369                                 if (found == 0) {
3370                                         if (cpsize < sizeof(struct sctp_sndrcvinfo)) {
3371                                                 return (found);
3372                                         }
3373                                         memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo));
3374                                 }
3375                                 switch (cmh.cmsg_type) {
3376                                 case SCTP_SNDINFO:
3377                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) {
3378                                                 return (found);
3379                                         }
3380                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo);
3381                                         sndrcvinfo->sinfo_stream = sndinfo.snd_sid;
3382                                         sndrcvinfo->sinfo_flags = sndinfo.snd_flags;
3383                                         sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid;
3384                                         sndrcvinfo->sinfo_context = sndinfo.snd_context;
3385                                         sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id;
3386                                         break;
3387                                 case SCTP_PRINFO:
3388                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) {
3389                                                 return (found);
3390                                         }
3391                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo);
3392                                         if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) {
3393                                                 sndrcvinfo->sinfo_timetolive = prinfo.pr_value;
3394                                         } else {
3395                                                 sndrcvinfo->sinfo_timetolive = 0;
3396                                         }
3397                                         sndrcvinfo->sinfo_flags |= prinfo.pr_policy;
3398                                         break;
3399                                 case SCTP_AUTHINFO:
3400                                         if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) {
3401                                                 return (found);
3402                                         }
3403                                         m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo);
3404                                         sndrcvinfo->sinfo_keynumber_valid = 1;
3405                                         sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber;
3406                                         break;
3407                                 default:
3408                                         return (found);
3409                                 }
3410                                 found = 1;
3411                         }
3412                 }
3413                 at += CMSG_ALIGN(cmh.cmsg_len);
3414         }
3415         return (found);
3416 }
3417
3418 static int
3419 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error)
3420 {
3421         struct cmsghdr cmh;
3422         int tlen, at;
3423         struct sctp_initmsg initmsg;
3424
3425 #ifdef INET
3426         struct sockaddr_in sin;
3427
3428 #endif
3429 #ifdef INET6
3430         struct sockaddr_in6 sin6;
3431
3432 #endif
3433
3434         tlen = SCTP_BUF_LEN(control);
3435         at = 0;
3436         while (at < tlen) {
3437                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3438                         /* There is not enough room for one more. */
3439                         *error = EINVAL;
3440                         return (1);
3441                 }
3442                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3443                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3444                         /* We dont't have a complete CMSG header. */
3445                         *error = EINVAL;
3446                         return (1);
3447                 }
3448                 if (((int)cmh.cmsg_len + at) > tlen) {
3449                         /* We don't have the complete CMSG. */
3450                         *error = EINVAL;
3451                         return (1);
3452                 }
3453                 if (cmh.cmsg_level == IPPROTO_SCTP) {
3454                         switch (cmh.cmsg_type) {
3455                         case SCTP_INIT:
3456                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) {
3457                                         *error = EINVAL;
3458                                         return (1);
3459                                 }
3460                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg);
3461                                 if (initmsg.sinit_max_attempts)
3462                                         stcb->asoc.max_init_times = initmsg.sinit_max_attempts;
3463                                 if (initmsg.sinit_num_ostreams)
3464                                         stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams;
3465                                 if (initmsg.sinit_max_instreams)
3466                                         stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams;
3467                                 if (initmsg.sinit_max_init_timeo)
3468                                         stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo;
3469                                 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) {
3470                                         struct sctp_stream_out *tmp_str;
3471                                         unsigned int i;
3472
3473                                         /* Default is NOT correct */
3474                                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n",
3475                                             stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams);
3476                                         SCTP_TCB_UNLOCK(stcb);
3477                                         SCTP_MALLOC(tmp_str,
3478                                             struct sctp_stream_out *,
3479                                             (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)),
3480                                             SCTP_M_STRMO);
3481                                         SCTP_TCB_LOCK(stcb);
3482                                         if (tmp_str != NULL) {
3483                                                 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO);
3484                                                 stcb->asoc.strmout = tmp_str;
3485                                                 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams;
3486                                         } else {
3487                                                 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt;
3488                                         }
3489                                         for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
3490                                                 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
3491                                                 stcb->asoc.strmout[i].chunks_on_queues = 0;
3492                                                 stcb->asoc.strmout[i].next_sequence_send = 0;
3493                                                 stcb->asoc.strmout[i].stream_no = i;
3494                                                 stcb->asoc.strmout[i].last_msg_incomplete = 0;
3495                                                 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
3496                                         }
3497                                 }
3498                                 break;
3499 #ifdef INET
3500                         case SCTP_DSTADDRV4:
3501                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3502                                         *error = EINVAL;
3503                                         return (1);
3504                                 }
3505                                 memset(&sin, 0, sizeof(struct sockaddr_in));
3506                                 sin.sin_family = AF_INET;
3507                                 sin.sin_len = sizeof(struct sockaddr_in);
3508                                 sin.sin_port = stcb->rport;
3509                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3510                                 if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3511                                     (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3512                                     IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3513                                         *error = EINVAL;
3514                                         return (1);
3515                                 }
3516                                 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3517                                     SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3518                                         *error = ENOBUFS;
3519                                         return (1);
3520                                 }
3521                                 break;
3522 #endif
3523 #ifdef INET6
3524                         case SCTP_DSTADDRV6:
3525                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3526                                         *error = EINVAL;
3527                                         return (1);
3528                                 }
3529                                 memset(&sin6, 0, sizeof(struct sockaddr_in6));
3530                                 sin6.sin6_family = AF_INET6;
3531                                 sin6.sin6_len = sizeof(struct sockaddr_in6);
3532                                 sin6.sin6_port = stcb->rport;
3533                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3534                                 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) ||
3535                                     IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) {
3536                                         *error = EINVAL;
3537                                         return (1);
3538                                 }
3539 #ifdef INET
3540                                 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3541                                         in6_sin6_2_sin(&sin, &sin6);
3542                                         if ((sin.sin_addr.s_addr == INADDR_ANY) ||
3543                                             (sin.sin_addr.s_addr == INADDR_BROADCAST) ||
3544                                             IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) {
3545                                                 *error = EINVAL;
3546                                                 return (1);
3547                                         }
3548                                         if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL,
3549                                             SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3550                                                 *error = ENOBUFS;
3551                                                 return (1);
3552                                         }
3553                                 } else
3554 #endif
3555                                         if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL,
3556                                     SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) {
3557                                         *error = ENOBUFS;
3558                                         return (1);
3559                                 }
3560                                 break;
3561 #endif
3562                         default:
3563                                 break;
3564                         }
3565                 }
3566                 at += CMSG_ALIGN(cmh.cmsg_len);
3567         }
3568         return (0);
3569 }
3570
3571 static struct sctp_tcb *
3572 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p,
3573     uint16_t port,
3574     struct mbuf *control,
3575     struct sctp_nets **net_p,
3576     int *error)
3577 {
3578         struct cmsghdr cmh;
3579         int tlen, at;
3580         struct sctp_tcb *stcb;
3581         struct sockaddr *addr;
3582
3583 #ifdef INET
3584         struct sockaddr_in sin;
3585
3586 #endif
3587 #ifdef INET6
3588         struct sockaddr_in6 sin6;
3589
3590 #endif
3591
3592         tlen = SCTP_BUF_LEN(control);
3593         at = 0;
3594         while (at < tlen) {
3595                 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) {
3596                         /* There is not enough room for one more. */
3597                         *error = EINVAL;
3598                         return (NULL);
3599                 }
3600                 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh);
3601                 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) {
3602                         /* We dont't have a complete CMSG header. */
3603                         *error = EINVAL;
3604                         return (NULL);
3605                 }
3606                 if (((int)cmh.cmsg_len + at) > tlen) {
3607                         /* We don't have the complete CMSG. */
3608                         *error = EINVAL;
3609                         return (NULL);
3610                 }
3611                 if (cmh.cmsg_level == IPPROTO_SCTP) {
3612                         switch (cmh.cmsg_type) {
3613 #ifdef INET
3614                         case SCTP_DSTADDRV4:
3615                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) {
3616                                         *error = EINVAL;
3617                                         return (NULL);
3618                                 }
3619                                 memset(&sin, 0, sizeof(struct sockaddr_in));
3620                                 sin.sin_family = AF_INET;
3621                                 sin.sin_len = sizeof(struct sockaddr_in);
3622                                 sin.sin_port = port;
3623                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr);
3624                                 addr = (struct sockaddr *)&sin;
3625                                 break;
3626 #endif
3627 #ifdef INET6
3628                         case SCTP_DSTADDRV6:
3629                                 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) {
3630                                         *error = EINVAL;
3631                                         return (NULL);
3632                                 }
3633                                 memset(&sin6, 0, sizeof(struct sockaddr_in6));
3634                                 sin6.sin6_family = AF_INET6;
3635                                 sin6.sin6_len = sizeof(struct sockaddr_in6);
3636                                 sin6.sin6_port = port;
3637                                 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr);
3638 #ifdef INET
3639                                 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) {
3640                                         in6_sin6_2_sin(&sin, &sin6);
3641                                         addr = (struct sockaddr *)&sin;
3642                                 } else
3643 #endif
3644                                         addr = (struct sockaddr *)&sin6;
3645                                 break;
3646 #endif
3647                         default:
3648                                 addr = NULL;
3649                                 break;
3650                         }
3651                         if (addr) {
3652                                 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL);
3653                                 if (stcb != NULL) {
3654                                         return (stcb);
3655                                 }
3656                         }
3657                 }
3658                 at += CMSG_ALIGN(cmh.cmsg_len);
3659         }
3660         return (NULL);
3661 }
3662
3663 static struct mbuf *
3664 sctp_add_cookie(struct mbuf *init, int init_offset,
3665     struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature)
3666 {
3667         struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret;
3668         struct sctp_state_cookie *stc;
3669         struct sctp_paramhdr *ph;
3670         uint8_t *foo;
3671         int sig_offset;
3672         uint16_t cookie_sz;
3673
3674         mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) +
3675             sizeof(struct sctp_paramhdr)), 0,
3676             M_NOWAIT, 1, MT_DATA);
3677         if (mret == NULL) {
3678                 return (NULL);
3679         }
3680         copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT);
3681         if (copy_init == NULL) {
3682                 sctp_m_freem(mret);
3683                 return (NULL);
3684         }
3685 #ifdef SCTP_MBUF_LOGGING
3686         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3687                 struct mbuf *mat;
3688
3689                 for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) {
3690                         if (SCTP_BUF_IS_EXTENDED(mat)) {
3691                                 sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3692                         }
3693                 }
3694         }
3695 #endif
3696         copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL,
3697             M_NOWAIT);
3698         if (copy_initack == NULL) {
3699                 sctp_m_freem(mret);
3700                 sctp_m_freem(copy_init);
3701                 return (NULL);
3702         }
3703 #ifdef SCTP_MBUF_LOGGING
3704         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
3705                 struct mbuf *mat;
3706
3707                 for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) {
3708                         if (SCTP_BUF_IS_EXTENDED(mat)) {
3709                                 sctp_log_mb(mat, SCTP_MBUF_ICOPY);
3710                         }
3711                 }
3712         }
3713 #endif
3714         /* easy side we just drop it on the end */
3715         ph = mtod(mret, struct sctp_paramhdr *);
3716         SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) +
3717             sizeof(struct sctp_paramhdr);
3718         stc = (struct sctp_state_cookie *)((caddr_t)ph +
3719             sizeof(struct sctp_paramhdr));
3720         ph->param_type = htons(SCTP_STATE_COOKIE);
3721         ph->param_length = 0;   /* fill in at the end */
3722         /* Fill in the stc cookie data */
3723         memcpy(stc, stc_in, sizeof(struct sctp_state_cookie));
3724
3725         /* tack the INIT and then the INIT-ACK onto the chain */
3726         cookie_sz = 0;
3727         for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3728                 cookie_sz += SCTP_BUF_LEN(m_at);
3729                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3730                         SCTP_BUF_NEXT(m_at) = copy_init;
3731                         break;
3732                 }
3733         }
3734         for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3735                 cookie_sz += SCTP_BUF_LEN(m_at);
3736                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3737                         SCTP_BUF_NEXT(m_at) = copy_initack;
3738                         break;
3739                 }
3740         }
3741         for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
3742                 cookie_sz += SCTP_BUF_LEN(m_at);
3743                 if (SCTP_BUF_NEXT(m_at) == NULL) {
3744                         break;
3745                 }
3746         }
3747         sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA);
3748         if (sig == NULL) {
3749                 /* no space, so free the entire chain */
3750                 sctp_m_freem(mret);
3751                 return (NULL);
3752         }
3753         SCTP_BUF_LEN(sig) = 0;
3754         SCTP_BUF_NEXT(m_at) = sig;
3755         sig_offset = 0;
3756         foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset);
3757         memset(foo, 0, SCTP_SIGNATURE_SIZE);
3758         *signature = foo;
3759         SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE;
3760         cookie_sz += SCTP_SIGNATURE_SIZE;
3761         ph->param_length = htons(cookie_sz);
3762         return (mret);
3763 }
3764
3765
3766 static uint8_t
3767 sctp_get_ect(struct sctp_tcb *stcb)
3768 {
3769         if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) {
3770                 return (SCTP_ECT0_BIT);
3771         } else {
3772                 return (0);
3773         }
3774 }
3775
3776 #if defined(INET) || defined(INET6)
3777 static void
3778 sctp_handle_no_route(struct sctp_tcb *stcb,
3779     struct sctp_nets *net,
3780     int so_locked)
3781 {
3782         SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n");
3783
3784         if (net) {
3785                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was ");
3786                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa);
3787                 if (net->dest_state & SCTP_ADDR_CONFIRMED) {
3788                         if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) {
3789                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net);
3790                                 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
3791                                     stcb, 0,
3792                                     (void *)net,
3793                                     so_locked);
3794                                 net->dest_state &= ~SCTP_ADDR_REACHABLE;
3795                                 net->dest_state &= ~SCTP_ADDR_PF;
3796                         }
3797                 }
3798                 if (stcb) {
3799                         if (net == stcb->asoc.primary_destination) {
3800                                 /* need a new primary */
3801                                 struct sctp_nets *alt;
3802
3803                                 alt = sctp_find_alternate_net(stcb, net, 0);
3804                                 if (alt != net) {
3805                                         if (stcb->asoc.alternate) {
3806                                                 sctp_free_remote_addr(stcb->asoc.alternate);
3807                                         }
3808                                         stcb->asoc.alternate = alt;
3809                                         atomic_add_int(&stcb->asoc.alternate->ref_count, 1);
3810                                         if (net->ro._s_addr) {
3811                                                 sctp_free_ifa(net->ro._s_addr);
3812                                                 net->ro._s_addr = NULL;
3813                                         }
3814                                         net->src_addr_selected = 0;
3815                                 }
3816                         }
3817                 }
3818         }
3819 }
3820
3821 #endif
3822
3823 static int
3824 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
3825     struct sctp_tcb *stcb,      /* may be NULL */
3826     struct sctp_nets *net,
3827     struct sockaddr *to,
3828     struct mbuf *m,
3829     uint32_t auth_offset,
3830     struct sctp_auth_chunk *auth,
3831     uint16_t auth_keyid,
3832     int nofragment_flag,
3833     int ecn_ok,
3834     int out_of_asoc_ok,
3835     uint16_t src_port,
3836     uint16_t dest_port,
3837     uint32_t v_tag,
3838     uint16_t port,
3839     union sctp_sockstore *over_addr,
3840     uint8_t use_mflowid, uint32_t mflowid,
3841 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
3842     int so_locked SCTP_UNUSED
3843 #else
3844     int so_locked
3845 #endif
3846 )
3847 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */
3848 {
3849         /**
3850          * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header
3851          * WITH an SCTPHDR but no IP header, endpoint inp and sa structure:
3852          * - fill in the HMAC digest of any AUTH chunk in the packet.
3853          * - calculate and fill in the SCTP checksum.
3854          * - prepend an IP address header.
3855          * - if boundall use INADDR_ANY.
3856          * - if boundspecific do source address selection.
3857          * - set fragmentation option for ipV4.
3858          * - On return from IP output, check/adjust mtu size of output
3859          *   interface and smallest_mtu size as well.
3860          */
3861         /* Will need ifdefs around this */
3862         struct mbuf *newm;
3863         struct sctphdr *sctphdr;
3864         int packet_length;
3865         int ret;
3866
3867 #if defined(INET) || defined(INET6)
3868         uint32_t vrf_id;
3869
3870 #endif
3871 #if defined(INET) || defined(INET6)
3872         struct mbuf *o_pak;
3873         sctp_route_t *ro = NULL;
3874         struct udphdr *udp = NULL;
3875
3876 #endif
3877         uint8_t tos_value;
3878
3879 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
3880         struct socket *so = NULL;
3881
3882 #endif
3883
3884         if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) {
3885                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
3886                 sctp_m_freem(m);
3887                 return (EFAULT);
3888         }
3889 #if defined(INET) || defined(INET6)
3890         if (stcb) {
3891                 vrf_id = stcb->asoc.vrf_id;
3892         } else {
3893                 vrf_id = inp->def_vrf_id;
3894         }
3895 #endif
3896         /* fill in the HMAC digest for any AUTH chunk in the packet */
3897         if ((auth != NULL) && (stcb != NULL)) {
3898                 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid);
3899         }
3900         if (net) {
3901                 tos_value = net->dscp;
3902         } else if (stcb) {
3903                 tos_value = stcb->asoc.default_dscp;
3904         } else {
3905                 tos_value = inp->sctp_ep.default_dscp;
3906         }
3907
3908         switch (to->sa_family) {
3909 #ifdef INET
3910         case AF_INET:
3911                 {
3912                         struct ip *ip = NULL;
3913                         sctp_route_t iproute;
3914                         int len;
3915
3916                         len = sizeof(struct ip) + sizeof(struct sctphdr);
3917                         if (port) {
3918                                 len += sizeof(struct udphdr);
3919                         }
3920                         newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
3921                         if (newm == NULL) {
3922                                 sctp_m_freem(m);
3923                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
3924                                 return (ENOMEM);
3925                         }
3926                         SCTP_ALIGN_TO_END(newm, len);
3927                         SCTP_BUF_LEN(newm) = len;
3928                         SCTP_BUF_NEXT(newm) = m;
3929                         m = newm;
3930                         if (net != NULL) {
3931 #ifdef INVARIANTS
3932                                 if (net->flowidset == 0) {
3933                                         panic("Flow ID not set");
3934                                 }
3935 #endif
3936                                 m->m_pkthdr.flowid = net->flowid;
3937                                 m->m_flags |= M_FLOWID;
3938                         } else {
3939                                 if (use_mflowid != 0) {
3940                                         m->m_pkthdr.flowid = mflowid;
3941                                         m->m_flags |= M_FLOWID;
3942                                 }
3943                         }
3944                         packet_length = sctp_calculate_len(m);
3945                         ip = mtod(m, struct ip *);
3946                         ip->ip_v = IPVERSION;
3947                         ip->ip_hl = (sizeof(struct ip) >> 2);
3948                         if (tos_value == 0) {
3949                                 /*
3950                                  * This means especially, that it is not set
3951                                  * at the SCTP layer. So use the value from
3952                                  * the IP layer.
3953                                  */
3954                                 tos_value = inp->ip_inp.inp.inp_ip_tos;
3955                         }
3956                         tos_value &= 0xfc;
3957                         if (ecn_ok) {
3958                                 tos_value |= sctp_get_ect(stcb);
3959                         }
3960                         if ((nofragment_flag) && (port == 0)) {
3961                                 ip->ip_off = htons(IP_DF);
3962                         } else {
3963                                 ip->ip_off = htons(0);
3964                         }
3965                         /* FreeBSD has a function for ip_id's */
3966                         ip->ip_id = ip_newid();
3967
3968                         ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl;
3969                         ip->ip_len = htons(packet_length);
3970                         ip->ip_tos = tos_value;
3971                         if (port) {
3972                                 ip->ip_p = IPPROTO_UDP;
3973                         } else {
3974                                 ip->ip_p = IPPROTO_SCTP;
3975                         }
3976                         ip->ip_sum = 0;
3977                         if (net == NULL) {
3978                                 ro = &iproute;
3979                                 memset(&iproute, 0, sizeof(iproute));
3980                                 memcpy(&ro->ro_dst, to, to->sa_len);
3981                         } else {
3982                                 ro = (sctp_route_t *) & net->ro;
3983                         }
3984                         /* Now the address selection part */
3985                         ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr;
3986
3987                         /* call the routine to select the src address */
3988                         if (net && out_of_asoc_ok == 0) {
3989                                 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
3990                                         sctp_free_ifa(net->ro._s_addr);
3991                                         net->ro._s_addr = NULL;
3992                                         net->src_addr_selected = 0;
3993                                         if (ro->ro_rt) {
3994                                                 RTFREE(ro->ro_rt);
3995                                                 ro->ro_rt = NULL;
3996                                         }
3997                                 }
3998                                 if (net->src_addr_selected == 0) {
3999                                         /* Cache the source address */
4000                                         net->ro._s_addr = sctp_source_address_selection(inp, stcb,
4001                                             ro, net, 0,
4002                                             vrf_id);
4003                                         net->src_addr_selected = 1;
4004                                 }
4005                                 if (net->ro._s_addr == NULL) {
4006                                         /* No route to host */
4007                                         net->src_addr_selected = 0;
4008                                         sctp_handle_no_route(stcb, net, so_locked);
4009                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4010                                         sctp_m_freem(m);
4011                                         return (EHOSTUNREACH);
4012                                 }
4013                                 ip->ip_src = net->ro._s_addr->address.sin.sin_addr;
4014                         } else {
4015                                 if (over_addr == NULL) {
4016                                         struct sctp_ifa *_lsrc;
4017
4018                                         _lsrc = sctp_source_address_selection(inp, stcb, ro,
4019                                             net,
4020                                             out_of_asoc_ok,
4021                                             vrf_id);
4022                                         if (_lsrc == NULL) {
4023                                                 sctp_handle_no_route(stcb, net, so_locked);
4024                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4025                                                 sctp_m_freem(m);
4026                                                 return (EHOSTUNREACH);
4027                                         }
4028                                         ip->ip_src = _lsrc->address.sin.sin_addr;
4029                                         sctp_free_ifa(_lsrc);
4030                                 } else {
4031                                         ip->ip_src = over_addr->sin.sin_addr;
4032                                         SCTP_RTALLOC(ro, vrf_id);
4033                                 }
4034                         }
4035                         if (port) {
4036                                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4037                                         sctp_handle_no_route(stcb, net, so_locked);
4038                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4039                                         sctp_m_freem(m);
4040                                         return (EHOSTUNREACH);
4041                                 }
4042                                 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip));
4043                                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4044                                 udp->uh_dport = port;
4045                                 udp->uh_ulen = htons(packet_length - sizeof(struct ip));
4046                                 if (V_udp_cksum) {
4047                                         udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
4048                                 } else {
4049                                         udp->uh_sum = 0;
4050                                 }
4051                                 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4052                         } else {
4053                                 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip));
4054                         }
4055
4056                         sctphdr->src_port = src_port;
4057                         sctphdr->dest_port = dest_port;
4058                         sctphdr->v_tag = v_tag;
4059                         sctphdr->checksum = 0;
4060
4061                         /*
4062                          * If source address selection fails and we find no
4063                          * route then the ip_output should fail as well with
4064                          * a NO_ROUTE_TO_HOST type error. We probably should
4065                          * catch that somewhere and abort the association
4066                          * right away (assuming this is an INIT being sent).
4067                          */
4068                         if (ro->ro_rt == NULL) {
4069                                 /*
4070                                  * src addr selection failed to find a route
4071                                  * (or valid source addr), so we can't get
4072                                  * there from here (yet)!
4073                                  */
4074                                 sctp_handle_no_route(stcb, net, so_locked);
4075                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4076                                 sctp_m_freem(m);
4077                                 return (EHOSTUNREACH);
4078                         }
4079                         if (ro != &iproute) {
4080                                 memcpy(&iproute, ro, sizeof(*ro));
4081                         }
4082                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n",
4083                             (uint32_t) (ntohl(ip->ip_src.s_addr)));
4084                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n",
4085                             (uint32_t) (ntohl(ip->ip_dst.s_addr)));
4086                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n",
4087                             (void *)ro->ro_rt);
4088
4089                         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4090                                 /* failed to prepend data, give up */
4091                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4092                                 sctp_m_freem(m);
4093                                 return (ENOMEM);
4094                         }
4095                         SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4096                         if (port) {
4097 #if defined(SCTP_WITH_NO_CSUM)
4098                                 SCTP_STAT_INCR(sctps_sendnocrc);
4099 #else
4100                                 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr));
4101                                 SCTP_STAT_INCR(sctps_sendswcrc);
4102 #endif
4103                                 if (V_udp_cksum) {
4104                                         SCTP_ENABLE_UDP_CSUM(o_pak);
4105                                 }
4106                         } else {
4107 #if defined(SCTP_WITH_NO_CSUM)
4108                                 SCTP_STAT_INCR(sctps_sendnocrc);
4109 #else
4110                                 m->m_pkthdr.csum_flags = CSUM_SCTP;
4111                                 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4112                                 SCTP_STAT_INCR(sctps_sendhwcrc);
4113 #endif
4114                         }
4115 #ifdef SCTP_PACKET_LOGGING
4116                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4117                                 sctp_packet_log(o_pak);
4118 #endif
4119                         /* send it out.  table id is taken from stcb */
4120 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4121                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4122                                 so = SCTP_INP_SO(inp);
4123                                 SCTP_SOCKET_UNLOCK(so, 0);
4124                         }
4125 #endif
4126                         SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id);
4127 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4128                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4129                                 atomic_add_int(&stcb->asoc.refcnt, 1);
4130                                 SCTP_TCB_UNLOCK(stcb);
4131                                 SCTP_SOCKET_LOCK(so, 0);
4132                                 SCTP_TCB_LOCK(stcb);
4133                                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
4134                         }
4135 #endif
4136                         SCTP_STAT_INCR(sctps_sendpackets);
4137                         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4138                         if (ret)
4139                                 SCTP_STAT_INCR(sctps_senderrors);
4140
4141                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret);
4142                         if (net == NULL) {
4143                                 /* free tempy routes */
4144                                 RO_RTFREE(ro);
4145                         } else {
4146                                 /*
4147                                  * PMTU check versus smallest asoc MTU goes
4148                                  * here
4149                                  */
4150                                 if ((ro->ro_rt != NULL) &&
4151                                     (net->ro._s_addr)) {
4152                                         uint32_t mtu;
4153
4154                                         mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4155                                         if (net->port) {
4156                                                 mtu -= sizeof(struct udphdr);
4157                                         }
4158                                         if (mtu && (stcb->asoc.smallest_mtu > mtu)) {
4159                                                 sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4160                                                 net->mtu = mtu;
4161                                         }
4162                                 } else if (ro->ro_rt == NULL) {
4163                                         /* route was freed */
4164                                         if (net->ro._s_addr &&
4165                                             net->src_addr_selected) {
4166                                                 sctp_free_ifa(net->ro._s_addr);
4167                                                 net->ro._s_addr = NULL;
4168                                         }
4169                                         net->src_addr_selected = 0;
4170                                 }
4171                         }
4172                         return (ret);
4173                 }
4174 #endif
4175 #ifdef INET6
4176         case AF_INET6:
4177                 {
4178                         uint32_t flowlabel, flowinfo;
4179                         struct ip6_hdr *ip6h;
4180                         struct route_in6 ip6route;
4181                         struct ifnet *ifp;
4182                         struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp;
4183                         int prev_scope = 0;
4184                         struct sockaddr_in6 lsa6_storage;
4185                         int error;
4186                         u_short prev_port = 0;
4187                         int len;
4188
4189                         if (net) {
4190                                 flowlabel = net->flowlabel;
4191                         } else if (stcb) {
4192                                 flowlabel = stcb->asoc.default_flowlabel;
4193                         } else {
4194                                 flowlabel = inp->sctp_ep.default_flowlabel;
4195                         }
4196                         if (flowlabel == 0) {
4197                                 /*
4198                                  * This means especially, that it is not set
4199                                  * at the SCTP layer. So use the value from
4200                                  * the IP layer.
4201                                  */
4202                                 flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo);
4203                         }
4204                         flowlabel &= 0x000fffff;
4205                         len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr);
4206                         if (port) {
4207                                 len += sizeof(struct udphdr);
4208                         }
4209                         newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA);
4210                         if (newm == NULL) {
4211                                 sctp_m_freem(m);
4212                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4213                                 return (ENOMEM);
4214                         }
4215                         SCTP_ALIGN_TO_END(newm, len);
4216                         SCTP_BUF_LEN(newm) = len;
4217                         SCTP_BUF_NEXT(newm) = m;
4218                         m = newm;
4219                         if (net != NULL) {
4220 #ifdef INVARIANTS
4221                                 if (net->flowidset == 0) {
4222                                         panic("Flow ID not set");
4223                                 }
4224 #endif
4225                                 m->m_pkthdr.flowid = net->flowid;
4226                                 m->m_flags |= M_FLOWID;
4227                         } else {
4228                                 if (use_mflowid != 0) {
4229                                         m->m_pkthdr.flowid = mflowid;
4230                                         m->m_flags |= M_FLOWID;
4231                                 }
4232                         }
4233                         packet_length = sctp_calculate_len(m);
4234
4235                         ip6h = mtod(m, struct ip6_hdr *);
4236                         /* protect *sin6 from overwrite */
4237                         sin6 = (struct sockaddr_in6 *)to;
4238                         tmp = *sin6;
4239                         sin6 = &tmp;
4240
4241                         /* KAME hack: embed scopeid */
4242                         if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4243                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4244                                 return (EINVAL);
4245                         }
4246                         if (net == NULL) {
4247                                 memset(&ip6route, 0, sizeof(ip6route));
4248                                 ro = (sctp_route_t *) & ip6route;
4249                                 memcpy(&ro->ro_dst, sin6, sin6->sin6_len);
4250                         } else {
4251                                 ro = (sctp_route_t *) & net->ro;
4252                         }
4253                         /*
4254                          * We assume here that inp_flow is in host byte
4255                          * order within the TCB!
4256                          */
4257                         if (tos_value == 0) {
4258                                 /*
4259                                  * This means especially, that it is not set
4260                                  * at the SCTP layer. So use the value from
4261                                  * the IP layer.
4262                                  */
4263                                 tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff;
4264                         }
4265                         tos_value &= 0xfc;
4266                         if (ecn_ok) {
4267                                 tos_value |= sctp_get_ect(stcb);
4268                         }
4269                         flowinfo = 0x06;
4270                         flowinfo <<= 8;
4271                         flowinfo |= tos_value;
4272                         flowinfo <<= 20;
4273                         flowinfo |= flowlabel;
4274                         ip6h->ip6_flow = htonl(flowinfo);
4275                         if (port) {
4276                                 ip6h->ip6_nxt = IPPROTO_UDP;
4277                         } else {
4278                                 ip6h->ip6_nxt = IPPROTO_SCTP;
4279                         }
4280                         ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr));
4281                         ip6h->ip6_dst = sin6->sin6_addr;
4282
4283                         /*
4284                          * Add SRC address selection here: we can only reuse
4285                          * to a limited degree the kame src-addr-sel, since
4286                          * we can try their selection but it may not be
4287                          * bound.
4288                          */
4289                         bzero(&lsa6_tmp, sizeof(lsa6_tmp));
4290                         lsa6_tmp.sin6_family = AF_INET6;
4291                         lsa6_tmp.sin6_len = sizeof(lsa6_tmp);
4292                         lsa6 = &lsa6_tmp;
4293                         if (net && out_of_asoc_ok == 0) {
4294                                 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) {
4295                                         sctp_free_ifa(net->ro._s_addr);
4296                                         net->ro._s_addr = NULL;
4297                                         net->src_addr_selected = 0;
4298                                         if (ro->ro_rt) {
4299                                                 RTFREE(ro->ro_rt);
4300                                                 ro->ro_rt = NULL;
4301                                         }
4302                                 }
4303                                 if (net->src_addr_selected == 0) {
4304                                         sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4305                                         /* KAME hack: embed scopeid */
4306                                         if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4307                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4308                                                 return (EINVAL);
4309                                         }
4310                                         /* Cache the source address */
4311                                         net->ro._s_addr = sctp_source_address_selection(inp,
4312                                             stcb,
4313                                             ro,
4314                                             net,
4315                                             0,
4316                                             vrf_id);
4317                                         (void)sa6_recoverscope(sin6);
4318                                         net->src_addr_selected = 1;
4319                                 }
4320                                 if (net->ro._s_addr == NULL) {
4321                                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n");
4322                                         net->src_addr_selected = 0;
4323                                         sctp_handle_no_route(stcb, net, so_locked);
4324                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4325                                         sctp_m_freem(m);
4326                                         return (EHOSTUNREACH);
4327                                 }
4328                                 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr;
4329                         } else {
4330                                 sin6 = (struct sockaddr_in6 *)&ro->ro_dst;
4331                                 /* KAME hack: embed scopeid */
4332                                 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) {
4333                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
4334                                         return (EINVAL);
4335                                 }
4336                                 if (over_addr == NULL) {
4337                                         struct sctp_ifa *_lsrc;
4338
4339                                         _lsrc = sctp_source_address_selection(inp, stcb, ro,
4340                                             net,
4341                                             out_of_asoc_ok,
4342                                             vrf_id);
4343                                         if (_lsrc == NULL) {
4344                                                 sctp_handle_no_route(stcb, net, so_locked);
4345                                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4346                                                 sctp_m_freem(m);
4347                                                 return (EHOSTUNREACH);
4348                                         }
4349                                         lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr;
4350                                         sctp_free_ifa(_lsrc);
4351                                 } else {
4352                                         lsa6->sin6_addr = over_addr->sin6.sin6_addr;
4353                                         SCTP_RTALLOC(ro, vrf_id);
4354                                 }
4355                                 (void)sa6_recoverscope(sin6);
4356                         }
4357                         lsa6->sin6_port = inp->sctp_lport;
4358
4359                         if (ro->ro_rt == NULL) {
4360                                 /*
4361                                  * src addr selection failed to find a route
4362                                  * (or valid source addr), so we can't get
4363                                  * there from here!
4364                                  */
4365                                 sctp_handle_no_route(stcb, net, so_locked);
4366                                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4367                                 sctp_m_freem(m);
4368                                 return (EHOSTUNREACH);
4369                         }
4370                         /*
4371                          * XXX: sa6 may not have a valid sin6_scope_id in
4372                          * the non-SCOPEDROUTING case.
4373                          */
4374                         bzero(&lsa6_storage, sizeof(lsa6_storage));
4375                         lsa6_storage.sin6_family = AF_INET6;
4376                         lsa6_storage.sin6_len = sizeof(lsa6_storage);
4377                         lsa6_storage.sin6_addr = lsa6->sin6_addr;
4378                         if ((error = sa6_recoverscope(&lsa6_storage)) != 0) {
4379                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error);
4380                                 sctp_m_freem(m);
4381                                 return (error);
4382                         }
4383                         /* XXX */
4384                         lsa6_storage.sin6_addr = lsa6->sin6_addr;
4385                         lsa6_storage.sin6_port = inp->sctp_lport;
4386                         lsa6 = &lsa6_storage;
4387                         ip6h->ip6_src = lsa6->sin6_addr;
4388
4389                         if (port) {
4390                                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
4391                                         sctp_handle_no_route(stcb, net, so_locked);
4392                                         SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH);
4393                                         sctp_m_freem(m);
4394                                         return (EHOSTUNREACH);
4395                                 }
4396                                 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4397                                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
4398                                 udp->uh_dport = port;
4399                                 udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr));
4400                                 udp->uh_sum = 0;
4401                                 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr));
4402                         } else {
4403                                 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr));
4404                         }
4405
4406                         sctphdr->src_port = src_port;
4407                         sctphdr->dest_port = dest_port;
4408                         sctphdr->v_tag = v_tag;
4409                         sctphdr->checksum = 0;
4410
4411                         /*
4412                          * We set the hop limit now since there is a good
4413                          * chance that our ro pointer is now filled
4414                          */
4415                         ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro);
4416                         ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro);
4417
4418 #ifdef SCTP_DEBUG
4419                         /* Copy to be sure something bad is not happening */
4420                         sin6->sin6_addr = ip6h->ip6_dst;
4421                         lsa6->sin6_addr = ip6h->ip6_src;
4422 #endif
4423
4424                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n");
4425                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: ");
4426                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6);
4427                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: ");
4428                         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6);
4429                         if (net) {
4430                                 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
4431                                 /*
4432                                  * preserve the port and scope for link
4433                                  * local send
4434                                  */
4435                                 prev_scope = sin6->sin6_scope_id;
4436                                 prev_port = sin6->sin6_port;
4437                         }
4438                         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
4439                                 /* failed to prepend data, give up */
4440                                 sctp_m_freem(m);
4441                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
4442                                 return (ENOMEM);
4443                         }
4444                         SCTP_ATTACH_CHAIN(o_pak, m, packet_length);
4445                         if (port) {
4446 #if defined(SCTP_WITH_NO_CSUM)
4447                                 SCTP_STAT_INCR(sctps_sendnocrc);
4448 #else
4449                                 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
4450                                 SCTP_STAT_INCR(sctps_sendswcrc);
4451 #endif
4452                                 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) {
4453                                         udp->uh_sum = 0xffff;
4454                                 }
4455                         } else {
4456 #if defined(SCTP_WITH_NO_CSUM)
4457                                 SCTP_STAT_INCR(sctps_sendnocrc);
4458 #else
4459                                 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
4460                                 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
4461                                 SCTP_STAT_INCR(sctps_sendhwcrc);
4462 #endif
4463                         }
4464                         /* send it out. table id is taken from stcb */
4465 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4466                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4467                                 so = SCTP_INP_SO(inp);
4468                                 SCTP_SOCKET_UNLOCK(so, 0);
4469                         }
4470 #endif
4471 #ifdef SCTP_PACKET_LOGGING
4472                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING)
4473                                 sctp_packet_log(o_pak);
4474 #endif
4475                         SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id);
4476 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4477                         if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) {
4478                                 atomic_add_int(&stcb->asoc.refcnt, 1);
4479                                 SCTP_TCB_UNLOCK(stcb);
4480                                 SCTP_SOCKET_LOCK(so, 0);
4481                                 SCTP_TCB_LOCK(stcb);
4482                                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
4483                         }
4484 #endif
4485                         if (net) {
4486                                 /* for link local this must be done */
4487                                 sin6->sin6_scope_id = prev_scope;
4488                                 sin6->sin6_port = prev_port;
4489                         }
4490                         SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret);
4491                         SCTP_STAT_INCR(sctps_sendpackets);
4492                         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
4493                         if (ret) {
4494                                 SCTP_STAT_INCR(sctps_senderrors);
4495                         }
4496                         if (net == NULL) {
4497                                 /* Now if we had a temp route free it */
4498                                 RO_RTFREE(ro);
4499                         } else {
4500                                 /*
4501                                  * PMTU check versus smallest asoc MTU goes
4502                                  * here
4503                                  */
4504                                 if (ro->ro_rt == NULL) {
4505                                         /* Route was freed */
4506                                         if (net->ro._s_addr &&
4507                                             net->src_addr_selected) {
4508                                                 sctp_free_ifa(net->ro._s_addr);
4509                                                 net->ro._s_addr = NULL;
4510                                         }
4511                                         net->src_addr_selected = 0;
4512                                 }
4513                                 if ((ro->ro_rt != NULL) &&
4514                                     (net->ro._s_addr)) {
4515                                         uint32_t mtu;
4516
4517                                         mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt);
4518                                         if (mtu &&
4519                                             (stcb->asoc.smallest_mtu > mtu)) {
4520                                                 sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
4521                                                 net->mtu = mtu;
4522                                                 if (net->port) {
4523                                                         net->mtu -= sizeof(struct udphdr);
4524                                                 }
4525                                         }
4526                                 } else if (ifp) {
4527                                         if (ND_IFINFO(ifp)->linkmtu &&
4528                                             (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
4529                                                 sctp_mtu_size_reset(inp,
4530                                                     &stcb->asoc,
4531                                                     ND_IFINFO(ifp)->linkmtu);
4532                                         }
4533                                 }
4534                         }
4535                         return (ret);
4536                 }
4537 #endif
4538         default:
4539                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
4540                     ((struct sockaddr *)to)->sa_family);
4541                 sctp_m_freem(m);
4542                 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
4543                 return (EFAULT);
4544         }
4545 }
4546
4547
4548 void
4549 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked
4550 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
4551     SCTP_UNUSED
4552 #endif
4553 )
4554 {
4555         struct mbuf *m;
4556         struct sctp_nets *net;
4557         struct sctp_init_chunk *init;
4558         struct sctp_supported_addr_param *sup_addr;
4559         struct sctp_adaptation_layer_indication *ali;
4560         struct sctp_supported_chunk_types_param *pr_supported;
4561         struct sctp_paramhdr *ph;
4562         int cnt_inits_to = 0;
4563         int ret;
4564         uint16_t num_ext, chunk_len, padding_len, parameter_len;
4565
4566         /* INIT's always go to the primary (and usually ONLY address) */
4567         net = stcb->asoc.primary_destination;
4568         if (net == NULL) {
4569                 net = TAILQ_FIRST(&stcb->asoc.nets);
4570                 if (net == NULL) {
4571                         /* TSNH */
4572                         return;
4573                 }
4574                 /* we confirm any address we send an INIT to */
4575                 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4576                 (void)sctp_set_primary_addr(stcb, NULL, net);
4577         } else {
4578                 /* we confirm any address we send an INIT to */
4579                 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED;
4580         }
4581         SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n");
4582 #ifdef INET6
4583         if (net->ro._l_addr.sa.sa_family == AF_INET6) {
4584                 /*
4585                  * special hook, if we are sending to link local it will not
4586                  * show up in our private address count.
4587                  */
4588                 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr))
4589                         cnt_inits_to = 1;
4590         }
4591 #endif
4592         if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4593                 /* This case should not happen */
4594                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n");
4595                 return;
4596         }
4597         /* start the INIT timer */
4598         sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net);
4599
4600         m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA);
4601         if (m == NULL) {
4602                 /* No memory, INIT timer will re-attempt. */
4603                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n");
4604                 return;
4605         }
4606         chunk_len = (uint16_t) sizeof(struct sctp_init_chunk);
4607         padding_len = 0;
4608         /*
4609          * assume peer supports asconf in order to be able to queue local
4610          * address changes while an INIT is in flight and before the assoc
4611          * is established.
4612          */
4613         stcb->asoc.peer_supports_asconf = 1;
4614         /* Now lets put the chunk header in place */
4615         init = mtod(m, struct sctp_init_chunk *);
4616         /* now the chunk header */
4617         init->ch.chunk_type = SCTP_INITIATION;
4618         init->ch.chunk_flags = 0;
4619         /* fill in later from mbuf we build */
4620         init->ch.chunk_length = 0;
4621         /* place in my tag */
4622         init->init.initiate_tag = htonl(stcb->asoc.my_vtag);
4623         /* set up some of the credits. */
4624         init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0,
4625             SCTP_MINIMAL_RWND));
4626         init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams);
4627         init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams);
4628         init->init.initial_tsn = htonl(stcb->asoc.init_seq_number);
4629
4630         if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) {
4631                 uint8_t i;
4632
4633                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4634                 if (stcb->asoc.scope.ipv4_addr_legal) {
4635                         parameter_len += (uint16_t) sizeof(uint16_t);
4636                 }
4637                 if (stcb->asoc.scope.ipv6_addr_legal) {
4638                         parameter_len += (uint16_t) sizeof(uint16_t);
4639                 }
4640                 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len);
4641                 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE);
4642                 sup_addr->ph.param_length = htons(parameter_len);
4643                 i = 0;
4644                 if (stcb->asoc.scope.ipv4_addr_legal) {
4645                         sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS);
4646                 }
4647                 if (stcb->asoc.scope.ipv6_addr_legal) {
4648                         sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS);
4649                 }
4650                 padding_len = 4 - 2 * i;
4651                 chunk_len += parameter_len;
4652         }
4653         /* Adaptation layer indication parameter */
4654         if (inp->sctp_ep.adaptation_layer_indicator_provided) {
4655                 if (padding_len > 0) {
4656                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4657                         chunk_len += padding_len;
4658                         padding_len = 0;
4659                 }
4660                 parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication);
4661                 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len);
4662                 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
4663                 ali->ph.param_length = htons(parameter_len);
4664                 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
4665                 chunk_len += parameter_len;
4666         }
4667         if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) {
4668                 /* Add NAT friendly parameter. */
4669                 if (padding_len > 0) {
4670                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4671                         chunk_len += padding_len;
4672                         padding_len = 0;
4673                 }
4674                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4675                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4676                 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
4677                 ph->param_length = htons(parameter_len);
4678                 chunk_len += parameter_len;
4679         }
4680         /* now any cookie time extensions */
4681         if (stcb->asoc.cookie_preserve_req) {
4682                 struct sctp_cookie_perserve_param *cookie_preserve;
4683
4684                 if (padding_len > 0) {
4685                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4686                         chunk_len += padding_len;
4687                         padding_len = 0;
4688                 }
4689                 parameter_len = (uint16_t) sizeof(struct sctp_cookie_perserve_param);
4690                 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len);
4691                 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE);
4692                 cookie_preserve->ph.param_length = htons(parameter_len);
4693                 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req);
4694                 stcb->asoc.cookie_preserve_req = 0;
4695                 chunk_len += parameter_len;
4696         }
4697         /* ECN parameter */
4698         if (stcb->asoc.ecn_allowed == 1) {
4699                 if (padding_len > 0) {
4700                         memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4701                         chunk_len += padding_len;
4702                         padding_len = 0;
4703                 }
4704                 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4705                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4706                 ph->param_type = htons(SCTP_ECN_CAPABLE);
4707                 ph->param_length = htons(parameter_len);
4708                 chunk_len += parameter_len;
4709         }
4710         /* And now tell the peer we do support PR-SCTP. */
4711         if (padding_len > 0) {
4712                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4713                 chunk_len += padding_len;
4714                 padding_len = 0;
4715         }
4716         parameter_len = (uint16_t) sizeof(struct sctp_paramhdr);
4717         ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len);
4718         ph->param_type = htons(SCTP_PRSCTP_SUPPORTED);
4719         ph->param_length = htons(parameter_len);
4720         chunk_len += parameter_len;
4721
4722         /* And now tell the peer we do all the extensions */
4723         pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len);
4724         pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
4725         num_ext = 0;
4726         pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
4727         pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
4728         pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
4729         pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
4730         pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
4731         if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4732                 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
4733         }
4734         if (stcb->asoc.sctp_nr_sack_on_off == 1) {
4735                 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
4736         }
4737         parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext;
4738         pr_supported->ph.param_length = htons(parameter_len);
4739         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4740         chunk_len += parameter_len;
4741
4742         /* add authentication parameters */
4743         if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
4744                 /* attach RANDOM parameter, if available */
4745                 if (stcb->asoc.authinfo.random != NULL) {
4746                         struct sctp_auth_random *randp;
4747
4748                         if (padding_len > 0) {
4749                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4750                                 chunk_len += padding_len;
4751                                 padding_len = 0;
4752                         }
4753                         randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len);
4754                         parameter_len = (uint16_t) sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
4755                         /* random key already contains the header */
4756                         memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len);
4757                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4758                         chunk_len += parameter_len;
4759                 }
4760                 /* add HMAC_ALGO parameter */
4761                 if ((stcb->asoc.local_hmacs != NULL) &&
4762                     (stcb->asoc.local_hmacs->num_algo > 0)) {
4763                         struct sctp_auth_hmac_algo *hmacs;
4764
4765                         if (padding_len > 0) {
4766                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4767                                 chunk_len += padding_len;
4768                                 padding_len = 0;
4769                         }
4770                         hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len);
4771                         parameter_len = (uint16_t) (sizeof(struct sctp_auth_hmac_algo) +
4772                             stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t));
4773                         hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
4774                         hmacs->ph.param_length = htons(parameter_len);
4775                         sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *) hmacs->hmac_ids);
4776                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4777                         chunk_len += parameter_len;
4778                 }
4779                 /* add CHUNKS parameter */
4780                 if (sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks) > 0) {
4781                         struct sctp_auth_chunk_list *chunks;
4782
4783                         if (padding_len > 0) {
4784                                 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len);
4785                                 chunk_len += padding_len;
4786                                 padding_len = 0;
4787                         }
4788                         chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len);
4789                         parameter_len = (uint16_t) (sizeof(struct sctp_auth_chunk_list) +
4790                             sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks));
4791                         chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
4792                         chunks->ph.param_length = htons(parameter_len);
4793                         sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types);
4794                         padding_len = SCTP_SIZE32(parameter_len) - parameter_len;
4795                         chunk_len += parameter_len;
4796                 }
4797         }
4798         SCTP_BUF_LEN(m) = chunk_len;
4799
4800         /* now the addresses */
4801         /*
4802          * To optimize this we could put the scoping stuff into a structure
4803          * and remove the individual uint8's from the assoc structure. Then
4804          * we could just sifa in the address within the stcb. But for now
4805          * this is a quick hack to get the address stuff teased apart.
4806          */
4807         sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, m, cnt_inits_to, &padding_len, &chunk_len);
4808
4809         init->ch.chunk_length = htons(chunk_len);
4810         if (padding_len > 0) {
4811                 struct mbuf *m_at, *mp_last;
4812
4813                 mp_last = NULL;
4814                 for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
4815                         if (SCTP_BUF_NEXT(m_at) == NULL)
4816                                 mp_last = m_at;
4817                 }
4818                 if ((mp_last == NULL) || sctp_add_pad_tombuf(mp_last, padding_len)) {
4819                         sctp_m_freem(m);
4820                         return;
4821                 }
4822         }
4823         SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n");
4824         ret = sctp_lowlevel_chunk_output(inp, stcb, net,
4825             (struct sockaddr *)&net->ro._l_addr,
4826             m, 0, NULL, 0, 0, 0, 0,
4827             inp->sctp_lport, stcb->rport, htonl(0),
4828             net->port, NULL,
4829             0, 0,
4830             so_locked);
4831         SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret);
4832         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
4833         (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
4834 }
4835
4836 struct mbuf *
4837 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt,
4838     int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly)
4839 {
4840         /*
4841          * Given a mbuf containing an INIT or INIT-ACK with the param_offset
4842          * being equal to the beginning of the params i.e. (iphlen +
4843          * sizeof(struct sctp_init_msg) parse through the parameters to the
4844          * end of the mbuf verifying that all parameters are known.
4845          * 
4846          * For unknown parameters build and return a mbuf with
4847          * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop
4848          * processing this chunk stop, and set *abort_processing to 1.
4849          * 
4850          * By having param_offset be pre-set to where parameters begin it is
4851          * hoped that this routine may be reused in the future by new
4852          * features.
4853          */
4854         struct sctp_paramhdr *phdr, params;
4855
4856         struct mbuf *mat, *op_err;
4857         char tempbuf[SCTP_PARAM_BUFFER_SIZE];
4858         int at, limit, pad_needed;
4859         uint16_t ptype, plen, padded_size;
4860         int err_at;
4861
4862         *abort_processing = 0;
4863         mat = in_initpkt;
4864         err_at = 0;
4865         limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk);
4866         at = param_offset;
4867         op_err = NULL;
4868         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n");
4869         phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
4870         while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
4871                 ptype = ntohs(phdr->param_type);
4872                 plen = ntohs(phdr->param_length);
4873                 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) {
4874                         /* wacked parameter */
4875                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen);
4876                         goto invalid_size;
4877                 }
4878                 limit -= SCTP_SIZE32(plen);
4879                 /*-
4880                  * All parameters for all chunks that we know/understand are
4881                  * listed here. We process them other places and make
4882                  * appropriate stop actions per the upper bits. However this
4883                  * is the generic routine processor's can call to get back
4884                  * an operr.. to either incorporate (init-ack) or send.
4885                  */
4886                 padded_size = SCTP_SIZE32(plen);
4887                 switch (ptype) {
4888                         /* Param's with variable size */
4889                 case SCTP_HEARTBEAT_INFO:
4890                 case SCTP_STATE_COOKIE:
4891                 case SCTP_UNRECOG_PARAM:
4892                 case SCTP_ERROR_CAUSE_IND:
4893                         /* ok skip fwd */
4894                         at += padded_size;
4895                         break;
4896                         /* Param's with variable size within a range */
4897                 case SCTP_CHUNK_LIST:
4898                 case SCTP_SUPPORTED_CHUNK_EXT:
4899                         if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) {
4900                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen);
4901                                 goto invalid_size;
4902                         }
4903                         at += padded_size;
4904                         break;
4905                 case SCTP_SUPPORTED_ADDRTYPE:
4906                         if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) {
4907                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen);
4908                                 goto invalid_size;
4909                         }
4910                         at += padded_size;
4911                         break;
4912                 case SCTP_RANDOM:
4913                         if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) {
4914                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen);
4915                                 goto invalid_size;
4916                         }
4917                         at += padded_size;
4918                         break;
4919                 case SCTP_SET_PRIM_ADDR:
4920                 case SCTP_DEL_IP_ADDRESS:
4921                 case SCTP_ADD_IP_ADDRESS:
4922                         if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) &&
4923                             (padded_size != sizeof(struct sctp_asconf_addr_param))) {
4924                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen);
4925                                 goto invalid_size;
4926                         }
4927                         at += padded_size;
4928                         break;
4929                         /* Param's with a fixed size */
4930                 case SCTP_IPV4_ADDRESS:
4931                         if (padded_size != sizeof(struct sctp_ipv4addr_param)) {
4932                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen);
4933                                 goto invalid_size;
4934                         }
4935                         at += padded_size;
4936                         break;
4937                 case SCTP_IPV6_ADDRESS:
4938                         if (padded_size != sizeof(struct sctp_ipv6addr_param)) {
4939                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen);
4940                                 goto invalid_size;
4941                         }
4942                         at += padded_size;
4943                         break;
4944                 case SCTP_COOKIE_PRESERVE:
4945                         if (padded_size != sizeof(struct sctp_cookie_perserve_param)) {
4946                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen);
4947                                 goto invalid_size;
4948                         }
4949                         at += padded_size;
4950                         break;
4951                 case SCTP_HAS_NAT_SUPPORT:
4952                         *nat_friendly = 1;
4953                         /* fall through */
4954                 case SCTP_PRSCTP_SUPPORTED:
4955
4956                         if (padded_size != sizeof(struct sctp_paramhdr)) {
4957                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen);
4958                                 goto invalid_size;
4959                         }
4960                         at += padded_size;
4961                         break;
4962                 case SCTP_ECN_CAPABLE:
4963                         if (padded_size != sizeof(struct sctp_ecn_supported_param)) {
4964                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen);
4965                                 goto invalid_size;
4966                         }
4967                         at += padded_size;
4968                         break;
4969                 case SCTP_ULP_ADAPTATION:
4970                         if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) {
4971                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen);
4972                                 goto invalid_size;
4973                         }
4974                         at += padded_size;
4975                         break;
4976                 case SCTP_SUCCESS_REPORT:
4977                         if (padded_size != sizeof(struct sctp_asconf_paramhdr)) {
4978                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen);
4979                                 goto invalid_size;
4980                         }
4981                         at += padded_size;
4982                         break;
4983                 case SCTP_HOSTNAME_ADDRESS:
4984                         {
4985                                 /* We can NOT handle HOST NAME addresses!! */
4986                                 int l_len;
4987
4988                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n");
4989                                 *abort_processing = 1;
4990                                 if (op_err == NULL) {
4991                                         /* Ok need to try to get a mbuf */
4992 #ifdef INET6
4993                                         l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4994 #else
4995                                         l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
4996 #endif
4997                                         l_len += plen;
4998                                         l_len += sizeof(struct sctp_paramhdr);
4999                                         op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5000                                         if (op_err) {
5001                                                 SCTP_BUF_LEN(op_err) = 0;
5002                                                 /*
5003                                                  * pre-reserve space for ip
5004                                                  * and sctp header  and
5005                                                  * chunk hdr
5006                                                  */
5007 #ifdef INET6
5008                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5009 #else
5010                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5011 #endif
5012                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5013                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5014                                         }
5015                                 }
5016                                 if (op_err) {
5017                                         /* If we have space */
5018                                         struct sctp_paramhdr s;
5019
5020                                         if (err_at % 4) {
5021                                                 uint32_t cpthis = 0;
5022
5023                                                 pad_needed = 4 - (err_at % 4);
5024                                                 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5025                                                 err_at += pad_needed;
5026                                         }
5027                                         s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR);
5028                                         s.param_length = htons(sizeof(s) + plen);
5029                                         m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5030                                         err_at += sizeof(s);
5031                                         phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5032                                         if (phdr == NULL) {
5033                                                 sctp_m_freem(op_err);
5034                                                 /*
5035                                                  * we are out of memory but
5036                                                  * we still need to have a
5037                                                  * look at what to do (the
5038                                                  * system is in trouble
5039                                                  * though).
5040                                                  */
5041                                                 return (NULL);
5042                                         }
5043                                         m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5044                                 }
5045                                 return (op_err);
5046                                 break;
5047                         }
5048                 default:
5049                         /*
5050                          * we do not recognize the parameter figure out what
5051                          * we do.
5052                          */
5053                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype);
5054                         if ((ptype & 0x4000) == 0x4000) {
5055                                 /* Report bit is set?? */
5056                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n");
5057                                 if (op_err == NULL) {
5058                                         int l_len;
5059
5060                                         /* Ok need to try to get an mbuf */
5061 #ifdef INET6
5062                                         l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5063 #else
5064                                         l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5065 #endif
5066                                         l_len += plen;
5067                                         l_len += sizeof(struct sctp_paramhdr);
5068                                         op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5069                                         if (op_err) {
5070                                                 SCTP_BUF_LEN(op_err) = 0;
5071 #ifdef INET6
5072                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5073 #else
5074                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5075 #endif
5076                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5077                                                 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5078                                         }
5079                                 }
5080                                 if (op_err) {
5081                                         /* If we have space */
5082                                         struct sctp_paramhdr s;
5083
5084                                         if (err_at % 4) {
5085                                                 uint32_t cpthis = 0;
5086
5087                                                 pad_needed = 4 - (err_at % 4);
5088                                                 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5089                                                 err_at += pad_needed;
5090                                         }
5091                                         s.param_type = htons(SCTP_UNRECOG_PARAM);
5092                                         s.param_length = htons(sizeof(s) + plen);
5093                                         m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5094                                         err_at += sizeof(s);
5095                                         if (plen > sizeof(tempbuf)) {
5096                                                 plen = sizeof(tempbuf);
5097                                         }
5098                                         phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen));
5099                                         if (phdr == NULL) {
5100                                                 sctp_m_freem(op_err);
5101                                                 /*
5102                                                  * we are out of memory but
5103                                                  * we still need to have a
5104                                                  * look at what to do (the
5105                                                  * system is in trouble
5106                                                  * though).
5107                                                  */
5108                                                 op_err = NULL;
5109                                                 goto more_processing;
5110                                         }
5111                                         m_copyback(op_err, err_at, plen, (caddr_t)phdr);
5112                                         err_at += plen;
5113                                 }
5114                         }
5115         more_processing:
5116                         if ((ptype & 0x8000) == 0x0000) {
5117                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n");
5118                                 return (op_err);
5119                         } else {
5120                                 /* skip this chunk and continue processing */
5121                                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n");
5122                                 at += SCTP_SIZE32(plen);
5123                         }
5124                         break;
5125
5126                 }
5127                 phdr = sctp_get_next_param(mat, at, &params, sizeof(params));
5128         }
5129         return (op_err);
5130 invalid_size:
5131         SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n");
5132         *abort_processing = 1;
5133         if ((op_err == NULL) && phdr) {
5134                 int l_len;
5135
5136 #ifdef INET6
5137                 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5138 #else
5139                 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
5140 #endif
5141                 l_len += (2 * sizeof(struct sctp_paramhdr));
5142                 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA);
5143                 if (op_err) {
5144                         SCTP_BUF_LEN(op_err) = 0;
5145 #ifdef INET6
5146                         SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr));
5147 #else
5148                         SCTP_BUF_RESV_UF(op_err, sizeof(struct ip));
5149 #endif
5150                         SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr));
5151                         SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr));
5152                 }
5153         }
5154         if ((op_err) && phdr) {
5155                 struct sctp_paramhdr s;
5156
5157                 if (err_at % 4) {
5158                         uint32_t cpthis = 0;
5159
5160                         pad_needed = 4 - (err_at % 4);
5161                         m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis);
5162                         err_at += pad_needed;
5163                 }
5164                 s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5165                 s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr));
5166                 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s);
5167                 err_at += sizeof(s);
5168                 /* Only copy back the p-hdr that caused the issue */
5169                 m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr);
5170         }
5171         return (op_err);
5172 }
5173
5174 static int
5175 sctp_are_there_new_addresses(struct sctp_association *asoc,
5176     struct mbuf *in_initpkt, int offset, struct sockaddr *src)
5177 {
5178         /*
5179          * Given a INIT packet, look through the packet to verify that there
5180          * are NO new addresses. As we go through the parameters add reports
5181          * of any un-understood parameters that require an error.  Also we
5182          * must return (1) to drop the packet if we see a un-understood
5183          * parameter that tells us to drop the chunk.
5184          */
5185         struct sockaddr *sa_touse;
5186         struct sockaddr *sa;
5187         struct sctp_paramhdr *phdr, params;
5188         uint16_t ptype, plen;
5189         uint8_t fnd;
5190         struct sctp_nets *net;
5191
5192 #ifdef INET
5193         struct sockaddr_in sin4, *sa4;
5194
5195 #endif
5196 #ifdef INET6
5197         struct sockaddr_in6 sin6, *sa6;
5198
5199 #endif
5200
5201 #ifdef INET
5202         memset(&sin4, 0, sizeof(sin4));
5203         sin4.sin_family = AF_INET;
5204         sin4.sin_len = sizeof(sin4);
5205 #endif
5206 #ifdef INET6
5207         memset(&sin6, 0, sizeof(sin6));
5208         sin6.sin6_family = AF_INET6;
5209         sin6.sin6_len = sizeof(sin6);
5210 #endif
5211         /* First what about the src address of the pkt ? */
5212         fnd = 0;
5213         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5214                 sa = (struct sockaddr *)&net->ro._l_addr;
5215                 if (sa->sa_family == src->sa_family) {
5216 #ifdef INET
5217                         if (sa->sa_family == AF_INET) {
5218                                 struct sockaddr_in *src4;
5219
5220                                 sa4 = (struct sockaddr_in *)sa;
5221                                 src4 = (struct sockaddr_in *)src;
5222                                 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) {
5223                                         fnd = 1;
5224                                         break;
5225                                 }
5226                         }
5227 #endif
5228 #ifdef INET6
5229                         if (sa->sa_family == AF_INET6) {
5230                                 struct sockaddr_in6 *src6;
5231
5232                                 sa6 = (struct sockaddr_in6 *)sa;
5233                                 src6 = (struct sockaddr_in6 *)src;
5234                                 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) {
5235                                         fnd = 1;
5236                                         break;
5237                                 }
5238                         }
5239 #endif
5240                 }
5241         }
5242         if (fnd == 0) {
5243                 /* New address added! no need to look futher. */
5244                 return (1);
5245         }
5246         /* Ok so far lets munge through the rest of the packet */
5247         offset += sizeof(struct sctp_init_chunk);
5248         phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5249         while (phdr) {
5250                 sa_touse = NULL;
5251                 ptype = ntohs(phdr->param_type);
5252                 plen = ntohs(phdr->param_length);
5253                 switch (ptype) {
5254 #ifdef INET
5255                 case SCTP_IPV4_ADDRESS:
5256                         {
5257                                 struct sctp_ipv4addr_param *p4, p4_buf;
5258
5259                                 phdr = sctp_get_next_param(in_initpkt, offset,
5260                                     (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf));
5261                                 if (plen != sizeof(struct sctp_ipv4addr_param) ||
5262                                     phdr == NULL) {
5263                                         return (1);
5264                                 }
5265                                 p4 = (struct sctp_ipv4addr_param *)phdr;
5266                                 sin4.sin_addr.s_addr = p4->addr;
5267                                 sa_touse = (struct sockaddr *)&sin4;
5268                                 break;
5269                         }
5270 #endif
5271 #ifdef INET6
5272                 case SCTP_IPV6_ADDRESS:
5273                         {
5274                                 struct sctp_ipv6addr_param *p6, p6_buf;
5275
5276                                 phdr = sctp_get_next_param(in_initpkt, offset,
5277                                     (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf));
5278                                 if (plen != sizeof(struct sctp_ipv6addr_param) ||
5279                                     phdr == NULL) {
5280                                         return (1);
5281                                 }
5282                                 p6 = (struct sctp_ipv6addr_param *)phdr;
5283                                 memcpy((caddr_t)&sin6.sin6_addr, p6->addr,
5284                                     sizeof(p6->addr));
5285                                 sa_touse = (struct sockaddr *)&sin6;
5286                                 break;
5287                         }
5288 #endif
5289                 default:
5290                         sa_touse = NULL;
5291                         break;
5292                 }
5293                 if (sa_touse) {
5294                         /* ok, sa_touse points to one to check */
5295                         fnd = 0;
5296                         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5297                                 sa = (struct sockaddr *)&net->ro._l_addr;
5298                                 if (sa->sa_family != sa_touse->sa_family) {
5299                                         continue;
5300                                 }
5301 #ifdef INET
5302                                 if (sa->sa_family == AF_INET) {
5303                                         sa4 = (struct sockaddr_in *)sa;
5304                                         if (sa4->sin_addr.s_addr ==
5305                                             sin4.sin_addr.s_addr) {
5306                                                 fnd = 1;
5307                                                 break;
5308                                         }
5309                                 }
5310 #endif
5311 #ifdef INET6
5312                                 if (sa->sa_family == AF_INET6) {
5313                                         sa6 = (struct sockaddr_in6 *)sa;
5314                                         if (SCTP6_ARE_ADDR_EQUAL(
5315                                             sa6, &sin6)) {
5316                                                 fnd = 1;
5317                                                 break;
5318                                         }
5319                                 }
5320 #endif
5321                         }
5322                         if (!fnd) {
5323                                 /* New addr added! no need to look further */
5324                                 return (1);
5325                         }
5326                 }
5327                 offset += SCTP_SIZE32(plen);
5328                 phdr = sctp_get_next_param(in_initpkt, offset, &params, sizeof(params));
5329         }
5330         return (0);
5331 }
5332
5333 /*
5334  * Given a MBUF chain that was sent into us containing an INIT. Build a
5335  * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done
5336  * a pullup to include IPv6/4header, SCTP header and initial part of INIT
5337  * message (i.e. the struct sctp_init_msg).
5338  */
5339 void
5340 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
5341     struct mbuf *init_pkt, int iphlen, int offset,
5342     struct sockaddr *src, struct sockaddr *dst,
5343     struct sctphdr *sh, struct sctp_init_chunk *init_chk,
5344     uint8_t use_mflowid, uint32_t mflowid,
5345     uint32_t vrf_id, uint16_t port, int hold_inp_lock)
5346 {
5347         struct sctp_association *asoc;
5348         struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last;
5349         struct sctp_init_ack_chunk *initack;
5350         struct sctp_adaptation_layer_indication *ali;
5351         struct sctp_ecn_supported_param *ecn;
5352         struct sctp_prsctp_supported_param *prsctp;
5353         struct sctp_supported_chunk_types_param *pr_supported;
5354         union sctp_sockstore *over_addr;
5355
5356 #ifdef INET
5357         struct sockaddr_in *dst4 = (struct sockaddr_in *)dst;
5358         struct sockaddr_in *src4 = (struct sockaddr_in *)src;
5359         struct sockaddr_in *sin;
5360
5361 #endif
5362 #ifdef INET6
5363         struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst;
5364         struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src;
5365         struct sockaddr_in6 *sin6;
5366
5367 #endif
5368         struct sockaddr *to;
5369         struct sctp_state_cookie stc;
5370         struct sctp_nets *net = NULL;
5371         uint8_t *signature = NULL;
5372         int cnt_inits_to = 0;
5373         uint16_t his_limit, i_want;
5374         int abort_flag, padval;
5375         int num_ext;
5376         int p_len;
5377         int nat_friendly = 0;
5378         struct socket *so;
5379
5380         if (stcb) {
5381                 asoc = &stcb->asoc;
5382         } else {
5383                 asoc = NULL;
5384         }
5385         mp_last = NULL;
5386         if ((asoc != NULL) &&
5387             (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) &&
5388             (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) {
5389                 /* new addresses, out of here in non-cookie-wait states */
5390                 /*
5391                  * Send a ABORT, we don't add the new address error clause
5392                  * though we even set the T bit and copy in the 0 tag.. this
5393                  * looks no different than if no listener was present.
5394                  */
5395                 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5396                     "Address added");
5397                 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err,
5398                     use_mflowid, mflowid,
5399                     vrf_id, port);
5400                 return;
5401         }
5402         abort_flag = 0;
5403         op_err = sctp_arethere_unrecognized_parameters(init_pkt,
5404             (offset + sizeof(struct sctp_init_chunk)),
5405             &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly);
5406         if (abort_flag) {
5407 do_a_abort:
5408                 if (op_err == NULL) {
5409                         char msg[SCTP_DIAG_INFO_LEN];
5410
5411                         snprintf(msg, sizeof(msg), "%s:%d at %s\n", __FILE__, __LINE__, __FUNCTION__);
5412                         op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code),
5413                             msg);
5414                 }
5415                 sctp_send_abort(init_pkt, iphlen, src, dst, sh,
5416                     init_chk->init.initiate_tag, op_err,
5417                     use_mflowid, mflowid,
5418                     vrf_id, port);
5419                 return;
5420         }
5421         m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
5422         if (m == NULL) {
5423                 /* No memory, INIT timer will re-attempt. */
5424                 if (op_err)
5425                         sctp_m_freem(op_err);
5426                 return;
5427         }
5428         SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk);
5429
5430         /*
5431          * We might not overwrite the identification[] completely and on
5432          * some platforms time_entered will contain some padding. Therefore
5433          * zero out the cookie to avoid putting uninitialized memory on the
5434          * wire.
5435          */
5436         memset(&stc, 0, sizeof(struct sctp_state_cookie));
5437
5438         /* the time I built cookie */
5439         (void)SCTP_GETTIME_TIMEVAL(&stc.time_entered);
5440
5441         /* populate any tie tags */
5442         if (asoc != NULL) {
5443                 /* unlock before tag selections */
5444                 stc.tie_tag_my_vtag = asoc->my_vtag_nonce;
5445                 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce;
5446                 stc.cookie_life = asoc->cookie_life;
5447                 net = asoc->primary_destination;
5448         } else {
5449                 stc.tie_tag_my_vtag = 0;
5450                 stc.tie_tag_peer_vtag = 0;
5451                 /* life I will award this cookie */
5452                 stc.cookie_life = inp->sctp_ep.def_cookie_life;
5453         }
5454
5455         /* copy in the ports for later check */
5456         stc.myport = sh->dest_port;
5457         stc.peerport = sh->src_port;
5458
5459         /*
5460          * If we wanted to honor cookie life extentions, we would add to
5461          * stc.cookie_life. For now we should NOT honor any extension
5462          */
5463         stc.site_scope = stc.local_scope = stc.loopback_scope = 0;
5464         if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
5465                 stc.ipv6_addr_legal = 1;
5466                 if (SCTP_IPV6_V6ONLY(inp)) {
5467                         stc.ipv4_addr_legal = 0;
5468                 } else {
5469                         stc.ipv4_addr_legal = 1;
5470                 }
5471         } else {
5472                 stc.ipv6_addr_legal = 0;
5473                 stc.ipv4_addr_legal = 1;
5474         }
5475 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE
5476         stc.ipv4_scope = 1;
5477 #else
5478         stc.ipv4_scope = 0;
5479 #endif
5480         if (net == NULL) {
5481                 to = src;
5482                 switch (dst->sa_family) {
5483 #ifdef INET
5484                 case AF_INET:
5485                         {
5486                                 /* lookup address */
5487                                 stc.address[0] = src4->sin_addr.s_addr;
5488                                 stc.address[1] = 0;
5489                                 stc.address[2] = 0;
5490                                 stc.address[3] = 0;
5491                                 stc.addr_type = SCTP_IPV4_ADDRESS;
5492                                 /* local from address */
5493                                 stc.laddress[0] = dst4->sin_addr.s_addr;
5494                                 stc.laddress[1] = 0;
5495                                 stc.laddress[2] = 0;
5496                                 stc.laddress[3] = 0;
5497                                 stc.laddr_type = SCTP_IPV4_ADDRESS;
5498                                 /* scope_id is only for v6 */
5499                                 stc.scope_id = 0;
5500 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE
5501                                 if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) {
5502                                         stc.ipv4_scope = 1;
5503                                 }
5504 #else
5505                                 stc.ipv4_scope = 1;
5506 #endif                          /* SCTP_DONT_DO_PRIVADDR_SCOPE */
5507                                 /* Must use the address in this case */
5508                                 if (sctp_is_address_on_local_host(src, vrf_id)) {
5509                                         stc.loopback_scope = 1;
5510                                         stc.ipv4_scope = 1;
5511                                         stc.site_scope = 1;
5512                                         stc.local_scope = 0;
5513                                 }
5514                                 break;
5515                         }
5516 #endif
5517 #ifdef INET6
5518                 case AF_INET6:
5519                         {
5520                                 stc.addr_type = SCTP_IPV6_ADDRESS;
5521                                 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr));
5522                                 stc.scope_id = in6_getscope(&src6->sin6_addr);
5523                                 if (sctp_is_address_on_local_host(src, vrf_id)) {
5524                                         stc.loopback_scope = 1;
5525                                         stc.local_scope = 0;
5526                                         stc.site_scope = 1;
5527                                         stc.ipv4_scope = 1;
5528                                 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) {
5529                                         /*
5530                                          * If the new destination is a
5531                                          * LINK_LOCAL we must have common
5532                                          * both site and local scope. Don't
5533                                          * set local scope though since we
5534                                          * must depend on the source to be
5535                                          * added implicitly. We cannot
5536                                          * assure just because we share one
5537                                          * link that all links are common.
5538                                          */
5539                                         stc.local_scope = 0;
5540                                         stc.site_scope = 1;
5541                                         stc.ipv4_scope = 1;
5542                                         /*
5543                                          * we start counting for the private
5544                                          * address stuff at 1. since the
5545                                          * link local we source from won't
5546                                          * show up in our scoped count.
5547                                          */
5548                                         cnt_inits_to = 1;
5549                                         /*
5550                                          * pull out the scope_id from
5551                                          * incoming pkt
5552                                          */
5553                                 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) {
5554                                         /*
5555                                          * If the new destination is
5556                                          * SITE_LOCAL then we must have site
5557                                          * scope in common.
5558                                          */
5559                                         stc.site_scope = 1;
5560                                 }
5561                                 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr));
5562                                 stc.laddr_type = SCTP_IPV6_ADDRESS;
5563                                 break;
5564                         }
5565 #endif
5566                 default:
5567                         /* TSNH */
5568                         goto do_a_abort;
5569                         break;
5570                 }
5571         } else {
5572                 /* set the scope per the existing tcb */
5573
5574 #ifdef INET6
5575                 struct sctp_nets *lnet;
5576
5577 #endif
5578
5579                 stc.loopback_scope = asoc->scope.loopback_scope;
5580                 stc.ipv4_scope = asoc->scope.ipv4_local_scope;
5581                 stc.site_scope = asoc->scope.site_scope;
5582                 stc.local_scope = asoc->scope.local_scope;
5583 #ifdef INET6
5584                 /* Why do we not consider IPv4 LL addresses? */
5585                 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) {
5586                         if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) {
5587                                 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) {
5588                                         /*
5589                                          * if we have a LL address, start
5590                                          * counting at 1.
5591                                          */
5592                                         cnt_inits_to = 1;
5593                                 }
5594                         }
5595                 }
5596 #endif
5597                 /* use the net pointer */
5598                 to = (struct sockaddr *)&net->ro._l_addr;
5599                 switch (to->sa_family) {
5600 #ifdef INET
5601                 case AF_INET:
5602                         sin = (struct sockaddr_in *)to;
5603                         stc.address[0] = sin->sin_addr.s_addr;
5604                         stc.address[1] = 0;
5605                         stc.address[2] = 0;
5606                         stc.address[3] = 0;
5607                         stc.addr_type = SCTP_IPV4_ADDRESS;
5608                         if (net->src_addr_selected == 0) {
5609                                 /*
5610                                  * strange case here, the INIT should have
5611                                  * did the selection.
5612                                  */
5613                                 net->ro._s_addr = sctp_source_address_selection(inp,
5614                                     stcb, (sctp_route_t *) & net->ro,
5615                                     net, 0, vrf_id);
5616                                 if (net->ro._s_addr == NULL)
5617                                         return;
5618
5619                                 net->src_addr_selected = 1;
5620
5621                         }
5622                         stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr;
5623                         stc.laddress[1] = 0;
5624                         stc.laddress[2] = 0;
5625                         stc.laddress[3] = 0;
5626                         stc.laddr_type = SCTP_IPV4_ADDRESS;
5627                         /* scope_id is only for v6 */
5628                         stc.scope_id = 0;
5629                         break;
5630 #endif
5631 #ifdef INET6
5632                 case AF_INET6:
5633                         sin6 = (struct sockaddr_in6 *)to;
5634                         memcpy(&stc.address, &sin6->sin6_addr,
5635                             sizeof(struct in6_addr));
5636                         stc.addr_type = SCTP_IPV6_ADDRESS;
5637                         stc.scope_id = sin6->sin6_scope_id;
5638                         if (net->src_addr_selected == 0) {
5639                                 /*
5640                                  * strange case here, the INIT should have
5641                                  * done the selection.
5642                                  */
5643                                 net->ro._s_addr = sctp_source_address_selection(inp,
5644                                     stcb, (sctp_route_t *) & net->ro,
5645                                     net, 0, vrf_id);
5646                                 if (net->ro._s_addr == NULL)
5647                                         return;
5648
5649                                 net->src_addr_selected = 1;
5650                         }
5651                         memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr,
5652                             sizeof(struct in6_addr));
5653                         stc.laddr_type = SCTP_IPV6_ADDRESS;
5654                         break;
5655 #endif
5656                 }
5657         }
5658         /* Now lets put the SCTP header in place */
5659         initack = mtod(m, struct sctp_init_ack_chunk *);
5660         /* Save it off for quick ref */
5661         stc.peers_vtag = init_chk->init.initiate_tag;
5662         /* who are we */
5663         memcpy(stc.identification, SCTP_VERSION_STRING,
5664             min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification)));
5665         memset(stc.reserved, 0, SCTP_RESERVE_SPACE);
5666         /* now the chunk header */
5667         initack->ch.chunk_type = SCTP_INITIATION_ACK;
5668         initack->ch.chunk_flags = 0;
5669         /* fill in later from mbuf we build */
5670         initack->ch.chunk_length = 0;
5671         /* place in my tag */
5672         if ((asoc != NULL) &&
5673             ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
5674             (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) ||
5675             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) {
5676                 /* re-use the v-tags and init-seq here */
5677                 initack->init.initiate_tag = htonl(asoc->my_vtag);
5678                 initack->init.initial_tsn = htonl(asoc->init_seq_number);
5679         } else {
5680                 uint32_t vtag, itsn;
5681
5682                 if (hold_inp_lock) {
5683                         SCTP_INP_INCR_REF(inp);
5684                         SCTP_INP_RUNLOCK(inp);
5685                 }
5686                 if (asoc) {
5687                         atomic_add_int(&asoc->refcnt, 1);
5688                         SCTP_TCB_UNLOCK(stcb);
5689         new_tag:
5690                         vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5691                         if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) {
5692                                 /*
5693                                  * Got a duplicate vtag on some guy behind a
5694                                  * nat make sure we don't use it.
5695                                  */
5696                                 goto new_tag;
5697                         }
5698                         initack->init.initiate_tag = htonl(vtag);
5699                         /* get a TSN to use too */
5700                         itsn = sctp_select_initial_TSN(&inp->sctp_ep);
5701                         initack->init.initial_tsn = htonl(itsn);
5702                         SCTP_TCB_LOCK(stcb);
5703                         atomic_add_int(&asoc->refcnt, -1);
5704                 } else {
5705                         vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1);
5706                         initack->init.initiate_tag = htonl(vtag);
5707                         /* get a TSN to use too */
5708                         initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep));
5709                 }
5710                 if (hold_inp_lock) {
5711                         SCTP_INP_RLOCK(inp);
5712                         SCTP_INP_DECR_REF(inp);
5713                 }
5714         }
5715         /* save away my tag to */
5716         stc.my_vtag = initack->init.initiate_tag;
5717
5718         /* set up some of the credits. */
5719         so = inp->sctp_socket;
5720         if (so == NULL) {
5721                 /* memory problem */
5722                 sctp_m_freem(m);
5723                 return;
5724         } else {
5725                 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND));
5726         }
5727         /* set what I want */
5728         his_limit = ntohs(init_chk->init.num_inbound_streams);
5729         /* choose what I want */
5730         if (asoc != NULL) {
5731                 if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) {
5732                         i_want = asoc->streamoutcnt;
5733                 } else {
5734                         i_want = inp->sctp_ep.pre_open_stream_count;
5735                 }
5736         } else {
5737                 i_want = inp->sctp_ep.pre_open_stream_count;
5738         }
5739         if (his_limit < i_want) {
5740                 /* I Want more :< */
5741                 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams;
5742         } else {
5743                 /* I can have what I want :> */
5744                 initack->init.num_outbound_streams = htons(i_want);
5745         }
5746         /* tell him his limit. */
5747         initack->init.num_inbound_streams =
5748             htons(inp->sctp_ep.max_open_streams_intome);
5749
5750         /* adaptation layer indication parameter */
5751         if (inp->sctp_ep.adaptation_layer_indicator_provided) {
5752                 ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack));
5753                 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION);
5754                 ali->ph.param_length = htons(sizeof(*ali));
5755                 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator);
5756                 SCTP_BUF_LEN(m) += sizeof(*ali);
5757                 ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali));
5758         } else {
5759                 ecn = (struct sctp_ecn_supported_param *)((caddr_t)initack + sizeof(*initack));
5760         }
5761
5762         /* ECN parameter */
5763         if (((asoc != NULL) && (asoc->ecn_allowed == 1)) ||
5764             (inp->sctp_ecn_enable == 1)) {
5765                 ecn->ph.param_type = htons(SCTP_ECN_CAPABLE);
5766                 ecn->ph.param_length = htons(sizeof(*ecn));
5767                 SCTP_BUF_LEN(m) += sizeof(*ecn);
5768
5769                 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn +
5770                     sizeof(*ecn));
5771         } else {
5772                 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn);
5773         }
5774         /* And now tell the peer we do  pr-sctp */
5775         prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED);
5776         prsctp->ph.param_length = htons(sizeof(*prsctp));
5777         SCTP_BUF_LEN(m) += sizeof(*prsctp);
5778         if (nat_friendly) {
5779                 /* Add NAT friendly parameter */
5780                 struct sctp_paramhdr *ph;
5781
5782                 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5783                 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT);
5784                 ph->param_length = htons(sizeof(struct sctp_paramhdr));
5785                 SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr);
5786         }
5787         /* And now tell the peer we do all the extensions */
5788         pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5789         pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT);
5790         num_ext = 0;
5791         pr_supported->chunk_types[num_ext++] = SCTP_ASCONF;
5792         pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK;
5793         pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN;
5794         pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED;
5795         pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET;
5796         if (!SCTP_BASE_SYSCTL(sctp_auth_disable))
5797                 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION;
5798         if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off))
5799                 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK;
5800         p_len = sizeof(*pr_supported) + num_ext;
5801         pr_supported->ph.param_length = htons(p_len);
5802         bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len);
5803         SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5804
5805         /* add authentication parameters */
5806         if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) {
5807                 struct sctp_auth_random *randp;
5808                 struct sctp_auth_hmac_algo *hmacs;
5809                 struct sctp_auth_chunk_list *chunks;
5810                 uint16_t random_len;
5811
5812                 /* generate and add RANDOM parameter */
5813                 random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT;
5814                 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5815                 randp->ph.param_type = htons(SCTP_RANDOM);
5816                 p_len = sizeof(*randp) + random_len;
5817                 randp->ph.param_length = htons(p_len);
5818                 SCTP_READ_RANDOM(randp->random_data, random_len);
5819                 /* zero out any padding required */
5820                 bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len);
5821                 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5822
5823                 /* add HMAC_ALGO parameter */
5824                 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5825                 p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs,
5826                     (uint8_t *) hmacs->hmac_ids);
5827                 if (p_len > 0) {
5828                         p_len += sizeof(*hmacs);
5829                         hmacs->ph.param_type = htons(SCTP_HMAC_LIST);
5830                         hmacs->ph.param_length = htons(p_len);
5831                         /* zero out any padding required */
5832                         bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len);
5833                         SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5834                 }
5835                 /* add CHUNKS parameter */
5836                 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m));
5837                 p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks,
5838                     chunks->chunk_types);
5839                 if (p_len > 0) {
5840                         p_len += sizeof(*chunks);
5841                         chunks->ph.param_type = htons(SCTP_CHUNK_LIST);
5842                         chunks->ph.param_length = htons(p_len);
5843                         /* zero out any padding required */
5844                         bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len);
5845                         SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len);
5846                 }
5847         }
5848         m_at = m;
5849         /* now the addresses */
5850         {
5851                 struct sctp_scoping scp;
5852
5853                 /*
5854                  * To optimize this we could put the scoping stuff into a
5855                  * structure and remove the individual uint8's from the stc
5856                  * structure. Then we could just sifa in the address within
5857                  * the stc.. but for now this is a quick hack to get the
5858                  * address stuff teased apart.
5859                  */
5860                 scp.ipv4_addr_legal = stc.ipv4_addr_legal;
5861                 scp.ipv6_addr_legal = stc.ipv6_addr_legal;
5862                 scp.loopback_scope = stc.loopback_scope;
5863                 scp.ipv4_local_scope = stc.ipv4_scope;
5864                 scp.local_scope = stc.local_scope;
5865                 scp.site_scope = stc.site_scope;
5866                 m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to, NULL, NULL);
5867         }
5868
5869         /* tack on the operational error if present */
5870         if (op_err) {
5871                 struct mbuf *ol;
5872                 int llen;
5873
5874                 llen = 0;
5875                 ol = op_err;
5876
5877                 while (ol) {
5878                         llen += SCTP_BUF_LEN(ol);
5879                         ol = SCTP_BUF_NEXT(ol);
5880                 }
5881                 if (llen % 4) {
5882                         /* must add a pad to the param */
5883                         uint32_t cpthis = 0;
5884                         int padlen;
5885
5886                         padlen = 4 - (llen % 4);
5887                         m_copyback(op_err, llen, padlen, (caddr_t)&cpthis);
5888                 }
5889                 while (SCTP_BUF_NEXT(m_at) != NULL) {
5890                         m_at = SCTP_BUF_NEXT(m_at);
5891                 }
5892                 SCTP_BUF_NEXT(m_at) = op_err;
5893                 while (SCTP_BUF_NEXT(m_at) != NULL) {
5894                         m_at = SCTP_BUF_NEXT(m_at);
5895                 }
5896         }
5897         /* pre-calulate the size and update pkt header and chunk header */
5898         p_len = 0;
5899         for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5900                 p_len += SCTP_BUF_LEN(m_tmp);
5901                 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5902                         /* m_tmp should now point to last one */
5903                         break;
5904                 }
5905         }
5906
5907         /* Now we must build a cookie */
5908         m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature);
5909         if (m_cookie == NULL) {
5910                 /* memory problem */
5911                 sctp_m_freem(m);
5912                 return;
5913         }
5914         /* Now append the cookie to the end and update the space/size */
5915         SCTP_BUF_NEXT(m_tmp) = m_cookie;
5916
5917         for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) {
5918                 p_len += SCTP_BUF_LEN(m_tmp);
5919                 if (SCTP_BUF_NEXT(m_tmp) == NULL) {
5920                         /* m_tmp should now point to last one */
5921                         mp_last = m_tmp;
5922                         break;
5923                 }
5924         }
5925         /*
5926          * Place in the size, but we don't include the last pad (if any) in
5927          * the INIT-ACK.
5928          */
5929         initack->ch.chunk_length = htons(p_len);
5930
5931         /*
5932          * Time to sign the cookie, we don't sign over the cookie signature
5933          * though thus we set trailer.
5934          */
5935         (void)sctp_hmac_m(SCTP_HMAC,
5936             (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)],
5937             SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr),
5938             (uint8_t *) signature, SCTP_SIGNATURE_SIZE);
5939         /*
5940          * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return
5941          * here since the timer will drive a retranmission.
5942          */
5943         padval = p_len % 4;
5944         if ((padval) && (mp_last)) {
5945                 /* see my previous comments on mp_last */
5946                 if (sctp_add_pad_tombuf(mp_last, (4 - padval))) {
5947                         /* Houston we have a problem, no space */
5948                         sctp_m_freem(m);
5949                         return;
5950                 }
5951         }
5952         if (stc.loopback_scope) {
5953                 over_addr = (union sctp_sockstore *)dst;
5954         } else {
5955                 over_addr = NULL;
5956         }
5957
5958         (void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0,
5959             0, 0,
5960             inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag,
5961             port, over_addr,
5962             use_mflowid, mflowid,
5963             SCTP_SO_NOT_LOCKED);
5964         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
5965 }
5966
5967
5968 static void
5969 sctp_prune_prsctp(struct sctp_tcb *stcb,
5970     struct sctp_association *asoc,
5971     struct sctp_sndrcvinfo *srcv,
5972     int dataout)
5973 {
5974         int freed_spc = 0;
5975         struct sctp_tmit_chunk *chk, *nchk;
5976
5977         SCTP_TCB_LOCK_ASSERT(stcb);
5978         if ((asoc->peer_supports_prsctp) &&
5979             (asoc->sent_queue_cnt_removeable > 0)) {
5980                 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
5981                         /*
5982                          * Look for chunks marked with the PR_SCTP flag AND
5983                          * the buffer space flag. If the one being sent is
5984                          * equal or greater priority then purge the old one
5985                          * and free some space.
5986                          */
5987                         if (PR_SCTP_BUF_ENABLED(chk->flags)) {
5988                                 /*
5989                                  * This one is PR-SCTP AND buffer space
5990                                  * limited type
5991                                  */
5992                                 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
5993                                         /*
5994                                          * Lower numbers equates to higher
5995                                          * priority so if the one we are
5996                                          * looking at has a larger or equal
5997                                          * priority we want to drop the data
5998                                          * and NOT retransmit it.
5999                                          */
6000                                         if (chk->data) {
6001                                                 /*
6002                                                  * We release the book_size
6003                                                  * if the mbuf is here
6004                                                  */
6005                                                 int ret_spc;
6006                                                 uint8_t sent;
6007
6008                                                 if (chk->sent > SCTP_DATAGRAM_UNSENT)
6009                                                         sent = 1;
6010                                                 else
6011                                                         sent = 0;
6012                                                 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6013                                                     sent,
6014                                                     SCTP_SO_LOCKED);
6015                                                 freed_spc += ret_spc;
6016                                                 if (freed_spc >= dataout) {
6017                                                         return;
6018                                                 }
6019                                         }       /* if chunk was present */
6020                                 }       /* if of sufficent priority */
6021                         }       /* if chunk has enabled */
6022                 }               /* tailqforeach */
6023
6024                 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
6025                         /* Here we must move to the sent queue and mark */
6026                         if (PR_SCTP_BUF_ENABLED(chk->flags)) {
6027                                 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) {
6028                                         if (chk->data) {
6029                                                 /*
6030                                                  * We release the book_size
6031                                                  * if the mbuf is here
6032                                                  */
6033                                                 int ret_spc;
6034
6035                                                 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk,
6036                                                     0, SCTP_SO_LOCKED);
6037
6038                                                 freed_spc += ret_spc;
6039                                                 if (freed_spc >= dataout) {
6040                                                         return;
6041                                                 }
6042                                         }       /* end if chk->data */
6043                                 }       /* end if right class */
6044                         }       /* end if chk pr-sctp */
6045                 }               /* tailqforeachsafe (chk) */
6046         }                       /* if enabled in asoc */
6047 }
6048
6049 int
6050 sctp_get_frag_point(struct sctp_tcb *stcb,
6051     struct sctp_association *asoc)
6052 {
6053         int siz, ovh;
6054
6055         /*
6056          * For endpoints that have both v6 and v4 addresses we must reserve
6057          * room for the ipv6 header, for those that are only dealing with V4
6058          * we use a larger frag point.
6059          */
6060         if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
6061                 ovh = SCTP_MED_OVERHEAD;
6062         } else {
6063                 ovh = SCTP_MED_V4_OVERHEAD;
6064         }
6065
6066         if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu)
6067                 siz = asoc->smallest_mtu - ovh;
6068         else
6069                 siz = (stcb->asoc.sctp_frag_point - ovh);
6070         /*
6071          * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) {
6072          */
6073         /* A data chunk MUST fit in a cluster */
6074         /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */
6075         /* } */
6076
6077         /* adjust for an AUTH chunk if DATA requires auth */
6078         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks))
6079                 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
6080
6081         if (siz % 4) {
6082                 /* make it an even word boundary please */
6083                 siz -= (siz % 4);
6084         }
6085         return (siz);
6086 }
6087
6088 static void
6089 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp)
6090 {
6091         /*
6092          * We assume that the user wants PR_SCTP_TTL if the user provides a
6093          * positive lifetime but does not specify any PR_SCTP policy.
6094          */
6095         if (PR_SCTP_ENABLED(sp->sinfo_flags)) {
6096                 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6097         } else if (sp->timetolive > 0) {
6098                 sp->sinfo_flags |= SCTP_PR_SCTP_TTL;
6099                 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags);
6100         } else {
6101                 return;
6102         }
6103         switch (PR_SCTP_POLICY(sp->sinfo_flags)) {
6104         case CHUNK_FLAGS_PR_SCTP_BUF:
6105                 /*
6106                  * Time to live is a priority stored in tv_sec when doing
6107                  * the buffer drop thing.
6108                  */
6109                 sp->ts.tv_sec = sp->timetolive;
6110                 sp->ts.tv_usec = 0;
6111                 break;
6112         case CHUNK_FLAGS_PR_SCTP_TTL:
6113                 {
6114                         struct timeval tv;
6115
6116                         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6117                         tv.tv_sec = sp->timetolive / 1000;
6118                         tv.tv_usec = (sp->timetolive * 1000) % 1000000;
6119                         /*
6120                          * TODO sctp_constants.h needs alternative time
6121                          * macros when _KERNEL is undefined.
6122                          */
6123                         timevaladd(&sp->ts, &tv);
6124                 }
6125                 break;
6126         case CHUNK_FLAGS_PR_SCTP_RTX:
6127                 /*
6128                  * Time to live is a the number or retransmissions stored in
6129                  * tv_sec.
6130                  */
6131                 sp->ts.tv_sec = sp->timetolive;
6132                 sp->ts.tv_usec = 0;
6133                 break;
6134         default:
6135                 SCTPDBG(SCTP_DEBUG_USRREQ1,
6136                     "Unknown PR_SCTP policy %u.\n",
6137                     PR_SCTP_POLICY(sp->sinfo_flags));
6138                 break;
6139         }
6140 }
6141
6142 static int
6143 sctp_msg_append(struct sctp_tcb *stcb,
6144     struct sctp_nets *net,
6145     struct mbuf *m,
6146     struct sctp_sndrcvinfo *srcv, int hold_stcb_lock)
6147 {
6148         int error = 0;
6149         struct mbuf *at;
6150         struct sctp_stream_queue_pending *sp = NULL;
6151         struct sctp_stream_out *strm;
6152
6153         /*
6154          * Given an mbuf chain, put it into the association send queue and
6155          * place it on the wheel
6156          */
6157         if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) {
6158                 /* Invalid stream number */
6159                 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6160                 error = EINVAL;
6161                 goto out_now;
6162         }
6163         if ((stcb->asoc.stream_locked) &&
6164             (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) {
6165                 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
6166                 error = EINVAL;
6167                 goto out_now;
6168         }
6169         strm = &stcb->asoc.strmout[srcv->sinfo_stream];
6170         /* Now can we send this? */
6171         if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
6172             (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
6173             (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
6174             (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) {
6175                 /* got data while shutting down */
6176                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
6177                 error = ECONNRESET;
6178                 goto out_now;
6179         }
6180         sctp_alloc_a_strmoq(stcb, sp);
6181         if (sp == NULL) {
6182                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6183                 error = ENOMEM;
6184                 goto out_now;
6185         }
6186         sp->sinfo_flags = srcv->sinfo_flags;
6187         sp->timetolive = srcv->sinfo_timetolive;
6188         sp->ppid = srcv->sinfo_ppid;
6189         sp->context = srcv->sinfo_context;
6190         if (sp->sinfo_flags & SCTP_ADDR_OVER) {
6191                 sp->net = net;
6192                 atomic_add_int(&sp->net->ref_count, 1);
6193         } else {
6194                 sp->net = NULL;
6195         }
6196         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
6197         sp->stream = srcv->sinfo_stream;
6198         sp->msg_is_complete = 1;
6199         sp->sender_all_done = 1;
6200         sp->some_taken = 0;
6201         sp->data = m;
6202         sp->tail_mbuf = NULL;
6203         sctp_set_prsctp_policy(sp);
6204         /*
6205          * We could in theory (for sendall) sifa the length in, but we would
6206          * still have to hunt through the chain since we need to setup the
6207          * tail_mbuf
6208          */
6209         sp->length = 0;
6210         for (at = m; at; at = SCTP_BUF_NEXT(at)) {
6211                 if (SCTP_BUF_NEXT(at) == NULL)
6212                         sp->tail_mbuf = at;
6213                 sp->length += SCTP_BUF_LEN(at);
6214         }
6215         if (srcv->sinfo_keynumber_valid) {
6216                 sp->auth_keyid = srcv->sinfo_keynumber;
6217         } else {
6218                 sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
6219         }
6220         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
6221                 sctp_auth_key_acquire(stcb, sp->auth_keyid);
6222                 sp->holds_key_ref = 1;
6223         }
6224         if (hold_stcb_lock == 0) {
6225                 SCTP_TCB_SEND_LOCK(stcb);
6226         }
6227         sctp_snd_sb_alloc(stcb, sp->length);
6228         atomic_add_int(&stcb->asoc.stream_queue_cnt, 1);
6229         TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
6230         stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1);
6231         m = NULL;
6232         if (hold_stcb_lock == 0) {
6233                 SCTP_TCB_SEND_UNLOCK(stcb);
6234         }
6235 out_now:
6236         if (m) {
6237                 sctp_m_freem(m);
6238         }
6239         return (error);
6240 }
6241
6242
6243 static struct mbuf *
6244 sctp_copy_mbufchain(struct mbuf *clonechain,
6245     struct mbuf *outchain,
6246     struct mbuf **endofchain,
6247     int can_take_mbuf,
6248     int sizeofcpy,
6249     uint8_t copy_by_ref)
6250 {
6251         struct mbuf *m;
6252         struct mbuf *appendchain;
6253         caddr_t cp;
6254         int len;
6255
6256         if (endofchain == NULL) {
6257                 /* error */
6258 error_out:
6259                 if (outchain)
6260                         sctp_m_freem(outchain);
6261                 return (NULL);
6262         }
6263         if (can_take_mbuf) {
6264                 appendchain = clonechain;
6265         } else {
6266                 if (!copy_by_ref &&
6267                     (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))
6268                     ) {
6269                         /* Its not in a cluster */
6270                         if (*endofchain == NULL) {
6271                                 /* lets get a mbuf cluster */
6272                                 if (outchain == NULL) {
6273                                         /* This is the general case */
6274                         new_mbuf:
6275                                         outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6276                                         if (outchain == NULL) {
6277                                                 goto error_out;
6278                                         }
6279                                         SCTP_BUF_LEN(outchain) = 0;
6280                                         *endofchain = outchain;
6281                                         /* get the prepend space */
6282                                         SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4));
6283                                 } else {
6284                                         /*
6285                                          * We really should not get a NULL
6286                                          * in endofchain
6287                                          */
6288                                         /* find end */
6289                                         m = outchain;
6290                                         while (m) {
6291                                                 if (SCTP_BUF_NEXT(m) == NULL) {
6292                                                         *endofchain = m;
6293                                                         break;
6294                                                 }
6295                                                 m = SCTP_BUF_NEXT(m);
6296                                         }
6297                                         /* sanity */
6298                                         if (*endofchain == NULL) {
6299                                                 /*
6300                                                  * huh, TSNH XXX maybe we
6301                                                  * should panic
6302                                                  */
6303                                                 sctp_m_freem(outchain);
6304                                                 goto new_mbuf;
6305                                         }
6306                                 }
6307                                 /* get the new end of length */
6308                                 len = M_TRAILINGSPACE(*endofchain);
6309                         } else {
6310                                 /* how much is left at the end? */
6311                                 len = M_TRAILINGSPACE(*endofchain);
6312                         }
6313                         /* Find the end of the data, for appending */
6314                         cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain)));
6315
6316                         /* Now lets copy it out */
6317                         if (len >= sizeofcpy) {
6318                                 /* It all fits, copy it in */
6319                                 m_copydata(clonechain, 0, sizeofcpy, cp);
6320                                 SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6321                         } else {
6322                                 /* fill up the end of the chain */
6323                                 if (len > 0) {
6324                                         m_copydata(clonechain, 0, len, cp);
6325                                         SCTP_BUF_LEN((*endofchain)) += len;
6326                                         /* now we need another one */
6327                                         sizeofcpy -= len;
6328                                 }
6329                                 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER);
6330                                 if (m == NULL) {
6331                                         /* We failed */
6332                                         goto error_out;
6333                                 }
6334                                 SCTP_BUF_NEXT((*endofchain)) = m;
6335                                 *endofchain = m;
6336                                 cp = mtod((*endofchain), caddr_t);
6337                                 m_copydata(clonechain, len, sizeofcpy, cp);
6338                                 SCTP_BUF_LEN((*endofchain)) += sizeofcpy;
6339                         }
6340                         return (outchain);
6341                 } else {
6342                         /* copy the old fashion way */
6343                         appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT);
6344 #ifdef SCTP_MBUF_LOGGING
6345                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6346                                 struct mbuf *mat;
6347
6348                                 for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) {
6349                                         if (SCTP_BUF_IS_EXTENDED(mat)) {
6350                                                 sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6351                                         }
6352                                 }
6353                         }
6354 #endif
6355                 }
6356         }
6357         if (appendchain == NULL) {
6358                 /* error */
6359                 if (outchain)
6360                         sctp_m_freem(outchain);
6361                 return (NULL);
6362         }
6363         if (outchain) {
6364                 /* tack on to the end */
6365                 if (*endofchain != NULL) {
6366                         SCTP_BUF_NEXT(((*endofchain))) = appendchain;
6367                 } else {
6368                         m = outchain;
6369                         while (m) {
6370                                 if (SCTP_BUF_NEXT(m) == NULL) {
6371                                         SCTP_BUF_NEXT(m) = appendchain;
6372                                         break;
6373                                 }
6374                                 m = SCTP_BUF_NEXT(m);
6375                         }
6376                 }
6377                 /*
6378                  * save off the end and update the end-chain postion
6379                  */
6380                 m = appendchain;
6381                 while (m) {
6382                         if (SCTP_BUF_NEXT(m) == NULL) {
6383                                 *endofchain = m;
6384                                 break;
6385                         }
6386                         m = SCTP_BUF_NEXT(m);
6387                 }
6388                 return (outchain);
6389         } else {
6390                 /* save off the end and update the end-chain postion */
6391                 m = appendchain;
6392                 while (m) {
6393                         if (SCTP_BUF_NEXT(m) == NULL) {
6394                                 *endofchain = m;
6395                                 break;
6396                         }
6397                         m = SCTP_BUF_NEXT(m);
6398                 }
6399                 return (appendchain);
6400         }
6401 }
6402
6403 static int
6404 sctp_med_chunk_output(struct sctp_inpcb *inp,
6405     struct sctp_tcb *stcb,
6406     struct sctp_association *asoc,
6407     int *num_out,
6408     int *reason_code,
6409     int control_only, int from_where,
6410     struct timeval *now, int *now_filled, int frag_point, int so_locked
6411 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6412     SCTP_UNUSED
6413 #endif
6414 );
6415
6416 static void
6417 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr,
6418     uint32_t val SCTP_UNUSED)
6419 {
6420         struct sctp_copy_all *ca;
6421         struct mbuf *m;
6422         int ret = 0;
6423         int added_control = 0;
6424         int un_sent, do_chunk_output = 1;
6425         struct sctp_association *asoc;
6426         struct sctp_nets *net;
6427
6428         ca = (struct sctp_copy_all *)ptr;
6429         if (ca->m == NULL) {
6430                 return;
6431         }
6432         if (ca->inp != inp) {
6433                 /* TSNH */
6434                 return;
6435         }
6436         if (ca->sndlen > 0) {
6437                 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT);
6438                 if (m == NULL) {
6439                         /* can't copy so we are done */
6440                         ca->cnt_failed++;
6441                         return;
6442                 }
6443 #ifdef SCTP_MBUF_LOGGING
6444                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
6445                         struct mbuf *mat;
6446
6447                         for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6448                                 if (SCTP_BUF_IS_EXTENDED(mat)) {
6449                                         sctp_log_mb(mat, SCTP_MBUF_ICOPY);
6450                                 }
6451                         }
6452                 }
6453 #endif
6454         } else {
6455                 m = NULL;
6456         }
6457         SCTP_TCB_LOCK_ASSERT(stcb);
6458         if (stcb->asoc.alternate) {
6459                 net = stcb->asoc.alternate;
6460         } else {
6461                 net = stcb->asoc.primary_destination;
6462         }
6463         if (ca->sndrcv.sinfo_flags & SCTP_ABORT) {
6464                 /* Abort this assoc with m as the user defined reason */
6465                 if (m != NULL) {
6466                         SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT);
6467                 } else {
6468                         m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr),
6469                             0, M_NOWAIT, 1, MT_DATA);
6470                         SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr);
6471                 }
6472                 if (m != NULL) {
6473                         struct sctp_paramhdr *ph;
6474
6475                         ph = mtod(m, struct sctp_paramhdr *);
6476                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
6477                         ph->param_length = htons(sizeof(struct sctp_paramhdr) + ca->sndlen);
6478                 }
6479                 /*
6480                  * We add one here to keep the assoc from dis-appearing on
6481                  * us.
6482                  */
6483                 atomic_add_int(&stcb->asoc.refcnt, 1);
6484                 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED);
6485                 /*
6486                  * sctp_abort_an_association calls sctp_free_asoc() free
6487                  * association will NOT free it since we incremented the
6488                  * refcnt .. we do this to prevent it being freed and things
6489                  * getting tricky since we could end up (from free_asoc)
6490                  * calling inpcb_free which would get a recursive lock call
6491                  * to the iterator lock.. But as a consequence of that the
6492                  * stcb will return to us un-locked.. since free_asoc
6493                  * returns with either no TCB or the TCB unlocked, we must
6494                  * relock.. to unlock in the iterator timer :-0
6495                  */
6496                 SCTP_TCB_LOCK(stcb);
6497                 atomic_add_int(&stcb->asoc.refcnt, -1);
6498                 goto no_chunk_output;
6499         } else {
6500                 if (m) {
6501                         ret = sctp_msg_append(stcb, net, m,
6502                             &ca->sndrcv, 1);
6503                 }
6504                 asoc = &stcb->asoc;
6505                 if (ca->sndrcv.sinfo_flags & SCTP_EOF) {
6506                         /* shutdown this assoc */
6507                         int cnt;
6508
6509                         cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED);
6510
6511                         if (TAILQ_EMPTY(&asoc->send_queue) &&
6512                             TAILQ_EMPTY(&asoc->sent_queue) &&
6513                             (cnt == 0)) {
6514                                 if (asoc->locked_on_sending) {
6515                                         goto abort_anyway;
6516                                 }
6517                                 /*
6518                                  * there is nothing queued to send, so I'm
6519                                  * done...
6520                                  */
6521                                 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6522                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6523                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6524                                         /*
6525                                          * only send SHUTDOWN the first time
6526                                          * through
6527                                          */
6528                                         if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
6529                                                 SCTP_STAT_DECR_GAUGE32(sctps_currestab);
6530                                         }
6531                                         SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
6532                                         SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
6533                                         sctp_stop_timers_for_shutdown(stcb);
6534                                         sctp_send_shutdown(stcb, net);
6535                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
6536                                             net);
6537                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6538                                             asoc->primary_destination);
6539                                         added_control = 1;
6540                                         do_chunk_output = 0;
6541                                 }
6542                         } else {
6543                                 /*
6544                                  * we still got (or just got) data to send,
6545                                  * so set SHUTDOWN_PENDING
6546                                  */
6547                                 /*
6548                                  * XXX sockets draft says that SCTP_EOF
6549                                  * should be sent with no data.  currently,
6550                                  * we will allow user data to be sent first
6551                                  * and move to SHUTDOWN-PENDING
6552                                  */
6553                                 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
6554                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
6555                                     (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
6556                                         if (asoc->locked_on_sending) {
6557                                                 /*
6558                                                  * Locked to send out the
6559                                                  * data
6560                                                  */
6561                                                 struct sctp_stream_queue_pending *sp;
6562
6563                                                 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
6564                                                 if (sp) {
6565                                                         if ((sp->length == 0) && (sp->msg_is_complete == 0))
6566                                                                 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
6567                                                 }
6568                                         }
6569                                         asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
6570                                         if (TAILQ_EMPTY(&asoc->send_queue) &&
6571                                             TAILQ_EMPTY(&asoc->sent_queue) &&
6572                                             (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
6573                                 abort_anyway:
6574                                                 atomic_add_int(&stcb->asoc.refcnt, 1);
6575                                                 sctp_abort_an_association(stcb->sctp_ep, stcb,
6576                                                     NULL, SCTP_SO_NOT_LOCKED);
6577                                                 atomic_add_int(&stcb->asoc.refcnt, -1);
6578                                                 goto no_chunk_output;
6579                                         }
6580                                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
6581                                             asoc->primary_destination);
6582                                 }
6583                         }
6584
6585                 }
6586         }
6587         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
6588             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
6589
6590         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
6591             (stcb->asoc.total_flight > 0) &&
6592             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
6593                 do_chunk_output = 0;
6594         }
6595         if (do_chunk_output)
6596                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED);
6597         else if (added_control) {
6598                 int num_out = 0, reason = 0, now_filled = 0;
6599                 struct timeval now;
6600                 int frag_point;
6601
6602                 frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
6603                 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
6604                     &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED);
6605         }
6606 no_chunk_output:
6607         if (ret) {
6608                 ca->cnt_failed++;
6609         } else {
6610                 ca->cnt_sent++;
6611         }
6612 }
6613
6614 static void
6615 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED)
6616 {
6617         struct sctp_copy_all *ca;
6618
6619         ca = (struct sctp_copy_all *)ptr;
6620         /*
6621          * Do a notify here? Kacheong suggests that the notify be done at
6622          * the send time.. so you would push up a notification if any send
6623          * failed. Don't know if this is feasable since the only failures we
6624          * have is "memory" related and if you cannot get an mbuf to send
6625          * the data you surely can't get an mbuf to send up to notify the
6626          * user you can't send the data :->
6627          */
6628
6629         /* now free everything */
6630         sctp_m_freem(ca->m);
6631         SCTP_FREE(ca, SCTP_M_COPYAL);
6632 }
6633
6634
6635 #define MC_ALIGN(m, len) do {                                           \
6636         SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1)); \
6637 } while (0)
6638
6639
6640
6641 static struct mbuf *
6642 sctp_copy_out_all(struct uio *uio, int len)
6643 {
6644         struct mbuf *ret, *at;
6645         int left, willcpy, cancpy, error;
6646
6647         ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA);
6648         if (ret == NULL) {
6649                 /* TSNH */
6650                 return (NULL);
6651         }
6652         left = len;
6653         SCTP_BUF_LEN(ret) = 0;
6654         /* save space for the data chunk header */
6655         cancpy = M_TRAILINGSPACE(ret);
6656         willcpy = min(cancpy, left);
6657         at = ret;
6658         while (left > 0) {
6659                 /* Align data to the end */
6660                 error = uiomove(mtod(at, caddr_t), willcpy, uio);
6661                 if (error) {
6662         err_out_now:
6663                         sctp_m_freem(at);
6664                         return (NULL);
6665                 }
6666                 SCTP_BUF_LEN(at) = willcpy;
6667                 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0;
6668                 left -= willcpy;
6669                 if (left > 0) {
6670                         SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA);
6671                         if (SCTP_BUF_NEXT(at) == NULL) {
6672                                 goto err_out_now;
6673                         }
6674                         at = SCTP_BUF_NEXT(at);
6675                         SCTP_BUF_LEN(at) = 0;
6676                         cancpy = M_TRAILINGSPACE(at);
6677                         willcpy = min(cancpy, left);
6678                 }
6679         }
6680         return (ret);
6681 }
6682
6683 static int
6684 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m,
6685     struct sctp_sndrcvinfo *srcv)
6686 {
6687         int ret;
6688         struct sctp_copy_all *ca;
6689
6690         SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all),
6691             SCTP_M_COPYAL);
6692         if (ca == NULL) {
6693                 sctp_m_freem(m);
6694                 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6695                 return (ENOMEM);
6696         }
6697         memset(ca, 0, sizeof(struct sctp_copy_all));
6698
6699         ca->inp = inp;
6700         if (srcv) {
6701                 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo));
6702         }
6703         /*
6704          * take off the sendall flag, it would be bad if we failed to do
6705          * this :-0
6706          */
6707         ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL;
6708         /* get length and mbuf chain */
6709         if (uio) {
6710                 ca->sndlen = uio->uio_resid;
6711                 ca->m = sctp_copy_out_all(uio, ca->sndlen);
6712                 if (ca->m == NULL) {
6713                         SCTP_FREE(ca, SCTP_M_COPYAL);
6714                         SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
6715                         return (ENOMEM);
6716                 }
6717         } else {
6718                 /* Gather the length of the send */
6719                 struct mbuf *mat;
6720
6721                 ca->sndlen = 0;
6722                 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) {
6723                         ca->sndlen += SCTP_BUF_LEN(mat);
6724                 }
6725         }
6726         ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL,
6727             SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES,
6728             SCTP_ASOC_ANY_STATE,
6729             (void *)ca, 0,
6730             sctp_sendall_completes, inp, 1);
6731         if (ret) {
6732                 SCTP_PRINTF("Failed to initiate iterator for sendall\n");
6733                 SCTP_FREE(ca, SCTP_M_COPYAL);
6734                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
6735                 return (EFAULT);
6736         }
6737         return (0);
6738 }
6739
6740
6741 void
6742 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc)
6743 {
6744         struct sctp_tmit_chunk *chk, *nchk;
6745
6746         TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6747                 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
6748                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6749                         if (chk->data) {
6750                                 sctp_m_freem(chk->data);
6751                                 chk->data = NULL;
6752                         }
6753                         asoc->ctrl_queue_cnt--;
6754                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6755                 }
6756         }
6757 }
6758
6759 void
6760 sctp_toss_old_asconf(struct sctp_tcb *stcb)
6761 {
6762         struct sctp_association *asoc;
6763         struct sctp_tmit_chunk *chk, *nchk;
6764         struct sctp_asconf_chunk *acp;
6765
6766         asoc = &stcb->asoc;
6767         TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
6768                 /* find SCTP_ASCONF chunk in queue */
6769                 if (chk->rec.chunk_id.id == SCTP_ASCONF) {
6770                         if (chk->data) {
6771                                 acp = mtod(chk->data, struct sctp_asconf_chunk *);
6772                                 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) {
6773                                         /* Not Acked yet */
6774                                         break;
6775                                 }
6776                         }
6777                         TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next);
6778                         if (chk->data) {
6779                                 sctp_m_freem(chk->data);
6780                                 chk->data = NULL;
6781                         }
6782                         asoc->ctrl_queue_cnt--;
6783                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
6784                 }
6785         }
6786 }
6787
6788
6789 static void
6790 sctp_clean_up_datalist(struct sctp_tcb *stcb,
6791     struct sctp_association *asoc,
6792     struct sctp_tmit_chunk **data_list,
6793     int bundle_at,
6794     struct sctp_nets *net)
6795 {
6796         int i;
6797         struct sctp_tmit_chunk *tp1;
6798
6799         for (i = 0; i < bundle_at; i++) {
6800                 /* off of the send queue */
6801                 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next);
6802                 asoc->send_queue_cnt--;
6803                 if (i > 0) {
6804                         /*
6805                          * Any chunk NOT 0 you zap the time chunk 0 gets
6806                          * zapped or set based on if a RTO measurment is
6807                          * needed.
6808                          */
6809                         data_list[i]->do_rtt = 0;
6810                 }
6811                 /* record time */
6812                 data_list[i]->sent_rcv_time = net->last_sent_time;
6813                 data_list[i]->rec.data.cwnd_at_send = net->cwnd;
6814                 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq;
6815                 if (data_list[i]->whoTo == NULL) {
6816                         data_list[i]->whoTo = net;
6817                         atomic_add_int(&net->ref_count, 1);
6818                 }
6819                 /* on to the sent queue */
6820                 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead);
6821                 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6822                         struct sctp_tmit_chunk *tpp;
6823
6824                         /* need to move back */
6825         back_up_more:
6826                         tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next);
6827                         if (tpp == NULL) {
6828                                 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next);
6829                                 goto all_done;
6830                         }
6831                         tp1 = tpp;
6832                         if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) {
6833                                 goto back_up_more;
6834                         }
6835                         TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next);
6836                 } else {
6837                         TAILQ_INSERT_TAIL(&asoc->sent_queue,
6838                             data_list[i],
6839                             sctp_next);
6840                 }
6841 all_done:
6842                 /* This does not lower until the cum-ack passes it */
6843                 asoc->sent_queue_cnt++;
6844                 if ((asoc->peers_rwnd <= 0) &&
6845                     (asoc->total_flight == 0) &&
6846                     (bundle_at == 1)) {
6847                         /* Mark the chunk as being a window probe */
6848                         SCTP_STAT_INCR(sctps_windowprobed);
6849                 }
6850 #ifdef SCTP_AUDITING_ENABLED
6851                 sctp_audit_log(0xC2, 3);
6852 #endif
6853                 data_list[i]->sent = SCTP_DATAGRAM_SENT;
6854                 data_list[i]->snd_count = 1;
6855                 data_list[i]->rec.data.chunk_was_revoked = 0;
6856                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
6857                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
6858                             data_list[i]->whoTo->flight_size,
6859                             data_list[i]->book_size,
6860                             (uintptr_t) data_list[i]->whoTo,
6861                             data_list[i]->rec.data.TSN_seq);
6862                 }
6863                 sctp_flight_size_increase(data_list[i]);
6864                 sctp_total_flight_increase(stcb, data_list[i]);
6865                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
6866                         sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
6867                             asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
6868                 }
6869                 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
6870                     (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
6871                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
6872                         /* SWS sender side engages */
6873                         asoc->peers_rwnd = 0;
6874                 }
6875         }
6876         if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) {
6877                 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net);
6878         }
6879 }
6880
6881 static void
6882 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked
6883 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6884     SCTP_UNUSED
6885 #endif
6886 )
6887 {
6888         struct sctp_tmit_chunk *chk, *nchk;
6889
6890         TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
6891                 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
6892                     (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||  /* EY */
6893                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
6894                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
6895                     (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) ||
6896                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
6897                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
6898                     (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
6899                     (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
6900                     (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
6901                     (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
6902                     (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
6903                         /* Stray chunks must be cleaned up */
6904         clean_up_anyway:
6905                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
6906                         if (chk->data) {
6907                                 sctp_m_freem(chk->data);
6908                                 chk->data = NULL;
6909                         }
6910                         asoc->ctrl_queue_cnt--;
6911                         if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)
6912                                 asoc->fwd_tsn_cnt--;
6913                         sctp_free_a_chunk(stcb, chk, so_locked);
6914                 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
6915                         /* special handling, we must look into the param */
6916                         if (chk != asoc->str_reset) {
6917                                 goto clean_up_anyway;
6918                         }
6919                 }
6920         }
6921 }
6922
6923
6924 static int
6925 sctp_can_we_split_this(struct sctp_tcb *stcb,
6926     uint32_t length,
6927     uint32_t goal_mtu, uint32_t frag_point, int eeor_on)
6928 {
6929         /*
6930          * Make a decision on if I should split a msg into multiple parts.
6931          * This is only asked of incomplete messages.
6932          */
6933         if (eeor_on) {
6934                 /*
6935                  * If we are doing EEOR we need to always send it if its the
6936                  * entire thing, since it might be all the guy is putting in
6937                  * the hopper.
6938                  */
6939                 if (goal_mtu >= length) {
6940                         /*-
6941                          * If we have data outstanding,
6942                          * we get another chance when the sack
6943                          * arrives to transmit - wait for more data
6944                          */
6945                         if (stcb->asoc.total_flight == 0) {
6946                                 /*
6947                                  * If nothing is in flight, we zero the
6948                                  * packet counter.
6949                                  */
6950                                 return (length);
6951                         }
6952                         return (0);
6953
6954                 } else {
6955                         /* You can fill the rest */
6956                         return (goal_mtu);
6957                 }
6958         }
6959         /*-
6960          * For those strange folk that make the send buffer
6961          * smaller than our fragmentation point, we can't
6962          * get a full msg in so we have to allow splitting.
6963          */
6964         if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) {
6965                 return (length);
6966         }
6967         if ((length <= goal_mtu) ||
6968             ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) {
6969                 /* Sub-optimial residual don't split in non-eeor mode. */
6970                 return (0);
6971         }
6972         /*
6973          * If we reach here length is larger than the goal_mtu. Do we wish
6974          * to split it for the sake of packet putting together?
6975          */
6976         if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) {
6977                 /* Its ok to split it */
6978                 return (min(goal_mtu, frag_point));
6979         }
6980         /* Nope, can't split */
6981         return (0);
6982
6983 }
6984
6985 static uint32_t
6986 sctp_move_to_outqueue(struct sctp_tcb *stcb,
6987     struct sctp_stream_out *strq,
6988     uint32_t goal_mtu,
6989     uint32_t frag_point,
6990     int *locked,
6991     int *giveup,
6992     int eeor_mode,
6993     int *bail,
6994     int so_locked
6995 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
6996     SCTP_UNUSED
6997 #endif
6998 )
6999 {
7000         /* Move from the stream to the send_queue keeping track of the total */
7001         struct sctp_association *asoc;
7002         struct sctp_stream_queue_pending *sp;
7003         struct sctp_tmit_chunk *chk;
7004         struct sctp_data_chunk *dchkh;
7005         uint32_t to_move, length;
7006         uint8_t rcv_flags = 0;
7007         uint8_t some_taken;
7008         uint8_t send_lock_up = 0;
7009
7010         SCTP_TCB_LOCK_ASSERT(stcb);
7011         asoc = &stcb->asoc;
7012 one_more_time:
7013         /* sa_ignore FREED_MEMORY */
7014         sp = TAILQ_FIRST(&strq->outqueue);
7015         if (sp == NULL) {
7016                 *locked = 0;
7017                 if (send_lock_up == 0) {
7018                         SCTP_TCB_SEND_LOCK(stcb);
7019                         send_lock_up = 1;
7020                 }
7021                 sp = TAILQ_FIRST(&strq->outqueue);
7022                 if (sp) {
7023                         goto one_more_time;
7024                 }
7025                 if (strq->last_msg_incomplete) {
7026                         SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n",
7027                             strq->stream_no,
7028                             strq->last_msg_incomplete);
7029                         strq->last_msg_incomplete = 0;
7030                 }
7031                 to_move = 0;
7032                 if (send_lock_up) {
7033                         SCTP_TCB_SEND_UNLOCK(stcb);
7034                         send_lock_up = 0;
7035                 }
7036                 goto out_of;
7037         }
7038         if ((sp->msg_is_complete) && (sp->length == 0)) {
7039                 if (sp->sender_all_done) {
7040                         /*
7041                          * We are doing differed cleanup. Last time through
7042                          * when we took all the data the sender_all_done was
7043                          * not set.
7044                          */
7045                         if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) {
7046                                 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n");
7047                                 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7048                                     sp->sender_all_done,
7049                                     sp->length,
7050                                     sp->msg_is_complete,
7051                                     sp->put_last_out,
7052                                     send_lock_up);
7053                         }
7054                         if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) {
7055                                 SCTP_TCB_SEND_LOCK(stcb);
7056                                 send_lock_up = 1;
7057                         }
7058                         atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7059                         TAILQ_REMOVE(&strq->outqueue, sp, next);
7060                         stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7061                         if (sp->net) {
7062                                 sctp_free_remote_addr(sp->net);
7063                                 sp->net = NULL;
7064                         }
7065                         if (sp->data) {
7066                                 sctp_m_freem(sp->data);
7067                                 sp->data = NULL;
7068                         }
7069                         sctp_free_a_strmoq(stcb, sp, so_locked);
7070                         /* we can't be locked to it */
7071                         *locked = 0;
7072                         stcb->asoc.locked_on_sending = NULL;
7073                         if (send_lock_up) {
7074                                 SCTP_TCB_SEND_UNLOCK(stcb);
7075                                 send_lock_up = 0;
7076                         }
7077                         /* back to get the next msg */
7078                         goto one_more_time;
7079                 } else {
7080                         /*
7081                          * sender just finished this but still holds a
7082                          * reference
7083                          */
7084                         *locked = 1;
7085                         *giveup = 1;
7086                         to_move = 0;
7087                         goto out_of;
7088                 }
7089         } else {
7090                 /* is there some to get */
7091                 if (sp->length == 0) {
7092                         /* no */
7093                         *locked = 1;
7094                         *giveup = 1;
7095                         to_move = 0;
7096                         goto out_of;
7097                 } else if (sp->discard_rest) {
7098                         if (send_lock_up == 0) {
7099                                 SCTP_TCB_SEND_LOCK(stcb);
7100                                 send_lock_up = 1;
7101                         }
7102                         /* Whack down the size */
7103                         atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length);
7104                         if ((stcb->sctp_socket != NULL) && \
7105                             ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) ||
7106                             (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) {
7107                                 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length);
7108                         }
7109                         if (sp->data) {
7110                                 sctp_m_freem(sp->data);
7111                                 sp->data = NULL;
7112                                 sp->tail_mbuf = NULL;
7113                         }
7114                         sp->length = 0;
7115                         sp->some_taken = 1;
7116                         *locked = 1;
7117                         *giveup = 1;
7118                         to_move = 0;
7119                         goto out_of;
7120                 }
7121         }
7122         some_taken = sp->some_taken;
7123         if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
7124                 sp->msg_is_complete = 1;
7125         }
7126 re_look:
7127         length = sp->length;
7128         if (sp->msg_is_complete) {
7129                 /* The message is complete */
7130                 to_move = min(length, frag_point);
7131                 if (to_move == length) {
7132                         /* All of it fits in the MTU */
7133                         if (sp->some_taken) {
7134                                 rcv_flags |= SCTP_DATA_LAST_FRAG;
7135                                 sp->put_last_out = 1;
7136                         } else {
7137                                 rcv_flags |= SCTP_DATA_NOT_FRAG;
7138                                 sp->put_last_out = 1;
7139                         }
7140                 } else {
7141                         /* Not all of it fits, we fragment */
7142                         if (sp->some_taken == 0) {
7143                                 rcv_flags |= SCTP_DATA_FIRST_FRAG;
7144                         }
7145                         sp->some_taken = 1;
7146                 }
7147         } else {
7148                 to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode);
7149                 if (to_move) {
7150                         /*-
7151                          * We use a snapshot of length in case it
7152                          * is expanding during the compare.
7153                          */
7154                         uint32_t llen;
7155
7156                         llen = length;
7157                         if (to_move >= llen) {
7158                                 to_move = llen;
7159                                 if (send_lock_up == 0) {
7160                                         /*-
7161                                          * We are taking all of an incomplete msg
7162                                          * thus we need a send lock.
7163                                          */
7164                                         SCTP_TCB_SEND_LOCK(stcb);
7165                                         send_lock_up = 1;
7166                                         if (sp->msg_is_complete) {
7167                                                 /*
7168                                                  * the sender finished the
7169                                                  * msg
7170                                                  */
7171                                                 goto re_look;
7172                                         }
7173                                 }
7174                         }
7175                         if (sp->some_taken == 0) {
7176                                 rcv_flags |= SCTP_DATA_FIRST_FRAG;
7177                                 sp->some_taken = 1;
7178                         }
7179                 } else {
7180                         /* Nothing to take. */
7181                         if (sp->some_taken) {
7182                                 *locked = 1;
7183                         }
7184                         *giveup = 1;
7185                         to_move = 0;
7186                         goto out_of;
7187                 }
7188         }
7189
7190         /* If we reach here, we can copy out a chunk */
7191         sctp_alloc_a_chunk(stcb, chk);
7192         if (chk == NULL) {
7193                 /* No chunk memory */
7194                 *giveup = 1;
7195                 to_move = 0;
7196                 goto out_of;
7197         }
7198         /*
7199          * Setup for unordered if needed by looking at the user sent info
7200          * flags.
7201          */
7202         if (sp->sinfo_flags & SCTP_UNORDERED) {
7203                 rcv_flags |= SCTP_DATA_UNORDERED;
7204         }
7205         if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) ||
7206             ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) {
7207                 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY;
7208         }
7209         /* clear out the chunk before setting up */
7210         memset(chk, 0, sizeof(*chk));
7211         chk->rec.data.rcv_flags = rcv_flags;
7212
7213         if (to_move >= length) {
7214                 /* we think we can steal the whole thing */
7215                 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) {
7216                         SCTP_TCB_SEND_LOCK(stcb);
7217                         send_lock_up = 1;
7218                 }
7219                 if (to_move < sp->length) {
7220                         /* bail, it changed */
7221                         goto dont_do_it;
7222                 }
7223                 chk->data = sp->data;
7224                 chk->last_mbuf = sp->tail_mbuf;
7225                 /* register the stealing */
7226                 sp->data = sp->tail_mbuf = NULL;
7227         } else {
7228                 struct mbuf *m;
7229
7230 dont_do_it:
7231                 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT);
7232                 chk->last_mbuf = NULL;
7233                 if (chk->data == NULL) {
7234                         sp->some_taken = some_taken;
7235                         sctp_free_a_chunk(stcb, chk, so_locked);
7236                         *bail = 1;
7237                         to_move = 0;
7238                         goto out_of;
7239                 }
7240 #ifdef SCTP_MBUF_LOGGING
7241                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
7242                         struct mbuf *mat;
7243
7244                         for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) {
7245                                 if (SCTP_BUF_IS_EXTENDED(mat)) {
7246                                         sctp_log_mb(mat, SCTP_MBUF_ICOPY);
7247                                 }
7248                         }
7249                 }
7250 #endif
7251                 /* Pull off the data */
7252                 m_adj(sp->data, to_move);
7253                 /* Now lets work our way down and compact it */
7254                 m = sp->data;
7255                 while (m && (SCTP_BUF_LEN(m) == 0)) {
7256                         sp->data = SCTP_BUF_NEXT(m);
7257                         SCTP_BUF_NEXT(m) = NULL;
7258                         if (sp->tail_mbuf == m) {
7259                                 /*-
7260                                  * Freeing tail? TSNH since
7261                                  * we supposedly were taking less
7262                                  * than the sp->length.
7263                                  */
7264 #ifdef INVARIANTS
7265                                 panic("Huh, freing tail? - TSNH");
7266 #else
7267                                 SCTP_PRINTF("Huh, freeing tail? - TSNH\n");
7268                                 sp->tail_mbuf = sp->data = NULL;
7269                                 sp->length = 0;
7270 #endif
7271
7272                         }
7273                         sctp_m_free(m);
7274                         m = sp->data;
7275                 }
7276         }
7277         if (SCTP_BUF_IS_EXTENDED(chk->data)) {
7278                 chk->copy_by_ref = 1;
7279         } else {
7280                 chk->copy_by_ref = 0;
7281         }
7282         /*
7283          * get last_mbuf and counts of mb useage This is ugly but hopefully
7284          * its only one mbuf.
7285          */
7286         if (chk->last_mbuf == NULL) {
7287                 chk->last_mbuf = chk->data;
7288                 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) {
7289                         chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf);
7290                 }
7291         }
7292         if (to_move > length) {
7293                 /*- This should not happen either
7294                  * since we always lower to_move to the size
7295                  * of sp->length if its larger.
7296                  */
7297 #ifdef INVARIANTS
7298                 panic("Huh, how can to_move be larger?");
7299 #else
7300                 SCTP_PRINTF("Huh, how can to_move be larger?\n");
7301                 sp->length = 0;
7302 #endif
7303         } else {
7304                 atomic_subtract_int(&sp->length, to_move);
7305         }
7306         if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) {
7307                 /* Not enough room for a chunk header, get some */
7308                 struct mbuf *m;
7309
7310                 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA);
7311                 if (m == NULL) {
7312                         /*
7313                          * we're in trouble here. _PREPEND below will free
7314                          * all the data if there is no leading space, so we
7315                          * must put the data back and restore.
7316                          */
7317                         if (send_lock_up == 0) {
7318                                 SCTP_TCB_SEND_LOCK(stcb);
7319                                 send_lock_up = 1;
7320                         }
7321                         if (chk->data == NULL) {
7322                                 /* unsteal the data */
7323                                 sp->data = chk->data;
7324                                 sp->tail_mbuf = chk->last_mbuf;
7325                         } else {
7326                                 struct mbuf *m_tmp;
7327
7328                                 /* reassemble the data */
7329                                 m_tmp = sp->data;
7330                                 sp->data = chk->data;
7331                                 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp;
7332                         }
7333                         sp->some_taken = some_taken;
7334                         atomic_add_int(&sp->length, to_move);
7335                         chk->data = NULL;
7336                         *bail = 1;
7337                         sctp_free_a_chunk(stcb, chk, so_locked);
7338                         to_move = 0;
7339                         goto out_of;
7340                 } else {
7341                         SCTP_BUF_LEN(m) = 0;
7342                         SCTP_BUF_NEXT(m) = chk->data;
7343                         chk->data = m;
7344                         M_ALIGN(chk->data, 4);
7345                 }
7346         }
7347         SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT);
7348         if (chk->data == NULL) {
7349                 /* HELP, TSNH since we assured it would not above? */
7350 #ifdef INVARIANTS
7351                 panic("prepend failes HELP?");
7352 #else
7353                 SCTP_PRINTF("prepend fails HELP?\n");
7354                 sctp_free_a_chunk(stcb, chk, so_locked);
7355 #endif
7356                 *bail = 1;
7357                 to_move = 0;
7358                 goto out_of;
7359         }
7360         sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk));
7361         chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk));
7362         chk->book_size_scale = 0;
7363         chk->sent = SCTP_DATAGRAM_UNSENT;
7364
7365         chk->flags = 0;
7366         chk->asoc = &stcb->asoc;
7367         chk->pad_inplace = 0;
7368         chk->no_fr_allowed = 0;
7369         chk->rec.data.stream_seq = strq->next_sequence_send;
7370         if (rcv_flags & SCTP_DATA_LAST_FRAG) {
7371                 strq->next_sequence_send++;
7372         }
7373         chk->rec.data.stream_number = sp->stream;
7374         chk->rec.data.payloadtype = sp->ppid;
7375         chk->rec.data.context = sp->context;
7376         chk->rec.data.doing_fast_retransmit = 0;
7377
7378         chk->rec.data.timetodrop = sp->ts;
7379         chk->flags = sp->act_flags;
7380
7381         if (sp->net) {
7382                 chk->whoTo = sp->net;
7383                 atomic_add_int(&chk->whoTo->ref_count, 1);
7384         } else
7385                 chk->whoTo = NULL;
7386
7387         if (sp->holds_key_ref) {
7388                 chk->auth_keyid = sp->auth_keyid;
7389                 sctp_auth_key_acquire(stcb, chk->auth_keyid);
7390                 chk->holds_key_ref = 1;
7391         }
7392         chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1);
7393         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) {
7394                 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND,
7395                     (uintptr_t) stcb, sp->length,
7396                     (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq),
7397                     chk->rec.data.TSN_seq);
7398         }
7399         dchkh = mtod(chk->data, struct sctp_data_chunk *);
7400         /*
7401          * Put the rest of the things in place now. Size was done earlier in
7402          * previous loop prior to padding.
7403          */
7404
7405 #ifdef SCTP_ASOCLOG_OF_TSNS
7406         SCTP_TCB_LOCK_ASSERT(stcb);
7407         if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) {
7408                 asoc->tsn_out_at = 0;
7409                 asoc->tsn_out_wrapped = 1;
7410         }
7411         asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq;
7412         asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number;
7413         asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq;
7414         asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size;
7415         asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags;
7416         asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb;
7417         asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at;
7418         asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2;
7419         asoc->tsn_out_at++;
7420 #endif
7421
7422         dchkh->ch.chunk_type = SCTP_DATA;
7423         dchkh->ch.chunk_flags = chk->rec.data.rcv_flags;
7424         dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq);
7425         dchkh->dp.stream_id = htons(strq->stream_no);
7426         dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq);
7427         dchkh->dp.protocol_id = chk->rec.data.payloadtype;
7428         dchkh->ch.chunk_length = htons(chk->send_size);
7429         /* Now advance the chk->send_size by the actual pad needed. */
7430         if (chk->send_size < SCTP_SIZE32(chk->book_size)) {
7431                 /* need a pad */
7432                 struct mbuf *lm;
7433                 int pads;
7434
7435                 pads = SCTP_SIZE32(chk->book_size) - chk->send_size;
7436                 if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) {
7437                         chk->pad_inplace = 1;
7438                 }
7439                 if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) {
7440                         /* pad added an mbuf */
7441                         chk->last_mbuf = lm;
7442                 }
7443                 chk->send_size += pads;
7444         }
7445         if (PR_SCTP_ENABLED(chk->flags)) {
7446                 asoc->pr_sctp_cnt++;
7447         }
7448         if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) {
7449                 /* All done pull and kill the message */
7450                 atomic_subtract_int(&asoc->stream_queue_cnt, 1);
7451                 if (sp->put_last_out == 0) {
7452                         SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n");
7453                         SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n",
7454                             sp->sender_all_done,
7455                             sp->length,
7456                             sp->msg_is_complete,
7457                             sp->put_last_out,
7458                             send_lock_up);
7459                 }
7460                 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) {
7461                         SCTP_TCB_SEND_LOCK(stcb);
7462                         send_lock_up = 1;
7463                 }
7464                 TAILQ_REMOVE(&strq->outqueue, sp, next);
7465                 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up);
7466                 if (sp->net) {
7467                         sctp_free_remote_addr(sp->net);
7468                         sp->net = NULL;
7469                 }
7470                 if (sp->data) {
7471                         sctp_m_freem(sp->data);
7472                         sp->data = NULL;
7473                 }
7474                 sctp_free_a_strmoq(stcb, sp, so_locked);
7475
7476                 /* we can't be locked to it */
7477                 *locked = 0;
7478                 stcb->asoc.locked_on_sending = NULL;
7479         } else {
7480                 /* more to go, we are locked */
7481                 *locked = 1;
7482         }
7483         asoc->chunks_on_out_queue++;
7484         strq->chunks_on_queues++;
7485         TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next);
7486         asoc->send_queue_cnt++;
7487 out_of:
7488         if (send_lock_up) {
7489                 SCTP_TCB_SEND_UNLOCK(stcb);
7490         }
7491         return (to_move);
7492 }
7493
7494
7495 static void
7496 sctp_fill_outqueue(struct sctp_tcb *stcb,
7497     struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked
7498 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7499     SCTP_UNUSED
7500 #endif
7501 )
7502 {
7503         struct sctp_association *asoc;
7504         struct sctp_stream_out *strq;
7505         int goal_mtu, moved_how_much, total_moved = 0, bail = 0;
7506         int locked, giveup;
7507
7508         SCTP_TCB_LOCK_ASSERT(stcb);
7509         asoc = &stcb->asoc;
7510         switch (net->ro._l_addr.sa.sa_family) {
7511 #ifdef INET
7512         case AF_INET:
7513                 goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
7514                 break;
7515 #endif
7516 #ifdef INET6
7517         case AF_INET6:
7518                 goal_mtu = net->mtu - SCTP_MIN_OVERHEAD;
7519                 break;
7520 #endif
7521         default:
7522                 /* TSNH */
7523                 goal_mtu = net->mtu;
7524                 break;
7525         }
7526         /* Need an allowance for the data chunk header too */
7527         goal_mtu -= sizeof(struct sctp_data_chunk);
7528
7529         /* must make even word boundary */
7530         goal_mtu &= 0xfffffffc;
7531         if (asoc->locked_on_sending) {
7532                 /* We are stuck on one stream until the message completes. */
7533                 strq = asoc->locked_on_sending;
7534                 locked = 1;
7535         } else {
7536                 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7537                 locked = 0;
7538         }
7539         while ((goal_mtu > 0) && strq) {
7540                 giveup = 0;
7541                 bail = 0;
7542                 moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked,
7543                     &giveup, eeor_mode, &bail, so_locked);
7544                 if (moved_how_much)
7545                         stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much);
7546
7547                 if (locked) {
7548                         asoc->locked_on_sending = strq;
7549                         if ((moved_how_much == 0) || (giveup) || bail)
7550                                 /* no more to move for now */
7551                                 break;
7552                 } else {
7553                         asoc->locked_on_sending = NULL;
7554                         if ((giveup) || bail) {
7555                                 break;
7556                         }
7557                         strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
7558                         if (strq == NULL) {
7559                                 break;
7560                         }
7561                 }
7562                 total_moved += moved_how_much;
7563                 goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk));
7564                 goal_mtu &= 0xfffffffc;
7565         }
7566         if (bail)
7567                 *quit_now = 1;
7568
7569         stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc);
7570
7571         if (total_moved == 0) {
7572                 if ((stcb->asoc.sctp_cmt_on_off == 0) &&
7573                     (net == stcb->asoc.primary_destination)) {
7574                         /* ran dry for primary network net */
7575                         SCTP_STAT_INCR(sctps_primary_randry);
7576                 } else if (stcb->asoc.sctp_cmt_on_off > 0) {
7577                         /* ran dry with CMT on */
7578                         SCTP_STAT_INCR(sctps_cmt_randry);
7579                 }
7580         }
7581 }
7582
7583 void
7584 sctp_fix_ecn_echo(struct sctp_association *asoc)
7585 {
7586         struct sctp_tmit_chunk *chk;
7587
7588         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7589                 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
7590                         chk->sent = SCTP_DATAGRAM_UNSENT;
7591                 }
7592         }
7593 }
7594
7595 void
7596 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net)
7597 {
7598         struct sctp_association *asoc;
7599         struct sctp_tmit_chunk *chk;
7600         struct sctp_stream_queue_pending *sp;
7601         unsigned int i;
7602
7603         if (net == NULL) {
7604                 return;
7605         }
7606         asoc = &stcb->asoc;
7607         for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
7608                 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) {
7609                         if (sp->net == net) {
7610                                 sctp_free_remote_addr(sp->net);
7611                                 sp->net = NULL;
7612                         }
7613                 }
7614         }
7615         TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7616                 if (chk->whoTo == net) {
7617                         sctp_free_remote_addr(chk->whoTo);
7618                         chk->whoTo = NULL;
7619                 }
7620         }
7621 }
7622
7623 int
7624 sctp_med_chunk_output(struct sctp_inpcb *inp,
7625     struct sctp_tcb *stcb,
7626     struct sctp_association *asoc,
7627     int *num_out,
7628     int *reason_code,
7629     int control_only, int from_where,
7630     struct timeval *now, int *now_filled, int frag_point, int so_locked
7631 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
7632     SCTP_UNUSED
7633 #endif
7634 )
7635 {
7636         /**
7637          * Ok this is the generic chunk service queue. we must do the
7638          * following: - Service the stream queue that is next, moving any
7639          * message (note I must get a complete message i.e. FIRST/MIDDLE and
7640          * LAST to the out queue in one pass) and assigning TSN's - Check to
7641          * see if the cwnd/rwnd allows any output, if so we go ahead and
7642          * fomulate and send the low level chunks. Making sure to combine
7643          * any control in the control chunk queue also.
7644          */
7645         struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL;
7646         struct mbuf *outchain, *endoutchain;
7647         struct sctp_tmit_chunk *chk, *nchk;
7648
7649         /* temp arrays for unlinking */
7650         struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
7651         int no_fragmentflg, error;
7652         unsigned int max_rwnd_per_dest, max_send_per_dest;
7653         int one_chunk, hbflag, skip_data_for_this_net;
7654         int asconf, cookie, no_out_cnt;
7655         int bundle_at, ctl_cnt, no_data_chunks, eeor_mode;
7656         unsigned int mtu, r_mtu, omtu, mx_mtu, to_out;
7657         int tsns_sent = 0;
7658         uint32_t auth_offset = 0;
7659         struct sctp_auth_chunk *auth = NULL;
7660         uint16_t auth_keyid;
7661         int override_ok = 1;
7662         int skip_fill_up = 0;
7663         int data_auth_reqd = 0;
7664
7665         /*
7666          * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the
7667          * destination.
7668          */
7669         int quit_now = 0;
7670
7671         *num_out = 0;
7672         auth_keyid = stcb->asoc.authinfo.active_keyid;
7673
7674         if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
7675             (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) ||
7676             (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
7677                 eeor_mode = 1;
7678         } else {
7679                 eeor_mode = 0;
7680         }
7681         ctl_cnt = no_out_cnt = asconf = cookie = 0;
7682         /*
7683          * First lets prime the pump. For each destination, if there is room
7684          * in the flight size, attempt to pull an MTU's worth out of the
7685          * stream queues into the general send_queue
7686          */
7687 #ifdef SCTP_AUDITING_ENABLED
7688         sctp_audit_log(0xC2, 2);
7689 #endif
7690         SCTP_TCB_LOCK_ASSERT(stcb);
7691         hbflag = 0;
7692         if ((control_only) || (asoc->stream_reset_outstanding))
7693                 no_data_chunks = 1;
7694         else
7695                 no_data_chunks = 0;
7696
7697         /* Nothing to possible to send? */
7698         if ((TAILQ_EMPTY(&asoc->control_send_queue) ||
7699             (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) &&
7700             TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7701             TAILQ_EMPTY(&asoc->send_queue) &&
7702             stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
7703 nothing_to_send:
7704                 *reason_code = 9;
7705                 return (0);
7706         }
7707         if (asoc->peers_rwnd == 0) {
7708                 /* No room in peers rwnd */
7709                 *reason_code = 1;
7710                 if (asoc->total_flight > 0) {
7711                         /* we are allowed one chunk in flight */
7712                         no_data_chunks = 1;
7713                 }
7714         }
7715         if (stcb->asoc.ecn_echo_cnt_onq) {
7716                 /* Record where a sack goes, if any */
7717                 if (no_data_chunks &&
7718                     (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) {
7719                         /* Nothing but ECNe to send - we don't do that */
7720                         goto nothing_to_send;
7721                 }
7722                 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7723                         if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
7724                             (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
7725                                 sack_goes_to = chk->whoTo;
7726                                 break;
7727                         }
7728                 }
7729         }
7730         max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets);
7731         if (stcb->sctp_socket)
7732                 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets;
7733         else
7734                 max_send_per_dest = 0;
7735         if (no_data_chunks == 0) {
7736                 /* How many non-directed chunks are there? */
7737                 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
7738                         if (chk->whoTo == NULL) {
7739                                 /*
7740                                  * We already have non-directed chunks on
7741                                  * the queue, no need to do a fill-up.
7742                                  */
7743                                 skip_fill_up = 1;
7744                                 break;
7745                         }
7746                 }
7747
7748         }
7749         if ((no_data_chunks == 0) &&
7750             (skip_fill_up == 0) &&
7751             (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) {
7752                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
7753                         /*
7754                          * This for loop we are in takes in each net, if
7755                          * its's got space in cwnd and has data sent to it
7756                          * (when CMT is off) then it calls
7757                          * sctp_fill_outqueue for the net. This gets data on
7758                          * the send queue for that network.
7759                          * 
7760                          * In sctp_fill_outqueue TSN's are assigned and data is
7761                          * copied out of the stream buffers. Note mostly
7762                          * copy by reference (we hope).
7763                          */
7764                         net->window_probe = 0;
7765                         if ((net != stcb->asoc.alternate) &&
7766                             ((net->dest_state & SCTP_ADDR_PF) ||
7767                             (!(net->dest_state & SCTP_ADDR_REACHABLE)) ||
7768                             (net->dest_state & SCTP_ADDR_UNCONFIRMED))) {
7769                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7770                                         sctp_log_cwnd(stcb, net, 1,
7771                                             SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7772                                 }
7773                                 continue;
7774                         }
7775                         if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) &&
7776                             (net->flight_size == 0)) {
7777                                 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net);
7778                         }
7779                         if (net->flight_size >= net->cwnd) {
7780                                 /* skip this network, no room - can't fill */
7781                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7782                                         sctp_log_cwnd(stcb, net, 3,
7783                                             SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7784                                 }
7785                                 continue;
7786                         }
7787                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
7788                                 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED);
7789                         }
7790                         sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked);
7791                         if (quit_now) {
7792                                 /* memory alloc failure */
7793                                 no_data_chunks = 1;
7794                                 break;
7795                         }
7796                 }
7797         }
7798         /* now service each destination and send out what we can for it */
7799         /* Nothing to send? */
7800         if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7801             TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7802             TAILQ_EMPTY(&asoc->send_queue)) {
7803                 *reason_code = 8;
7804                 return (0);
7805         }
7806         if (asoc->sctp_cmt_on_off > 0) {
7807                 /* get the last start point */
7808                 start_at = asoc->last_net_cmt_send_started;
7809                 if (start_at == NULL) {
7810                         /* null so to beginning */
7811                         start_at = TAILQ_FIRST(&asoc->nets);
7812                 } else {
7813                         start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
7814                         if (start_at == NULL) {
7815                                 start_at = TAILQ_FIRST(&asoc->nets);
7816                         }
7817                 }
7818                 asoc->last_net_cmt_send_started = start_at;
7819         } else {
7820                 start_at = TAILQ_FIRST(&asoc->nets);
7821         }
7822         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
7823                 if (chk->whoTo == NULL) {
7824                         if (asoc->alternate) {
7825                                 chk->whoTo = asoc->alternate;
7826                         } else {
7827                                 chk->whoTo = asoc->primary_destination;
7828                         }
7829                         atomic_add_int(&chk->whoTo->ref_count, 1);
7830                 }
7831         }
7832         old_start_at = NULL;
7833 again_one_more_time:
7834         for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) {
7835                 /* how much can we send? */
7836                 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */
7837                 if (old_start_at && (old_start_at == net)) {
7838                         /* through list ocmpletely. */
7839                         break;
7840                 }
7841                 tsns_sent = 0xa;
7842                 if (TAILQ_EMPTY(&asoc->control_send_queue) &&
7843                     TAILQ_EMPTY(&asoc->asconf_send_queue) &&
7844                     (net->flight_size >= net->cwnd)) {
7845                         /*
7846                          * Nothing on control or asconf and flight is full,
7847                          * we can skip even in the CMT case.
7848                          */
7849                         continue;
7850                 }
7851                 bundle_at = 0;
7852                 endoutchain = outchain = NULL;
7853                 no_fragmentflg = 1;
7854                 one_chunk = 0;
7855                 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
7856                         skip_data_for_this_net = 1;
7857                 } else {
7858                         skip_data_for_this_net = 0;
7859                 }
7860                 if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) {
7861                         /*
7862                          * if we have a route and an ifp check to see if we
7863                          * have room to send to this guy
7864                          */
7865                         struct ifnet *ifp;
7866
7867                         ifp = net->ro.ro_rt->rt_ifp;
7868                         if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) {
7869                                 SCTP_STAT_INCR(sctps_ifnomemqueued);
7870                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
7871                                         sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED);
7872                                 }
7873                                 continue;
7874                         }
7875                 }
7876                 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
7877 #ifdef INET
7878                 case AF_INET:
7879                         mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
7880                         break;
7881 #endif
7882 #ifdef INET6
7883                 case AF_INET6:
7884                         mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
7885                         break;
7886 #endif
7887                 default:
7888                         /* TSNH */
7889                         mtu = net->mtu;
7890                         break;
7891                 }
7892                 mx_mtu = mtu;
7893                 to_out = 0;
7894                 if (mtu > asoc->peers_rwnd) {
7895                         if (asoc->total_flight > 0) {
7896                                 /* We have a packet in flight somewhere */
7897                                 r_mtu = asoc->peers_rwnd;
7898                         } else {
7899                                 /* We are always allowed to send one MTU out */
7900                                 one_chunk = 1;
7901                                 r_mtu = mtu;
7902                         }
7903                 } else {
7904                         r_mtu = mtu;
7905                 }
7906                 /************************/
7907                 /* ASCONF transmission */
7908                 /************************/
7909                 /* Now first lets go through the asconf queue */
7910                 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) {
7911                         if (chk->rec.chunk_id.id != SCTP_ASCONF) {
7912                                 continue;
7913                         }
7914                         if (chk->whoTo == NULL) {
7915                                 if (asoc->alternate == NULL) {
7916                                         if (asoc->primary_destination != net) {
7917                                                 break;
7918                                         }
7919                                 } else {
7920                                         if (asoc->alternate != net) {
7921                                                 break;
7922                                         }
7923                                 }
7924                         } else {
7925                                 if (chk->whoTo != net) {
7926                                         break;
7927                                 }
7928                         }
7929                         if (chk->data == NULL) {
7930                                 break;
7931                         }
7932                         if (chk->sent != SCTP_DATAGRAM_UNSENT &&
7933                             chk->sent != SCTP_DATAGRAM_RESEND) {
7934                                 break;
7935                         }
7936                         /*
7937                          * if no AUTH is yet included and this chunk
7938                          * requires it, make sure to account for it.  We
7939                          * don't apply the size until the AUTH chunk is
7940                          * actually added below in case there is no room for
7941                          * this chunk. NOTE: we overload the use of "omtu"
7942                          * here
7943                          */
7944                         if ((auth == NULL) &&
7945                             sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7946                             stcb->asoc.peer_auth_chunks)) {
7947                                 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
7948                         } else
7949                                 omtu = 0;
7950                         /* Here we do NOT factor the r_mtu */
7951                         if ((chk->send_size < (int)(mtu - omtu)) ||
7952                             (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
7953                                 /*
7954                                  * We probably should glom the mbuf chain
7955                                  * from the chk->data for control but the
7956                                  * problem is it becomes yet one more level
7957                                  * of tracking to do if for some reason
7958                                  * output fails. Then I have got to
7959                                  * reconstruct the merged control chain.. el
7960                                  * yucko.. for now we take the easy way and
7961                                  * do the copy
7962                                  */
7963                                 /*
7964                                  * Add an AUTH chunk, if chunk requires it
7965                                  * save the offset into the chain for AUTH
7966                                  */
7967                                 if ((auth == NULL) &&
7968                                     (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
7969                                     stcb->asoc.peer_auth_chunks))) {
7970                                         outchain = sctp_add_auth_chunk(outchain,
7971                                             &endoutchain,
7972                                             &auth,
7973                                             &auth_offset,
7974                                             stcb,
7975                                             chk->rec.chunk_id.id);
7976                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7977                                 }
7978                                 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
7979                                     (int)chk->rec.chunk_id.can_take_data,
7980                                     chk->send_size, chk->copy_by_ref);
7981                                 if (outchain == NULL) {
7982                                         *reason_code = 8;
7983                                         SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
7984                                         return (ENOMEM);
7985                                 }
7986                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
7987                                 /* update our MTU size */
7988                                 if (mtu > (chk->send_size + omtu))
7989                                         mtu -= (chk->send_size + omtu);
7990                                 else
7991                                         mtu = 0;
7992                                 to_out += (chk->send_size + omtu);
7993                                 /* Do clear IP_DF ? */
7994                                 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
7995                                         no_fragmentflg = 0;
7996                                 }
7997                                 if (chk->rec.chunk_id.can_take_data)
7998                                         chk->data = NULL;
7999                                 /*
8000                                  * set hb flag since we can use these for
8001                                  * RTO
8002                                  */
8003                                 hbflag = 1;
8004                                 asconf = 1;
8005                                 /*
8006                                  * should sysctl this: don't bundle data
8007                                  * with ASCONF since it requires AUTH
8008                                  */
8009                                 no_data_chunks = 1;
8010                                 chk->sent = SCTP_DATAGRAM_SENT;
8011                                 if (chk->whoTo == NULL) {
8012                                         chk->whoTo = net;
8013                                         atomic_add_int(&net->ref_count, 1);
8014                                 }
8015                                 chk->snd_count++;
8016                                 if (mtu == 0) {
8017                                         /*
8018                                          * Ok we are out of room but we can
8019                                          * output without effecting the
8020                                          * flight size since this little guy
8021                                          * is a control only packet.
8022                                          */
8023                                         sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8024                                         /*
8025                                          * do NOT clear the asconf flag as
8026                                          * it is used to do appropriate
8027                                          * source address selection.
8028                                          */
8029                                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8030                                             (struct sockaddr *)&net->ro._l_addr,
8031                                             outchain, auth_offset, auth,
8032                                             stcb->asoc.authinfo.active_keyid,
8033                                             no_fragmentflg, 0, asconf,
8034                                             inp->sctp_lport, stcb->rport,
8035                                             htonl(stcb->asoc.peer_vtag),
8036                                             net->port, NULL,
8037                                             0, 0,
8038                                             so_locked))) {
8039                                                 if (error == ENOBUFS) {
8040                                                         asoc->ifp_had_enobuf = 1;
8041                                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8042                                                 }
8043                                                 if (from_where == 0) {
8044                                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8045                                                 }
8046                                                 if (*now_filled == 0) {
8047                                                         (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8048                                                         *now_filled = 1;
8049                                                         *now = net->last_sent_time;
8050                                                 } else {
8051                                                         net->last_sent_time = *now;
8052                                                 }
8053                                                 hbflag = 0;
8054                                                 /* error, could not output */
8055                                                 if (error == EHOSTUNREACH) {
8056                                                         /*
8057                                                          * Destination went
8058                                                          * unreachable
8059                                                          * during this send
8060                                                          */
8061                                                         sctp_move_chunks_from_net(stcb, net);
8062                                                 }
8063                                                 *reason_code = 7;
8064                                                 continue;
8065                                         } else
8066                                                 asoc->ifp_had_enobuf = 0;
8067                                         if (*now_filled == 0) {
8068                                                 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8069                                                 *now_filled = 1;
8070                                                 *now = net->last_sent_time;
8071                                         } else {
8072                                                 net->last_sent_time = *now;
8073                                         }
8074                                         hbflag = 0;
8075                                         /*
8076                                          * increase the number we sent, if a
8077                                          * cookie is sent we don't tell them
8078                                          * any was sent out.
8079                                          */
8080                                         outchain = endoutchain = NULL;
8081                                         auth = NULL;
8082                                         auth_offset = 0;
8083                                         if (!no_out_cnt)
8084                                                 *num_out += ctl_cnt;
8085                                         /* recalc a clean slate and setup */
8086                                         switch (net->ro._l_addr.sa.sa_family) {
8087 #ifdef INET
8088                                         case AF_INET:
8089                                                 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8090                                                 break;
8091 #endif
8092 #ifdef INET6
8093                                         case AF_INET6:
8094                                                 mtu = net->mtu - SCTP_MIN_OVERHEAD;
8095                                                 break;
8096 #endif
8097                                         default:
8098                                                 /* TSNH */
8099                                                 mtu = net->mtu;
8100                                                 break;
8101                                         }
8102                                         to_out = 0;
8103                                         no_fragmentflg = 1;
8104                                 }
8105                         }
8106                 }
8107                 /************************/
8108                 /* Control transmission */
8109                 /************************/
8110                 /* Now first lets go through the control queue */
8111                 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) {
8112                         if ((sack_goes_to) &&
8113                             (chk->rec.chunk_id.id == SCTP_ECN_ECHO) &&
8114                             (chk->whoTo != sack_goes_to)) {
8115                                 /*
8116                                  * if we have a sack in queue, and we are
8117                                  * looking at an ecn echo that is NOT queued
8118                                  * to where the sack is going..
8119                                  */
8120                                 if (chk->whoTo == net) {
8121                                         /*
8122                                          * Don't transmit it to where its
8123                                          * going (current net)
8124                                          */
8125                                         continue;
8126                                 } else if (sack_goes_to == net) {
8127                                         /*
8128                                          * But do transmit it to this
8129                                          * address
8130                                          */
8131                                         goto skip_net_check;
8132                                 }
8133                         }
8134                         if (chk->whoTo == NULL) {
8135                                 if (asoc->alternate == NULL) {
8136                                         if (asoc->primary_destination != net) {
8137                                                 continue;
8138                                         }
8139                                 } else {
8140                                         if (asoc->alternate != net) {
8141                                                 continue;
8142                                         }
8143                                 }
8144                         } else {
8145                                 if (chk->whoTo != net) {
8146                                         continue;
8147                                 }
8148                         }
8149         skip_net_check:
8150                         if (chk->data == NULL) {
8151                                 continue;
8152                         }
8153                         if (chk->sent != SCTP_DATAGRAM_UNSENT) {
8154                                 /*
8155                                  * It must be unsent. Cookies and ASCONF's
8156                                  * hang around but there timers will force
8157                                  * when marked for resend.
8158                                  */
8159                                 continue;
8160                         }
8161                         /*
8162                          * if no AUTH is yet included and this chunk
8163                          * requires it, make sure to account for it.  We
8164                          * don't apply the size until the AUTH chunk is
8165                          * actually added below in case there is no room for
8166                          * this chunk. NOTE: we overload the use of "omtu"
8167                          * here
8168                          */
8169                         if ((auth == NULL) &&
8170                             sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8171                             stcb->asoc.peer_auth_chunks)) {
8172                                 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8173                         } else
8174                                 omtu = 0;
8175                         /* Here we do NOT factor the r_mtu */
8176                         if ((chk->send_size <= (int)(mtu - omtu)) ||
8177                             (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
8178                                 /*
8179                                  * We probably should glom the mbuf chain
8180                                  * from the chk->data for control but the
8181                                  * problem is it becomes yet one more level
8182                                  * of tracking to do if for some reason
8183                                  * output fails. Then I have got to
8184                                  * reconstruct the merged control chain.. el
8185                                  * yucko.. for now we take the easy way and
8186                                  * do the copy
8187                                  */
8188                                 /*
8189                                  * Add an AUTH chunk, if chunk requires it
8190                                  * save the offset into the chain for AUTH
8191                                  */
8192                                 if ((auth == NULL) &&
8193                                     (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
8194                                     stcb->asoc.peer_auth_chunks))) {
8195                                         outchain = sctp_add_auth_chunk(outchain,
8196                                             &endoutchain,
8197                                             &auth,
8198                                             &auth_offset,
8199                                             stcb,
8200                                             chk->rec.chunk_id.id);
8201                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8202                                 }
8203                                 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain,
8204                                     (int)chk->rec.chunk_id.can_take_data,
8205                                     chk->send_size, chk->copy_by_ref);
8206                                 if (outchain == NULL) {
8207                                         *reason_code = 8;
8208                                         SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8209                                         return (ENOMEM);
8210                                 }
8211                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8212                                 /* update our MTU size */
8213                                 if (mtu > (chk->send_size + omtu))
8214                                         mtu -= (chk->send_size + omtu);
8215                                 else
8216                                         mtu = 0;
8217                                 to_out += (chk->send_size + omtu);
8218                                 /* Do clear IP_DF ? */
8219                                 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8220                                         no_fragmentflg = 0;
8221                                 }
8222                                 if (chk->rec.chunk_id.can_take_data)
8223                                         chk->data = NULL;
8224                                 /* Mark things to be removed, if needed */
8225                                 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8226                                     (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) ||  /* EY */
8227                                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) ||
8228                                     (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) ||
8229                                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN) ||
8230                                     (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) ||
8231                                     (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) ||
8232                                     (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) ||
8233                                     (chk->rec.chunk_id.id == SCTP_ECN_CWR) ||
8234                                     (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) ||
8235                                     (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) {
8236                                         if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) {
8237                                                 hbflag = 1;
8238                                         }
8239                                         /* remove these chunks at the end */
8240                                         if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) ||
8241                                             (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) {
8242                                                 /* turn off the timer */
8243                                                 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
8244                                                         sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
8245                                                             inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1);
8246                                                 }
8247                                         }
8248                                         ctl_cnt++;
8249                                 } else {
8250                                         /*
8251                                          * Other chunks, since they have
8252                                          * timers running (i.e. COOKIE) we
8253                                          * just "trust" that it gets sent or
8254                                          * retransmitted.
8255                                          */
8256                                         ctl_cnt++;
8257                                         if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
8258                                                 cookie = 1;
8259                                                 no_out_cnt = 1;
8260                                         } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) {
8261                                                 /*
8262                                                  * Increment ecne send count
8263                                                  * here this means we may be
8264                                                  * over-zealous in our
8265                                                  * counting if the send
8266                                                  * fails, but its the best
8267                                                  * place to do it (we used
8268                                                  * to do it in the queue of
8269                                                  * the chunk, but that did
8270                                                  * not tell how many times
8271                                                  * it was sent.
8272                                                  */
8273                                                 SCTP_STAT_INCR(sctps_sendecne);
8274                                         }
8275                                         chk->sent = SCTP_DATAGRAM_SENT;
8276                                         if (chk->whoTo == NULL) {
8277                                                 chk->whoTo = net;
8278                                                 atomic_add_int(&net->ref_count, 1);
8279                                         }
8280                                         chk->snd_count++;
8281                                 }
8282                                 if (mtu == 0) {
8283                                         /*
8284                                          * Ok we are out of room but we can
8285                                          * output without effecting the
8286                                          * flight size since this little guy
8287                                          * is a control only packet.
8288                                          */
8289                                         if (asconf) {
8290                                                 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net);
8291                                                 /*
8292                                                  * do NOT clear the asconf
8293                                                  * flag as it is used to do
8294                                                  * appropriate source
8295                                                  * address selection.
8296                                                  */
8297                                         }
8298                                         if (cookie) {
8299                                                 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8300                                                 cookie = 0;
8301                                         }
8302                                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
8303                                             (struct sockaddr *)&net->ro._l_addr,
8304                                             outchain,
8305                                             auth_offset, auth,
8306                                             stcb->asoc.authinfo.active_keyid,
8307                                             no_fragmentflg, 0, asconf,
8308                                             inp->sctp_lport, stcb->rport,
8309                                             htonl(stcb->asoc.peer_vtag),
8310                                             net->port, NULL,
8311                                             0, 0,
8312                                             so_locked))) {
8313                                                 if (error == ENOBUFS) {
8314                                                         asoc->ifp_had_enobuf = 1;
8315                                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8316                                                 }
8317                                                 if (from_where == 0) {
8318                                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8319                                                 }
8320                                                 /* error, could not output */
8321                                                 if (hbflag) {
8322                                                         if (*now_filled == 0) {
8323                                                                 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8324                                                                 *now_filled = 1;
8325                                                                 *now = net->last_sent_time;
8326                                                         } else {
8327                                                                 net->last_sent_time = *now;
8328                                                         }
8329                                                         hbflag = 0;
8330                                                 }
8331                                                 if (error == EHOSTUNREACH) {
8332                                                         /*
8333                                                          * Destination went
8334                                                          * unreachable
8335                                                          * during this send
8336                                                          */
8337                                                         sctp_move_chunks_from_net(stcb, net);
8338                                                 }
8339                                                 *reason_code = 7;
8340                                                 continue;
8341                                         } else
8342                                                 asoc->ifp_had_enobuf = 0;
8343                                         /* Only HB or ASCONF advances time */
8344                                         if (hbflag) {
8345                                                 if (*now_filled == 0) {
8346                                                         (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8347                                                         *now_filled = 1;
8348                                                         *now = net->last_sent_time;
8349                                                 } else {
8350                                                         net->last_sent_time = *now;
8351                                                 }
8352                                                 hbflag = 0;
8353                                         }
8354                                         /*
8355                                          * increase the number we sent, if a
8356                                          * cookie is sent we don't tell them
8357                                          * any was sent out.
8358                                          */
8359                                         outchain = endoutchain = NULL;
8360                                         auth = NULL;
8361                                         auth_offset = 0;
8362                                         if (!no_out_cnt)
8363                                                 *num_out += ctl_cnt;
8364                                         /* recalc a clean slate and setup */
8365                                         switch (net->ro._l_addr.sa.sa_family) {
8366 #ifdef INET
8367                                         case AF_INET:
8368                                                 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
8369                                                 break;
8370 #endif
8371 #ifdef INET6
8372                                         case AF_INET6:
8373                                                 mtu = net->mtu - SCTP_MIN_OVERHEAD;
8374                                                 break;
8375 #endif
8376                                         default:
8377                                                 /* TSNH */
8378                                                 mtu = net->mtu;
8379                                                 break;
8380                                         }
8381                                         to_out = 0;
8382                                         no_fragmentflg = 1;
8383                                 }
8384                         }
8385                 }
8386                 /* JRI: if dest is in PF state, do not send data to it */
8387                 if ((asoc->sctp_cmt_on_off > 0) &&
8388                     (net != stcb->asoc.alternate) &&
8389                     (net->dest_state & SCTP_ADDR_PF)) {
8390                         goto no_data_fill;
8391                 }
8392                 if (net->flight_size >= net->cwnd) {
8393                         goto no_data_fill;
8394                 }
8395                 if ((asoc->sctp_cmt_on_off > 0) &&
8396                     (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) &&
8397                     (net->flight_size > max_rwnd_per_dest)) {
8398                         goto no_data_fill;
8399                 }
8400                 /*
8401                  * We need a specific accounting for the usage of the send
8402                  * buffer. We also need to check the number of messages per
8403                  * net. For now, this is better than nothing and it disabled
8404                  * by default...
8405                  */
8406                 if ((asoc->sctp_cmt_on_off > 0) &&
8407                     (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) &&
8408                     (max_send_per_dest > 0) &&
8409                     (net->flight_size > max_send_per_dest)) {
8410                         goto no_data_fill;
8411                 }
8412                 /*********************/
8413                 /* Data transmission */
8414                 /*********************/
8415                 /*
8416                  * if AUTH for DATA is required and no AUTH has been added
8417                  * yet, account for this in the mtu now... if no data can be
8418                  * bundled, this adjustment won't matter anyways since the
8419                  * packet will be going out...
8420                  */
8421                 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA,
8422                     stcb->asoc.peer_auth_chunks);
8423                 if (data_auth_reqd && (auth == NULL)) {
8424                         mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
8425                 }
8426                 /* now lets add any data within the MTU constraints */
8427                 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) {
8428 #ifdef INET
8429                 case AF_INET:
8430                         if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr)))
8431                                 omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr));
8432                         else
8433                                 omtu = 0;
8434                         break;
8435 #endif
8436 #ifdef INET6
8437                 case AF_INET6:
8438                         if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)))
8439                                 omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr));
8440                         else
8441                                 omtu = 0;
8442                         break;
8443 #endif
8444                 default:
8445                         /* TSNH */
8446                         omtu = 0;
8447                         break;
8448                 }
8449                 if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) &&
8450                     (skip_data_for_this_net == 0)) ||
8451                     (cookie)) {
8452                         TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) {
8453                                 if (no_data_chunks) {
8454                                         /* let only control go out */
8455                                         *reason_code = 1;
8456                                         break;
8457                                 }
8458                                 if (net->flight_size >= net->cwnd) {
8459                                         /* skip this net, no room for data */
8460                                         *reason_code = 2;
8461                                         break;
8462                                 }
8463                                 if ((chk->whoTo != NULL) &&
8464                                     (chk->whoTo != net)) {
8465                                         /* Don't send the chunk on this net */
8466                                         continue;
8467                                 }
8468                                 if (asoc->sctp_cmt_on_off == 0) {
8469                                         if ((asoc->alternate) &&
8470                                             (asoc->alternate != net) &&
8471                                             (chk->whoTo == NULL)) {
8472                                                 continue;
8473                                         } else if ((net != asoc->primary_destination) &&
8474                                                     (asoc->alternate == NULL) &&
8475                                             (chk->whoTo == NULL)) {
8476                                                 continue;
8477                                         }
8478                                 }
8479                                 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) {
8480                                         /*-
8481                                          * strange, we have a chunk that is
8482                                          * to big for its destination and
8483                                          * yet no fragment ok flag.
8484                                          * Something went wrong when the
8485                                          * PMTU changed...we did not mark
8486                                          * this chunk for some reason?? I
8487                                          * will fix it here by letting IP
8488                                          * fragment it for now and printing
8489                                          * a warning. This really should not
8490                                          * happen ...
8491                                          */
8492                                         SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n",
8493                                             chk->send_size, mtu);
8494                                         chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
8495                                 }
8496                                 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) &&
8497                                     ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) {
8498                                         struct sctp_data_chunk *dchkh;
8499
8500                                         dchkh = mtod(chk->data, struct sctp_data_chunk *);
8501                                         dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY;
8502                                 }
8503                                 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) ||
8504                                     ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) {
8505                                         /* ok we will add this one */
8506
8507                                         /*
8508                                          * Add an AUTH chunk, if chunk
8509                                          * requires it, save the offset into
8510                                          * the chain for AUTH
8511                                          */
8512                                         if (data_auth_reqd) {
8513                                                 if (auth == NULL) {
8514                                                         outchain = sctp_add_auth_chunk(outchain,
8515                                                             &endoutchain,
8516                                                             &auth,
8517                                                             &auth_offset,
8518                                                             stcb,
8519                                                             SCTP_DATA);
8520                                                         auth_keyid = chk->auth_keyid;
8521                                                         override_ok = 0;
8522                                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
8523                                                 } else if (override_ok) {
8524                                                         /*
8525                                                          * use this data's
8526                                                          * keyid
8527                                                          */
8528                                                         auth_keyid = chk->auth_keyid;
8529                                                         override_ok = 0;
8530                                                 } else if (auth_keyid != chk->auth_keyid) {
8531                                                         /*
8532                                                          * different keyid,
8533                                                          * so done bundling
8534                                                          */
8535                                                         break;
8536                                                 }
8537                                         }
8538                                         outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0,
8539                                             chk->send_size, chk->copy_by_ref);
8540                                         if (outchain == NULL) {
8541                                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n");
8542                                                 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
8543                                                         sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8544                                                 }
8545                                                 *reason_code = 3;
8546                                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
8547                                                 return (ENOMEM);
8548                                         }
8549                                         /* upate our MTU size */
8550                                         /* Do clear IP_DF ? */
8551                                         if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
8552                                                 no_fragmentflg = 0;
8553                                         }
8554                                         /* unsigned subtraction of mtu */
8555                                         if (mtu > chk->send_size)
8556                                                 mtu -= chk->send_size;
8557                                         else
8558                                                 mtu = 0;
8559                                         /* unsigned subtraction of r_mtu */
8560                                         if (r_mtu > chk->send_size)
8561                                                 r_mtu -= chk->send_size;
8562                                         else
8563                                                 r_mtu = 0;
8564
8565                                         to_out += chk->send_size;
8566                                         if ((to_out > mx_mtu) && no_fragmentflg) {
8567 #ifdef INVARIANTS
8568                                                 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out);
8569 #else
8570                                                 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n",
8571                                                     mx_mtu, to_out);
8572 #endif
8573                                         }
8574                                         chk->window_probe = 0;
8575                                         data_list[bundle_at++] = chk;
8576                                         if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
8577                                                 break;
8578                                         }
8579                                         if (chk->sent == SCTP_DATAGRAM_UNSENT) {
8580                                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
8581                                                         SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks);
8582                                                 } else {
8583                                                         SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks);
8584                                                 }
8585                                                 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) &&
8586                                                     ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0))
8587                                                         /*
8588                                                          * Count number of
8589                                                          * user msg's that
8590                                                          * were fragmented
8591                                                          * we do this by
8592                                                          * counting when we
8593                                                          * see a LAST
8594                                                          * fragment only.
8595                                                          */
8596                                                         SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs);
8597                                         }
8598                                         if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) {
8599                                                 if ((one_chunk) && (stcb->asoc.total_flight == 0)) {
8600                                                         data_list[0]->window_probe = 1;
8601                                                         net->window_probe = 1;
8602                                                 }
8603                                                 break;
8604                                         }
8605                                 } else {
8606                                         /*
8607                                          * Must be sent in order of the
8608                                          * TSN's (on a network)
8609                                          */
8610                                         break;
8611                                 }
8612                         }       /* for (chunk gather loop for this net) */
8613                 }               /* if asoc.state OPEN */
8614 no_data_fill:
8615                 /* Is there something to send for this destination? */
8616                 if (outchain) {
8617                         /* We may need to start a control timer or two */
8618                         if (asconf) {
8619                                 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp,
8620                                     stcb, net);
8621                                 /*
8622                                  * do NOT clear the asconf flag as it is
8623                                  * used to do appropriate source address
8624                                  * selection.
8625                                  */
8626                         }
8627                         if (cookie) {
8628                                 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net);
8629                                 cookie = 0;
8630                         }
8631                         /* must start a send timer if data is being sent */
8632                         if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) {
8633                                 /*
8634                                  * no timer running on this destination
8635                                  * restart it.
8636                                  */
8637                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
8638                         }
8639                         /* Now send it, if there is anything to send :> */
8640                         if ((error = sctp_lowlevel_chunk_output(inp,
8641                             stcb,
8642                             net,
8643                             (struct sockaddr *)&net->ro._l_addr,
8644                             outchain,
8645                             auth_offset,
8646                             auth,
8647                             auth_keyid,
8648                             no_fragmentflg,
8649                             bundle_at,
8650                             asconf,
8651                             inp->sctp_lport, stcb->rport,
8652                             htonl(stcb->asoc.peer_vtag),
8653                             net->port, NULL,
8654                             0, 0,
8655                             so_locked))) {
8656                                 /* error, we could not output */
8657                                 if (error == ENOBUFS) {
8658                                         SCTP_STAT_INCR(sctps_lowlevelerr);
8659                                         asoc->ifp_had_enobuf = 1;
8660                                 }
8661                                 if (from_where == 0) {
8662                                         SCTP_STAT_INCR(sctps_lowlevelerrusr);
8663                                 }
8664                                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error);
8665                                 if (hbflag) {
8666                                         if (*now_filled == 0) {
8667                                                 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8668                                                 *now_filled = 1;
8669                                                 *now = net->last_sent_time;
8670                                         } else {
8671                                                 net->last_sent_time = *now;
8672                                         }
8673                                         hbflag = 0;
8674                                 }
8675                                 if (error == EHOSTUNREACH) {
8676                                         /*
8677                                          * Destination went unreachable
8678                                          * during this send
8679                                          */
8680                                         sctp_move_chunks_from_net(stcb, net);
8681                                 }
8682                                 *reason_code = 6;
8683                                 /*-
8684                                  * I add this line to be paranoid. As far as
8685                                  * I can tell the continue, takes us back to
8686                                  * the top of the for, but just to make sure
8687                                  * I will reset these again here.
8688                                  */
8689                                 ctl_cnt = bundle_at = 0;
8690                                 continue;       /* This takes us back to the
8691                                                  * for() for the nets. */
8692                         } else {
8693                                 asoc->ifp_had_enobuf = 0;
8694                         }
8695                         endoutchain = NULL;
8696                         auth = NULL;
8697                         auth_offset = 0;
8698                         if (bundle_at || hbflag) {
8699                                 /* For data/asconf and hb set time */
8700                                 if (*now_filled == 0) {
8701                                         (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time);
8702                                         *now_filled = 1;
8703                                         *now = net->last_sent_time;
8704                                 } else {
8705                                         net->last_sent_time = *now;
8706                                 }
8707                         }
8708                         if (!no_out_cnt) {
8709                                 *num_out += (ctl_cnt + bundle_at);
8710                         }
8711                         if (bundle_at) {
8712                                 /* setup for a RTO measurement */
8713                                 tsns_sent = data_list[0]->rec.data.TSN_seq;
8714                                 /* fill time if not already filled */
8715                                 if (*now_filled == 0) {
8716                                         (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
8717                                         *now_filled = 1;
8718                                         *now = asoc->time_last_sent;
8719                                 } else {
8720                                         asoc->time_last_sent = *now;
8721                                 }
8722                                 if (net->rto_needed) {
8723                                         data_list[0]->do_rtt = 1;
8724                                         net->rto_needed = 0;
8725                                 }
8726                                 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at);
8727                                 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net);
8728                         }
8729                         if (one_chunk) {
8730                                 break;
8731                         }
8732                 }
8733                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8734                         sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND);
8735                 }
8736         }
8737         if (old_start_at == NULL) {
8738                 old_start_at = start_at;
8739                 start_at = TAILQ_FIRST(&asoc->nets);
8740                 if (old_start_at)
8741                         goto again_one_more_time;
8742         }
8743         /*
8744          * At the end there should be no NON timed chunks hanging on this
8745          * queue.
8746          */
8747         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
8748                 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND);
8749         }
8750         if ((*num_out == 0) && (*reason_code == 0)) {
8751                 *reason_code = 4;
8752         } else {
8753                 *reason_code = 5;
8754         }
8755         sctp_clean_up_ctl(stcb, asoc, so_locked);
8756         return (0);
8757 }
8758
8759 void
8760 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err)
8761 {
8762         /*-
8763          * Prepend a OPERATIONAL_ERROR chunk header and put on the end of
8764          * the control chunk queue.
8765          */
8766         struct sctp_chunkhdr *hdr;
8767         struct sctp_tmit_chunk *chk;
8768         struct mbuf *mat;
8769
8770         SCTP_TCB_LOCK_ASSERT(stcb);
8771         sctp_alloc_a_chunk(stcb, chk);
8772         if (chk == NULL) {
8773                 /* no memory */
8774                 sctp_m_freem(op_err);
8775                 return;
8776         }
8777         chk->copy_by_ref = 0;
8778         SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT);
8779         if (op_err == NULL) {
8780                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
8781                 return;
8782         }
8783         chk->send_size = 0;
8784         mat = op_err;
8785         while (mat != NULL) {
8786                 chk->send_size += SCTP_BUF_LEN(mat);
8787                 mat = SCTP_BUF_NEXT(mat);
8788         }
8789         chk->rec.chunk_id.id = SCTP_OPERATION_ERROR;
8790         chk->rec.chunk_id.can_take_data = 1;
8791         chk->sent = SCTP_DATAGRAM_UNSENT;
8792         chk->snd_count = 0;
8793         chk->flags = 0;
8794         chk->asoc = &stcb->asoc;
8795         chk->data = op_err;
8796         chk->whoTo = NULL;
8797         hdr = mtod(op_err, struct sctp_chunkhdr *);
8798         hdr->chunk_type = SCTP_OPERATION_ERROR;
8799         hdr->chunk_flags = 0;
8800         hdr->chunk_length = htons(chk->send_size);
8801         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue,
8802             chk,
8803             sctp_next);
8804         chk->asoc->ctrl_queue_cnt++;
8805 }
8806
8807 int
8808 sctp_send_cookie_echo(struct mbuf *m,
8809     int offset,
8810     struct sctp_tcb *stcb,
8811     struct sctp_nets *net)
8812 {
8813         /*-
8814          * pull out the cookie and put it at the front of the control chunk
8815          * queue.
8816          */
8817         int at;
8818         struct mbuf *cookie;
8819         struct sctp_paramhdr parm, *phdr;
8820         struct sctp_chunkhdr *hdr;
8821         struct sctp_tmit_chunk *chk;
8822         uint16_t ptype, plen;
8823
8824         /* First find the cookie in the param area */
8825         cookie = NULL;
8826         at = offset + sizeof(struct sctp_init_chunk);
8827
8828         SCTP_TCB_LOCK_ASSERT(stcb);
8829         do {
8830                 phdr = sctp_get_next_param(m, at, &parm, sizeof(parm));
8831                 if (phdr == NULL) {
8832                         return (-3);
8833                 }
8834                 ptype = ntohs(phdr->param_type);
8835                 plen = ntohs(phdr->param_length);
8836                 if (ptype == SCTP_STATE_COOKIE) {
8837                         int pad;
8838
8839                         /* found the cookie */
8840                         if ((pad = (plen % 4))) {
8841                                 plen += 4 - pad;
8842                         }
8843                         cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT);
8844                         if (cookie == NULL) {
8845                                 /* No memory */
8846                                 return (-2);
8847                         }
8848 #ifdef SCTP_MBUF_LOGGING
8849                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8850                                 struct mbuf *mat;
8851
8852                                 for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) {
8853                                         if (SCTP_BUF_IS_EXTENDED(mat)) {
8854                                                 sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8855                                         }
8856                                 }
8857                         }
8858 #endif
8859                         break;
8860                 }
8861                 at += SCTP_SIZE32(plen);
8862         } while (phdr);
8863         if (cookie == NULL) {
8864                 /* Did not find the cookie */
8865                 return (-3);
8866         }
8867         /* ok, we got the cookie lets change it into a cookie echo chunk */
8868
8869         /* first the change from param to cookie */
8870         hdr = mtod(cookie, struct sctp_chunkhdr *);
8871         hdr->chunk_type = SCTP_COOKIE_ECHO;
8872         hdr->chunk_flags = 0;
8873         /* get the chunk stuff now and place it in the FRONT of the queue */
8874         sctp_alloc_a_chunk(stcb, chk);
8875         if (chk == NULL) {
8876                 /* no memory */
8877                 sctp_m_freem(cookie);
8878                 return (-5);
8879         }
8880         chk->copy_by_ref = 0;
8881         chk->send_size = plen;
8882         chk->rec.chunk_id.id = SCTP_COOKIE_ECHO;
8883         chk->rec.chunk_id.can_take_data = 0;
8884         chk->sent = SCTP_DATAGRAM_UNSENT;
8885         chk->snd_count = 0;
8886         chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
8887         chk->asoc = &stcb->asoc;
8888         chk->data = cookie;
8889         chk->whoTo = net;
8890         atomic_add_int(&chk->whoTo->ref_count, 1);
8891         TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next);
8892         chk->asoc->ctrl_queue_cnt++;
8893         return (0);
8894 }
8895
8896 void
8897 sctp_send_heartbeat_ack(struct sctp_tcb *stcb,
8898     struct mbuf *m,
8899     int offset,
8900     int chk_length,
8901     struct sctp_nets *net)
8902 {
8903         /*
8904          * take a HB request and make it into a HB ack and send it.
8905          */
8906         struct mbuf *outchain;
8907         struct sctp_chunkhdr *chdr;
8908         struct sctp_tmit_chunk *chk;
8909
8910
8911         if (net == NULL)
8912                 /* must have a net pointer */
8913                 return;
8914
8915         outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT);
8916         if (outchain == NULL) {
8917                 /* gak out of memory */
8918                 return;
8919         }
8920 #ifdef SCTP_MBUF_LOGGING
8921         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
8922                 struct mbuf *mat;
8923
8924                 for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) {
8925                         if (SCTP_BUF_IS_EXTENDED(mat)) {
8926                                 sctp_log_mb(mat, SCTP_MBUF_ICOPY);
8927                         }
8928                 }
8929         }
8930 #endif
8931         chdr = mtod(outchain, struct sctp_chunkhdr *);
8932         chdr->chunk_type = SCTP_HEARTBEAT_ACK;
8933         chdr->chunk_flags = 0;
8934         if (chk_length % 4) {
8935                 /* need pad */
8936                 uint32_t cpthis = 0;
8937                 int padlen;
8938
8939                 padlen = 4 - (chk_length % 4);
8940                 m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis);
8941         }
8942         sctp_alloc_a_chunk(stcb, chk);
8943         if (chk == NULL) {
8944                 /* no memory */
8945                 sctp_m_freem(outchain);
8946                 return;
8947         }
8948         chk->copy_by_ref = 0;
8949         chk->send_size = chk_length;
8950         chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK;
8951         chk->rec.chunk_id.can_take_data = 1;
8952         chk->sent = SCTP_DATAGRAM_UNSENT;
8953         chk->snd_count = 0;
8954         chk->flags = 0;
8955         chk->asoc = &stcb->asoc;
8956         chk->data = outchain;
8957         chk->whoTo = net;
8958         atomic_add_int(&chk->whoTo->ref_count, 1);
8959         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
8960         chk->asoc->ctrl_queue_cnt++;
8961 }
8962
8963 void
8964 sctp_send_cookie_ack(struct sctp_tcb *stcb)
8965 {
8966         /* formulate and queue a cookie-ack back to sender */
8967         struct mbuf *cookie_ack;
8968         struct sctp_chunkhdr *hdr;
8969         struct sctp_tmit_chunk *chk;
8970
8971         SCTP_TCB_LOCK_ASSERT(stcb);
8972
8973         cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
8974         if (cookie_ack == NULL) {
8975                 /* no mbuf's */
8976                 return;
8977         }
8978         SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD);
8979         sctp_alloc_a_chunk(stcb, chk);
8980         if (chk == NULL) {
8981                 /* no memory */
8982                 sctp_m_freem(cookie_ack);
8983                 return;
8984         }
8985         chk->copy_by_ref = 0;
8986         chk->send_size = sizeof(struct sctp_chunkhdr);
8987         chk->rec.chunk_id.id = SCTP_COOKIE_ACK;
8988         chk->rec.chunk_id.can_take_data = 1;
8989         chk->sent = SCTP_DATAGRAM_UNSENT;
8990         chk->snd_count = 0;
8991         chk->flags = 0;
8992         chk->asoc = &stcb->asoc;
8993         chk->data = cookie_ack;
8994         if (chk->asoc->last_control_chunk_from != NULL) {
8995                 chk->whoTo = chk->asoc->last_control_chunk_from;
8996                 atomic_add_int(&chk->whoTo->ref_count, 1);
8997         } else {
8998                 chk->whoTo = NULL;
8999         }
9000         hdr = mtod(cookie_ack, struct sctp_chunkhdr *);
9001         hdr->chunk_type = SCTP_COOKIE_ACK;
9002         hdr->chunk_flags = 0;
9003         hdr->chunk_length = htons(chk->send_size);
9004         SCTP_BUF_LEN(cookie_ack) = chk->send_size;
9005         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9006         chk->asoc->ctrl_queue_cnt++;
9007         return;
9008 }
9009
9010
9011 void
9012 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net)
9013 {
9014         /* formulate and queue a SHUTDOWN-ACK back to the sender */
9015         struct mbuf *m_shutdown_ack;
9016         struct sctp_shutdown_ack_chunk *ack_cp;
9017         struct sctp_tmit_chunk *chk;
9018
9019         m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9020         if (m_shutdown_ack == NULL) {
9021                 /* no mbuf's */
9022                 return;
9023         }
9024         SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD);
9025         sctp_alloc_a_chunk(stcb, chk);
9026         if (chk == NULL) {
9027                 /* no memory */
9028                 sctp_m_freem(m_shutdown_ack);
9029                 return;
9030         }
9031         chk->copy_by_ref = 0;
9032         chk->send_size = sizeof(struct sctp_chunkhdr);
9033         chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK;
9034         chk->rec.chunk_id.can_take_data = 1;
9035         chk->sent = SCTP_DATAGRAM_UNSENT;
9036         chk->snd_count = 0;
9037         chk->flags = 0;
9038         chk->asoc = &stcb->asoc;
9039         chk->data = m_shutdown_ack;
9040         chk->whoTo = net;
9041         if (chk->whoTo) {
9042                 atomic_add_int(&chk->whoTo->ref_count, 1);
9043         }
9044         ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *);
9045         ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
9046         ack_cp->ch.chunk_flags = 0;
9047         ack_cp->ch.chunk_length = htons(chk->send_size);
9048         SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size;
9049         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9050         chk->asoc->ctrl_queue_cnt++;
9051         return;
9052 }
9053
9054 void
9055 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net)
9056 {
9057         /* formulate and queue a SHUTDOWN to the sender */
9058         struct mbuf *m_shutdown;
9059         struct sctp_shutdown_chunk *shutdown_cp;
9060         struct sctp_tmit_chunk *chk;
9061
9062         m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER);
9063         if (m_shutdown == NULL) {
9064                 /* no mbuf's */
9065                 return;
9066         }
9067         SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD);
9068         sctp_alloc_a_chunk(stcb, chk);
9069         if (chk == NULL) {
9070                 /* no memory */
9071                 sctp_m_freem(m_shutdown);
9072                 return;
9073         }
9074         chk->copy_by_ref = 0;
9075         chk->send_size = sizeof(struct sctp_shutdown_chunk);
9076         chk->rec.chunk_id.id = SCTP_SHUTDOWN;
9077         chk->rec.chunk_id.can_take_data = 1;
9078         chk->sent = SCTP_DATAGRAM_UNSENT;
9079         chk->snd_count = 0;
9080         chk->flags = 0;
9081         chk->asoc = &stcb->asoc;
9082         chk->data = m_shutdown;
9083         chk->whoTo = net;
9084         if (chk->whoTo) {
9085                 atomic_add_int(&chk->whoTo->ref_count, 1);
9086         }
9087         shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *);
9088         shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
9089         shutdown_cp->ch.chunk_flags = 0;
9090         shutdown_cp->ch.chunk_length = htons(chk->send_size);
9091         shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn);
9092         SCTP_BUF_LEN(m_shutdown) = chk->send_size;
9093         TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9094         chk->asoc->ctrl_queue_cnt++;
9095         return;
9096 }
9097
9098 void
9099 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked)
9100 {
9101         /*
9102          * formulate and queue an ASCONF to the peer. ASCONF parameters
9103          * should be queued on the assoc queue.
9104          */
9105         struct sctp_tmit_chunk *chk;
9106         struct mbuf *m_asconf;
9107         int len;
9108
9109         SCTP_TCB_LOCK_ASSERT(stcb);
9110
9111         if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) &&
9112             (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) {
9113                 /* can't send a new one if there is one in flight already */
9114                 return;
9115         }
9116         /* compose an ASCONF chunk, maximum length is PMTU */
9117         m_asconf = sctp_compose_asconf(stcb, &len, addr_locked);
9118         if (m_asconf == NULL) {
9119                 return;
9120         }
9121         sctp_alloc_a_chunk(stcb, chk);
9122         if (chk == NULL) {
9123                 /* no memory */
9124                 sctp_m_freem(m_asconf);
9125                 return;
9126         }
9127         chk->copy_by_ref = 0;
9128         chk->data = m_asconf;
9129         chk->send_size = len;
9130         chk->rec.chunk_id.id = SCTP_ASCONF;
9131         chk->rec.chunk_id.can_take_data = 0;
9132         chk->sent = SCTP_DATAGRAM_UNSENT;
9133         chk->snd_count = 0;
9134         chk->flags = CHUNK_FLAGS_FRAGMENT_OK;
9135         chk->asoc = &stcb->asoc;
9136         chk->whoTo = net;
9137         if (chk->whoTo) {
9138                 atomic_add_int(&chk->whoTo->ref_count, 1);
9139         }
9140         TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next);
9141         chk->asoc->ctrl_queue_cnt++;
9142         return;
9143 }
9144
9145 void
9146 sctp_send_asconf_ack(struct sctp_tcb *stcb)
9147 {
9148         /*
9149          * formulate and queue a asconf-ack back to sender. the asconf-ack
9150          * must be stored in the tcb.
9151          */
9152         struct sctp_tmit_chunk *chk;
9153         struct sctp_asconf_ack *ack, *latest_ack;
9154         struct mbuf *m_ack;
9155         struct sctp_nets *net = NULL;
9156
9157         SCTP_TCB_LOCK_ASSERT(stcb);
9158         /* Get the latest ASCONF-ACK */
9159         latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead);
9160         if (latest_ack == NULL) {
9161                 return;
9162         }
9163         if (latest_ack->last_sent_to != NULL &&
9164             latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) {
9165                 /* we're doing a retransmission */
9166                 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0);
9167                 if (net == NULL) {
9168                         /* no alternate */
9169                         if (stcb->asoc.last_control_chunk_from == NULL) {
9170                                 if (stcb->asoc.alternate) {
9171                                         net = stcb->asoc.alternate;
9172                                 } else {
9173                                         net = stcb->asoc.primary_destination;
9174                                 }
9175                         } else {
9176                                 net = stcb->asoc.last_control_chunk_from;
9177                         }
9178                 }
9179         } else {
9180                 /* normal case */
9181                 if (stcb->asoc.last_control_chunk_from == NULL) {
9182                         if (stcb->asoc.alternate) {
9183                                 net = stcb->asoc.alternate;
9184                         } else {
9185                                 net = stcb->asoc.primary_destination;
9186                         }
9187                 } else {
9188                         net = stcb->asoc.last_control_chunk_from;
9189                 }
9190         }
9191         latest_ack->last_sent_to = net;
9192
9193         TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) {
9194                 if (ack->data == NULL) {
9195                         continue;
9196                 }
9197                 /* copy the asconf_ack */
9198                 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT);
9199                 if (m_ack == NULL) {
9200                         /* couldn't copy it */
9201                         return;
9202                 }
9203 #ifdef SCTP_MBUF_LOGGING
9204                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
9205                         struct mbuf *mat;
9206
9207                         for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) {
9208                                 if (SCTP_BUF_IS_EXTENDED(mat)) {
9209                                         sctp_log_mb(mat, SCTP_MBUF_ICOPY);
9210                                 }
9211                         }
9212                 }
9213 #endif
9214
9215                 sctp_alloc_a_chunk(stcb, chk);
9216                 if (chk == NULL) {
9217                         /* no memory */
9218                         if (m_ack)
9219                                 sctp_m_freem(m_ack);
9220                         return;
9221                 }
9222                 chk->copy_by_ref = 0;
9223
9224                 chk->whoTo = net;
9225                 if (chk->whoTo) {
9226                         atomic_add_int(&chk->whoTo->ref_count, 1);
9227                 }
9228                 chk->data = m_ack;
9229                 chk->send_size = 0;
9230                 /* Get size */
9231                 chk->send_size = ack->len;
9232                 chk->rec.chunk_id.id = SCTP_ASCONF_ACK;
9233                 chk->rec.chunk_id.can_take_data = 1;
9234                 chk->sent = SCTP_DATAGRAM_UNSENT;
9235                 chk->snd_count = 0;
9236                 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;  /* XXX */
9237                 chk->asoc = &stcb->asoc;
9238
9239                 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next);
9240                 chk->asoc->ctrl_queue_cnt++;
9241         }
9242         return;
9243 }
9244
9245
9246 static int
9247 sctp_chunk_retransmission(struct sctp_inpcb *inp,
9248     struct sctp_tcb *stcb,
9249     struct sctp_association *asoc,
9250     int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked
9251 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9252     SCTP_UNUSED
9253 #endif
9254 )
9255 {
9256         /*-
9257          * send out one MTU of retransmission. If fast_retransmit is
9258          * happening we ignore the cwnd. Otherwise we obey the cwnd and
9259          * rwnd. For a Cookie or Asconf in the control chunk queue we
9260          * retransmit them by themselves.
9261          *
9262          * For data chunks we will pick out the lowest TSN's in the sent_queue
9263          * marked for resend and bundle them all together (up to a MTU of
9264          * destination). The address to send to should have been
9265          * selected/changed where the retransmission was marked (i.e. in FR
9266          * or t3-timeout routines).
9267          */
9268         struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING];
9269         struct sctp_tmit_chunk *chk, *fwd;
9270         struct mbuf *m, *endofchain;
9271         struct sctp_nets *net = NULL;
9272         uint32_t tsns_sent = 0;
9273         int no_fragmentflg, bundle_at, cnt_thru;
9274         unsigned int mtu;
9275         int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started;
9276         struct sctp_auth_chunk *auth = NULL;
9277         uint32_t auth_offset = 0;
9278         uint16_t auth_keyid;
9279         int override_ok = 1;
9280         int data_auth_reqd = 0;
9281         uint32_t dmtu = 0;
9282
9283         SCTP_TCB_LOCK_ASSERT(stcb);
9284         tmr_started = ctl_cnt = bundle_at = error = 0;
9285         no_fragmentflg = 1;
9286         fwd_tsn = 0;
9287         *cnt_out = 0;
9288         fwd = NULL;
9289         endofchain = m = NULL;
9290         auth_keyid = stcb->asoc.authinfo.active_keyid;
9291 #ifdef SCTP_AUDITING_ENABLED
9292         sctp_audit_log(0xC3, 1);
9293 #endif
9294         if ((TAILQ_EMPTY(&asoc->sent_queue)) &&
9295             (TAILQ_EMPTY(&asoc->control_send_queue))) {
9296                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n",
9297                     asoc->sent_queue_retran_cnt);
9298                 asoc->sent_queue_cnt = 0;
9299                 asoc->sent_queue_cnt_removeable = 0;
9300                 /* send back 0/0 so we enter normal transmission */
9301                 *cnt_out = 0;
9302                 return (0);
9303         }
9304         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
9305                 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) ||
9306                     (chk->rec.chunk_id.id == SCTP_STREAM_RESET) ||
9307                     (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) {
9308                         if (chk->sent != SCTP_DATAGRAM_RESEND) {
9309                                 continue;
9310                         }
9311                         if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) {
9312                                 if (chk != asoc->str_reset) {
9313                                         /*
9314                                          * not eligible for retran if its
9315                                          * not ours
9316                                          */
9317                                         continue;
9318                                 }
9319                         }
9320                         ctl_cnt++;
9321                         if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
9322                                 fwd_tsn = 1;
9323                         }
9324                         /*
9325                          * Add an AUTH chunk, if chunk requires it save the
9326                          * offset into the chain for AUTH
9327                          */
9328                         if ((auth == NULL) &&
9329                             (sctp_auth_is_required_chunk(chk->rec.chunk_id.id,
9330                             stcb->asoc.peer_auth_chunks))) {
9331                                 m = sctp_add_auth_chunk(m, &endofchain,
9332                                     &auth, &auth_offset,
9333                                     stcb,
9334                                     chk->rec.chunk_id.id);
9335                                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9336                         }
9337                         m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9338                         break;
9339                 }
9340         }
9341         one_chunk = 0;
9342         cnt_thru = 0;
9343         /* do we have control chunks to retransmit? */
9344         if (m != NULL) {
9345                 /* Start a timer no matter if we suceed or fail */
9346                 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
9347                         sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo);
9348                 } else if (chk->rec.chunk_id.id == SCTP_ASCONF)
9349                         sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo);
9350                 chk->snd_count++;       /* update our count */
9351                 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo,
9352                     (struct sockaddr *)&chk->whoTo->ro._l_addr, m,
9353                     auth_offset, auth, stcb->asoc.authinfo.active_keyid,
9354                     no_fragmentflg, 0, 0,
9355                     inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9356                     chk->whoTo->port, NULL,
9357                     0, 0,
9358                     so_locked))) {
9359                         SCTP_STAT_INCR(sctps_lowlevelerr);
9360                         return (error);
9361                 }
9362                 endofchain = NULL;
9363                 auth = NULL;
9364                 auth_offset = 0;
9365                 /*
9366                  * We don't want to mark the net->sent time here since this
9367                  * we use this for HB and retrans cannot measure RTT
9368                  */
9369                 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */
9370                 *cnt_out += 1;
9371                 chk->sent = SCTP_DATAGRAM_SENT;
9372                 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
9373                 if (fwd_tsn == 0) {
9374                         return (0);
9375                 } else {
9376                         /* Clean up the fwd-tsn list */
9377                         sctp_clean_up_ctl(stcb, asoc, so_locked);
9378                         return (0);
9379                 }
9380         }
9381         /*
9382          * Ok, it is just data retransmission we need to do or that and a
9383          * fwd-tsn with it all.
9384          */
9385         if (TAILQ_EMPTY(&asoc->sent_queue)) {
9386                 return (SCTP_RETRAN_DONE);
9387         }
9388         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) ||
9389             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) {
9390                 /* not yet open, resend the cookie and that is it */
9391                 return (1);
9392         }
9393 #ifdef SCTP_AUDITING_ENABLED
9394         sctp_auditing(20, inp, stcb, NULL);
9395 #endif
9396         data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks);
9397         TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
9398                 if (chk->sent != SCTP_DATAGRAM_RESEND) {
9399                         /* No, not sent to this net or not ready for rtx */
9400                         continue;
9401                 }
9402                 if (chk->data == NULL) {
9403                         SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n",
9404                             chk->rec.data.TSN_seq, chk->snd_count, chk->sent);
9405                         continue;
9406                 }
9407                 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) &&
9408                     (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) {
9409                         /* Gak, we have exceeded max unlucky retran, abort! */
9410                         SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n",
9411                             chk->snd_count,
9412                             SCTP_BASE_SYSCTL(sctp_max_retran_chunk));
9413                         atomic_add_int(&stcb->asoc.refcnt, 1);
9414                         sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked);
9415                         SCTP_TCB_LOCK(stcb);
9416                         atomic_subtract_int(&stcb->asoc.refcnt, 1);
9417                         return (SCTP_RETRAN_EXIT);
9418                 }
9419                 /* pick up the net */
9420                 net = chk->whoTo;
9421                 switch (net->ro._l_addr.sa.sa_family) {
9422 #ifdef INET
9423                 case AF_INET:
9424                         mtu = net->mtu - SCTP_MIN_V4_OVERHEAD;
9425                         break;
9426 #endif
9427 #ifdef INET6
9428                 case AF_INET6:
9429                         mtu = net->mtu - SCTP_MIN_OVERHEAD;
9430                         break;
9431 #endif
9432                 default:
9433                         /* TSNH */
9434                         mtu = net->mtu;
9435                         break;
9436                 }
9437
9438                 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) {
9439                         /* No room in peers rwnd */
9440                         uint32_t tsn;
9441
9442                         tsn = asoc->last_acked_seq + 1;
9443                         if (tsn == chk->rec.data.TSN_seq) {
9444                                 /*
9445                                  * we make a special exception for this
9446                                  * case. The peer has no rwnd but is missing
9447                                  * the lowest chunk.. which is probably what
9448                                  * is holding up the rwnd.
9449                                  */
9450                                 goto one_chunk_around;
9451                         }
9452                         return (1);
9453                 }
9454 one_chunk_around:
9455                 if (asoc->peers_rwnd < mtu) {
9456                         one_chunk = 1;
9457                         if ((asoc->peers_rwnd == 0) &&
9458                             (asoc->total_flight == 0)) {
9459                                 chk->window_probe = 1;
9460                                 chk->whoTo->window_probe = 1;
9461                         }
9462                 }
9463 #ifdef SCTP_AUDITING_ENABLED
9464                 sctp_audit_log(0xC3, 2);
9465 #endif
9466                 bundle_at = 0;
9467                 m = NULL;
9468                 net->fast_retran_ip = 0;
9469                 if (chk->rec.data.doing_fast_retransmit == 0) {
9470                         /*
9471                          * if no FR in progress skip destination that have
9472                          * flight_size > cwnd.
9473                          */
9474                         if (net->flight_size >= net->cwnd) {
9475                                 continue;
9476                         }
9477                 } else {
9478                         /*
9479                          * Mark the destination net to have FR recovery
9480                          * limits put on it.
9481                          */
9482                         *fr_done = 1;
9483                         net->fast_retran_ip = 1;
9484                 }
9485
9486                 /*
9487                  * if no AUTH is yet included and this chunk requires it,
9488                  * make sure to account for it.  We don't apply the size
9489                  * until the AUTH chunk is actually added below in case
9490                  * there is no room for this chunk.
9491                  */
9492                 if (data_auth_reqd && (auth == NULL)) {
9493                         dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9494                 } else
9495                         dmtu = 0;
9496
9497                 if ((chk->send_size <= (mtu - dmtu)) ||
9498                     (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) {
9499                         /* ok we will add this one */
9500                         if (data_auth_reqd) {
9501                                 if (auth == NULL) {
9502                                         m = sctp_add_auth_chunk(m,
9503                                             &endofchain,
9504                                             &auth,
9505                                             &auth_offset,
9506                                             stcb,
9507                                             SCTP_DATA);
9508                                         auth_keyid = chk->auth_keyid;
9509                                         override_ok = 0;
9510                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9511                                 } else if (override_ok) {
9512                                         auth_keyid = chk->auth_keyid;
9513                                         override_ok = 0;
9514                                 } else if (chk->auth_keyid != auth_keyid) {
9515                                         /* different keyid, so done bundling */
9516                                         break;
9517                                 }
9518                         }
9519                         m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref);
9520                         if (m == NULL) {
9521                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9522                                 return (ENOMEM);
9523                         }
9524                         /* Do clear IP_DF ? */
9525                         if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9526                                 no_fragmentflg = 0;
9527                         }
9528                         /* upate our MTU size */
9529                         if (mtu > (chk->send_size + dmtu))
9530                                 mtu -= (chk->send_size + dmtu);
9531                         else
9532                                 mtu = 0;
9533                         data_list[bundle_at++] = chk;
9534                         if (one_chunk && (asoc->total_flight <= 0)) {
9535                                 SCTP_STAT_INCR(sctps_windowprobed);
9536                         }
9537                 }
9538                 if (one_chunk == 0) {
9539                         /*
9540                          * now are there anymore forward from chk to pick
9541                          * up?
9542                          */
9543                         for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) {
9544                                 if (fwd->sent != SCTP_DATAGRAM_RESEND) {
9545                                         /* Nope, not for retran */
9546                                         continue;
9547                                 }
9548                                 if (fwd->whoTo != net) {
9549                                         /* Nope, not the net in question */
9550                                         continue;
9551                                 }
9552                                 if (data_auth_reqd && (auth == NULL)) {
9553                                         dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id);
9554                                 } else
9555                                         dmtu = 0;
9556                                 if (fwd->send_size <= (mtu - dmtu)) {
9557                                         if (data_auth_reqd) {
9558                                                 if (auth == NULL) {
9559                                                         m = sctp_add_auth_chunk(m,
9560                                                             &endofchain,
9561                                                             &auth,
9562                                                             &auth_offset,
9563                                                             stcb,
9564                                                             SCTP_DATA);
9565                                                         auth_keyid = fwd->auth_keyid;
9566                                                         override_ok = 0;
9567                                                         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
9568                                                 } else if (override_ok) {
9569                                                         auth_keyid = fwd->auth_keyid;
9570                                                         override_ok = 0;
9571                                                 } else if (fwd->auth_keyid != auth_keyid) {
9572                                                         /*
9573                                                          * different keyid,
9574                                                          * so done bundling
9575                                                          */
9576                                                         break;
9577                                                 }
9578                                         }
9579                                         m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref);
9580                                         if (m == NULL) {
9581                                                 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
9582                                                 return (ENOMEM);
9583                                         }
9584                                         /* Do clear IP_DF ? */
9585                                         if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) {
9586                                                 no_fragmentflg = 0;
9587                                         }
9588                                         /* upate our MTU size */
9589                                         if (mtu > (fwd->send_size + dmtu))
9590                                                 mtu -= (fwd->send_size + dmtu);
9591                                         else
9592                                                 mtu = 0;
9593                                         data_list[bundle_at++] = fwd;
9594                                         if (bundle_at >= SCTP_MAX_DATA_BUNDLING) {
9595                                                 break;
9596                                         }
9597                                 } else {
9598                                         /* can't fit so we are done */
9599                                         break;
9600                                 }
9601                         }
9602                 }
9603                 /* Is there something to send for this destination? */
9604                 if (m) {
9605                         /*
9606                          * No matter if we fail/or suceed we should start a
9607                          * timer. A failure is like a lost IP packet :-)
9608                          */
9609                         if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9610                                 /*
9611                                  * no timer running on this destination
9612                                  * restart it.
9613                                  */
9614                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9615                                 tmr_started = 1;
9616                         }
9617                         /* Now lets send it, if there is anything to send :> */
9618                         if ((error = sctp_lowlevel_chunk_output(inp, stcb, net,
9619                             (struct sockaddr *)&net->ro._l_addr, m,
9620                             auth_offset, auth, auth_keyid,
9621                             no_fragmentflg, 0, 0,
9622                             inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag),
9623                             net->port, NULL,
9624                             0, 0,
9625                             so_locked))) {
9626                                 /* error, we could not output */
9627                                 SCTP_STAT_INCR(sctps_lowlevelerr);
9628                                 return (error);
9629                         }
9630                         endofchain = NULL;
9631                         auth = NULL;
9632                         auth_offset = 0;
9633                         /* For HB's */
9634                         /*
9635                          * We don't want to mark the net->sent time here
9636                          * since this we use this for HB and retrans cannot
9637                          * measure RTT
9638                          */
9639                         /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */
9640
9641                         /* For auto-close */
9642                         cnt_thru++;
9643                         if (*now_filled == 0) {
9644                                 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent);
9645                                 *now = asoc->time_last_sent;
9646                                 *now_filled = 1;
9647                         } else {
9648                                 asoc->time_last_sent = *now;
9649                         }
9650                         *cnt_out += bundle_at;
9651 #ifdef SCTP_AUDITING_ENABLED
9652                         sctp_audit_log(0xC4, bundle_at);
9653 #endif
9654                         if (bundle_at) {
9655                                 tsns_sent = data_list[0]->rec.data.TSN_seq;
9656                         }
9657                         for (i = 0; i < bundle_at; i++) {
9658                                 SCTP_STAT_INCR(sctps_sendretransdata);
9659                                 data_list[i]->sent = SCTP_DATAGRAM_SENT;
9660                                 /*
9661                                  * When we have a revoked data, and we
9662                                  * retransmit it, then we clear the revoked
9663                                  * flag since this flag dictates if we
9664                                  * subtracted from the fs
9665                                  */
9666                                 if (data_list[i]->rec.data.chunk_was_revoked) {
9667                                         /* Deflate the cwnd */
9668                                         data_list[i]->whoTo->cwnd -= data_list[i]->book_size;
9669                                         data_list[i]->rec.data.chunk_was_revoked = 0;
9670                                 }
9671                                 data_list[i]->snd_count++;
9672                                 sctp_ucount_decr(asoc->sent_queue_retran_cnt);
9673                                 /* record the time */
9674                                 data_list[i]->sent_rcv_time = asoc->time_last_sent;
9675                                 if (data_list[i]->book_size_scale) {
9676                                         /*
9677                                          * need to double the book size on
9678                                          * this one
9679                                          */
9680                                         data_list[i]->book_size_scale = 0;
9681                                         /*
9682                                          * Since we double the booksize, we
9683                                          * must also double the output queue
9684                                          * size, since this get shrunk when
9685                                          * we free by this amount.
9686                                          */
9687                                         atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size);
9688                                         data_list[i]->book_size *= 2;
9689
9690
9691                                 } else {
9692                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
9693                                                 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND,
9694                                                     asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
9695                                         }
9696                                         asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd,
9697                                             (uint32_t) (data_list[i]->send_size +
9698                                             SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)));
9699                                 }
9700                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
9701                                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND,
9702                                             data_list[i]->whoTo->flight_size,
9703                                             data_list[i]->book_size,
9704                                             (uintptr_t) data_list[i]->whoTo,
9705                                             data_list[i]->rec.data.TSN_seq);
9706                                 }
9707                                 sctp_flight_size_increase(data_list[i]);
9708                                 sctp_total_flight_increase(stcb, data_list[i]);
9709                                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
9710                                         /* SWS sender side engages */
9711                                         asoc->peers_rwnd = 0;
9712                                 }
9713                                 if ((i == 0) &&
9714                                     (data_list[i]->rec.data.doing_fast_retransmit)) {
9715                                         SCTP_STAT_INCR(sctps_sendfastretrans);
9716                                         if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) &&
9717                                             (tmr_started == 0)) {
9718                                                 /*-
9719                                                  * ok we just fast-retrans'd
9720                                                  * the lowest TSN, i.e the
9721                                                  * first on the list. In
9722                                                  * this case we want to give
9723                                                  * some more time to get a
9724                                                  * SACK back without a
9725                                                  * t3-expiring.
9726                                                  */
9727                                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net,
9728                                                     SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4);
9729                                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
9730                                         }
9731                                 }
9732                         }
9733                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9734                                 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND);
9735                         }
9736 #ifdef SCTP_AUDITING_ENABLED
9737                         sctp_auditing(21, inp, stcb, NULL);
9738 #endif
9739                 } else {
9740                         /* None will fit */
9741                         return (1);
9742                 }
9743                 if (asoc->sent_queue_retran_cnt <= 0) {
9744                         /* all done we have no more to retran */
9745                         asoc->sent_queue_retran_cnt = 0;
9746                         break;
9747                 }
9748                 if (one_chunk) {
9749                         /* No more room in rwnd */
9750                         return (1);
9751                 }
9752                 /* stop the for loop here. we sent out a packet */
9753                 break;
9754         }
9755         return (0);
9756 }
9757
9758 static void
9759 sctp_timer_validation(struct sctp_inpcb *inp,
9760     struct sctp_tcb *stcb,
9761     struct sctp_association *asoc)
9762 {
9763         struct sctp_nets *net;
9764
9765         /* Validate that a timer is running somewhere */
9766         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9767                 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
9768                         /* Here is a timer */
9769                         return;
9770                 }
9771         }
9772         SCTP_TCB_LOCK_ASSERT(stcb);
9773         /* Gak, we did not have a timer somewhere */
9774         SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n");
9775         if (asoc->alternate) {
9776                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate);
9777         } else {
9778                 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination);
9779         }
9780         return;
9781 }
9782
9783 void
9784 sctp_chunk_output(struct sctp_inpcb *inp,
9785     struct sctp_tcb *stcb,
9786     int from_where,
9787     int so_locked
9788 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
9789     SCTP_UNUSED
9790 #endif
9791 )
9792 {
9793         /*-
9794          * Ok this is the generic chunk service queue. we must do the
9795          * following:
9796          * - See if there are retransmits pending, if so we must
9797          *   do these first.
9798          * - Service the stream queue that is next, moving any
9799          *   message (note I must get a complete message i.e.
9800          *   FIRST/MIDDLE and LAST to the out queue in one pass) and assigning
9801          *   TSN's
9802          * - Check to see if the cwnd/rwnd allows any output, if so we
9803          *   go ahead and fomulate and send the low level chunks. Making sure
9804          *   to combine any control in the control chunk queue also.
9805          */
9806         struct sctp_association *asoc;
9807         struct sctp_nets *net;
9808         int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0;
9809         unsigned int burst_cnt = 0;
9810         struct timeval now;
9811         int now_filled = 0;
9812         int nagle_on;
9813         int frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
9814         int un_sent = 0;
9815         int fr_done;
9816         unsigned int tot_frs = 0;
9817
9818         asoc = &stcb->asoc;
9819         /* The Nagle algorithm is only applied when handling a send call. */
9820         if (from_where == SCTP_OUTPUT_FROM_USR_SEND) {
9821                 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) {
9822                         nagle_on = 0;
9823                 } else {
9824                         nagle_on = 1;
9825                 }
9826         } else {
9827                 nagle_on = 0;
9828         }
9829         SCTP_TCB_LOCK_ASSERT(stcb);
9830
9831         un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight);
9832
9833         if ((un_sent <= 0) &&
9834             (TAILQ_EMPTY(&asoc->control_send_queue)) &&
9835             (TAILQ_EMPTY(&asoc->asconf_send_queue)) &&
9836             (asoc->sent_queue_retran_cnt == 0)) {
9837                 /* Nothing to do unless there is something to be sent left */
9838                 return;
9839         }
9840         /*
9841          * Do we have something to send, data or control AND a sack timer
9842          * running, if so piggy-back the sack.
9843          */
9844         if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
9845                 sctp_send_sack(stcb, so_locked);
9846                 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
9847         }
9848         while (asoc->sent_queue_retran_cnt) {
9849                 /*-
9850                  * Ok, it is retransmission time only, we send out only ONE
9851                  * packet with a single call off to the retran code.
9852                  */
9853                 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) {
9854                         /*-
9855                          * Special hook for handling cookiess discarded
9856                          * by peer that carried data. Send cookie-ack only
9857                          * and then the next call with get the retran's.
9858                          */
9859                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9860                             from_where,
9861                             &now, &now_filled, frag_point, so_locked);
9862                         return;
9863                 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) {
9864                         /* if its not from a HB then do it */
9865                         fr_done = 0;
9866                         ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked);
9867                         if (fr_done) {
9868                                 tot_frs++;
9869                         }
9870                 } else {
9871                         /*
9872                          * its from any other place, we don't allow retran
9873                          * output (only control)
9874                          */
9875                         ret = 1;
9876                 }
9877                 if (ret > 0) {
9878                         /* Can't send anymore */
9879                         /*-
9880                          * now lets push out control by calling med-level
9881                          * output once. this assures that we WILL send HB's
9882                          * if queued too.
9883                          */
9884                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1,
9885                             from_where,
9886                             &now, &now_filled, frag_point, so_locked);
9887 #ifdef SCTP_AUDITING_ENABLED
9888                         sctp_auditing(8, inp, stcb, NULL);
9889 #endif
9890                         sctp_timer_validation(inp, stcb, asoc);
9891                         return;
9892                 }
9893                 if (ret < 0) {
9894                         /*-
9895                          * The count was off.. retran is not happening so do
9896                          * the normal retransmission.
9897                          */
9898 #ifdef SCTP_AUDITING_ENABLED
9899                         sctp_auditing(9, inp, stcb, NULL);
9900 #endif
9901                         if (ret == SCTP_RETRAN_EXIT) {
9902                                 return;
9903                         }
9904                         break;
9905                 }
9906                 if (from_where == SCTP_OUTPUT_FROM_T3) {
9907                         /* Only one transmission allowed out of a timeout */
9908 #ifdef SCTP_AUDITING_ENABLED
9909                         sctp_auditing(10, inp, stcb, NULL);
9910 #endif
9911                         /* Push out any control */
9912                         (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where,
9913                             &now, &now_filled, frag_point, so_locked);
9914                         return;
9915                 }
9916                 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) {
9917                         /* Hit FR burst limit */
9918                         return;
9919                 }
9920                 if ((num_out == 0) && (ret == 0)) {
9921                         /* No more retrans to send */
9922                         break;
9923                 }
9924         }
9925 #ifdef SCTP_AUDITING_ENABLED
9926         sctp_auditing(12, inp, stcb, NULL);
9927 #endif
9928         /* Check for bad destinations, if they exist move chunks around. */
9929         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
9930                 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
9931                         /*-
9932                          * if possible move things off of this address we
9933                          * still may send below due to the dormant state but
9934                          * we try to find an alternate address to send to
9935                          * and if we have one we move all queued data on the
9936                          * out wheel to this alternate address.
9937                          */
9938                         if (net->ref_count > 1)
9939                                 sctp_move_chunks_from_net(stcb, net);
9940                 } else {
9941                         /*-
9942                          * if ((asoc->sat_network) || (net->addr_is_local))
9943                          * { burst_limit = asoc->max_burst *
9944                          * SCTP_SAT_NETWORK_BURST_INCR; }
9945                          */
9946                         if (asoc->max_burst > 0) {
9947                                 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) {
9948                                         if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) {
9949                                                 /*
9950                                                  * JRS - Use the congestion
9951                                                  * control given in the
9952                                                  * congestion control module
9953                                                  */
9954                                                 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst);
9955                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9956                                                         sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED);
9957                                                 }
9958                                                 SCTP_STAT_INCR(sctps_maxburstqueued);
9959                                         }
9960                                         net->fast_retran_ip = 0;
9961                                 } else {
9962                                         if (net->flight_size == 0) {
9963                                                 /*
9964                                                  * Should be decaying the
9965                                                  * cwnd here
9966                                                  */
9967                                                 ;
9968                                         }
9969                                 }
9970                         }
9971                 }
9972
9973         }
9974         burst_cnt = 0;
9975         do {
9976                 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out,
9977                     &reason_code, 0, from_where,
9978                     &now, &now_filled, frag_point, so_locked);
9979                 if (error) {
9980                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error);
9981                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
9982                                 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP);
9983                         }
9984                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9985                                 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES);
9986                                 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES);
9987                         }
9988                         break;
9989                 }
9990                 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out);
9991
9992                 tot_out += num_out;
9993                 burst_cnt++;
9994                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
9995                         sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES);
9996                         if (num_out == 0) {
9997                                 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES);
9998                         }
9999                 }
10000                 if (nagle_on) {
10001                         /*
10002                          * When the Nagle algorithm is used, look at how
10003                          * much is unsent, then if its smaller than an MTU
10004                          * and we have data in flight we stop, except if we
10005                          * are handling a fragmented user message.
10006                          */
10007                         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
10008                             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
10009                         if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) &&
10010                             (stcb->asoc.total_flight > 0) &&
10011                             ((stcb->asoc.locked_on_sending == NULL) ||
10012                             sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {
10013                                 break;
10014                         }
10015                 }
10016                 if (TAILQ_EMPTY(&asoc->control_send_queue) &&
10017                     TAILQ_EMPTY(&asoc->send_queue) &&
10018                     stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) {
10019                         /* Nothing left to send */
10020                         break;
10021                 }
10022                 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) {
10023                         /* Nothing left to send */
10024                         break;
10025                 }
10026         } while (num_out &&
10027             ((asoc->max_burst == 0) ||
10028             SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) ||
10029             (burst_cnt < asoc->max_burst)));
10030
10031         if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) {
10032                 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) {
10033                         SCTP_STAT_INCR(sctps_maxburstqueued);
10034                         asoc->burst_limit_applied = 1;
10035                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) {
10036                                 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED);
10037                         }
10038                 } else {
10039                         asoc->burst_limit_applied = 0;
10040                 }
10041         }
10042         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
10043                 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES);
10044         }
10045         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n",
10046             tot_out);
10047
10048         /*-
10049          * Now we need to clean up the control chunk chain if a ECNE is on
10050          * it. It must be marked as UNSENT again so next call will continue
10051          * to send it until such time that we get a CWR, to remove it.
10052          */
10053         if (stcb->asoc.ecn_echo_cnt_onq)
10054                 sctp_fix_ecn_echo(asoc);
10055         return;
10056 }
10057
10058
10059 int
10060 sctp_output(
10061     struct sctp_inpcb *inp,
10062     struct mbuf *m,
10063     struct sockaddr *addr,
10064     struct mbuf *control,
10065     struct thread *p,
10066     int flags)
10067 {
10068         if (inp == NULL) {
10069                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10070                 return (EINVAL);
10071         }
10072         if (inp->sctp_socket == NULL) {
10073                 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
10074                 return (EINVAL);
10075         }
10076         return (sctp_sosend(inp->sctp_socket,
10077             addr,
10078             (struct uio *)NULL,
10079             m,
10080             control,
10081             flags, p
10082             ));
10083 }
10084
10085 void
10086 send_forward_tsn(struct sctp_tcb *stcb,
10087     struct sctp_association *asoc)
10088 {
10089         struct sctp_tmit_chunk *chk;
10090         struct sctp_forward_tsn_chunk *fwdtsn;
10091         uint32_t advance_peer_ack_point;
10092
10093         SCTP_TCB_LOCK_ASSERT(stcb);
10094         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10095                 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) {
10096                         /* mark it to unsent */
10097                         chk->sent = SCTP_DATAGRAM_UNSENT;
10098                         chk->snd_count = 0;
10099                         /* Do we correct its output location? */
10100                         if (chk->whoTo) {
10101                                 sctp_free_remote_addr(chk->whoTo);
10102                                 chk->whoTo = NULL;
10103                         }
10104                         goto sctp_fill_in_rest;
10105                 }
10106         }
10107         /* Ok if we reach here we must build one */
10108         sctp_alloc_a_chunk(stcb, chk);
10109         if (chk == NULL) {
10110                 return;
10111         }
10112         asoc->fwd_tsn_cnt++;
10113         chk->copy_by_ref = 0;
10114         chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN;
10115         chk->rec.chunk_id.can_take_data = 0;
10116         chk->asoc = asoc;
10117         chk->whoTo = NULL;
10118         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
10119         if (chk->data == NULL) {
10120                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
10121                 return;
10122         }
10123         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
10124         chk->sent = SCTP_DATAGRAM_UNSENT;
10125         chk->snd_count = 0;
10126         TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next);
10127         asoc->ctrl_queue_cnt++;
10128 sctp_fill_in_rest:
10129         /*-
10130          * Here we go through and fill out the part that deals with
10131          * stream/seq of the ones we skip.
10132          */
10133         SCTP_BUF_LEN(chk->data) = 0;
10134         {
10135                 struct sctp_tmit_chunk *at, *tp1, *last;
10136                 struct sctp_strseq *strseq;
10137                 unsigned int cnt_of_space, i, ovh;
10138                 unsigned int space_needed;
10139                 unsigned int cnt_of_skipped = 0;
10140
10141                 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) {
10142                         if ((at->sent != SCTP_FORWARD_TSN_SKIP) &&
10143                             (at->sent != SCTP_DATAGRAM_NR_ACKED)) {
10144                                 /* no more to look at */
10145                                 break;
10146                         }
10147                         if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10148                                 /* We don't report these */
10149                                 continue;
10150                         }
10151                         cnt_of_skipped++;
10152                 }
10153                 space_needed = (sizeof(struct sctp_forward_tsn_chunk) +
10154                     (cnt_of_skipped * sizeof(struct sctp_strseq)));
10155
10156                 cnt_of_space = M_TRAILINGSPACE(chk->data);
10157
10158                 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
10159                         ovh = SCTP_MIN_OVERHEAD;
10160                 } else {
10161                         ovh = SCTP_MIN_V4_OVERHEAD;
10162                 }
10163                 if (cnt_of_space > (asoc->smallest_mtu - ovh)) {
10164                         /* trim to a mtu size */
10165                         cnt_of_space = asoc->smallest_mtu - ovh;
10166                 }
10167                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10168                         sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10169                             0xff, 0, cnt_of_skipped,
10170                             asoc->advanced_peer_ack_point);
10171
10172                 }
10173                 advance_peer_ack_point = asoc->advanced_peer_ack_point;
10174                 if (cnt_of_space < space_needed) {
10175                         /*-
10176                          * ok we must trim down the chunk by lowering the
10177                          * advance peer ack point.
10178                          */
10179                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10180                                 sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10181                                     0xff, 0xff, cnt_of_space,
10182                                     space_needed);
10183                         }
10184                         cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk);
10185                         cnt_of_skipped /= sizeof(struct sctp_strseq);
10186                         /*-
10187                          * Go through and find the TSN that will be the one
10188                          * we report.
10189                          */
10190                         at = TAILQ_FIRST(&asoc->sent_queue);
10191                         if (at != NULL) {
10192                                 for (i = 0; i < cnt_of_skipped; i++) {
10193                                         tp1 = TAILQ_NEXT(at, sctp_next);
10194                                         if (tp1 == NULL) {
10195                                                 break;
10196                                         }
10197                                         at = tp1;
10198                                 }
10199                         }
10200                         if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
10201                                 sctp_misc_ints(SCTP_FWD_TSN_CHECK,
10202                                     0xff, cnt_of_skipped, at->rec.data.TSN_seq,
10203                                     asoc->advanced_peer_ack_point);
10204                         }
10205                         last = at;
10206                         /*-
10207                          * last now points to last one I can report, update
10208                          * peer ack point
10209                          */
10210                         if (last)
10211                                 advance_peer_ack_point = last->rec.data.TSN_seq;
10212                         space_needed = sizeof(struct sctp_forward_tsn_chunk) +
10213                             cnt_of_skipped * sizeof(struct sctp_strseq);
10214                 }
10215                 chk->send_size = space_needed;
10216                 /* Setup the chunk */
10217                 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *);
10218                 fwdtsn->ch.chunk_length = htons(chk->send_size);
10219                 fwdtsn->ch.chunk_flags = 0;
10220                 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN;
10221                 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point);
10222                 SCTP_BUF_LEN(chk->data) = chk->send_size;
10223                 fwdtsn++;
10224                 /*-
10225                  * Move pointer to after the fwdtsn and transfer to the
10226                  * strseq pointer.
10227                  */
10228                 strseq = (struct sctp_strseq *)fwdtsn;
10229                 /*-
10230                  * Now populate the strseq list. This is done blindly
10231                  * without pulling out duplicate stream info. This is
10232                  * inefficent but won't harm the process since the peer will
10233                  * look at these in sequence and will thus release anything.
10234                  * It could mean we exceed the PMTU and chop off some that
10235                  * we could have included.. but this is unlikely (aka 1432/4
10236                  * would mean 300+ stream seq's would have to be reported in
10237                  * one FWD-TSN. With a bit of work we can later FIX this to
10238                  * optimize and pull out duplcates.. but it does add more
10239                  * overhead. So for now... not!
10240                  */
10241                 at = TAILQ_FIRST(&asoc->sent_queue);
10242                 for (i = 0; i < cnt_of_skipped; i++) {
10243                         tp1 = TAILQ_NEXT(at, sctp_next);
10244                         if (tp1 == NULL)
10245                                 break;
10246                         if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) {
10247                                 /* We don't report these */
10248                                 i--;
10249                                 at = tp1;
10250                                 continue;
10251                         }
10252                         if (at->rec.data.TSN_seq == advance_peer_ack_point) {
10253                                 at->rec.data.fwd_tsn_cnt = 0;
10254                         }
10255                         strseq->stream = ntohs(at->rec.data.stream_number);
10256                         strseq->sequence = ntohs(at->rec.data.stream_seq);
10257                         strseq++;
10258                         at = tp1;
10259                 }
10260         }
10261         return;
10262 }
10263
10264 void
10265 sctp_send_sack(struct sctp_tcb *stcb, int so_locked
10266 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10267     SCTP_UNUSED
10268 #endif
10269 )
10270 {
10271         /*-
10272          * Queue up a SACK or NR-SACK in the control queue.
10273          * We must first check to see if a SACK or NR-SACK is
10274          * somehow on the control queue.
10275          * If so, we will take and and remove the old one.
10276          */
10277         struct sctp_association *asoc;
10278         struct sctp_tmit_chunk *chk, *a_chk;
10279         struct sctp_sack_chunk *sack;
10280         struct sctp_nr_sack_chunk *nr_sack;
10281         struct sctp_gap_ack_block *gap_descriptor;
10282         struct sack_track *selector;
10283         int mergeable = 0;
10284         int offset;
10285         caddr_t limit;
10286         uint32_t *dup;
10287         int limit_reached = 0;
10288         unsigned int i, siz, j;
10289         unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space;
10290         int num_dups = 0;
10291         int space_req;
10292         uint32_t highest_tsn;
10293         uint8_t flags;
10294         uint8_t type;
10295         uint8_t tsn_map;
10296
10297         if ((stcb->asoc.sctp_nr_sack_on_off == 1) &&
10298             (stcb->asoc.peer_supports_nr_sack == 1)) {
10299                 type = SCTP_NR_SELECTIVE_ACK;
10300         } else {
10301                 type = SCTP_SELECTIVE_ACK;
10302         }
10303         a_chk = NULL;
10304         asoc = &stcb->asoc;
10305         SCTP_TCB_LOCK_ASSERT(stcb);
10306         if (asoc->last_data_chunk_from == NULL) {
10307                 /* Hmm we never received anything */
10308                 return;
10309         }
10310         sctp_slide_mapping_arrays(stcb);
10311         sctp_set_rwnd(stcb, asoc);
10312         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
10313                 if (chk->rec.chunk_id.id == type) {
10314                         /* Hmm, found a sack already on queue, remove it */
10315                         TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next);
10316                         asoc->ctrl_queue_cnt--;
10317                         a_chk = chk;
10318                         if (a_chk->data) {
10319                                 sctp_m_freem(a_chk->data);
10320                                 a_chk->data = NULL;
10321                         }
10322                         if (a_chk->whoTo) {
10323                                 sctp_free_remote_addr(a_chk->whoTo);
10324                                 a_chk->whoTo = NULL;
10325                         }
10326                         break;
10327                 }
10328         }
10329         if (a_chk == NULL) {
10330                 sctp_alloc_a_chunk(stcb, a_chk);
10331                 if (a_chk == NULL) {
10332                         /* No memory so we drop the idea, and set a timer */
10333                         if (stcb->asoc.delayed_ack) {
10334                                 sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10335                                     stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5);
10336                                 sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10337                                     stcb->sctp_ep, stcb, NULL);
10338                         } else {
10339                                 stcb->asoc.send_sack = 1;
10340                         }
10341                         return;
10342                 }
10343                 a_chk->copy_by_ref = 0;
10344                 a_chk->rec.chunk_id.id = type;
10345                 a_chk->rec.chunk_id.can_take_data = 1;
10346         }
10347         /* Clear our pkt counts */
10348         asoc->data_pkts_seen = 0;
10349
10350         a_chk->asoc = asoc;
10351         a_chk->snd_count = 0;
10352         a_chk->send_size = 0;   /* fill in later */
10353         a_chk->sent = SCTP_DATAGRAM_UNSENT;
10354         a_chk->whoTo = NULL;
10355
10356         if ((asoc->numduptsns) ||
10357             (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) {
10358                 /*-
10359                  * Ok, we have some duplicates or the destination for the
10360                  * sack is unreachable, lets see if we can select an
10361                  * alternate than asoc->last_data_chunk_from
10362                  */
10363                 if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) &&
10364                     (asoc->used_alt_onsack > asoc->numnets)) {
10365                         /* We used an alt last time, don't this time */
10366                         a_chk->whoTo = NULL;
10367                 } else {
10368                         asoc->used_alt_onsack++;
10369                         a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0);
10370                 }
10371                 if (a_chk->whoTo == NULL) {
10372                         /* Nope, no alternate */
10373                         a_chk->whoTo = asoc->last_data_chunk_from;
10374                         asoc->used_alt_onsack = 0;
10375                 }
10376         } else {
10377                 /*
10378                  * No duplicates so we use the last place we received data
10379                  * from.
10380                  */
10381                 asoc->used_alt_onsack = 0;
10382                 a_chk->whoTo = asoc->last_data_chunk_from;
10383         }
10384         if (a_chk->whoTo) {
10385                 atomic_add_int(&a_chk->whoTo->ref_count, 1);
10386         }
10387         if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) {
10388                 highest_tsn = asoc->highest_tsn_inside_map;
10389         } else {
10390                 highest_tsn = asoc->highest_tsn_inside_nr_map;
10391         }
10392         if (highest_tsn == asoc->cumulative_tsn) {
10393                 /* no gaps */
10394                 if (type == SCTP_SELECTIVE_ACK) {
10395                         space_req = sizeof(struct sctp_sack_chunk);
10396                 } else {
10397                         space_req = sizeof(struct sctp_nr_sack_chunk);
10398                 }
10399         } else {
10400                 /* gaps get a cluster */
10401                 space_req = MCLBYTES;
10402         }
10403         /* Ok now lets formulate a MBUF with our sack */
10404         a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA);
10405         if ((a_chk->data == NULL) ||
10406             (a_chk->whoTo == NULL)) {
10407                 /* rats, no mbuf memory */
10408                 if (a_chk->data) {
10409                         /* was a problem with the destination */
10410                         sctp_m_freem(a_chk->data);
10411                         a_chk->data = NULL;
10412                 }
10413                 sctp_free_a_chunk(stcb, a_chk, so_locked);
10414                 /* sa_ignore NO_NULL_CHK */
10415                 if (stcb->asoc.delayed_ack) {
10416                         sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
10417                             stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6);
10418                         sctp_timer_start(SCTP_TIMER_TYPE_RECV,
10419                             stcb->sctp_ep, stcb, NULL);
10420                 } else {
10421                         stcb->asoc.send_sack = 1;
10422                 }
10423                 return;
10424         }
10425         /* ok, lets go through and fill it in */
10426         SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD);
10427         space = M_TRAILINGSPACE(a_chk->data);
10428         if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) {
10429                 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD);
10430         }
10431         limit = mtod(a_chk->data, caddr_t);
10432         limit += space;
10433
10434         flags = 0;
10435
10436         if ((asoc->sctp_cmt_on_off > 0) &&
10437             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
10438                 /*-
10439                  * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been
10440                  * received, then set high bit to 1, else 0. Reset
10441                  * pkts_rcvd.
10442                  */
10443                 flags |= (asoc->cmt_dac_pkts_rcvd << 6);
10444                 asoc->cmt_dac_pkts_rcvd = 0;
10445         }
10446 #ifdef SCTP_ASOCLOG_OF_TSNS
10447         stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn;
10448         stcb->asoc.cumack_log_atsnt++;
10449         if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) {
10450                 stcb->asoc.cumack_log_atsnt = 0;
10451         }
10452 #endif
10453         /* reset the readers interpretation */
10454         stcb->freed_by_sorcv_sincelast = 0;
10455
10456         if (type == SCTP_SELECTIVE_ACK) {
10457                 sack = mtod(a_chk->data, struct sctp_sack_chunk *);
10458                 nr_sack = NULL;
10459                 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk));
10460                 if (highest_tsn > asoc->mapping_array_base_tsn) {
10461                         siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10462                 } else {
10463                         siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8;
10464                 }
10465         } else {
10466                 sack = NULL;
10467                 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *);
10468                 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk));
10469                 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) {
10470                         siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10471                 } else {
10472                         siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8;
10473                 }
10474         }
10475
10476         if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10477                 offset = 1;
10478         } else {
10479                 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10480         }
10481         if (((type == SCTP_SELECTIVE_ACK) &&
10482             SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) ||
10483             ((type == SCTP_NR_SELECTIVE_ACK) &&
10484             SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) {
10485                 /* we have a gap .. maybe */
10486                 for (i = 0; i < siz; i++) {
10487                         tsn_map = asoc->mapping_array[i];
10488                         if (type == SCTP_SELECTIVE_ACK) {
10489                                 tsn_map |= asoc->nr_mapping_array[i];
10490                         }
10491                         if (i == 0) {
10492                                 /*
10493                                  * Clear all bits corresponding to TSNs
10494                                  * smaller or equal to the cumulative TSN.
10495                                  */
10496                                 tsn_map &= (~0 << (1 - offset));
10497                         }
10498                         selector = &sack_array[tsn_map];
10499                         if (mergeable && selector->right_edge) {
10500                                 /*
10501                                  * Backup, left and right edges were ok to
10502                                  * merge.
10503                                  */
10504                                 num_gap_blocks--;
10505                                 gap_descriptor--;
10506                         }
10507                         if (selector->num_entries == 0)
10508                                 mergeable = 0;
10509                         else {
10510                                 for (j = 0; j < selector->num_entries; j++) {
10511                                         if (mergeable && selector->right_edge) {
10512                                                 /*
10513                                                  * do a merge by NOT setting
10514                                                  * the left side
10515                                                  */
10516                                                 mergeable = 0;
10517                                         } else {
10518                                                 /*
10519                                                  * no merge, set the left
10520                                                  * side
10521                                                  */
10522                                                 mergeable = 0;
10523                                                 gap_descriptor->start = htons((selector->gaps[j].start + offset));
10524                                         }
10525                                         gap_descriptor->end = htons((selector->gaps[j].end + offset));
10526                                         num_gap_blocks++;
10527                                         gap_descriptor++;
10528                                         if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10529                                                 /* no more room */
10530                                                 limit_reached = 1;
10531                                                 break;
10532                                         }
10533                                 }
10534                                 if (selector->left_edge) {
10535                                         mergeable = 1;
10536                                 }
10537                         }
10538                         if (limit_reached) {
10539                                 /* Reached the limit stop */
10540                                 break;
10541                         }
10542                         offset += 8;
10543                 }
10544         }
10545         if ((type == SCTP_NR_SELECTIVE_ACK) &&
10546             (limit_reached == 0)) {
10547
10548                 mergeable = 0;
10549
10550                 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) {
10551                         siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8;
10552                 } else {
10553                         siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8;
10554                 }
10555
10556                 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) {
10557                         offset = 1;
10558                 } else {
10559                         offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn;
10560                 }
10561                 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) {
10562                         /* we have a gap .. maybe */
10563                         for (i = 0; i < siz; i++) {
10564                                 tsn_map = asoc->nr_mapping_array[i];
10565                                 if (i == 0) {
10566                                         /*
10567                                          * Clear all bits corresponding to
10568                                          * TSNs smaller or equal to the
10569                                          * cumulative TSN.
10570                                          */
10571                                         tsn_map &= (~0 << (1 - offset));
10572                                 }
10573                                 selector = &sack_array[tsn_map];
10574                                 if (mergeable && selector->right_edge) {
10575                                         /*
10576                                          * Backup, left and right edges were
10577                                          * ok to merge.
10578                                          */
10579                                         num_nr_gap_blocks--;
10580                                         gap_descriptor--;
10581                                 }
10582                                 if (selector->num_entries == 0)
10583                                         mergeable = 0;
10584                                 else {
10585                                         for (j = 0; j < selector->num_entries; j++) {
10586                                                 if (mergeable && selector->right_edge) {
10587                                                         /*
10588                                                          * do a merge by NOT
10589                                                          * setting the left
10590                                                          * side
10591                                                          */
10592                                                         mergeable = 0;
10593                                                 } else {
10594                                                         /*
10595                                                          * no merge, set the
10596                                                          * left side
10597                                                          */
10598                                                         mergeable = 0;
10599                                                         gap_descriptor->start = htons((selector->gaps[j].start + offset));
10600                                                 }
10601                                                 gap_descriptor->end = htons((selector->gaps[j].end + offset));
10602                                                 num_nr_gap_blocks++;
10603                                                 gap_descriptor++;
10604                                                 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) {
10605                                                         /* no more room */
10606                                                         limit_reached = 1;
10607                                                         break;
10608                                                 }
10609                                         }
10610                                         if (selector->left_edge) {
10611                                                 mergeable = 1;
10612                                         }
10613                                 }
10614                                 if (limit_reached) {
10615                                         /* Reached the limit stop */
10616                                         break;
10617                                 }
10618                                 offset += 8;
10619                         }
10620                 }
10621         }
10622         /* now we must add any dups we are going to report. */
10623         if ((limit_reached == 0) && (asoc->numduptsns)) {
10624                 dup = (uint32_t *) gap_descriptor;
10625                 for (i = 0; i < asoc->numduptsns; i++) {
10626                         *dup = htonl(asoc->dup_tsns[i]);
10627                         dup++;
10628                         num_dups++;
10629                         if (((caddr_t)dup + sizeof(uint32_t)) > limit) {
10630                                 /* no more room */
10631                                 break;
10632                         }
10633                 }
10634                 asoc->numduptsns = 0;
10635         }
10636         /*
10637          * now that the chunk is prepared queue it to the control chunk
10638          * queue.
10639          */
10640         if (type == SCTP_SELECTIVE_ACK) {
10641                 a_chk->send_size = sizeof(struct sctp_sack_chunk) +
10642                     (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10643                     num_dups * sizeof(int32_t);
10644                 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10645                 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10646                 sack->sack.a_rwnd = htonl(asoc->my_rwnd);
10647                 sack->sack.num_gap_ack_blks = htons(num_gap_blocks);
10648                 sack->sack.num_dup_tsns = htons(num_dups);
10649                 sack->ch.chunk_type = type;
10650                 sack->ch.chunk_flags = flags;
10651                 sack->ch.chunk_length = htons(a_chk->send_size);
10652         } else {
10653                 a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) +
10654                     (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) +
10655                     num_dups * sizeof(int32_t);
10656                 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size;
10657                 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn);
10658                 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd);
10659                 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks);
10660                 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks);
10661                 nr_sack->nr_sack.num_dup_tsns = htons(num_dups);
10662                 nr_sack->nr_sack.reserved = 0;
10663                 nr_sack->ch.chunk_type = type;
10664                 nr_sack->ch.chunk_flags = flags;
10665                 nr_sack->ch.chunk_length = htons(a_chk->send_size);
10666         }
10667         TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next);
10668         asoc->my_last_reported_rwnd = asoc->my_rwnd;
10669         asoc->ctrl_queue_cnt++;
10670         asoc->send_sack = 0;
10671         SCTP_STAT_INCR(sctps_sendsacks);
10672         return;
10673 }
10674
10675 void
10676 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked
10677 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
10678     SCTP_UNUSED
10679 #endif
10680 )
10681 {
10682         struct mbuf *m_abort, *m, *m_last;
10683         struct mbuf *m_out, *m_end = NULL;
10684         struct sctp_abort_chunk *abort;
10685         struct sctp_auth_chunk *auth = NULL;
10686         struct sctp_nets *net;
10687         uint32_t vtag;
10688         uint32_t auth_offset = 0;
10689         uint16_t cause_len, chunk_len, padding_len;
10690
10691         SCTP_TCB_LOCK_ASSERT(stcb);
10692         /*-
10693          * Add an AUTH chunk, if chunk requires it and save the offset into
10694          * the chain for AUTH
10695          */
10696         if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION,
10697             stcb->asoc.peer_auth_chunks)) {
10698                 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset,
10699                     stcb, SCTP_ABORT_ASSOCIATION);
10700                 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10701         } else {
10702                 m_out = NULL;
10703         }
10704         m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER);
10705         if (m_abort == NULL) {
10706                 if (m_out) {
10707                         sctp_m_freem(m_out);
10708                 }
10709                 if (operr) {
10710                         sctp_m_freem(operr);
10711                 }
10712                 return;
10713         }
10714         /* link in any error */
10715         SCTP_BUF_NEXT(m_abort) = operr;
10716         cause_len = 0;
10717         m_last = NULL;
10718         for (m = operr; m; m = SCTP_BUF_NEXT(m)) {
10719                 cause_len += (uint16_t) SCTP_BUF_LEN(m);
10720                 if (SCTP_BUF_NEXT(m) == NULL) {
10721                         m_last = m;
10722                 }
10723         }
10724         SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk);
10725         chunk_len = (uint16_t) sizeof(struct sctp_abort_chunk) + cause_len;
10726         padding_len = SCTP_SIZE32(chunk_len) - chunk_len;
10727         if (m_out == NULL) {
10728                 /* NO Auth chunk prepended, so reserve space in front */
10729                 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD);
10730                 m_out = m_abort;
10731         } else {
10732                 /* Put AUTH chunk at the front of the chain */
10733                 SCTP_BUF_NEXT(m_end) = m_abort;
10734         }
10735         if (stcb->asoc.alternate) {
10736                 net = stcb->asoc.alternate;
10737         } else {
10738                 net = stcb->asoc.primary_destination;
10739         }
10740         /* Fill in the ABORT chunk header. */
10741         abort = mtod(m_abort, struct sctp_abort_chunk *);
10742         abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION;
10743         if (stcb->asoc.peer_vtag == 0) {
10744                 /* This happens iff the assoc is in COOKIE-WAIT state. */
10745                 vtag = stcb->asoc.my_vtag;
10746                 abort->ch.chunk_flags = SCTP_HAD_NO_TCB;
10747         } else {
10748                 vtag = stcb->asoc.peer_vtag;
10749                 abort->ch.chunk_flags = 0;
10750         }
10751         abort->ch.chunk_length = htons(chunk_len);
10752         /* Add padding, if necessary. */
10753         if (padding_len > 0) {
10754                 if ((m_last == NULL) || sctp_add_pad_tombuf(m_last, padding_len)) {
10755                         sctp_m_freem(m_out);
10756                         return;
10757                 }
10758         }
10759         (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10760             (struct sockaddr *)&net->ro._l_addr,
10761             m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0,
10762             stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag),
10763             stcb->asoc.primary_destination->port, NULL,
10764             0, 0,
10765             so_locked);
10766         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10767 }
10768
10769 void
10770 sctp_send_shutdown_complete(struct sctp_tcb *stcb,
10771     struct sctp_nets *net,
10772     int reflect_vtag)
10773 {
10774         /* formulate and SEND a SHUTDOWN-COMPLETE */
10775         struct mbuf *m_shutdown_comp;
10776         struct sctp_shutdown_complete_chunk *shutdown_complete;
10777         uint32_t vtag;
10778         uint8_t flags;
10779
10780         m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER);
10781         if (m_shutdown_comp == NULL) {
10782                 /* no mbuf's */
10783                 return;
10784         }
10785         if (reflect_vtag) {
10786                 flags = SCTP_HAD_NO_TCB;
10787                 vtag = stcb->asoc.my_vtag;
10788         } else {
10789                 flags = 0;
10790                 vtag = stcb->asoc.peer_vtag;
10791         }
10792         shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *);
10793         shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE;
10794         shutdown_complete->ch.chunk_flags = flags;
10795         shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk));
10796         SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk);
10797         (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net,
10798             (struct sockaddr *)&net->ro._l_addr,
10799             m_shutdown_comp, 0, NULL, 0, 1, 0, 0,
10800             stcb->sctp_ep->sctp_lport, stcb->rport,
10801             htonl(vtag),
10802             net->port, NULL,
10803             0, 0,
10804             SCTP_SO_NOT_LOCKED);
10805         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
10806         return;
10807 }
10808
10809 static void
10810 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst,
10811     struct sctphdr *sh, uint32_t vtag,
10812     uint8_t type, struct mbuf *cause,
10813     uint8_t use_mflowid, uint32_t mflowid,
10814     uint32_t vrf_id, uint16_t port)
10815 {
10816         struct mbuf *o_pak;
10817         struct mbuf *mout;
10818         struct sctphdr *shout;
10819         struct sctp_chunkhdr *ch;
10820         struct udphdr *udp;
10821         int len, cause_len, padding_len;
10822
10823 #if defined(INET) || defined(INET6)
10824         int ret;
10825
10826 #endif
10827 #ifdef INET
10828         struct sockaddr_in *src_sin, *dst_sin;
10829         struct ip *ip;
10830
10831 #endif
10832 #ifdef INET6
10833         struct sockaddr_in6 *src_sin6, *dst_sin6;
10834         struct ip6_hdr *ip6;
10835
10836 #endif
10837
10838         /* Compute the length of the cause and add final padding. */
10839         cause_len = 0;
10840         if (cause != NULL) {
10841                 struct mbuf *m_at, *m_last = NULL;
10842
10843                 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) {
10844                         if (SCTP_BUF_NEXT(m_at) == NULL)
10845                                 m_last = m_at;
10846                         cause_len += SCTP_BUF_LEN(m_at);
10847                 }
10848                 padding_len = cause_len % 4;
10849                 if (padding_len != 0) {
10850                         padding_len = 4 - padding_len;
10851                 }
10852                 if (padding_len != 0) {
10853                         if (sctp_add_pad_tombuf(m_last, padding_len)) {
10854                                 sctp_m_freem(cause);
10855                                 return;
10856                         }
10857                 }
10858         } else {
10859                 padding_len = 0;
10860         }
10861         /* Get an mbuf for the header. */
10862         len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr);
10863         switch (dst->sa_family) {
10864 #ifdef INET
10865         case AF_INET:
10866                 len += sizeof(struct ip);
10867                 break;
10868 #endif
10869 #ifdef INET6
10870         case AF_INET6:
10871                 len += sizeof(struct ip6_hdr);
10872                 break;
10873 #endif
10874         default:
10875                 break;
10876         }
10877         if (port) {
10878                 len += sizeof(struct udphdr);
10879         }
10880         mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA);
10881         if (mout == NULL) {
10882                 if (cause) {
10883                         sctp_m_freem(cause);
10884                 }
10885                 return;
10886         }
10887         SCTP_BUF_RESV_UF(mout, max_linkhdr);
10888         SCTP_BUF_LEN(mout) = len;
10889         SCTP_BUF_NEXT(mout) = cause;
10890         if (use_mflowid != 0) {
10891                 mout->m_pkthdr.flowid = mflowid;
10892                 mout->m_flags |= M_FLOWID;
10893         }
10894 #ifdef INET
10895         ip = NULL;
10896 #endif
10897 #ifdef INET6
10898         ip6 = NULL;
10899 #endif
10900         switch (dst->sa_family) {
10901 #ifdef INET
10902         case AF_INET:
10903                 src_sin = (struct sockaddr_in *)src;
10904                 dst_sin = (struct sockaddr_in *)dst;
10905                 ip = mtod(mout, struct ip *);
10906                 ip->ip_v = IPVERSION;
10907                 ip->ip_hl = (sizeof(struct ip) >> 2);
10908                 ip->ip_tos = 0;
10909                 ip->ip_id = ip_newid();
10910                 ip->ip_off = 0;
10911                 ip->ip_ttl = MODULE_GLOBAL(ip_defttl);
10912                 if (port) {
10913                         ip->ip_p = IPPROTO_UDP;
10914                 } else {
10915                         ip->ip_p = IPPROTO_SCTP;
10916                 }
10917                 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr;
10918                 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr;
10919                 ip->ip_sum = 0;
10920                 len = sizeof(struct ip);
10921                 shout = (struct sctphdr *)((caddr_t)ip + len);
10922                 break;
10923 #endif
10924 #ifdef INET6
10925         case AF_INET6:
10926                 src_sin6 = (struct sockaddr_in6 *)src;
10927                 dst_sin6 = (struct sockaddr_in6 *)dst;
10928                 ip6 = mtod(mout, struct ip6_hdr *);
10929                 ip6->ip6_flow = htonl(0x60000000);
10930                 if (V_ip6_auto_flowlabel) {
10931                         ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK);
10932                 }
10933                 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim);
10934                 if (port) {
10935                         ip6->ip6_nxt = IPPROTO_UDP;
10936                 } else {
10937                         ip6->ip6_nxt = IPPROTO_SCTP;
10938                 }
10939                 ip6->ip6_src = dst_sin6->sin6_addr;
10940                 ip6->ip6_dst = src_sin6->sin6_addr;
10941                 len = sizeof(struct ip6_hdr);
10942                 shout = (struct sctphdr *)((caddr_t)ip6 + len);
10943                 break;
10944 #endif
10945         default:
10946                 len = 0;
10947                 shout = mtod(mout, struct sctphdr *);
10948                 break;
10949         }
10950         if (port) {
10951                 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) {
10952                         sctp_m_freem(mout);
10953                         return;
10954                 }
10955                 udp = (struct udphdr *)shout;
10956                 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port));
10957                 udp->uh_dport = port;
10958                 udp->uh_sum = 0;
10959                 udp->uh_ulen = htons(sizeof(struct udphdr) +
10960                     sizeof(struct sctphdr) +
10961                     sizeof(struct sctp_chunkhdr) +
10962                     cause_len + padding_len);
10963                 len += sizeof(struct udphdr);
10964                 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr));
10965         } else {
10966                 udp = NULL;
10967         }
10968         shout->src_port = sh->dest_port;
10969         shout->dest_port = sh->src_port;
10970         shout->checksum = 0;
10971         if (vtag) {
10972                 shout->v_tag = htonl(vtag);
10973         } else {
10974                 shout->v_tag = sh->v_tag;
10975         }
10976         len += sizeof(struct sctphdr);
10977         ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr));
10978         ch->chunk_type = type;
10979         if (vtag) {
10980                 ch->chunk_flags = 0;
10981         } else {
10982                 ch->chunk_flags = SCTP_HAD_NO_TCB;
10983         }
10984         ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len);
10985         len += sizeof(struct sctp_chunkhdr);
10986         len += cause_len + padding_len;
10987
10988         if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) {
10989                 sctp_m_freem(mout);
10990                 return;
10991         }
10992         SCTP_ATTACH_CHAIN(o_pak, mout, len);
10993         switch (dst->sa_family) {
10994 #ifdef INET
10995         case AF_INET:
10996                 if (port) {
10997                         if (V_udp_cksum) {
10998                                 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP));
10999                         } else {
11000                                 udp->uh_sum = 0;
11001                         }
11002                 }
11003                 ip->ip_len = htons(len);
11004                 if (port) {
11005 #if defined(SCTP_WITH_NO_CSUM)
11006                         SCTP_STAT_INCR(sctps_sendnocrc);
11007 #else
11008                         shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr));
11009                         SCTP_STAT_INCR(sctps_sendswcrc);
11010 #endif
11011                         if (V_udp_cksum) {
11012                                 SCTP_ENABLE_UDP_CSUM(o_pak);
11013                         }
11014                 } else {
11015 #if defined(SCTP_WITH_NO_CSUM)
11016                         SCTP_STAT_INCR(sctps_sendnocrc);
11017 #else
11018                         mout->m_pkthdr.csum_flags = CSUM_SCTP;
11019                         mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11020                         SCTP_STAT_INCR(sctps_sendhwcrc);
11021 #endif
11022                 }
11023 #ifdef SCTP_PACKET_LOGGING
11024                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11025                         sctp_packet_log(o_pak);
11026                 }
11027 #endif
11028                 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id);
11029                 break;
11030 #endif
11031 #ifdef INET6
11032         case AF_INET6:
11033                 ip6->ip6_plen = len - sizeof(struct ip6_hdr);
11034                 if (port) {
11035 #if defined(SCTP_WITH_NO_CSUM)
11036                         SCTP_STAT_INCR(sctps_sendnocrc);
11037 #else
11038                         shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr));
11039                         SCTP_STAT_INCR(sctps_sendswcrc);
11040 #endif
11041                         if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) {
11042                                 udp->uh_sum = 0xffff;
11043                         }
11044                 } else {
11045 #if defined(SCTP_WITH_NO_CSUM)
11046                         SCTP_STAT_INCR(sctps_sendnocrc);
11047 #else
11048                         mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6;
11049                         mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum);
11050                         SCTP_STAT_INCR(sctps_sendhwcrc);
11051 #endif
11052                 }
11053 #ifdef SCTP_PACKET_LOGGING
11054                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) {
11055                         sctp_packet_log(o_pak);
11056                 }
11057 #endif
11058                 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id);
11059                 break;
11060 #endif
11061         default:
11062                 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n",
11063                     dst->sa_family);
11064                 sctp_m_freem(mout);
11065                 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT);
11066                 return;
11067         }
11068         SCTP_STAT_INCR(sctps_sendpackets);
11069         SCTP_STAT_INCR_COUNTER64(sctps_outpackets);
11070         SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks);
11071         return;
11072 }
11073
11074 void
11075 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst,
11076     struct sctphdr *sh,
11077     uint8_t use_mflowid, uint32_t mflowid,
11078     uint32_t vrf_id, uint16_t port)
11079 {
11080         sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL,
11081             use_mflowid, mflowid,
11082             vrf_id, port);
11083 }
11084
11085 void
11086 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked
11087 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING)
11088     SCTP_UNUSED
11089 #endif
11090 )
11091 {
11092         struct sctp_tmit_chunk *chk;
11093         struct sctp_heartbeat_chunk *hb;
11094         struct timeval now;
11095
11096         SCTP_TCB_LOCK_ASSERT(stcb);
11097         if (net == NULL) {
11098                 return;
11099         }
11100         (void)SCTP_GETTIME_TIMEVAL(&now);
11101         switch (net->ro._l_addr.sa.sa_family) {
11102 #ifdef INET
11103         case AF_INET:
11104                 break;
11105 #endif
11106 #ifdef INET6
11107         case AF_INET6:
11108                 break;
11109 #endif
11110         default:
11111                 return;
11112         }
11113         sctp_alloc_a_chunk(stcb, chk);
11114         if (chk == NULL) {
11115                 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11116                 return;
11117         }
11118         chk->copy_by_ref = 0;
11119         chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST;
11120         chk->rec.chunk_id.can_take_data = 1;
11121         chk->asoc = &stcb->asoc;
11122         chk->send_size = sizeof(struct sctp_heartbeat_chunk);
11123
11124         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11125         if (chk->data == NULL) {
11126                 sctp_free_a_chunk(stcb, chk, so_locked);
11127                 return;
11128         }
11129         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11130         SCTP_BUF_LEN(chk->data) = chk->send_size;
11131         chk->sent = SCTP_DATAGRAM_UNSENT;
11132         chk->snd_count = 0;
11133         chk->whoTo = net;
11134         atomic_add_int(&chk->whoTo->ref_count, 1);
11135         /* Now we have a mbuf that we can fill in with the details */
11136         hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11137         memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11138         /* fill out chunk header */
11139         hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11140         hb->ch.chunk_flags = 0;
11141         hb->ch.chunk_length = htons(chk->send_size);
11142         /* Fill out hb parameter */
11143         hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
11144         hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
11145         hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
11146         hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
11147         /* Did our user request this one, put it in */
11148         hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family;
11149         hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len;
11150         if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
11151                 /*
11152                  * we only take from the entropy pool if the address is not
11153                  * confirmed.
11154                  */
11155                 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11156                 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
11157         } else {
11158                 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0;
11159                 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0;
11160         }
11161         switch (net->ro._l_addr.sa.sa_family) {
11162 #ifdef INET
11163         case AF_INET:
11164                 memcpy(hb->heartbeat.hb_info.address,
11165                     &net->ro._l_addr.sin.sin_addr,
11166                     sizeof(net->ro._l_addr.sin.sin_addr));
11167                 break;
11168 #endif
11169 #ifdef INET6
11170         case AF_INET6:
11171                 memcpy(hb->heartbeat.hb_info.address,
11172                     &net->ro._l_addr.sin6.sin6_addr,
11173                     sizeof(net->ro._l_addr.sin6.sin6_addr));
11174                 break;
11175 #endif
11176         default:
11177                 return;
11178                 break;
11179         }
11180         net->hb_responded = 0;
11181         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11182         stcb->asoc.ctrl_queue_cnt++;
11183         SCTP_STAT_INCR(sctps_sendheartbeat);
11184         return;
11185 }
11186
11187 void
11188 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net,
11189     uint32_t high_tsn)
11190 {
11191         struct sctp_association *asoc;
11192         struct sctp_ecne_chunk *ecne;
11193         struct sctp_tmit_chunk *chk;
11194
11195         if (net == NULL) {
11196                 return;
11197         }
11198         asoc = &stcb->asoc;
11199         SCTP_TCB_LOCK_ASSERT(stcb);
11200         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11201                 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) {
11202                         /* found a previous ECN_ECHO update it if needed */
11203                         uint32_t cnt, ctsn;
11204
11205                         ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11206                         ctsn = ntohl(ecne->tsn);
11207                         if (SCTP_TSN_GT(high_tsn, ctsn)) {
11208                                 ecne->tsn = htonl(high_tsn);
11209                                 SCTP_STAT_INCR(sctps_queue_upd_ecne);
11210                         }
11211                         cnt = ntohl(ecne->num_pkts_since_cwr);
11212                         cnt++;
11213                         ecne->num_pkts_since_cwr = htonl(cnt);
11214                         return;
11215                 }
11216         }
11217         /* nope could not find one to update so we must build one */
11218         sctp_alloc_a_chunk(stcb, chk);
11219         if (chk == NULL) {
11220                 return;
11221         }
11222         chk->copy_by_ref = 0;
11223         SCTP_STAT_INCR(sctps_queue_upd_ecne);
11224         chk->rec.chunk_id.id = SCTP_ECN_ECHO;
11225         chk->rec.chunk_id.can_take_data = 0;
11226         chk->asoc = &stcb->asoc;
11227         chk->send_size = sizeof(struct sctp_ecne_chunk);
11228         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11229         if (chk->data == NULL) {
11230                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11231                 return;
11232         }
11233         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11234         SCTP_BUF_LEN(chk->data) = chk->send_size;
11235         chk->sent = SCTP_DATAGRAM_UNSENT;
11236         chk->snd_count = 0;
11237         chk->whoTo = net;
11238         atomic_add_int(&chk->whoTo->ref_count, 1);
11239
11240         stcb->asoc.ecn_echo_cnt_onq++;
11241         ecne = mtod(chk->data, struct sctp_ecne_chunk *);
11242         ecne->ch.chunk_type = SCTP_ECN_ECHO;
11243         ecne->ch.chunk_flags = 0;
11244         ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk));
11245         ecne->tsn = htonl(high_tsn);
11246         ecne->num_pkts_since_cwr = htonl(1);
11247         TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next);
11248         asoc->ctrl_queue_cnt++;
11249 }
11250
11251 void
11252 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net,
11253     struct mbuf *m, int len, int iphlen, int bad_crc)
11254 {
11255         struct sctp_association *asoc;
11256         struct sctp_pktdrop_chunk *drp;
11257         struct sctp_tmit_chunk *chk;
11258         uint8_t *datap;
11259         int was_trunc = 0;
11260         int fullsz = 0;
11261         long spc;
11262         int offset;
11263         struct sctp_chunkhdr *ch, chunk_buf;
11264         unsigned int chk_length;
11265
11266         if (!stcb) {
11267                 return;
11268         }
11269         asoc = &stcb->asoc;
11270         SCTP_TCB_LOCK_ASSERT(stcb);
11271         if (asoc->peer_supports_pktdrop == 0) {
11272                 /*-
11273                  * peer must declare support before I send one.
11274                  */
11275                 return;
11276         }
11277         if (stcb->sctp_socket == NULL) {
11278                 return;
11279         }
11280         sctp_alloc_a_chunk(stcb, chk);
11281         if (chk == NULL) {
11282                 return;
11283         }
11284         chk->copy_by_ref = 0;
11285         len -= iphlen;
11286         chk->send_size = len;
11287         /* Validate that we do not have an ABORT in here. */
11288         offset = iphlen + sizeof(struct sctphdr);
11289         ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11290             sizeof(*ch), (uint8_t *) & chunk_buf);
11291         while (ch != NULL) {
11292                 chk_length = ntohs(ch->chunk_length);
11293                 if (chk_length < sizeof(*ch)) {
11294                         /* break to abort land */
11295                         break;
11296                 }
11297                 switch (ch->chunk_type) {
11298                 case SCTP_PACKET_DROPPED:
11299                 case SCTP_ABORT_ASSOCIATION:
11300                 case SCTP_INITIATION_ACK:
11301                         /**
11302                          * We don't respond with an PKT-DROP to an ABORT
11303                          * or PKT-DROP. We also do not respond to an
11304                          * INIT-ACK, because we can't know if the initiation
11305                          * tag is correct or not.
11306                          */
11307                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11308                         return;
11309                 default:
11310                         break;
11311                 }
11312                 offset += SCTP_SIZE32(chk_length);
11313                 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset,
11314                     sizeof(*ch), (uint8_t *) & chunk_buf);
11315         }
11316
11317         if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) >
11318             min(stcb->asoc.smallest_mtu, MCLBYTES)) {
11319                 /*
11320                  * only send 1 mtu worth, trim off the excess on the end.
11321                  */
11322                 fullsz = len;
11323                 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD;
11324                 was_trunc = 1;
11325         }
11326         chk->asoc = &stcb->asoc;
11327         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11328         if (chk->data == NULL) {
11329 jump_out:
11330                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11331                 return;
11332         }
11333         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11334         drp = mtod(chk->data, struct sctp_pktdrop_chunk *);
11335         if (drp == NULL) {
11336                 sctp_m_freem(chk->data);
11337                 chk->data = NULL;
11338                 goto jump_out;
11339         }
11340         chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) +
11341             sizeof(struct sctphdr) + SCTP_MED_OVERHEAD));
11342         chk->book_size_scale = 0;
11343         if (was_trunc) {
11344                 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED;
11345                 drp->trunc_len = htons(fullsz);
11346                 /*
11347                  * Len is already adjusted to size minus overhead above take
11348                  * out the pkt_drop chunk itself from it.
11349                  */
11350                 chk->send_size = len - sizeof(struct sctp_pktdrop_chunk);
11351                 len = chk->send_size;
11352         } else {
11353                 /* no truncation needed */
11354                 drp->ch.chunk_flags = 0;
11355                 drp->trunc_len = htons(0);
11356         }
11357         if (bad_crc) {
11358                 drp->ch.chunk_flags |= SCTP_BADCRC;
11359         }
11360         chk->send_size += sizeof(struct sctp_pktdrop_chunk);
11361         SCTP_BUF_LEN(chk->data) = chk->send_size;
11362         chk->sent = SCTP_DATAGRAM_UNSENT;
11363         chk->snd_count = 0;
11364         if (net) {
11365                 /* we should hit here */
11366                 chk->whoTo = net;
11367                 atomic_add_int(&chk->whoTo->ref_count, 1);
11368         } else {
11369                 chk->whoTo = NULL;
11370         }
11371         chk->rec.chunk_id.id = SCTP_PACKET_DROPPED;
11372         chk->rec.chunk_id.can_take_data = 1;
11373         drp->ch.chunk_type = SCTP_PACKET_DROPPED;
11374         drp->ch.chunk_length = htons(chk->send_size);
11375         spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket);
11376         if (spc < 0) {
11377                 spc = 0;
11378         }
11379         drp->bottle_bw = htonl(spc);
11380         if (asoc->my_rwnd) {
11381                 drp->current_onq = htonl(asoc->size_on_reasm_queue +
11382                     asoc->size_on_all_streams +
11383                     asoc->my_rwnd_control_len +
11384                     stcb->sctp_socket->so_rcv.sb_cc);
11385         } else {
11386                 /*-
11387                  * If my rwnd is 0, possibly from mbuf depletion as well as
11388                  * space used, tell the peer there is NO space aka onq == bw
11389                  */
11390                 drp->current_onq = htonl(spc);
11391         }
11392         drp->reserved = 0;
11393         datap = drp->data;
11394         m_copydata(m, iphlen, len, (caddr_t)datap);
11395         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11396         asoc->ctrl_queue_cnt++;
11397 }
11398
11399 void
11400 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override)
11401 {
11402         struct sctp_association *asoc;
11403         struct sctp_cwr_chunk *cwr;
11404         struct sctp_tmit_chunk *chk;
11405
11406         SCTP_TCB_LOCK_ASSERT(stcb);
11407         if (net == NULL) {
11408                 return;
11409         }
11410         asoc = &stcb->asoc;
11411         TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
11412                 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) {
11413                         /*
11414                          * found a previous CWR queued to same destination
11415                          * update it if needed
11416                          */
11417                         uint32_t ctsn;
11418
11419                         cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11420                         ctsn = ntohl(cwr->tsn);
11421                         if (SCTP_TSN_GT(high_tsn, ctsn)) {
11422                                 cwr->tsn = htonl(high_tsn);
11423                         }
11424                         if (override & SCTP_CWR_REDUCE_OVERRIDE) {
11425                                 /* Make sure override is carried */
11426                                 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE;
11427                         }
11428                         return;
11429                 }
11430         }
11431         sctp_alloc_a_chunk(stcb, chk);
11432         if (chk == NULL) {
11433                 return;
11434         }
11435         chk->copy_by_ref = 0;
11436         chk->rec.chunk_id.id = SCTP_ECN_CWR;
11437         chk->rec.chunk_id.can_take_data = 1;
11438         chk->asoc = &stcb->asoc;
11439         chk->send_size = sizeof(struct sctp_cwr_chunk);
11440         chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER);
11441         if (chk->data == NULL) {
11442                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
11443                 return;
11444         }
11445         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11446         SCTP_BUF_LEN(chk->data) = chk->send_size;
11447         chk->sent = SCTP_DATAGRAM_UNSENT;
11448         chk->snd_count = 0;
11449         chk->whoTo = net;
11450         atomic_add_int(&chk->whoTo->ref_count, 1);
11451         cwr = mtod(chk->data, struct sctp_cwr_chunk *);
11452         cwr->ch.chunk_type = SCTP_ECN_CWR;
11453         cwr->ch.chunk_flags = override;
11454         cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk));
11455         cwr->tsn = htonl(high_tsn);
11456         TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next);
11457         asoc->ctrl_queue_cnt++;
11458 }
11459
11460 void
11461 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk,
11462     int number_entries, uint16_t * list,
11463     uint32_t seq, uint32_t resp_seq, uint32_t last_sent)
11464 {
11465         uint16_t len, old_len, i;
11466         struct sctp_stream_reset_out_request *req_out;
11467         struct sctp_chunkhdr *ch;
11468
11469         ch = mtod(chk->data, struct sctp_chunkhdr *);
11470         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11471
11472         /* get to new offset for the param. */
11473         req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len);
11474         /* now how long will this param be? */
11475         len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries));
11476         req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST);
11477         req_out->ph.param_length = htons(len);
11478         req_out->request_seq = htonl(seq);
11479         req_out->response_seq = htonl(resp_seq);
11480         req_out->send_reset_at_tsn = htonl(last_sent);
11481         if (number_entries) {
11482                 for (i = 0; i < number_entries; i++) {
11483                         req_out->list_of_streams[i] = htons(list[i]);
11484                 }
11485         }
11486         if (SCTP_SIZE32(len) > len) {
11487                 /*-
11488                  * Need to worry about the pad we may end up adding to the
11489                  * end. This is easy since the struct is either aligned to 4
11490                  * bytes or 2 bytes off.
11491                  */
11492                 req_out->list_of_streams[number_entries] = 0;
11493         }
11494         /* now fix the chunk length */
11495         ch->chunk_length = htons(len + old_len);
11496         chk->book_size = len + old_len;
11497         chk->book_size_scale = 0;
11498         chk->send_size = SCTP_SIZE32(chk->book_size);
11499         SCTP_BUF_LEN(chk->data) = chk->send_size;
11500         return;
11501 }
11502
11503 static void
11504 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk,
11505     int number_entries, uint16_t * list,
11506     uint32_t seq)
11507 {
11508         uint16_t len, old_len, i;
11509         struct sctp_stream_reset_in_request *req_in;
11510         struct sctp_chunkhdr *ch;
11511
11512         ch = mtod(chk->data, struct sctp_chunkhdr *);
11513         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11514
11515         /* get to new offset for the param. */
11516         req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len);
11517         /* now how long will this param be? */
11518         len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries));
11519         req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST);
11520         req_in->ph.param_length = htons(len);
11521         req_in->request_seq = htonl(seq);
11522         if (number_entries) {
11523                 for (i = 0; i < number_entries; i++) {
11524                         req_in->list_of_streams[i] = htons(list[i]);
11525                 }
11526         }
11527         if (SCTP_SIZE32(len) > len) {
11528                 /*-
11529                  * Need to worry about the pad we may end up adding to the
11530                  * end. This is easy since the struct is either aligned to 4
11531                  * bytes or 2 bytes off.
11532                  */
11533                 req_in->list_of_streams[number_entries] = 0;
11534         }
11535         /* now fix the chunk length */
11536         ch->chunk_length = htons(len + old_len);
11537         chk->book_size = len + old_len;
11538         chk->book_size_scale = 0;
11539         chk->send_size = SCTP_SIZE32(chk->book_size);
11540         SCTP_BUF_LEN(chk->data) = chk->send_size;
11541         return;
11542 }
11543
11544 static void
11545 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk,
11546     uint32_t seq)
11547 {
11548         uint16_t len, old_len;
11549         struct sctp_stream_reset_tsn_request *req_tsn;
11550         struct sctp_chunkhdr *ch;
11551
11552         ch = mtod(chk->data, struct sctp_chunkhdr *);
11553         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11554
11555         /* get to new offset for the param. */
11556         req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len);
11557         /* now how long will this param be? */
11558         len = sizeof(struct sctp_stream_reset_tsn_request);
11559         req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST);
11560         req_tsn->ph.param_length = htons(len);
11561         req_tsn->request_seq = htonl(seq);
11562
11563         /* now fix the chunk length */
11564         ch->chunk_length = htons(len + old_len);
11565         chk->send_size = len + old_len;
11566         chk->book_size = SCTP_SIZE32(chk->send_size);
11567         chk->book_size_scale = 0;
11568         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11569         return;
11570 }
11571
11572 void
11573 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk,
11574     uint32_t resp_seq, uint32_t result)
11575 {
11576         uint16_t len, old_len;
11577         struct sctp_stream_reset_response *resp;
11578         struct sctp_chunkhdr *ch;
11579
11580         ch = mtod(chk->data, struct sctp_chunkhdr *);
11581         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11582
11583         /* get to new offset for the param. */
11584         resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len);
11585         /* now how long will this param be? */
11586         len = sizeof(struct sctp_stream_reset_response);
11587         resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11588         resp->ph.param_length = htons(len);
11589         resp->response_seq = htonl(resp_seq);
11590         resp->result = ntohl(result);
11591
11592         /* now fix the chunk length */
11593         ch->chunk_length = htons(len + old_len);
11594         chk->book_size = len + old_len;
11595         chk->book_size_scale = 0;
11596         chk->send_size = SCTP_SIZE32(chk->book_size);
11597         SCTP_BUF_LEN(chk->data) = chk->send_size;
11598         return;
11599 }
11600
11601 void
11602 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk,
11603     uint32_t resp_seq, uint32_t result,
11604     uint32_t send_una, uint32_t recv_next)
11605 {
11606         uint16_t len, old_len;
11607         struct sctp_stream_reset_response_tsn *resp;
11608         struct sctp_chunkhdr *ch;
11609
11610         ch = mtod(chk->data, struct sctp_chunkhdr *);
11611         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11612
11613         /* get to new offset for the param. */
11614         resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len);
11615         /* now how long will this param be? */
11616         len = sizeof(struct sctp_stream_reset_response_tsn);
11617         resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE);
11618         resp->ph.param_length = htons(len);
11619         resp->response_seq = htonl(resp_seq);
11620         resp->result = htonl(result);
11621         resp->senders_next_tsn = htonl(send_una);
11622         resp->receivers_next_tsn = htonl(recv_next);
11623
11624         /* now fix the chunk length */
11625         ch->chunk_length = htons(len + old_len);
11626         chk->book_size = len + old_len;
11627         chk->send_size = SCTP_SIZE32(chk->book_size);
11628         chk->book_size_scale = 0;
11629         SCTP_BUF_LEN(chk->data) = chk->send_size;
11630         return;
11631 }
11632
11633 static void
11634 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk,
11635     uint32_t seq,
11636     uint16_t adding)
11637 {
11638         uint16_t len, old_len;
11639         struct sctp_chunkhdr *ch;
11640         struct sctp_stream_reset_add_strm *addstr;
11641
11642         ch = mtod(chk->data, struct sctp_chunkhdr *);
11643         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11644
11645         /* get to new offset for the param. */
11646         addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11647         /* now how long will this param be? */
11648         len = sizeof(struct sctp_stream_reset_add_strm);
11649
11650         /* Fill it out. */
11651         addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS);
11652         addstr->ph.param_length = htons(len);
11653         addstr->request_seq = htonl(seq);
11654         addstr->number_of_streams = htons(adding);
11655         addstr->reserved = 0;
11656
11657         /* now fix the chunk length */
11658         ch->chunk_length = htons(len + old_len);
11659         chk->send_size = len + old_len;
11660         chk->book_size = SCTP_SIZE32(chk->send_size);
11661         chk->book_size_scale = 0;
11662         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11663         return;
11664 }
11665
11666 static void
11667 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk,
11668     uint32_t seq,
11669     uint16_t adding)
11670 {
11671         uint16_t len, old_len;
11672         struct sctp_chunkhdr *ch;
11673         struct sctp_stream_reset_add_strm *addstr;
11674
11675         ch = mtod(chk->data, struct sctp_chunkhdr *);
11676         old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length));
11677
11678         /* get to new offset for the param. */
11679         addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len);
11680         /* now how long will this param be? */
11681         len = sizeof(struct sctp_stream_reset_add_strm);
11682         /* Fill it out. */
11683         addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS);
11684         addstr->ph.param_length = htons(len);
11685         addstr->request_seq = htonl(seq);
11686         addstr->number_of_streams = htons(adding);
11687         addstr->reserved = 0;
11688
11689         /* now fix the chunk length */
11690         ch->chunk_length = htons(len + old_len);
11691         chk->send_size = len + old_len;
11692         chk->book_size = SCTP_SIZE32(chk->send_size);
11693         chk->book_size_scale = 0;
11694         SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size);
11695         return;
11696 }
11697
11698 int
11699 sctp_send_str_reset_req(struct sctp_tcb *stcb,
11700     int number_entries, uint16_t * list,
11701     uint8_t send_out_req,
11702     uint8_t send_in_req,
11703     uint8_t send_tsn_req,
11704     uint8_t add_stream,
11705     uint16_t adding_o,
11706     uint16_t adding_i, uint8_t peer_asked)
11707 {
11708
11709         struct sctp_association *asoc;
11710         struct sctp_tmit_chunk *chk;
11711         struct sctp_chunkhdr *ch;
11712         uint32_t seq;
11713
11714         asoc = &stcb->asoc;
11715         if (asoc->stream_reset_outstanding) {
11716                 /*-
11717                  * Already one pending, must get ACK back to clear the flag.
11718                  */
11719                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY);
11720                 return (EBUSY);
11721         }
11722         if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) &&
11723             (add_stream == 0)) {
11724                 /* nothing to do */
11725                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11726                 return (EINVAL);
11727         }
11728         if (send_tsn_req && (send_out_req || send_in_req)) {
11729                 /* error, can't do that */
11730                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
11731                 return (EINVAL);
11732         }
11733         sctp_alloc_a_chunk(stcb, chk);
11734         if (chk == NULL) {
11735                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11736                 return (ENOMEM);
11737         }
11738         chk->copy_by_ref = 0;
11739         chk->rec.chunk_id.id = SCTP_STREAM_RESET;
11740         chk->rec.chunk_id.can_take_data = 0;
11741         chk->asoc = &stcb->asoc;
11742         chk->book_size = sizeof(struct sctp_chunkhdr);
11743         chk->send_size = SCTP_SIZE32(chk->book_size);
11744         chk->book_size_scale = 0;
11745
11746         chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA);
11747         if (chk->data == NULL) {
11748                 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED);
11749                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11750                 return (ENOMEM);
11751         }
11752         SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD);
11753
11754         /* setup chunk parameters */
11755         chk->sent = SCTP_DATAGRAM_UNSENT;
11756         chk->snd_count = 0;
11757         if (stcb->asoc.alternate) {
11758                 chk->whoTo = stcb->asoc.alternate;
11759         } else {
11760                 chk->whoTo = stcb->asoc.primary_destination;
11761         }
11762         atomic_add_int(&chk->whoTo->ref_count, 1);
11763         ch = mtod(chk->data, struct sctp_chunkhdr *);
11764         ch->chunk_type = SCTP_STREAM_RESET;
11765         ch->chunk_flags = 0;
11766         ch->chunk_length = htons(chk->book_size);
11767         SCTP_BUF_LEN(chk->data) = chk->send_size;
11768
11769         seq = stcb->asoc.str_reset_seq_out;
11770         if (send_out_req) {
11771                 sctp_add_stream_reset_out(chk, number_entries, list,
11772                     seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1));
11773                 asoc->stream_reset_out_is_outstanding = 1;
11774                 seq++;
11775                 asoc->stream_reset_outstanding++;
11776         }
11777         if ((add_stream & 1) &&
11778             ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) {
11779                 /* Need to allocate more */
11780                 struct sctp_stream_out *oldstream;
11781                 struct sctp_stream_queue_pending *sp, *nsp;
11782                 int i;
11783
11784                 oldstream = stcb->asoc.strmout;
11785                 /* get some more */
11786                 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
11787                     ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
11788                     SCTP_M_STRMO);
11789                 if (stcb->asoc.strmout == NULL) {
11790                         uint8_t x;
11791
11792                         stcb->asoc.strmout = oldstream;
11793                         /* Turn off the bit */
11794                         x = add_stream & 0xfe;
11795                         add_stream = x;
11796                         goto skip_stuff;
11797                 }
11798                 /*
11799                  * Ok now we proceed with copying the old out stuff and
11800                  * initializing the new stuff.
11801                  */
11802                 SCTP_TCB_SEND_LOCK(stcb);
11803                 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1);
11804                 for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
11805                         TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11806                         stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues;
11807                         stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send;
11808                         stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete;
11809                         stcb->asoc.strmout[i].stream_no = i;
11810                         stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]);
11811                         /* now anything on those queues? */
11812                         TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) {
11813                                 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next);
11814                                 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next);
11815                         }
11816                         /* Now move assoc pointers too */
11817                         if (stcb->asoc.last_out_stream == &oldstream[i]) {
11818                                 stcb->asoc.last_out_stream = &stcb->asoc.strmout[i];
11819                         }
11820                         if (stcb->asoc.locked_on_sending == &oldstream[i]) {
11821                                 stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i];
11822                         }
11823                 }
11824                 /* now the new streams */
11825                 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1);
11826                 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) {
11827                         TAILQ_INIT(&stcb->asoc.strmout[i].outqueue);
11828                         stcb->asoc.strmout[i].chunks_on_queues = 0;
11829                         stcb->asoc.strmout[i].next_sequence_send = 0x0;
11830                         stcb->asoc.strmout[i].stream_no = i;
11831                         stcb->asoc.strmout[i].last_msg_incomplete = 0;
11832                         stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL);
11833                 }
11834                 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o;
11835                 SCTP_FREE(oldstream, SCTP_M_STRMO);
11836                 SCTP_TCB_SEND_UNLOCK(stcb);
11837         }
11838 skip_stuff:
11839         if ((add_stream & 1) && (adding_o > 0)) {
11840                 asoc->strm_pending_add_size = adding_o;
11841                 asoc->peer_req_out = peer_asked;
11842                 sctp_add_an_out_stream(chk, seq, adding_o);
11843                 seq++;
11844                 asoc->stream_reset_outstanding++;
11845         }
11846         if ((add_stream & 2) && (adding_i > 0)) {
11847                 sctp_add_an_in_stream(chk, seq, adding_i);
11848                 seq++;
11849                 asoc->stream_reset_outstanding++;
11850         }
11851         if (send_in_req) {
11852                 sctp_add_stream_reset_in(chk, number_entries, list, seq);
11853                 seq++;
11854                 asoc->stream_reset_outstanding++;
11855         }
11856         if (send_tsn_req) {
11857                 sctp_add_stream_reset_tsn(chk, seq);
11858                 asoc->stream_reset_outstanding++;
11859         }
11860         asoc->str_reset = chk;
11861         /* insert the chunk for sending */
11862         TAILQ_INSERT_TAIL(&asoc->control_send_queue,
11863             chk,
11864             sctp_next);
11865         asoc->ctrl_queue_cnt++;
11866         sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo);
11867         return (0);
11868 }
11869
11870 void
11871 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst,
11872     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11873     uint8_t use_mflowid, uint32_t mflowid,
11874     uint32_t vrf_id, uint16_t port)
11875 {
11876         /* Don't respond to an ABORT with an ABORT. */
11877         if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) {
11878                 if (cause)
11879                         sctp_m_freem(cause);
11880                 return;
11881         }
11882         sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause,
11883             use_mflowid, mflowid,
11884             vrf_id, port);
11885         return;
11886 }
11887
11888 void
11889 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst,
11890     struct sctphdr *sh, uint32_t vtag, struct mbuf *cause,
11891     uint8_t use_mflowid, uint32_t mflowid,
11892     uint32_t vrf_id, uint16_t port)
11893 {
11894         sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause,
11895             use_mflowid, mflowid,
11896             vrf_id, port);
11897         return;
11898 }
11899
11900 static struct mbuf *
11901 sctp_copy_resume(struct uio *uio,
11902     int max_send_len,
11903     int user_marks_eor,
11904     int *error,
11905     uint32_t * sndout,
11906     struct mbuf **new_tail)
11907 {
11908         struct mbuf *m;
11909
11910         m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0,
11911             (M_PKTHDR | (user_marks_eor ? M_EOR : 0)));
11912         if (m == NULL) {
11913                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11914                 *error = ENOMEM;
11915         } else {
11916                 *sndout = m_length(m, NULL);
11917                 *new_tail = m_last(m);
11918         }
11919         return (m);
11920 }
11921
11922 static int
11923 sctp_copy_one(struct sctp_stream_queue_pending *sp,
11924     struct uio *uio,
11925     int resv_upfront)
11926 {
11927         int left;
11928
11929         left = sp->length;
11930         sp->data = m_uiotombuf(uio, M_WAITOK, sp->length,
11931             resv_upfront, 0);
11932         if (sp->data == NULL) {
11933                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11934                 return (ENOMEM);
11935         }
11936         sp->tail_mbuf = m_last(sp->data);
11937         return (0);
11938 }
11939
11940
11941
11942 static struct sctp_stream_queue_pending *
11943 sctp_copy_it_in(struct sctp_tcb *stcb,
11944     struct sctp_association *asoc,
11945     struct sctp_sndrcvinfo *srcv,
11946     struct uio *uio,
11947     struct sctp_nets *net,
11948     int max_send_len,
11949     int user_marks_eor,
11950     int *error)
11951 {
11952         /*-
11953          * This routine must be very careful in its work. Protocol
11954          * processing is up and running so care must be taken to spl...()
11955          * when you need to do something that may effect the stcb/asoc. The
11956          * sb is locked however. When data is copied the protocol processing
11957          * should be enabled since this is a slower operation...
11958          */
11959         struct sctp_stream_queue_pending *sp = NULL;
11960         int resv_in_first;
11961
11962         *error = 0;
11963         /* Now can we send this? */
11964         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
11965             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
11966             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
11967             (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
11968                 /* got data while shutting down */
11969                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
11970                 *error = ECONNRESET;
11971                 goto out_now;
11972         }
11973         sctp_alloc_a_strmoq(stcb, sp);
11974         if (sp == NULL) {
11975                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
11976                 *error = ENOMEM;
11977                 goto out_now;
11978         }
11979         sp->act_flags = 0;
11980         sp->sender_all_done = 0;
11981         sp->sinfo_flags = srcv->sinfo_flags;
11982         sp->timetolive = srcv->sinfo_timetolive;
11983         sp->ppid = srcv->sinfo_ppid;
11984         sp->context = srcv->sinfo_context;
11985         (void)SCTP_GETTIME_TIMEVAL(&sp->ts);
11986
11987         sp->stream = srcv->sinfo_stream;
11988         sp->length = min(uio->uio_resid, max_send_len);
11989         if ((sp->length == (uint32_t) uio->uio_resid) &&
11990             ((user_marks_eor == 0) ||
11991             (srcv->sinfo_flags & SCTP_EOF) ||
11992             (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
11993                 sp->msg_is_complete = 1;
11994         } else {
11995                 sp->msg_is_complete = 0;
11996         }
11997         sp->sender_all_done = 0;
11998         sp->some_taken = 0;
11999         sp->put_last_out = 0;
12000         resv_in_first = sizeof(struct sctp_data_chunk);
12001         sp->data = sp->tail_mbuf = NULL;
12002         if (sp->length == 0) {
12003                 *error = 0;
12004                 goto skip_copy;
12005         }
12006         if (srcv->sinfo_keynumber_valid) {
12007                 sp->auth_keyid = srcv->sinfo_keynumber;
12008         } else {
12009                 sp->auth_keyid = stcb->asoc.authinfo.active_keyid;
12010         }
12011         if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) {
12012                 sctp_auth_key_acquire(stcb, sp->auth_keyid);
12013                 sp->holds_key_ref = 1;
12014         }
12015         *error = sctp_copy_one(sp, uio, resv_in_first);
12016 skip_copy:
12017         if (*error) {
12018                 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED);
12019                 sp = NULL;
12020         } else {
12021                 if (sp->sinfo_flags & SCTP_ADDR_OVER) {
12022                         sp->net = net;
12023                         atomic_add_int(&sp->net->ref_count, 1);
12024                 } else {
12025                         sp->net = NULL;
12026                 }
12027                 sctp_set_prsctp_policy(sp);
12028         }
12029 out_now:
12030         return (sp);
12031 }
12032
12033
12034 int
12035 sctp_sosend(struct socket *so,
12036     struct sockaddr *addr,
12037     struct uio *uio,
12038     struct mbuf *top,
12039     struct mbuf *control,
12040     int flags,
12041     struct thread *p
12042 )
12043 {
12044         int error, use_sndinfo = 0;
12045         struct sctp_sndrcvinfo sndrcvninfo;
12046         struct sockaddr *addr_to_use;
12047
12048 #if defined(INET) && defined(INET6)
12049         struct sockaddr_in sin;
12050
12051 #endif
12052
12053         if (control) {
12054                 /* process cmsg snd/rcv info (maybe a assoc-id) */
12055                 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control,
12056                     sizeof(sndrcvninfo))) {
12057                         /* got one */
12058                         use_sndinfo = 1;
12059                 }
12060         }
12061         addr_to_use = addr;
12062 #if defined(INET) && defined(INET6)
12063         if ((addr) && (addr->sa_family == AF_INET6)) {
12064                 struct sockaddr_in6 *sin6;
12065
12066                 sin6 = (struct sockaddr_in6 *)addr;
12067                 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
12068                         in6_sin6_2_sin(&sin, sin6);
12069                         addr_to_use = (struct sockaddr *)&sin;
12070                 }
12071         }
12072 #endif
12073         error = sctp_lower_sosend(so, addr_to_use, uio, top,
12074             control,
12075             flags,
12076             use_sndinfo ? &sndrcvninfo : NULL
12077             ,p
12078             );
12079         return (error);
12080 }
12081
12082
12083 int
12084 sctp_lower_sosend(struct socket *so,
12085     struct sockaddr *addr,
12086     struct uio *uio,
12087     struct mbuf *i_pak,
12088     struct mbuf *control,
12089     int flags,
12090     struct sctp_sndrcvinfo *srcv
12091     ,
12092     struct thread *p
12093 )
12094 {
12095         unsigned int sndlen = 0, max_len;
12096         int error, len;
12097         struct mbuf *top = NULL;
12098         int queue_only = 0, queue_only_for_init = 0;
12099         int free_cnt_applied = 0;
12100         int un_sent;
12101         int now_filled = 0;
12102         unsigned int inqueue_bytes = 0;
12103         struct sctp_block_entry be;
12104         struct sctp_inpcb *inp;
12105         struct sctp_tcb *stcb = NULL;
12106         struct timeval now;
12107         struct sctp_nets *net;
12108         struct sctp_association *asoc;
12109         struct sctp_inpcb *t_inp;
12110         int user_marks_eor;
12111         int create_lock_applied = 0;
12112         int nagle_applies = 0;
12113         int some_on_control = 0;
12114         int got_all_of_the_send = 0;
12115         int hold_tcblock = 0;
12116         int non_blocking = 0;
12117         uint32_t local_add_more, local_soresv = 0;
12118         uint16_t port;
12119         uint16_t sinfo_flags;
12120         sctp_assoc_t sinfo_assoc_id;
12121
12122         error = 0;
12123         net = NULL;
12124         stcb = NULL;
12125         asoc = NULL;
12126
12127         t_inp = inp = (struct sctp_inpcb *)so->so_pcb;
12128         if (inp == NULL) {
12129                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12130                 error = EINVAL;
12131                 if (i_pak) {
12132                         SCTP_RELEASE_PKT(i_pak);
12133                 }
12134                 return (error);
12135         }
12136         if ((uio == NULL) && (i_pak == NULL)) {
12137                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12138                 return (EINVAL);
12139         }
12140         user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR);
12141         atomic_add_int(&inp->total_sends, 1);
12142         if (uio) {
12143                 if (uio->uio_resid < 0) {
12144                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12145                         return (EINVAL);
12146                 }
12147                 sndlen = uio->uio_resid;
12148         } else {
12149                 top = SCTP_HEADER_TO_CHAIN(i_pak);
12150                 sndlen = SCTP_HEADER_LEN(i_pak);
12151         }
12152         SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n",
12153             (void *)addr,
12154             sndlen);
12155         if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) &&
12156             (inp->sctp_socket->so_qlimit)) {
12157                 /* The listener can NOT send */
12158                 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12159                 error = ENOTCONN;
12160                 goto out_unlocked;
12161         }
12162         /**
12163          * Pre-screen address, if one is given the sin-len
12164          * must be set correctly!
12165          */
12166         if (addr) {
12167                 union sctp_sockstore *raddr = (union sctp_sockstore *)addr;
12168
12169                 switch (raddr->sa.sa_family) {
12170 #ifdef INET
12171                 case AF_INET:
12172                         if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) {
12173                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12174                                 error = EINVAL;
12175                                 goto out_unlocked;
12176                         }
12177                         port = raddr->sin.sin_port;
12178                         break;
12179 #endif
12180 #ifdef INET6
12181                 case AF_INET6:
12182                         if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) {
12183                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12184                                 error = EINVAL;
12185                                 goto out_unlocked;
12186                         }
12187                         port = raddr->sin6.sin6_port;
12188                         break;
12189 #endif
12190                 default:
12191                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT);
12192                         error = EAFNOSUPPORT;
12193                         goto out_unlocked;
12194                 }
12195         } else
12196                 port = 0;
12197
12198         if (srcv) {
12199                 sinfo_flags = srcv->sinfo_flags;
12200                 sinfo_assoc_id = srcv->sinfo_assoc_id;
12201                 if (INVALID_SINFO_FLAG(sinfo_flags) ||
12202                     PR_SCTP_INVALID_POLICY(sinfo_flags)) {
12203                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12204                         error = EINVAL;
12205                         goto out_unlocked;
12206                 }
12207                 if (srcv->sinfo_flags)
12208                         SCTP_STAT_INCR(sctps_sends_with_flags);
12209         } else {
12210                 sinfo_flags = inp->def_send.sinfo_flags;
12211                 sinfo_assoc_id = inp->def_send.sinfo_assoc_id;
12212         }
12213         if (sinfo_flags & SCTP_SENDALL) {
12214                 /* its a sendall */
12215                 error = sctp_sendall(inp, uio, top, srcv);
12216                 top = NULL;
12217                 goto out_unlocked;
12218         }
12219         if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) {
12220                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12221                 error = EINVAL;
12222                 goto out_unlocked;
12223         }
12224         /* now we must find the assoc */
12225         if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) ||
12226             (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) {
12227                 SCTP_INP_RLOCK(inp);
12228                 stcb = LIST_FIRST(&inp->sctp_asoc_list);
12229                 if (stcb) {
12230                         SCTP_TCB_LOCK(stcb);
12231                         hold_tcblock = 1;
12232                 }
12233                 SCTP_INP_RUNLOCK(inp);
12234         } else if (sinfo_assoc_id) {
12235                 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0);
12236         } else if (addr) {
12237                 /*-
12238                  * Since we did not use findep we must
12239                  * increment it, and if we don't find a tcb
12240                  * decrement it.
12241                  */
12242                 SCTP_INP_WLOCK(inp);
12243                 SCTP_INP_INCR_REF(inp);
12244                 SCTP_INP_WUNLOCK(inp);
12245                 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12246                 if (stcb == NULL) {
12247                         SCTP_INP_WLOCK(inp);
12248                         SCTP_INP_DECR_REF(inp);
12249                         SCTP_INP_WUNLOCK(inp);
12250                 } else {
12251                         hold_tcblock = 1;
12252                 }
12253         }
12254         if ((stcb == NULL) && (addr)) {
12255                 /* Possible implicit send? */
12256                 SCTP_ASOC_CREATE_LOCK(inp);
12257                 create_lock_applied = 1;
12258                 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
12259                     (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
12260                         /* Should I really unlock ? */
12261                         SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12262                         error = EINVAL;
12263                         goto out_unlocked;
12264
12265                 }
12266                 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) &&
12267                     (addr->sa_family == AF_INET6)) {
12268                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12269                         error = EINVAL;
12270                         goto out_unlocked;
12271                 }
12272                 SCTP_INP_WLOCK(inp);
12273                 SCTP_INP_INCR_REF(inp);
12274                 SCTP_INP_WUNLOCK(inp);
12275                 /* With the lock applied look again */
12276                 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL);
12277                 if ((stcb == NULL) && (control != NULL) && (port > 0)) {
12278                         stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error);
12279                 }
12280                 if (stcb == NULL) {
12281                         SCTP_INP_WLOCK(inp);
12282                         SCTP_INP_DECR_REF(inp);
12283                         SCTP_INP_WUNLOCK(inp);
12284                 } else {
12285                         hold_tcblock = 1;
12286                 }
12287                 if (error) {
12288                         goto out_unlocked;
12289                 }
12290                 if (t_inp != inp) {
12291                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN);
12292                         error = ENOTCONN;
12293                         goto out_unlocked;
12294                 }
12295         }
12296         if (stcb == NULL) {
12297                 if (addr == NULL) {
12298                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12299                         error = ENOENT;
12300                         goto out_unlocked;
12301                 } else {
12302                         /* We must go ahead and start the INIT process */
12303                         uint32_t vrf_id;
12304
12305                         if ((sinfo_flags & SCTP_ABORT) ||
12306                             ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) {
12307                                 /*-
12308                                  * User asks to abort a non-existant assoc,
12309                                  * or EOF a non-existant assoc with no data
12310                                  */
12311                                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT);
12312                                 error = ENOENT;
12313                                 goto out_unlocked;
12314                         }
12315                         /* get an asoc/stcb struct */
12316                         vrf_id = inp->def_vrf_id;
12317 #ifdef INVARIANTS
12318                         if (create_lock_applied == 0) {
12319                                 panic("Error, should hold create lock and I don't?");
12320                         }
12321 #endif
12322                         stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id,
12323                             p
12324                             );
12325                         if (stcb == NULL) {
12326                                 /* Error is setup for us in the call */
12327                                 goto out_unlocked;
12328                         }
12329                         if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) {
12330                                 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED;
12331                                 /*
12332                                  * Set the connected flag so we can queue
12333                                  * data
12334                                  */
12335                                 soisconnecting(so);
12336                         }
12337                         hold_tcblock = 1;
12338                         if (create_lock_applied) {
12339                                 SCTP_ASOC_CREATE_UNLOCK(inp);
12340                                 create_lock_applied = 0;
12341                         } else {
12342                                 SCTP_PRINTF("Huh-3? create lock should have been on??\n");
12343                         }
12344                         /*
12345                          * Turn on queue only flag to prevent data from
12346                          * being sent
12347                          */
12348                         queue_only = 1;
12349                         asoc = &stcb->asoc;
12350                         SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12351                         (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered);
12352
12353                         /* initialize authentication params for the assoc */
12354                         sctp_initialize_auth_params(inp, stcb);
12355
12356                         if (control) {
12357                                 if (sctp_process_cmsgs_for_init(stcb, control, &error)) {
12358                                         sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7);
12359                                         hold_tcblock = 0;
12360                                         stcb = NULL;
12361                                         goto out_unlocked;
12362                                 }
12363                         }
12364                         /* out with the INIT */
12365                         queue_only_for_init = 1;
12366                         /*-
12367                          * we may want to dig in after this call and adjust the MTU
12368                          * value. It defaulted to 1500 (constant) but the ro
12369                          * structure may now have an update and thus we may need to
12370                          * change it BEFORE we append the message.
12371                          */
12372                 }
12373         } else
12374                 asoc = &stcb->asoc;
12375         if (srcv == NULL)
12376                 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send;
12377         if (srcv->sinfo_flags & SCTP_ADDR_OVER) {
12378                 if (addr)
12379                         net = sctp_findnet(stcb, addr);
12380                 else
12381                         net = NULL;
12382                 if ((net == NULL) ||
12383                     ((port != 0) && (port != stcb->rport))) {
12384                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12385                         error = EINVAL;
12386                         goto out_unlocked;
12387                 }
12388         } else {
12389                 if (stcb->asoc.alternate) {
12390                         net = stcb->asoc.alternate;
12391                 } else {
12392                         net = stcb->asoc.primary_destination;
12393                 }
12394         }
12395         atomic_add_int(&stcb->total_sends, 1);
12396         /* Keep the stcb from being freed under our feet */
12397         atomic_add_int(&asoc->refcnt, 1);
12398         free_cnt_applied = 1;
12399
12400         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) {
12401                 if (sndlen > asoc->smallest_mtu) {
12402                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12403                         error = EMSGSIZE;
12404                         goto out_unlocked;
12405                 }
12406         }
12407         if (SCTP_SO_IS_NBIO(so)
12408             || (flags & MSG_NBIO)
12409             ) {
12410                 non_blocking = 1;
12411         }
12412         /* would we block? */
12413         if (non_blocking) {
12414                 if (hold_tcblock == 0) {
12415                         SCTP_TCB_LOCK(stcb);
12416                         hold_tcblock = 1;
12417                 }
12418                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12419                 if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) ||
12420                     (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12421                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK);
12422                         if (sndlen > SCTP_SB_LIMIT_SND(so))
12423                                 error = EMSGSIZE;
12424                         else
12425                                 error = EWOULDBLOCK;
12426                         goto out_unlocked;
12427                 }
12428                 stcb->asoc.sb_send_resv += sndlen;
12429                 SCTP_TCB_UNLOCK(stcb);
12430                 hold_tcblock = 0;
12431         } else {
12432                 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen);
12433         }
12434         local_soresv = sndlen;
12435         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12436                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12437                 error = ECONNRESET;
12438                 goto out_unlocked;
12439         }
12440         if (create_lock_applied) {
12441                 SCTP_ASOC_CREATE_UNLOCK(inp);
12442                 create_lock_applied = 0;
12443         }
12444         if (asoc->stream_reset_outstanding) {
12445                 /*
12446                  * Can't queue any data while stream reset is underway.
12447                  */
12448                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN);
12449                 error = EAGAIN;
12450                 goto out_unlocked;
12451         }
12452         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12453             (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12454                 queue_only = 1;
12455         }
12456         /* we are now done with all control */
12457         if (control) {
12458                 sctp_m_freem(control);
12459                 control = NULL;
12460         }
12461         if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) ||
12462             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) ||
12463             (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) ||
12464             (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) {
12465                 if (srcv->sinfo_flags & SCTP_ABORT) {
12466                         ;
12467                 } else {
12468                         SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12469                         error = ECONNRESET;
12470                         goto out_unlocked;
12471                 }
12472         }
12473         /* Ok, we will attempt a msgsnd :> */
12474         if (p) {
12475                 p->td_ru.ru_msgsnd++;
12476         }
12477         /* Are we aborting? */
12478         if (srcv->sinfo_flags & SCTP_ABORT) {
12479                 struct mbuf *mm;
12480                 int tot_demand, tot_out = 0, max_out;
12481
12482                 SCTP_STAT_INCR(sctps_sends_with_abort);
12483                 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) ||
12484                     (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) {
12485                         /* It has to be up before we abort */
12486                         /* how big is the user initiated abort? */
12487                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12488                         error = EINVAL;
12489                         goto out;
12490                 }
12491                 if (hold_tcblock) {
12492                         SCTP_TCB_UNLOCK(stcb);
12493                         hold_tcblock = 0;
12494                 }
12495                 if (top) {
12496                         struct mbuf *cntm = NULL;
12497
12498                         mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA);
12499                         if (sndlen != 0) {
12500                                 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) {
12501                                         tot_out += SCTP_BUF_LEN(cntm);
12502                                 }
12503                         }
12504                 } else {
12505                         /* Must fit in a MTU */
12506                         tot_out = sndlen;
12507                         tot_demand = (tot_out + sizeof(struct sctp_paramhdr));
12508                         if (tot_demand > SCTP_DEFAULT_ADD_MORE) {
12509                                 /* To big */
12510                                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12511                                 error = EMSGSIZE;
12512                                 goto out;
12513                         }
12514                         mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA);
12515                 }
12516                 if (mm == NULL) {
12517                         SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM);
12518                         error = ENOMEM;
12519                         goto out;
12520                 }
12521                 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
12522                 max_out -= sizeof(struct sctp_abort_msg);
12523                 if (tot_out > max_out) {
12524                         tot_out = max_out;
12525                 }
12526                 if (mm) {
12527                         struct sctp_paramhdr *ph;
12528
12529                         /* now move forward the data pointer */
12530                         ph = mtod(mm, struct sctp_paramhdr *);
12531                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
12532                         ph->param_length = htons(sizeof(struct sctp_paramhdr) + tot_out);
12533                         ph++;
12534                         SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr);
12535                         if (top == NULL) {
12536                                 error = uiomove((caddr_t)ph, (int)tot_out, uio);
12537                                 if (error) {
12538                                         /*-
12539                                          * Here if we can't get his data we
12540                                          * still abort we just don't get to
12541                                          * send the users note :-0
12542                                          */
12543                                         sctp_m_freem(mm);
12544                                         mm = NULL;
12545                                 }
12546                         } else {
12547                                 if (sndlen != 0) {
12548                                         SCTP_BUF_NEXT(mm) = top;
12549                                 }
12550                         }
12551                 }
12552                 if (hold_tcblock == 0) {
12553                         SCTP_TCB_LOCK(stcb);
12554                 }
12555                 atomic_add_int(&stcb->asoc.refcnt, -1);
12556                 free_cnt_applied = 0;
12557                 /* release this lock, otherwise we hang on ourselves */
12558                 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED);
12559                 /* now relock the stcb so everything is sane */
12560                 hold_tcblock = 0;
12561                 stcb = NULL;
12562                 /*
12563                  * In this case top is already chained to mm avoid double
12564                  * free, since we free it below if top != NULL and driver
12565                  * would free it after sending the packet out
12566                  */
12567                 if (sndlen != 0) {
12568                         top = NULL;
12569                 }
12570                 goto out_unlocked;
12571         }
12572         /* Calculate the maximum we can send */
12573         inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12574         if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12575                 if (non_blocking) {
12576                         /* we already checked for non-blocking above. */
12577                         max_len = sndlen;
12578                 } else {
12579                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12580                 }
12581         } else {
12582                 max_len = 0;
12583         }
12584         if (hold_tcblock) {
12585                 SCTP_TCB_UNLOCK(stcb);
12586                 hold_tcblock = 0;
12587         }
12588         /* Is the stream no. valid? */
12589         if (srcv->sinfo_stream >= asoc->streamoutcnt) {
12590                 /* Invalid stream number */
12591                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12592                 error = EINVAL;
12593                 goto out_unlocked;
12594         }
12595         if (asoc->strmout == NULL) {
12596                 /* huh? software error */
12597                 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT);
12598                 error = EFAULT;
12599                 goto out_unlocked;
12600         }
12601         /* Unless E_EOR mode is on, we must make a send FIT in one call. */
12602         if ((user_marks_eor == 0) &&
12603             (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) {
12604                 /* It will NEVER fit */
12605                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE);
12606                 error = EMSGSIZE;
12607                 goto out_unlocked;
12608         }
12609         if ((uio == NULL) && user_marks_eor) {
12610                 /*-
12611                  * We do not support eeor mode for
12612                  * sending with mbuf chains (like sendfile).
12613                  */
12614                 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12615                 error = EINVAL;
12616                 goto out_unlocked;
12617         }
12618         if (user_marks_eor) {
12619                 local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold));
12620         } else {
12621                 /*-
12622                  * For non-eeor the whole message must fit in
12623                  * the socket send buffer.
12624                  */
12625                 local_add_more = sndlen;
12626         }
12627         len = 0;
12628         if (non_blocking) {
12629                 goto skip_preblock;
12630         }
12631         if (((max_len <= local_add_more) &&
12632             (SCTP_SB_LIMIT_SND(so) >= local_add_more)) ||
12633             (max_len == 0) ||
12634             ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12635                 /* No room right now ! */
12636                 SOCKBUF_LOCK(&so->so_snd);
12637                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12638                 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) ||
12639                     ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) {
12640                         SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n",
12641                             (unsigned int)SCTP_SB_LIMIT_SND(so),
12642                             inqueue_bytes,
12643                             local_add_more,
12644                             stcb->asoc.stream_queue_cnt,
12645                             stcb->asoc.chunks_on_out_queue,
12646                             SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue));
12647                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12648                                 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen);
12649                         }
12650                         be.error = 0;
12651                         stcb->block_entry = &be;
12652                         error = sbwait(&so->so_snd);
12653                         stcb->block_entry = NULL;
12654                         if (error || so->so_error || be.error) {
12655                                 if (error == 0) {
12656                                         if (so->so_error)
12657                                                 error = so->so_error;
12658                                         if (be.error) {
12659                                                 error = be.error;
12660                                         }
12661                                 }
12662                                 SOCKBUF_UNLOCK(&so->so_snd);
12663                                 goto out_unlocked;
12664                         }
12665                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12666                                 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12667                                     asoc, stcb->asoc.total_output_queue_size);
12668                         }
12669                         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12670                                 goto out_unlocked;
12671                         }
12672                         inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12673                 }
12674                 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) {
12675                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12676                 } else {
12677                         max_len = 0;
12678                 }
12679                 SOCKBUF_UNLOCK(&so->so_snd);
12680         }
12681 skip_preblock:
12682         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12683                 goto out_unlocked;
12684         }
12685         /*
12686          * sndlen covers for mbuf case uio_resid covers for the non-mbuf
12687          * case NOTE: uio will be null when top/mbuf is passed
12688          */
12689         if (sndlen == 0) {
12690                 if (srcv->sinfo_flags & SCTP_EOF) {
12691                         got_all_of_the_send = 1;
12692                         goto dataless_eof;
12693                 } else {
12694                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12695                         error = EINVAL;
12696                         goto out;
12697                 }
12698         }
12699         if (top == NULL) {
12700                 struct sctp_stream_queue_pending *sp;
12701                 struct sctp_stream_out *strm;
12702                 uint32_t sndout;
12703
12704                 SCTP_TCB_SEND_LOCK(stcb);
12705                 if ((asoc->stream_locked) &&
12706                     (asoc->stream_locked_on != srcv->sinfo_stream)) {
12707                         SCTP_TCB_SEND_UNLOCK(stcb);
12708                         SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL);
12709                         error = EINVAL;
12710                         goto out;
12711                 }
12712                 SCTP_TCB_SEND_UNLOCK(stcb);
12713
12714                 strm = &stcb->asoc.strmout[srcv->sinfo_stream];
12715                 if (strm->last_msg_incomplete == 0) {
12716         do_a_copy_in:
12717                         sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error);
12718                         if ((sp == NULL) || (error)) {
12719                                 goto out;
12720                         }
12721                         SCTP_TCB_SEND_LOCK(stcb);
12722                         if (sp->msg_is_complete) {
12723                                 strm->last_msg_incomplete = 0;
12724                                 asoc->stream_locked = 0;
12725                         } else {
12726                                 /*
12727                                  * Just got locked to this guy in case of an
12728                                  * interrupt.
12729                                  */
12730                                 strm->last_msg_incomplete = 1;
12731                                 asoc->stream_locked = 1;
12732                                 asoc->stream_locked_on = srcv->sinfo_stream;
12733                                 sp->sender_all_done = 0;
12734                         }
12735                         sctp_snd_sb_alloc(stcb, sp->length);
12736                         atomic_add_int(&asoc->stream_queue_cnt, 1);
12737                         if (srcv->sinfo_flags & SCTP_UNORDERED) {
12738                                 SCTP_STAT_INCR(sctps_sends_with_unord);
12739                         }
12740                         TAILQ_INSERT_TAIL(&strm->outqueue, sp, next);
12741                         stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1);
12742                         SCTP_TCB_SEND_UNLOCK(stcb);
12743                 } else {
12744                         SCTP_TCB_SEND_LOCK(stcb);
12745                         sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead);
12746                         SCTP_TCB_SEND_UNLOCK(stcb);
12747                         if (sp == NULL) {
12748                                 /* ???? Huh ??? last msg is gone */
12749 #ifdef INVARIANTS
12750                                 panic("Warning: Last msg marked incomplete, yet nothing left?");
12751 #else
12752                                 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n");
12753                                 strm->last_msg_incomplete = 0;
12754 #endif
12755                                 goto do_a_copy_in;
12756
12757                         }
12758                 }
12759                 while (uio->uio_resid > 0) {
12760                         /* How much room do we have? */
12761                         struct mbuf *new_tail, *mm;
12762
12763                         if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12764                                 max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size;
12765                         else
12766                                 max_len = 0;
12767
12768                         if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) ||
12769                             (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) ||
12770                             (uio->uio_resid && (uio->uio_resid <= (int)max_len))) {
12771                                 sndout = 0;
12772                                 new_tail = NULL;
12773                                 if (hold_tcblock) {
12774                                         SCTP_TCB_UNLOCK(stcb);
12775                                         hold_tcblock = 0;
12776                                 }
12777                                 mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail);
12778                                 if ((mm == NULL) || error) {
12779                                         if (mm) {
12780                                                 sctp_m_freem(mm);
12781                                         }
12782                                         goto out;
12783                                 }
12784                                 /* Update the mbuf and count */
12785                                 SCTP_TCB_SEND_LOCK(stcb);
12786                                 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12787                                         /*
12788                                          * we need to get out. Peer probably
12789                                          * aborted.
12790                                          */
12791                                         sctp_m_freem(mm);
12792                                         if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) {
12793                                                 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET);
12794                                                 error = ECONNRESET;
12795                                         }
12796                                         SCTP_TCB_SEND_UNLOCK(stcb);
12797                                         goto out;
12798                                 }
12799                                 if (sp->tail_mbuf) {
12800                                         /* tack it to the end */
12801                                         SCTP_BUF_NEXT(sp->tail_mbuf) = mm;
12802                                         sp->tail_mbuf = new_tail;
12803                                 } else {
12804                                         /* A stolen mbuf */
12805                                         sp->data = mm;
12806                                         sp->tail_mbuf = new_tail;
12807                                 }
12808                                 sctp_snd_sb_alloc(stcb, sndout);
12809                                 atomic_add_int(&sp->length, sndout);
12810                                 len += sndout;
12811
12812                                 /* Did we reach EOR? */
12813                                 if ((uio->uio_resid == 0) &&
12814                                     ((user_marks_eor == 0) ||
12815                                     (srcv->sinfo_flags & SCTP_EOF) ||
12816                                     (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) {
12817                                         sp->msg_is_complete = 1;
12818                                 } else {
12819                                         sp->msg_is_complete = 0;
12820                                 }
12821                                 SCTP_TCB_SEND_UNLOCK(stcb);
12822                         }
12823                         if (uio->uio_resid == 0) {
12824                                 /* got it all? */
12825                                 continue;
12826                         }
12827                         /* PR-SCTP? */
12828                         if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) {
12829                                 /*
12830                                  * This is ugly but we must assure locking
12831                                  * order
12832                                  */
12833                                 if (hold_tcblock == 0) {
12834                                         SCTP_TCB_LOCK(stcb);
12835                                         hold_tcblock = 1;
12836                                 }
12837                                 sctp_prune_prsctp(stcb, asoc, srcv, sndlen);
12838                                 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk));
12839                                 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size)
12840                                         max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes;
12841                                 else
12842                                         max_len = 0;
12843                                 if (max_len > 0) {
12844                                         continue;
12845                                 }
12846                                 SCTP_TCB_UNLOCK(stcb);
12847                                 hold_tcblock = 0;
12848                         }
12849                         /* wait for space now */
12850                         if (non_blocking) {
12851                                 /* Non-blocking io in place out */
12852                                 goto skip_out_eof;
12853                         }
12854                         /* What about the INIT, send it maybe */
12855                         if (queue_only_for_init) {
12856                                 if (hold_tcblock == 0) {
12857                                         SCTP_TCB_LOCK(stcb);
12858                                         hold_tcblock = 1;
12859                                 }
12860                                 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
12861                                         /* a collision took us forward? */
12862                                         queue_only = 0;
12863                                 } else {
12864                                         sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
12865                                         SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT);
12866                                         queue_only = 1;
12867                                 }
12868                         }
12869                         if ((net->flight_size > net->cwnd) &&
12870                             (asoc->sctp_cmt_on_off == 0)) {
12871                                 SCTP_STAT_INCR(sctps_send_cwnd_avoid);
12872                                 queue_only = 1;
12873                         } else if (asoc->ifp_had_enobuf) {
12874                                 SCTP_STAT_INCR(sctps_ifnomemqueued);
12875                                 if (net->flight_size > (2 * net->mtu)) {
12876                                         queue_only = 1;
12877                                 }
12878                                 asoc->ifp_had_enobuf = 0;
12879                         }
12880                         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
12881                             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
12882                         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
12883                             (stcb->asoc.total_flight > 0) &&
12884                             (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
12885                             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
12886
12887                                 /*-
12888                                  * Ok, Nagle is set on and we have data outstanding.
12889                                  * Don't send anything and let SACKs drive out the
12890                                  * data unless wen have a "full" segment to send.
12891                                  */
12892                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12893                                         sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
12894                                 }
12895                                 SCTP_STAT_INCR(sctps_naglequeued);
12896                                 nagle_applies = 1;
12897                         } else {
12898                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
12899                                         if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
12900                                                 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
12901                                 }
12902                                 SCTP_STAT_INCR(sctps_naglesent);
12903                                 nagle_applies = 0;
12904                         }
12905                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12906
12907                                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
12908                                     nagle_applies, un_sent);
12909                                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
12910                                     stcb->asoc.total_flight,
12911                                     stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
12912                         }
12913                         if (queue_only_for_init)
12914                                 queue_only_for_init = 0;
12915                         if ((queue_only == 0) && (nagle_applies == 0)) {
12916                                 /*-
12917                                  * need to start chunk output
12918                                  * before blocking.. note that if
12919                                  * a lock is already applied, then
12920                                  * the input via the net is happening
12921                                  * and I don't need to start output :-D
12922                                  */
12923                                 if (hold_tcblock == 0) {
12924                                         if (SCTP_TCB_TRYLOCK(stcb)) {
12925                                                 hold_tcblock = 1;
12926                                                 sctp_chunk_output(inp,
12927                                                     stcb,
12928                                                     SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12929                                         }
12930                                 } else {
12931                                         sctp_chunk_output(inp,
12932                                             stcb,
12933                                             SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
12934                                 }
12935                                 if (hold_tcblock == 1) {
12936                                         SCTP_TCB_UNLOCK(stcb);
12937                                         hold_tcblock = 0;
12938                                 }
12939                         }
12940                         SOCKBUF_LOCK(&so->so_snd);
12941                         /*-
12942                          * This is a bit strange, but I think it will
12943                          * work. The total_output_queue_size is locked and
12944                          * protected by the TCB_LOCK, which we just released.
12945                          * There is a race that can occur between releasing it
12946                          * above, and me getting the socket lock, where sacks
12947                          * come in but we have not put the SB_WAIT on the
12948                          * so_snd buffer to get the wakeup. After the LOCK
12949                          * is applied the sack_processing will also need to
12950                          * LOCK the so->so_snd to do the actual sowwakeup(). So
12951                          * once we have the socket buffer lock if we recheck the
12952                          * size we KNOW we will get to sleep safely with the
12953                          * wakeup flag in place.
12954                          */
12955                         if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size +
12956                             min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) {
12957                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12958                                         sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK,
12959                                             asoc, uio->uio_resid);
12960                                 }
12961                                 be.error = 0;
12962                                 stcb->block_entry = &be;
12963                                 error = sbwait(&so->so_snd);
12964                                 stcb->block_entry = NULL;
12965
12966                                 if (error || so->so_error || be.error) {
12967                                         if (error == 0) {
12968                                                 if (so->so_error)
12969                                                         error = so->so_error;
12970                                                 if (be.error) {
12971                                                         error = be.error;
12972                                                 }
12973                                         }
12974                                         SOCKBUF_UNLOCK(&so->so_snd);
12975                                         goto out_unlocked;
12976                                 }
12977                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
12978                                         sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK,
12979                                             asoc, stcb->asoc.total_output_queue_size);
12980                                 }
12981                         }
12982                         SOCKBUF_UNLOCK(&so->so_snd);
12983                         if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
12984                                 goto out_unlocked;
12985                         }
12986                 }
12987                 SCTP_TCB_SEND_LOCK(stcb);
12988                 if (sp) {
12989                         if (sp->msg_is_complete == 0) {
12990                                 strm->last_msg_incomplete = 1;
12991                                 asoc->stream_locked = 1;
12992                                 asoc->stream_locked_on = srcv->sinfo_stream;
12993                         } else {
12994                                 sp->sender_all_done = 1;
12995                                 strm->last_msg_incomplete = 0;
12996                                 asoc->stream_locked = 0;
12997                         }
12998                 } else {
12999                         SCTP_PRINTF("Huh no sp TSNH?\n");
13000                         strm->last_msg_incomplete = 0;
13001                         asoc->stream_locked = 0;
13002                 }
13003                 SCTP_TCB_SEND_UNLOCK(stcb);
13004                 if (uio->uio_resid == 0) {
13005                         got_all_of_the_send = 1;
13006                 }
13007         } else {
13008                 /* We send in a 0, since we do NOT have any locks */
13009                 error = sctp_msg_append(stcb, net, top, srcv, 0);
13010                 top = NULL;
13011                 if (srcv->sinfo_flags & SCTP_EOF) {
13012                         /*
13013                          * This should only happen for Panda for the mbuf
13014                          * send case, which does NOT yet support EEOR mode.
13015                          * Thus, we can just set this flag to do the proper
13016                          * EOF handling.
13017                          */
13018                         got_all_of_the_send = 1;
13019                 }
13020         }
13021         if (error) {
13022                 goto out;
13023         }
13024 dataless_eof:
13025         /* EOF thing ? */
13026         if ((srcv->sinfo_flags & SCTP_EOF) &&
13027             (got_all_of_the_send == 1)) {
13028                 int cnt;
13029
13030                 SCTP_STAT_INCR(sctps_sends_with_eof);
13031                 error = 0;
13032                 if (hold_tcblock == 0) {
13033                         SCTP_TCB_LOCK(stcb);
13034                         hold_tcblock = 1;
13035                 }
13036                 cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED);
13037                 if (TAILQ_EMPTY(&asoc->send_queue) &&
13038                     TAILQ_EMPTY(&asoc->sent_queue) &&
13039                     (cnt == 0)) {
13040                         if (asoc->locked_on_sending) {
13041                                 goto abort_anyway;
13042                         }
13043                         /* there is nothing queued to send, so I'm done... */
13044                         if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13045                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13046                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13047                                 struct sctp_nets *netp;
13048
13049                                 /* only send SHUTDOWN the first time through */
13050                                 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) {
13051                                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
13052                                 }
13053                                 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
13054                                 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
13055                                 sctp_stop_timers_for_shutdown(stcb);
13056                                 if (stcb->asoc.alternate) {
13057                                         netp = stcb->asoc.alternate;
13058                                 } else {
13059                                         netp = stcb->asoc.primary_destination;
13060                                 }
13061                                 sctp_send_shutdown(stcb, netp);
13062                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb,
13063                                     netp);
13064                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13065                                     asoc->primary_destination);
13066                         }
13067                 } else {
13068                         /*-
13069                          * we still got (or just got) data to send, so set
13070                          * SHUTDOWN_PENDING
13071                          */
13072                         /*-
13073                          * XXX sockets draft says that SCTP_EOF should be
13074                          * sent with no data.  currently, we will allow user
13075                          * data to be sent first and move to
13076                          * SHUTDOWN-PENDING
13077                          */
13078                         if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) &&
13079                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) &&
13080                             (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) {
13081                                 if (hold_tcblock == 0) {
13082                                         SCTP_TCB_LOCK(stcb);
13083                                         hold_tcblock = 1;
13084                                 }
13085                                 if (asoc->locked_on_sending) {
13086                                         /* Locked to send out the data */
13087                                         struct sctp_stream_queue_pending *sp;
13088
13089                                         sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead);
13090                                         if (sp) {
13091                                                 if ((sp->length == 0) && (sp->msg_is_complete == 0))
13092                                                         asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
13093                                         }
13094                                 }
13095                                 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING;
13096                                 if (TAILQ_EMPTY(&asoc->send_queue) &&
13097                                     TAILQ_EMPTY(&asoc->sent_queue) &&
13098                                     (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) {
13099                         abort_anyway:
13100                                         if (free_cnt_applied) {
13101                                                 atomic_add_int(&stcb->asoc.refcnt, -1);
13102                                                 free_cnt_applied = 0;
13103                                         }
13104                                         sctp_abort_an_association(stcb->sctp_ep, stcb,
13105                                             NULL, SCTP_SO_LOCKED);
13106                                         /*
13107                                          * now relock the stcb so everything
13108                                          * is sane
13109                                          */
13110                                         hold_tcblock = 0;
13111                                         stcb = NULL;
13112                                         goto out;
13113                                 }
13114                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb,
13115                                     asoc->primary_destination);
13116                                 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY);
13117                         }
13118                 }
13119         }
13120 skip_out_eof:
13121         if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) {
13122                 some_on_control = 1;
13123         }
13124         if (queue_only_for_init) {
13125                 if (hold_tcblock == 0) {
13126                         SCTP_TCB_LOCK(stcb);
13127                         hold_tcblock = 1;
13128                 }
13129                 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) {
13130                         /* a collision took us forward? */
13131                         queue_only = 0;
13132                 } else {
13133                         sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED);
13134                         SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT);
13135                         queue_only = 1;
13136                 }
13137         }
13138         if ((net->flight_size > net->cwnd) &&
13139             (stcb->asoc.sctp_cmt_on_off == 0)) {
13140                 SCTP_STAT_INCR(sctps_send_cwnd_avoid);
13141                 queue_only = 1;
13142         } else if (asoc->ifp_had_enobuf) {
13143                 SCTP_STAT_INCR(sctps_ifnomemqueued);
13144                 if (net->flight_size > (2 * net->mtu)) {
13145                         queue_only = 1;
13146                 }
13147                 asoc->ifp_had_enobuf = 0;
13148         }
13149         un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) +
13150             (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk)));
13151         if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) &&
13152             (stcb->asoc.total_flight > 0) &&
13153             (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) &&
13154             (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) {
13155                 /*-
13156                  * Ok, Nagle is set on and we have data outstanding.
13157                  * Don't send anything and let SACKs drive out the
13158                  * data unless wen have a "full" segment to send.
13159                  */
13160                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13161                         sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED);
13162                 }
13163                 SCTP_STAT_INCR(sctps_naglequeued);
13164                 nagle_applies = 1;
13165         } else {
13166                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) {
13167                         if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY))
13168                                 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED);
13169                 }
13170                 SCTP_STAT_INCR(sctps_naglesent);
13171                 nagle_applies = 0;
13172         }
13173         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) {
13174                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only,
13175                     nagle_applies, un_sent);
13176                 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size,
13177                     stcb->asoc.total_flight,
13178                     stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count);
13179         }
13180         if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) {
13181                 /* we can attempt to send too. */
13182                 if (hold_tcblock == 0) {
13183                         /*
13184                          * If there is activity recv'ing sacks no need to
13185                          * send
13186                          */
13187                         if (SCTP_TCB_TRYLOCK(stcb)) {
13188                                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13189                                 hold_tcblock = 1;
13190                         }
13191                 } else {
13192                         sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13193                 }
13194         } else if ((queue_only == 0) &&
13195                     (stcb->asoc.peers_rwnd == 0) &&
13196             (stcb->asoc.total_flight == 0)) {
13197                 /* We get to have a probe outstanding */
13198                 if (hold_tcblock == 0) {
13199                         hold_tcblock = 1;
13200                         SCTP_TCB_LOCK(stcb);
13201                 }
13202                 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED);
13203         } else if (some_on_control) {
13204                 int num_out, reason, frag_point;
13205
13206                 /* Here we do control only */
13207                 if (hold_tcblock == 0) {
13208                         hold_tcblock = 1;
13209                         SCTP_TCB_LOCK(stcb);
13210                 }
13211                 frag_point = sctp_get_frag_point(stcb, &stcb->asoc);
13212                 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out,
13213                     &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED);
13214         }
13215         SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n",
13216             queue_only, stcb->asoc.peers_rwnd, un_sent,
13217             stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue,
13218             stcb->asoc.total_output_queue_size, error);
13219
13220 out:
13221 out_unlocked:
13222
13223         if (local_soresv && stcb) {
13224                 atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen);
13225         }
13226         if (create_lock_applied) {
13227                 SCTP_ASOC_CREATE_UNLOCK(inp);
13228         }
13229         if ((stcb) && hold_tcblock) {
13230                 SCTP_TCB_UNLOCK(stcb);
13231         }
13232         if (stcb && free_cnt_applied) {
13233                 atomic_add_int(&stcb->asoc.refcnt, -1);
13234         }
13235 #ifdef INVARIANTS
13236         if (stcb) {
13237                 if (mtx_owned(&stcb->tcb_mtx)) {
13238                         panic("Leaving with tcb mtx owned?");
13239                 }
13240                 if (mtx_owned(&stcb->tcb_send_mtx)) {
13241                         panic("Leaving with tcb send mtx owned?");
13242                 }
13243         }
13244 #endif
13245 #ifdef INVARIANTS
13246         if (inp) {
13247                 sctp_validate_no_locks(inp);
13248         } else {
13249                 SCTP_PRINTF("Warning - inp is NULL so cant validate locks\n");
13250         }
13251 #endif
13252         if (top) {
13253                 sctp_m_freem(top);
13254         }
13255         if (control) {
13256                 sctp_m_freem(control);
13257         }
13258         return (error);
13259 }
13260
13261
13262 /*
13263  * generate an AUTHentication chunk, if required
13264  */
13265 struct mbuf *
13266 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end,
13267     struct sctp_auth_chunk **auth_ret, uint32_t * offset,
13268     struct sctp_tcb *stcb, uint8_t chunk)
13269 {
13270         struct mbuf *m_auth;
13271         struct sctp_auth_chunk *auth;
13272         int chunk_len;
13273         struct mbuf *cn;
13274
13275         if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) ||
13276             (stcb == NULL))
13277                 return (m);
13278
13279         /* sysctl disabled auth? */
13280         if (SCTP_BASE_SYSCTL(sctp_auth_disable))
13281                 return (m);
13282
13283         /* peer doesn't do auth... */
13284         if (!stcb->asoc.peer_supports_auth) {
13285                 return (m);
13286         }
13287         /* does the requested chunk require auth? */
13288         if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) {
13289                 return (m);
13290         }
13291         m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER);
13292         if (m_auth == NULL) {
13293                 /* no mbuf's */
13294                 return (m);
13295         }
13296         /* reserve some space if this will be the first mbuf */
13297         if (m == NULL)
13298                 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD);
13299         /* fill in the AUTH chunk details */
13300         auth = mtod(m_auth, struct sctp_auth_chunk *);
13301         bzero(auth, sizeof(*auth));
13302         auth->ch.chunk_type = SCTP_AUTHENTICATION;
13303         auth->ch.chunk_flags = 0;
13304         chunk_len = sizeof(*auth) +
13305             sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id);
13306         auth->ch.chunk_length = htons(chunk_len);
13307         auth->hmac_id = htons(stcb->asoc.peer_hmac_id);
13308         /* key id and hmac digest will be computed and filled in upon send */
13309
13310         /* save the offset where the auth was inserted into the chain */
13311         *offset = 0;
13312         for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) {
13313                 *offset += SCTP_BUF_LEN(cn);
13314         }
13315
13316         /* update length and return pointer to the auth chunk */
13317         SCTP_BUF_LEN(m_auth) = chunk_len;
13318         m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0);
13319         if (auth_ret != NULL)
13320                 *auth_ret = auth;
13321
13322         return (m);
13323 }
13324
13325 #ifdef INET6
13326 int
13327 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro)
13328 {
13329         struct nd_prefix *pfx = NULL;
13330         struct nd_pfxrouter *pfxrtr = NULL;
13331         struct sockaddr_in6 gw6;
13332
13333         if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6)
13334                 return (0);
13335
13336         /* get prefix entry of address */
13337         LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) {
13338                 if (pfx->ndpr_stateflags & NDPRF_DETACHED)
13339                         continue;
13340                 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr,
13341                     &src6->sin6_addr, &pfx->ndpr_mask))
13342                         break;
13343         }
13344         /* no prefix entry in the prefix list */
13345         if (pfx == NULL) {
13346                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for ");
13347                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13348                 return (0);
13349         }
13350         SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is ");
13351         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6);
13352
13353         /* search installed gateway from prefix entry */
13354         LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) {
13355                 memset(&gw6, 0, sizeof(struct sockaddr_in6));
13356                 gw6.sin6_family = AF_INET6;
13357                 gw6.sin6_len = sizeof(struct sockaddr_in6);
13358                 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr,
13359                     sizeof(struct in6_addr));
13360                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is ");
13361                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6);
13362                 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is ");
13363                 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13364                 if (sctp_cmpaddr((struct sockaddr *)&gw6,
13365                     ro->ro_rt->rt_gateway)) {
13366                         SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n");
13367                         return (1);
13368                 }
13369         }
13370         SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n");
13371         return (0);
13372 }
13373
13374 #endif
13375
13376 int
13377 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro)
13378 {
13379 #ifdef INET
13380         struct sockaddr_in *sin, *mask;
13381         struct ifaddr *ifa;
13382         struct in_addr srcnetaddr, gwnetaddr;
13383
13384         if (ro == NULL || ro->ro_rt == NULL ||
13385             sifa->address.sa.sa_family != AF_INET) {
13386                 return (0);
13387         }
13388         ifa = (struct ifaddr *)sifa->ifa;
13389         mask = (struct sockaddr_in *)(ifa->ifa_netmask);
13390         sin = (struct sockaddr_in *)&sifa->address.sin;
13391         srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13392         SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is ");
13393         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa);
13394         SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr);
13395
13396         sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway;
13397         gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr);
13398         SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is ");
13399         SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway);
13400         SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr);
13401         if (srcnetaddr.s_addr == gwnetaddr.s_addr) {
13402                 return (1);
13403         }
13404 #endif
13405         return (0);
13406 }