1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * a) Redistributions of source code must retain the above copyright notice, 12 * this list of conditions and the following disclaimer. 13 * 14 * b) Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in 16 * the documentation and/or other materials provided with the distribution. 17 * 18 * c) Neither the name of Cisco Systems, Inc. nor the names of its 19 * contributors may be used to endorse or promote products derived 20 * from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 32 * THE POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 __FBSDID("$FreeBSD$"); 37 38 #include <netinet/sctp_os.h> 39 #include <sys/proc.h> 40 #include <netinet/sctp_var.h> 41 #include <netinet/sctp_sysctl.h> 42 #include <netinet/sctp_header.h> 43 #include <netinet/sctp_pcb.h> 44 #include <netinet/sctputil.h> 45 #include <netinet/sctp_output.h> 46 #include <netinet/sctp_uio.h> 47 #include <netinet/sctputil.h> 48 #include <netinet/sctp_auth.h> 49 #include <netinet/sctp_timer.h> 50 #include <netinet/sctp_asconf.h> 51 #include <netinet/sctp_indata.h> 52 #include <netinet/sctp_bsd_addr.h> 53 #include <netinet/sctp_input.h> 54 #include <netinet/sctp_crc32.h> 55 #include <netinet/sctp_kdtrace.h> 56 #if defined(INET) || defined(INET6) 57 #include <netinet/udp.h> 58 #endif 59 #include <netinet/udp_var.h> 60 #include <machine/in_cksum.h> 61 62 #define SCTP_MAX_GAPS_INARRAY 4 63 struct sack_track { 64 uint8_t right_edge; /* mergable on the right edge */ 65 uint8_t left_edge; /* mergable on the left edge */ 66 uint8_t num_entries; 67 uint8_t spare; 68 struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY]; 69 }; 70 71 const struct sack_track sack_array[256] = { 72 {0, 0, 0, 0, /* 0x00 */ 73 {{0, 0}, 74 {0, 0}, 75 {0, 0}, 76 {0, 0} 77 } 78 }, 79 {1, 0, 1, 0, /* 0x01 */ 80 {{0, 0}, 81 {0, 0}, 82 {0, 0}, 83 {0, 0} 84 } 85 }, 86 {0, 0, 1, 0, /* 0x02 */ 87 {{1, 1}, 88 {0, 0}, 89 {0, 0}, 90 {0, 0} 91 } 92 }, 93 {1, 0, 1, 0, /* 0x03 */ 94 {{0, 1}, 95 {0, 0}, 96 {0, 0}, 97 {0, 0} 98 } 99 }, 100 {0, 0, 1, 0, /* 0x04 */ 101 {{2, 2}, 102 {0, 0}, 103 {0, 0}, 104 {0, 0} 105 } 106 }, 107 {1, 0, 2, 0, /* 0x05 */ 108 {{0, 0}, 109 {2, 2}, 110 {0, 0}, 111 {0, 0} 112 } 113 }, 114 {0, 0, 1, 0, /* 0x06 */ 115 {{1, 2}, 116 {0, 0}, 117 {0, 0}, 118 {0, 0} 119 } 120 }, 121 {1, 0, 1, 0, /* 0x07 */ 122 {{0, 2}, 123 {0, 0}, 124 {0, 0}, 125 {0, 0} 126 } 127 }, 128 {0, 0, 1, 0, /* 0x08 */ 129 {{3, 3}, 130 {0, 0}, 131 {0, 0}, 132 {0, 0} 133 } 134 }, 135 {1, 0, 2, 0, /* 0x09 */ 136 {{0, 0}, 137 {3, 3}, 138 {0, 0}, 139 {0, 0} 140 } 141 }, 142 {0, 0, 2, 0, /* 0x0a */ 143 {{1, 1}, 144 {3, 3}, 145 {0, 0}, 146 {0, 0} 147 } 148 }, 149 {1, 0, 2, 0, /* 0x0b */ 150 {{0, 1}, 151 {3, 3}, 152 {0, 0}, 153 {0, 0} 154 } 155 }, 156 {0, 0, 1, 0, /* 0x0c */ 157 {{2, 3}, 158 {0, 0}, 159 {0, 0}, 160 {0, 0} 161 } 162 }, 163 {1, 0, 2, 0, /* 0x0d */ 164 {{0, 0}, 165 {2, 3}, 166 {0, 0}, 167 {0, 0} 168 } 169 }, 170 {0, 0, 1, 0, /* 0x0e */ 171 {{1, 3}, 172 {0, 0}, 173 {0, 0}, 174 {0, 0} 175 } 176 }, 177 {1, 0, 1, 0, /* 0x0f */ 178 {{0, 3}, 179 {0, 0}, 180 {0, 0}, 181 {0, 0} 182 } 183 }, 184 {0, 0, 1, 0, /* 0x10 */ 185 {{4, 4}, 186 {0, 0}, 187 {0, 0}, 188 {0, 0} 189 } 190 }, 191 {1, 0, 2, 0, /* 0x11 */ 192 {{0, 0}, 193 {4, 4}, 194 {0, 0}, 195 {0, 0} 196 } 197 }, 198 {0, 0, 2, 0, /* 0x12 */ 199 {{1, 1}, 200 {4, 4}, 201 {0, 0}, 202 {0, 0} 203 } 204 }, 205 {1, 0, 2, 0, /* 0x13 */ 206 {{0, 1}, 207 {4, 4}, 208 {0, 0}, 209 {0, 0} 210 } 211 }, 212 {0, 0, 2, 0, /* 0x14 */ 213 {{2, 2}, 214 {4, 4}, 215 {0, 0}, 216 {0, 0} 217 } 218 }, 219 {1, 0, 3, 0, /* 0x15 */ 220 {{0, 0}, 221 {2, 2}, 222 {4, 4}, 223 {0, 0} 224 } 225 }, 226 {0, 0, 2, 0, /* 0x16 */ 227 {{1, 2}, 228 {4, 4}, 229 {0, 0}, 230 {0, 0} 231 } 232 }, 233 {1, 0, 2, 0, /* 0x17 */ 234 {{0, 2}, 235 {4, 4}, 236 {0, 0}, 237 {0, 0} 238 } 239 }, 240 {0, 0, 1, 0, /* 0x18 */ 241 {{3, 4}, 242 {0, 0}, 243 {0, 0}, 244 {0, 0} 245 } 246 }, 247 {1, 0, 2, 0, /* 0x19 */ 248 {{0, 0}, 249 {3, 4}, 250 {0, 0}, 251 {0, 0} 252 } 253 }, 254 {0, 0, 2, 0, /* 0x1a */ 255 {{1, 1}, 256 {3, 4}, 257 {0, 0}, 258 {0, 0} 259 } 260 }, 261 {1, 0, 2, 0, /* 0x1b */ 262 {{0, 1}, 263 {3, 4}, 264 {0, 0}, 265 {0, 0} 266 } 267 }, 268 {0, 0, 1, 0, /* 0x1c */ 269 {{2, 4}, 270 {0, 0}, 271 {0, 0}, 272 {0, 0} 273 } 274 }, 275 {1, 0, 2, 0, /* 0x1d */ 276 {{0, 0}, 277 {2, 4}, 278 {0, 0}, 279 {0, 0} 280 } 281 }, 282 {0, 0, 1, 0, /* 0x1e */ 283 {{1, 4}, 284 {0, 0}, 285 {0, 0}, 286 {0, 0} 287 } 288 }, 289 {1, 0, 1, 0, /* 0x1f */ 290 {{0, 4}, 291 {0, 0}, 292 {0, 0}, 293 {0, 0} 294 } 295 }, 296 {0, 0, 1, 0, /* 0x20 */ 297 {{5, 5}, 298 {0, 0}, 299 {0, 0}, 300 {0, 0} 301 } 302 }, 303 {1, 0, 2, 0, /* 0x21 */ 304 {{0, 0}, 305 {5, 5}, 306 {0, 0}, 307 {0, 0} 308 } 309 }, 310 {0, 0, 2, 0, /* 0x22 */ 311 {{1, 1}, 312 {5, 5}, 313 {0, 0}, 314 {0, 0} 315 } 316 }, 317 {1, 0, 2, 0, /* 0x23 */ 318 {{0, 1}, 319 {5, 5}, 320 {0, 0}, 321 {0, 0} 322 } 323 }, 324 {0, 0, 2, 0, /* 0x24 */ 325 {{2, 2}, 326 {5, 5}, 327 {0, 0}, 328 {0, 0} 329 } 330 }, 331 {1, 0, 3, 0, /* 0x25 */ 332 {{0, 0}, 333 {2, 2}, 334 {5, 5}, 335 {0, 0} 336 } 337 }, 338 {0, 0, 2, 0, /* 0x26 */ 339 {{1, 2}, 340 {5, 5}, 341 {0, 0}, 342 {0, 0} 343 } 344 }, 345 {1, 0, 2, 0, /* 0x27 */ 346 {{0, 2}, 347 {5, 5}, 348 {0, 0}, 349 {0, 0} 350 } 351 }, 352 {0, 0, 2, 0, /* 0x28 */ 353 {{3, 3}, 354 {5, 5}, 355 {0, 0}, 356 {0, 0} 357 } 358 }, 359 {1, 0, 3, 0, /* 0x29 */ 360 {{0, 0}, 361 {3, 3}, 362 {5, 5}, 363 {0, 0} 364 } 365 }, 366 {0, 0, 3, 0, /* 0x2a */ 367 {{1, 1}, 368 {3, 3}, 369 {5, 5}, 370 {0, 0} 371 } 372 }, 373 {1, 0, 3, 0, /* 0x2b */ 374 {{0, 1}, 375 {3, 3}, 376 {5, 5}, 377 {0, 0} 378 } 379 }, 380 {0, 0, 2, 0, /* 0x2c */ 381 {{2, 3}, 382 {5, 5}, 383 {0, 0}, 384 {0, 0} 385 } 386 }, 387 {1, 0, 3, 0, /* 0x2d */ 388 {{0, 0}, 389 {2, 3}, 390 {5, 5}, 391 {0, 0} 392 } 393 }, 394 {0, 0, 2, 0, /* 0x2e */ 395 {{1, 3}, 396 {5, 5}, 397 {0, 0}, 398 {0, 0} 399 } 400 }, 401 {1, 0, 2, 0, /* 0x2f */ 402 {{0, 3}, 403 {5, 5}, 404 {0, 0}, 405 {0, 0} 406 } 407 }, 408 {0, 0, 1, 0, /* 0x30 */ 409 {{4, 5}, 410 {0, 0}, 411 {0, 0}, 412 {0, 0} 413 } 414 }, 415 {1, 0, 2, 0, /* 0x31 */ 416 {{0, 0}, 417 {4, 5}, 418 {0, 0}, 419 {0, 0} 420 } 421 }, 422 {0, 0, 2, 0, /* 0x32 */ 423 {{1, 1}, 424 {4, 5}, 425 {0, 0}, 426 {0, 0} 427 } 428 }, 429 {1, 0, 2, 0, /* 0x33 */ 430 {{0, 1}, 431 {4, 5}, 432 {0, 0}, 433 {0, 0} 434 } 435 }, 436 {0, 0, 2, 0, /* 0x34 */ 437 {{2, 2}, 438 {4, 5}, 439 {0, 0}, 440 {0, 0} 441 } 442 }, 443 {1, 0, 3, 0, /* 0x35 */ 444 {{0, 0}, 445 {2, 2}, 446 {4, 5}, 447 {0, 0} 448 } 449 }, 450 {0, 0, 2, 0, /* 0x36 */ 451 {{1, 2}, 452 {4, 5}, 453 {0, 0}, 454 {0, 0} 455 } 456 }, 457 {1, 0, 2, 0, /* 0x37 */ 458 {{0, 2}, 459 {4, 5}, 460 {0, 0}, 461 {0, 0} 462 } 463 }, 464 {0, 0, 1, 0, /* 0x38 */ 465 {{3, 5}, 466 {0, 0}, 467 {0, 0}, 468 {0, 0} 469 } 470 }, 471 {1, 0, 2, 0, /* 0x39 */ 472 {{0, 0}, 473 {3, 5}, 474 {0, 0}, 475 {0, 0} 476 } 477 }, 478 {0, 0, 2, 0, /* 0x3a */ 479 {{1, 1}, 480 {3, 5}, 481 {0, 0}, 482 {0, 0} 483 } 484 }, 485 {1, 0, 2, 0, /* 0x3b */ 486 {{0, 1}, 487 {3, 5}, 488 {0, 0}, 489 {0, 0} 490 } 491 }, 492 {0, 0, 1, 0, /* 0x3c */ 493 {{2, 5}, 494 {0, 0}, 495 {0, 0}, 496 {0, 0} 497 } 498 }, 499 {1, 0, 2, 0, /* 0x3d */ 500 {{0, 0}, 501 {2, 5}, 502 {0, 0}, 503 {0, 0} 504 } 505 }, 506 {0, 0, 1, 0, /* 0x3e */ 507 {{1, 5}, 508 {0, 0}, 509 {0, 0}, 510 {0, 0} 511 } 512 }, 513 {1, 0, 1, 0, /* 0x3f */ 514 {{0, 5}, 515 {0, 0}, 516 {0, 0}, 517 {0, 0} 518 } 519 }, 520 {0, 0, 1, 0, /* 0x40 */ 521 {{6, 6}, 522 {0, 0}, 523 {0, 0}, 524 {0, 0} 525 } 526 }, 527 {1, 0, 2, 0, /* 0x41 */ 528 {{0, 0}, 529 {6, 6}, 530 {0, 0}, 531 {0, 0} 532 } 533 }, 534 {0, 0, 2, 0, /* 0x42 */ 535 {{1, 1}, 536 {6, 6}, 537 {0, 0}, 538 {0, 0} 539 } 540 }, 541 {1, 0, 2, 0, /* 0x43 */ 542 {{0, 1}, 543 {6, 6}, 544 {0, 0}, 545 {0, 0} 546 } 547 }, 548 {0, 0, 2, 0, /* 0x44 */ 549 {{2, 2}, 550 {6, 6}, 551 {0, 0}, 552 {0, 0} 553 } 554 }, 555 {1, 0, 3, 0, /* 0x45 */ 556 {{0, 0}, 557 {2, 2}, 558 {6, 6}, 559 {0, 0} 560 } 561 }, 562 {0, 0, 2, 0, /* 0x46 */ 563 {{1, 2}, 564 {6, 6}, 565 {0, 0}, 566 {0, 0} 567 } 568 }, 569 {1, 0, 2, 0, /* 0x47 */ 570 {{0, 2}, 571 {6, 6}, 572 {0, 0}, 573 {0, 0} 574 } 575 }, 576 {0, 0, 2, 0, /* 0x48 */ 577 {{3, 3}, 578 {6, 6}, 579 {0, 0}, 580 {0, 0} 581 } 582 }, 583 {1, 0, 3, 0, /* 0x49 */ 584 {{0, 0}, 585 {3, 3}, 586 {6, 6}, 587 {0, 0} 588 } 589 }, 590 {0, 0, 3, 0, /* 0x4a */ 591 {{1, 1}, 592 {3, 3}, 593 {6, 6}, 594 {0, 0} 595 } 596 }, 597 {1, 0, 3, 0, /* 0x4b */ 598 {{0, 1}, 599 {3, 3}, 600 {6, 6}, 601 {0, 0} 602 } 603 }, 604 {0, 0, 2, 0, /* 0x4c */ 605 {{2, 3}, 606 {6, 6}, 607 {0, 0}, 608 {0, 0} 609 } 610 }, 611 {1, 0, 3, 0, /* 0x4d */ 612 {{0, 0}, 613 {2, 3}, 614 {6, 6}, 615 {0, 0} 616 } 617 }, 618 {0, 0, 2, 0, /* 0x4e */ 619 {{1, 3}, 620 {6, 6}, 621 {0, 0}, 622 {0, 0} 623 } 624 }, 625 {1, 0, 2, 0, /* 0x4f */ 626 {{0, 3}, 627 {6, 6}, 628 {0, 0}, 629 {0, 0} 630 } 631 }, 632 {0, 0, 2, 0, /* 0x50 */ 633 {{4, 4}, 634 {6, 6}, 635 {0, 0}, 636 {0, 0} 637 } 638 }, 639 {1, 0, 3, 0, /* 0x51 */ 640 {{0, 0}, 641 {4, 4}, 642 {6, 6}, 643 {0, 0} 644 } 645 }, 646 {0, 0, 3, 0, /* 0x52 */ 647 {{1, 1}, 648 {4, 4}, 649 {6, 6}, 650 {0, 0} 651 } 652 }, 653 {1, 0, 3, 0, /* 0x53 */ 654 {{0, 1}, 655 {4, 4}, 656 {6, 6}, 657 {0, 0} 658 } 659 }, 660 {0, 0, 3, 0, /* 0x54 */ 661 {{2, 2}, 662 {4, 4}, 663 {6, 6}, 664 {0, 0} 665 } 666 }, 667 {1, 0, 4, 0, /* 0x55 */ 668 {{0, 0}, 669 {2, 2}, 670 {4, 4}, 671 {6, 6} 672 } 673 }, 674 {0, 0, 3, 0, /* 0x56 */ 675 {{1, 2}, 676 {4, 4}, 677 {6, 6}, 678 {0, 0} 679 } 680 }, 681 {1, 0, 3, 0, /* 0x57 */ 682 {{0, 2}, 683 {4, 4}, 684 {6, 6}, 685 {0, 0} 686 } 687 }, 688 {0, 0, 2, 0, /* 0x58 */ 689 {{3, 4}, 690 {6, 6}, 691 {0, 0}, 692 {0, 0} 693 } 694 }, 695 {1, 0, 3, 0, /* 0x59 */ 696 {{0, 0}, 697 {3, 4}, 698 {6, 6}, 699 {0, 0} 700 } 701 }, 702 {0, 0, 3, 0, /* 0x5a */ 703 {{1, 1}, 704 {3, 4}, 705 {6, 6}, 706 {0, 0} 707 } 708 }, 709 {1, 0, 3, 0, /* 0x5b */ 710 {{0, 1}, 711 {3, 4}, 712 {6, 6}, 713 {0, 0} 714 } 715 }, 716 {0, 0, 2, 0, /* 0x5c */ 717 {{2, 4}, 718 {6, 6}, 719 {0, 0}, 720 {0, 0} 721 } 722 }, 723 {1, 0, 3, 0, /* 0x5d */ 724 {{0, 0}, 725 {2, 4}, 726 {6, 6}, 727 {0, 0} 728 } 729 }, 730 {0, 0, 2, 0, /* 0x5e */ 731 {{1, 4}, 732 {6, 6}, 733 {0, 0}, 734 {0, 0} 735 } 736 }, 737 {1, 0, 2, 0, /* 0x5f */ 738 {{0, 4}, 739 {6, 6}, 740 {0, 0}, 741 {0, 0} 742 } 743 }, 744 {0, 0, 1, 0, /* 0x60 */ 745 {{5, 6}, 746 {0, 0}, 747 {0, 0}, 748 {0, 0} 749 } 750 }, 751 {1, 0, 2, 0, /* 0x61 */ 752 {{0, 0}, 753 {5, 6}, 754 {0, 0}, 755 {0, 0} 756 } 757 }, 758 {0, 0, 2, 0, /* 0x62 */ 759 {{1, 1}, 760 {5, 6}, 761 {0, 0}, 762 {0, 0} 763 } 764 }, 765 {1, 0, 2, 0, /* 0x63 */ 766 {{0, 1}, 767 {5, 6}, 768 {0, 0}, 769 {0, 0} 770 } 771 }, 772 {0, 0, 2, 0, /* 0x64 */ 773 {{2, 2}, 774 {5, 6}, 775 {0, 0}, 776 {0, 0} 777 } 778 }, 779 {1, 0, 3, 0, /* 0x65 */ 780 {{0, 0}, 781 {2, 2}, 782 {5, 6}, 783 {0, 0} 784 } 785 }, 786 {0, 0, 2, 0, /* 0x66 */ 787 {{1, 2}, 788 {5, 6}, 789 {0, 0}, 790 {0, 0} 791 } 792 }, 793 {1, 0, 2, 0, /* 0x67 */ 794 {{0, 2}, 795 {5, 6}, 796 {0, 0}, 797 {0, 0} 798 } 799 }, 800 {0, 0, 2, 0, /* 0x68 */ 801 {{3, 3}, 802 {5, 6}, 803 {0, 0}, 804 {0, 0} 805 } 806 }, 807 {1, 0, 3, 0, /* 0x69 */ 808 {{0, 0}, 809 {3, 3}, 810 {5, 6}, 811 {0, 0} 812 } 813 }, 814 {0, 0, 3, 0, /* 0x6a */ 815 {{1, 1}, 816 {3, 3}, 817 {5, 6}, 818 {0, 0} 819 } 820 }, 821 {1, 0, 3, 0, /* 0x6b */ 822 {{0, 1}, 823 {3, 3}, 824 {5, 6}, 825 {0, 0} 826 } 827 }, 828 {0, 0, 2, 0, /* 0x6c */ 829 {{2, 3}, 830 {5, 6}, 831 {0, 0}, 832 {0, 0} 833 } 834 }, 835 {1, 0, 3, 0, /* 0x6d */ 836 {{0, 0}, 837 {2, 3}, 838 {5, 6}, 839 {0, 0} 840 } 841 }, 842 {0, 0, 2, 0, /* 0x6e */ 843 {{1, 3}, 844 {5, 6}, 845 {0, 0}, 846 {0, 0} 847 } 848 }, 849 {1, 0, 2, 0, /* 0x6f */ 850 {{0, 3}, 851 {5, 6}, 852 {0, 0}, 853 {0, 0} 854 } 855 }, 856 {0, 0, 1, 0, /* 0x70 */ 857 {{4, 6}, 858 {0, 0}, 859 {0, 0}, 860 {0, 0} 861 } 862 }, 863 {1, 0, 2, 0, /* 0x71 */ 864 {{0, 0}, 865 {4, 6}, 866 {0, 0}, 867 {0, 0} 868 } 869 }, 870 {0, 0, 2, 0, /* 0x72 */ 871 {{1, 1}, 872 {4, 6}, 873 {0, 0}, 874 {0, 0} 875 } 876 }, 877 {1, 0, 2, 0, /* 0x73 */ 878 {{0, 1}, 879 {4, 6}, 880 {0, 0}, 881 {0, 0} 882 } 883 }, 884 {0, 0, 2, 0, /* 0x74 */ 885 {{2, 2}, 886 {4, 6}, 887 {0, 0}, 888 {0, 0} 889 } 890 }, 891 {1, 0, 3, 0, /* 0x75 */ 892 {{0, 0}, 893 {2, 2}, 894 {4, 6}, 895 {0, 0} 896 } 897 }, 898 {0, 0, 2, 0, /* 0x76 */ 899 {{1, 2}, 900 {4, 6}, 901 {0, 0}, 902 {0, 0} 903 } 904 }, 905 {1, 0, 2, 0, /* 0x77 */ 906 {{0, 2}, 907 {4, 6}, 908 {0, 0}, 909 {0, 0} 910 } 911 }, 912 {0, 0, 1, 0, /* 0x78 */ 913 {{3, 6}, 914 {0, 0}, 915 {0, 0}, 916 {0, 0} 917 } 918 }, 919 {1, 0, 2, 0, /* 0x79 */ 920 {{0, 0}, 921 {3, 6}, 922 {0, 0}, 923 {0, 0} 924 } 925 }, 926 {0, 0, 2, 0, /* 0x7a */ 927 {{1, 1}, 928 {3, 6}, 929 {0, 0}, 930 {0, 0} 931 } 932 }, 933 {1, 0, 2, 0, /* 0x7b */ 934 {{0, 1}, 935 {3, 6}, 936 {0, 0}, 937 {0, 0} 938 } 939 }, 940 {0, 0, 1, 0, /* 0x7c */ 941 {{2, 6}, 942 {0, 0}, 943 {0, 0}, 944 {0, 0} 945 } 946 }, 947 {1, 0, 2, 0, /* 0x7d */ 948 {{0, 0}, 949 {2, 6}, 950 {0, 0}, 951 {0, 0} 952 } 953 }, 954 {0, 0, 1, 0, /* 0x7e */ 955 {{1, 6}, 956 {0, 0}, 957 {0, 0}, 958 {0, 0} 959 } 960 }, 961 {1, 0, 1, 0, /* 0x7f */ 962 {{0, 6}, 963 {0, 0}, 964 {0, 0}, 965 {0, 0} 966 } 967 }, 968 {0, 1, 1, 0, /* 0x80 */ 969 {{7, 7}, 970 {0, 0}, 971 {0, 0}, 972 {0, 0} 973 } 974 }, 975 {1, 1, 2, 0, /* 0x81 */ 976 {{0, 0}, 977 {7, 7}, 978 {0, 0}, 979 {0, 0} 980 } 981 }, 982 {0, 1, 2, 0, /* 0x82 */ 983 {{1, 1}, 984 {7, 7}, 985 {0, 0}, 986 {0, 0} 987 } 988 }, 989 {1, 1, 2, 0, /* 0x83 */ 990 {{0, 1}, 991 {7, 7}, 992 {0, 0}, 993 {0, 0} 994 } 995 }, 996 {0, 1, 2, 0, /* 0x84 */ 997 {{2, 2}, 998 {7, 7}, 999 {0, 0}, 1000 {0, 0} 1001 } 1002 }, 1003 {1, 1, 3, 0, /* 0x85 */ 1004 {{0, 0}, 1005 {2, 2}, 1006 {7, 7}, 1007 {0, 0} 1008 } 1009 }, 1010 {0, 1, 2, 0, /* 0x86 */ 1011 {{1, 2}, 1012 {7, 7}, 1013 {0, 0}, 1014 {0, 0} 1015 } 1016 }, 1017 {1, 1, 2, 0, /* 0x87 */ 1018 {{0, 2}, 1019 {7, 7}, 1020 {0, 0}, 1021 {0, 0} 1022 } 1023 }, 1024 {0, 1, 2, 0, /* 0x88 */ 1025 {{3, 3}, 1026 {7, 7}, 1027 {0, 0}, 1028 {0, 0} 1029 } 1030 }, 1031 {1, 1, 3, 0, /* 0x89 */ 1032 {{0, 0}, 1033 {3, 3}, 1034 {7, 7}, 1035 {0, 0} 1036 } 1037 }, 1038 {0, 1, 3, 0, /* 0x8a */ 1039 {{1, 1}, 1040 {3, 3}, 1041 {7, 7}, 1042 {0, 0} 1043 } 1044 }, 1045 {1, 1, 3, 0, /* 0x8b */ 1046 {{0, 1}, 1047 {3, 3}, 1048 {7, 7}, 1049 {0, 0} 1050 } 1051 }, 1052 {0, 1, 2, 0, /* 0x8c */ 1053 {{2, 3}, 1054 {7, 7}, 1055 {0, 0}, 1056 {0, 0} 1057 } 1058 }, 1059 {1, 1, 3, 0, /* 0x8d */ 1060 {{0, 0}, 1061 {2, 3}, 1062 {7, 7}, 1063 {0, 0} 1064 } 1065 }, 1066 {0, 1, 2, 0, /* 0x8e */ 1067 {{1, 3}, 1068 {7, 7}, 1069 {0, 0}, 1070 {0, 0} 1071 } 1072 }, 1073 {1, 1, 2, 0, /* 0x8f */ 1074 {{0, 3}, 1075 {7, 7}, 1076 {0, 0}, 1077 {0, 0} 1078 } 1079 }, 1080 {0, 1, 2, 0, /* 0x90 */ 1081 {{4, 4}, 1082 {7, 7}, 1083 {0, 0}, 1084 {0, 0} 1085 } 1086 }, 1087 {1, 1, 3, 0, /* 0x91 */ 1088 {{0, 0}, 1089 {4, 4}, 1090 {7, 7}, 1091 {0, 0} 1092 } 1093 }, 1094 {0, 1, 3, 0, /* 0x92 */ 1095 {{1, 1}, 1096 {4, 4}, 1097 {7, 7}, 1098 {0, 0} 1099 } 1100 }, 1101 {1, 1, 3, 0, /* 0x93 */ 1102 {{0, 1}, 1103 {4, 4}, 1104 {7, 7}, 1105 {0, 0} 1106 } 1107 }, 1108 {0, 1, 3, 0, /* 0x94 */ 1109 {{2, 2}, 1110 {4, 4}, 1111 {7, 7}, 1112 {0, 0} 1113 } 1114 }, 1115 {1, 1, 4, 0, /* 0x95 */ 1116 {{0, 0}, 1117 {2, 2}, 1118 {4, 4}, 1119 {7, 7} 1120 } 1121 }, 1122 {0, 1, 3, 0, /* 0x96 */ 1123 {{1, 2}, 1124 {4, 4}, 1125 {7, 7}, 1126 {0, 0} 1127 } 1128 }, 1129 {1, 1, 3, 0, /* 0x97 */ 1130 {{0, 2}, 1131 {4, 4}, 1132 {7, 7}, 1133 {0, 0} 1134 } 1135 }, 1136 {0, 1, 2, 0, /* 0x98 */ 1137 {{3, 4}, 1138 {7, 7}, 1139 {0, 0}, 1140 {0, 0} 1141 } 1142 }, 1143 {1, 1, 3, 0, /* 0x99 */ 1144 {{0, 0}, 1145 {3, 4}, 1146 {7, 7}, 1147 {0, 0} 1148 } 1149 }, 1150 {0, 1, 3, 0, /* 0x9a */ 1151 {{1, 1}, 1152 {3, 4}, 1153 {7, 7}, 1154 {0, 0} 1155 } 1156 }, 1157 {1, 1, 3, 0, /* 0x9b */ 1158 {{0, 1}, 1159 {3, 4}, 1160 {7, 7}, 1161 {0, 0} 1162 } 1163 }, 1164 {0, 1, 2, 0, /* 0x9c */ 1165 {{2, 4}, 1166 {7, 7}, 1167 {0, 0}, 1168 {0, 0} 1169 } 1170 }, 1171 {1, 1, 3, 0, /* 0x9d */ 1172 {{0, 0}, 1173 {2, 4}, 1174 {7, 7}, 1175 {0, 0} 1176 } 1177 }, 1178 {0, 1, 2, 0, /* 0x9e */ 1179 {{1, 4}, 1180 {7, 7}, 1181 {0, 0}, 1182 {0, 0} 1183 } 1184 }, 1185 {1, 1, 2, 0, /* 0x9f */ 1186 {{0, 4}, 1187 {7, 7}, 1188 {0, 0}, 1189 {0, 0} 1190 } 1191 }, 1192 {0, 1, 2, 0, /* 0xa0 */ 1193 {{5, 5}, 1194 {7, 7}, 1195 {0, 0}, 1196 {0, 0} 1197 } 1198 }, 1199 {1, 1, 3, 0, /* 0xa1 */ 1200 {{0, 0}, 1201 {5, 5}, 1202 {7, 7}, 1203 {0, 0} 1204 } 1205 }, 1206 {0, 1, 3, 0, /* 0xa2 */ 1207 {{1, 1}, 1208 {5, 5}, 1209 {7, 7}, 1210 {0, 0} 1211 } 1212 }, 1213 {1, 1, 3, 0, /* 0xa3 */ 1214 {{0, 1}, 1215 {5, 5}, 1216 {7, 7}, 1217 {0, 0} 1218 } 1219 }, 1220 {0, 1, 3, 0, /* 0xa4 */ 1221 {{2, 2}, 1222 {5, 5}, 1223 {7, 7}, 1224 {0, 0} 1225 } 1226 }, 1227 {1, 1, 4, 0, /* 0xa5 */ 1228 {{0, 0}, 1229 {2, 2}, 1230 {5, 5}, 1231 {7, 7} 1232 } 1233 }, 1234 {0, 1, 3, 0, /* 0xa6 */ 1235 {{1, 2}, 1236 {5, 5}, 1237 {7, 7}, 1238 {0, 0} 1239 } 1240 }, 1241 {1, 1, 3, 0, /* 0xa7 */ 1242 {{0, 2}, 1243 {5, 5}, 1244 {7, 7}, 1245 {0, 0} 1246 } 1247 }, 1248 {0, 1, 3, 0, /* 0xa8 */ 1249 {{3, 3}, 1250 {5, 5}, 1251 {7, 7}, 1252 {0, 0} 1253 } 1254 }, 1255 {1, 1, 4, 0, /* 0xa9 */ 1256 {{0, 0}, 1257 {3, 3}, 1258 {5, 5}, 1259 {7, 7} 1260 } 1261 }, 1262 {0, 1, 4, 0, /* 0xaa */ 1263 {{1, 1}, 1264 {3, 3}, 1265 {5, 5}, 1266 {7, 7} 1267 } 1268 }, 1269 {1, 1, 4, 0, /* 0xab */ 1270 {{0, 1}, 1271 {3, 3}, 1272 {5, 5}, 1273 {7, 7} 1274 } 1275 }, 1276 {0, 1, 3, 0, /* 0xac */ 1277 {{2, 3}, 1278 {5, 5}, 1279 {7, 7}, 1280 {0, 0} 1281 } 1282 }, 1283 {1, 1, 4, 0, /* 0xad */ 1284 {{0, 0}, 1285 {2, 3}, 1286 {5, 5}, 1287 {7, 7} 1288 } 1289 }, 1290 {0, 1, 3, 0, /* 0xae */ 1291 {{1, 3}, 1292 {5, 5}, 1293 {7, 7}, 1294 {0, 0} 1295 } 1296 }, 1297 {1, 1, 3, 0, /* 0xaf */ 1298 {{0, 3}, 1299 {5, 5}, 1300 {7, 7}, 1301 {0, 0} 1302 } 1303 }, 1304 {0, 1, 2, 0, /* 0xb0 */ 1305 {{4, 5}, 1306 {7, 7}, 1307 {0, 0}, 1308 {0, 0} 1309 } 1310 }, 1311 {1, 1, 3, 0, /* 0xb1 */ 1312 {{0, 0}, 1313 {4, 5}, 1314 {7, 7}, 1315 {0, 0} 1316 } 1317 }, 1318 {0, 1, 3, 0, /* 0xb2 */ 1319 {{1, 1}, 1320 {4, 5}, 1321 {7, 7}, 1322 {0, 0} 1323 } 1324 }, 1325 {1, 1, 3, 0, /* 0xb3 */ 1326 {{0, 1}, 1327 {4, 5}, 1328 {7, 7}, 1329 {0, 0} 1330 } 1331 }, 1332 {0, 1, 3, 0, /* 0xb4 */ 1333 {{2, 2}, 1334 {4, 5}, 1335 {7, 7}, 1336 {0, 0} 1337 } 1338 }, 1339 {1, 1, 4, 0, /* 0xb5 */ 1340 {{0, 0}, 1341 {2, 2}, 1342 {4, 5}, 1343 {7, 7} 1344 } 1345 }, 1346 {0, 1, 3, 0, /* 0xb6 */ 1347 {{1, 2}, 1348 {4, 5}, 1349 {7, 7}, 1350 {0, 0} 1351 } 1352 }, 1353 {1, 1, 3, 0, /* 0xb7 */ 1354 {{0, 2}, 1355 {4, 5}, 1356 {7, 7}, 1357 {0, 0} 1358 } 1359 }, 1360 {0, 1, 2, 0, /* 0xb8 */ 1361 {{3, 5}, 1362 {7, 7}, 1363 {0, 0}, 1364 {0, 0} 1365 } 1366 }, 1367 {1, 1, 3, 0, /* 0xb9 */ 1368 {{0, 0}, 1369 {3, 5}, 1370 {7, 7}, 1371 {0, 0} 1372 } 1373 }, 1374 {0, 1, 3, 0, /* 0xba */ 1375 {{1, 1}, 1376 {3, 5}, 1377 {7, 7}, 1378 {0, 0} 1379 } 1380 }, 1381 {1, 1, 3, 0, /* 0xbb */ 1382 {{0, 1}, 1383 {3, 5}, 1384 {7, 7}, 1385 {0, 0} 1386 } 1387 }, 1388 {0, 1, 2, 0, /* 0xbc */ 1389 {{2, 5}, 1390 {7, 7}, 1391 {0, 0}, 1392 {0, 0} 1393 } 1394 }, 1395 {1, 1, 3, 0, /* 0xbd */ 1396 {{0, 0}, 1397 {2, 5}, 1398 {7, 7}, 1399 {0, 0} 1400 } 1401 }, 1402 {0, 1, 2, 0, /* 0xbe */ 1403 {{1, 5}, 1404 {7, 7}, 1405 {0, 0}, 1406 {0, 0} 1407 } 1408 }, 1409 {1, 1, 2, 0, /* 0xbf */ 1410 {{0, 5}, 1411 {7, 7}, 1412 {0, 0}, 1413 {0, 0} 1414 } 1415 }, 1416 {0, 1, 1, 0, /* 0xc0 */ 1417 {{6, 7}, 1418 {0, 0}, 1419 {0, 0}, 1420 {0, 0} 1421 } 1422 }, 1423 {1, 1, 2, 0, /* 0xc1 */ 1424 {{0, 0}, 1425 {6, 7}, 1426 {0, 0}, 1427 {0, 0} 1428 } 1429 }, 1430 {0, 1, 2, 0, /* 0xc2 */ 1431 {{1, 1}, 1432 {6, 7}, 1433 {0, 0}, 1434 {0, 0} 1435 } 1436 }, 1437 {1, 1, 2, 0, /* 0xc3 */ 1438 {{0, 1}, 1439 {6, 7}, 1440 {0, 0}, 1441 {0, 0} 1442 } 1443 }, 1444 {0, 1, 2, 0, /* 0xc4 */ 1445 {{2, 2}, 1446 {6, 7}, 1447 {0, 0}, 1448 {0, 0} 1449 } 1450 }, 1451 {1, 1, 3, 0, /* 0xc5 */ 1452 {{0, 0}, 1453 {2, 2}, 1454 {6, 7}, 1455 {0, 0} 1456 } 1457 }, 1458 {0, 1, 2, 0, /* 0xc6 */ 1459 {{1, 2}, 1460 {6, 7}, 1461 {0, 0}, 1462 {0, 0} 1463 } 1464 }, 1465 {1, 1, 2, 0, /* 0xc7 */ 1466 {{0, 2}, 1467 {6, 7}, 1468 {0, 0}, 1469 {0, 0} 1470 } 1471 }, 1472 {0, 1, 2, 0, /* 0xc8 */ 1473 {{3, 3}, 1474 {6, 7}, 1475 {0, 0}, 1476 {0, 0} 1477 } 1478 }, 1479 {1, 1, 3, 0, /* 0xc9 */ 1480 {{0, 0}, 1481 {3, 3}, 1482 {6, 7}, 1483 {0, 0} 1484 } 1485 }, 1486 {0, 1, 3, 0, /* 0xca */ 1487 {{1, 1}, 1488 {3, 3}, 1489 {6, 7}, 1490 {0, 0} 1491 } 1492 }, 1493 {1, 1, 3, 0, /* 0xcb */ 1494 {{0, 1}, 1495 {3, 3}, 1496 {6, 7}, 1497 {0, 0} 1498 } 1499 }, 1500 {0, 1, 2, 0, /* 0xcc */ 1501 {{2, 3}, 1502 {6, 7}, 1503 {0, 0}, 1504 {0, 0} 1505 } 1506 }, 1507 {1, 1, 3, 0, /* 0xcd */ 1508 {{0, 0}, 1509 {2, 3}, 1510 {6, 7}, 1511 {0, 0} 1512 } 1513 }, 1514 {0, 1, 2, 0, /* 0xce */ 1515 {{1, 3}, 1516 {6, 7}, 1517 {0, 0}, 1518 {0, 0} 1519 } 1520 }, 1521 {1, 1, 2, 0, /* 0xcf */ 1522 {{0, 3}, 1523 {6, 7}, 1524 {0, 0}, 1525 {0, 0} 1526 } 1527 }, 1528 {0, 1, 2, 0, /* 0xd0 */ 1529 {{4, 4}, 1530 {6, 7}, 1531 {0, 0}, 1532 {0, 0} 1533 } 1534 }, 1535 {1, 1, 3, 0, /* 0xd1 */ 1536 {{0, 0}, 1537 {4, 4}, 1538 {6, 7}, 1539 {0, 0} 1540 } 1541 }, 1542 {0, 1, 3, 0, /* 0xd2 */ 1543 {{1, 1}, 1544 {4, 4}, 1545 {6, 7}, 1546 {0, 0} 1547 } 1548 }, 1549 {1, 1, 3, 0, /* 0xd3 */ 1550 {{0, 1}, 1551 {4, 4}, 1552 {6, 7}, 1553 {0, 0} 1554 } 1555 }, 1556 {0, 1, 3, 0, /* 0xd4 */ 1557 {{2, 2}, 1558 {4, 4}, 1559 {6, 7}, 1560 {0, 0} 1561 } 1562 }, 1563 {1, 1, 4, 0, /* 0xd5 */ 1564 {{0, 0}, 1565 {2, 2}, 1566 {4, 4}, 1567 {6, 7} 1568 } 1569 }, 1570 {0, 1, 3, 0, /* 0xd6 */ 1571 {{1, 2}, 1572 {4, 4}, 1573 {6, 7}, 1574 {0, 0} 1575 } 1576 }, 1577 {1, 1, 3, 0, /* 0xd7 */ 1578 {{0, 2}, 1579 {4, 4}, 1580 {6, 7}, 1581 {0, 0} 1582 } 1583 }, 1584 {0, 1, 2, 0, /* 0xd8 */ 1585 {{3, 4}, 1586 {6, 7}, 1587 {0, 0}, 1588 {0, 0} 1589 } 1590 }, 1591 {1, 1, 3, 0, /* 0xd9 */ 1592 {{0, 0}, 1593 {3, 4}, 1594 {6, 7}, 1595 {0, 0} 1596 } 1597 }, 1598 {0, 1, 3, 0, /* 0xda */ 1599 {{1, 1}, 1600 {3, 4}, 1601 {6, 7}, 1602 {0, 0} 1603 } 1604 }, 1605 {1, 1, 3, 0, /* 0xdb */ 1606 {{0, 1}, 1607 {3, 4}, 1608 {6, 7}, 1609 {0, 0} 1610 } 1611 }, 1612 {0, 1, 2, 0, /* 0xdc */ 1613 {{2, 4}, 1614 {6, 7}, 1615 {0, 0}, 1616 {0, 0} 1617 } 1618 }, 1619 {1, 1, 3, 0, /* 0xdd */ 1620 {{0, 0}, 1621 {2, 4}, 1622 {6, 7}, 1623 {0, 0} 1624 } 1625 }, 1626 {0, 1, 2, 0, /* 0xde */ 1627 {{1, 4}, 1628 {6, 7}, 1629 {0, 0}, 1630 {0, 0} 1631 } 1632 }, 1633 {1, 1, 2, 0, /* 0xdf */ 1634 {{0, 4}, 1635 {6, 7}, 1636 {0, 0}, 1637 {0, 0} 1638 } 1639 }, 1640 {0, 1, 1, 0, /* 0xe0 */ 1641 {{5, 7}, 1642 {0, 0}, 1643 {0, 0}, 1644 {0, 0} 1645 } 1646 }, 1647 {1, 1, 2, 0, /* 0xe1 */ 1648 {{0, 0}, 1649 {5, 7}, 1650 {0, 0}, 1651 {0, 0} 1652 } 1653 }, 1654 {0, 1, 2, 0, /* 0xe2 */ 1655 {{1, 1}, 1656 {5, 7}, 1657 {0, 0}, 1658 {0, 0} 1659 } 1660 }, 1661 {1, 1, 2, 0, /* 0xe3 */ 1662 {{0, 1}, 1663 {5, 7}, 1664 {0, 0}, 1665 {0, 0} 1666 } 1667 }, 1668 {0, 1, 2, 0, /* 0xe4 */ 1669 {{2, 2}, 1670 {5, 7}, 1671 {0, 0}, 1672 {0, 0} 1673 } 1674 }, 1675 {1, 1, 3, 0, /* 0xe5 */ 1676 {{0, 0}, 1677 {2, 2}, 1678 {5, 7}, 1679 {0, 0} 1680 } 1681 }, 1682 {0, 1, 2, 0, /* 0xe6 */ 1683 {{1, 2}, 1684 {5, 7}, 1685 {0, 0}, 1686 {0, 0} 1687 } 1688 }, 1689 {1, 1, 2, 0, /* 0xe7 */ 1690 {{0, 2}, 1691 {5, 7}, 1692 {0, 0}, 1693 {0, 0} 1694 } 1695 }, 1696 {0, 1, 2, 0, /* 0xe8 */ 1697 {{3, 3}, 1698 {5, 7}, 1699 {0, 0}, 1700 {0, 0} 1701 } 1702 }, 1703 {1, 1, 3, 0, /* 0xe9 */ 1704 {{0, 0}, 1705 {3, 3}, 1706 {5, 7}, 1707 {0, 0} 1708 } 1709 }, 1710 {0, 1, 3, 0, /* 0xea */ 1711 {{1, 1}, 1712 {3, 3}, 1713 {5, 7}, 1714 {0, 0} 1715 } 1716 }, 1717 {1, 1, 3, 0, /* 0xeb */ 1718 {{0, 1}, 1719 {3, 3}, 1720 {5, 7}, 1721 {0, 0} 1722 } 1723 }, 1724 {0, 1, 2, 0, /* 0xec */ 1725 {{2, 3}, 1726 {5, 7}, 1727 {0, 0}, 1728 {0, 0} 1729 } 1730 }, 1731 {1, 1, 3, 0, /* 0xed */ 1732 {{0, 0}, 1733 {2, 3}, 1734 {5, 7}, 1735 {0, 0} 1736 } 1737 }, 1738 {0, 1, 2, 0, /* 0xee */ 1739 {{1, 3}, 1740 {5, 7}, 1741 {0, 0}, 1742 {0, 0} 1743 } 1744 }, 1745 {1, 1, 2, 0, /* 0xef */ 1746 {{0, 3}, 1747 {5, 7}, 1748 {0, 0}, 1749 {0, 0} 1750 } 1751 }, 1752 {0, 1, 1, 0, /* 0xf0 */ 1753 {{4, 7}, 1754 {0, 0}, 1755 {0, 0}, 1756 {0, 0} 1757 } 1758 }, 1759 {1, 1, 2, 0, /* 0xf1 */ 1760 {{0, 0}, 1761 {4, 7}, 1762 {0, 0}, 1763 {0, 0} 1764 } 1765 }, 1766 {0, 1, 2, 0, /* 0xf2 */ 1767 {{1, 1}, 1768 {4, 7}, 1769 {0, 0}, 1770 {0, 0} 1771 } 1772 }, 1773 {1, 1, 2, 0, /* 0xf3 */ 1774 {{0, 1}, 1775 {4, 7}, 1776 {0, 0}, 1777 {0, 0} 1778 } 1779 }, 1780 {0, 1, 2, 0, /* 0xf4 */ 1781 {{2, 2}, 1782 {4, 7}, 1783 {0, 0}, 1784 {0, 0} 1785 } 1786 }, 1787 {1, 1, 3, 0, /* 0xf5 */ 1788 {{0, 0}, 1789 {2, 2}, 1790 {4, 7}, 1791 {0, 0} 1792 } 1793 }, 1794 {0, 1, 2, 0, /* 0xf6 */ 1795 {{1, 2}, 1796 {4, 7}, 1797 {0, 0}, 1798 {0, 0} 1799 } 1800 }, 1801 {1, 1, 2, 0, /* 0xf7 */ 1802 {{0, 2}, 1803 {4, 7}, 1804 {0, 0}, 1805 {0, 0} 1806 } 1807 }, 1808 {0, 1, 1, 0, /* 0xf8 */ 1809 {{3, 7}, 1810 {0, 0}, 1811 {0, 0}, 1812 {0, 0} 1813 } 1814 }, 1815 {1, 1, 2, 0, /* 0xf9 */ 1816 {{0, 0}, 1817 {3, 7}, 1818 {0, 0}, 1819 {0, 0} 1820 } 1821 }, 1822 {0, 1, 2, 0, /* 0xfa */ 1823 {{1, 1}, 1824 {3, 7}, 1825 {0, 0}, 1826 {0, 0} 1827 } 1828 }, 1829 {1, 1, 2, 0, /* 0xfb */ 1830 {{0, 1}, 1831 {3, 7}, 1832 {0, 0}, 1833 {0, 0} 1834 } 1835 }, 1836 {0, 1, 1, 0, /* 0xfc */ 1837 {{2, 7}, 1838 {0, 0}, 1839 {0, 0}, 1840 {0, 0} 1841 } 1842 }, 1843 {1, 1, 2, 0, /* 0xfd */ 1844 {{0, 0}, 1845 {2, 7}, 1846 {0, 0}, 1847 {0, 0} 1848 } 1849 }, 1850 {0, 1, 1, 0, /* 0xfe */ 1851 {{1, 7}, 1852 {0, 0}, 1853 {0, 0}, 1854 {0, 0} 1855 } 1856 }, 1857 {1, 1, 1, 0, /* 0xff */ 1858 {{0, 7}, 1859 {0, 0}, 1860 {0, 0}, 1861 {0, 0} 1862 } 1863 } 1864 }; 1865 1866 int 1867 sctp_is_address_in_scope(struct sctp_ifa *ifa, 1868 struct sctp_scoping *scope, 1869 int do_update) 1870 { 1871 if ((scope->loopback_scope == 0) && 1872 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { 1873 /* 1874 * skip loopback if not in scope * 1875 */ 1876 return (0); 1877 } 1878 switch (ifa->address.sa.sa_family) { 1879 #ifdef INET 1880 case AF_INET: 1881 if (scope->ipv4_addr_legal) { 1882 struct sockaddr_in *sin; 1883 1884 sin = &ifa->address.sin; 1885 if (sin->sin_addr.s_addr == 0) { 1886 /* not in scope , unspecified */ 1887 return (0); 1888 } 1889 if ((scope->ipv4_local_scope == 0) && 1890 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1891 /* private address not in scope */ 1892 return (0); 1893 } 1894 } else { 1895 return (0); 1896 } 1897 break; 1898 #endif 1899 #ifdef INET6 1900 case AF_INET6: 1901 if (scope->ipv6_addr_legal) { 1902 struct sockaddr_in6 *sin6; 1903 1904 /* 1905 * Must update the flags, bummer, which means any 1906 * IFA locks must now be applied HERE <-> 1907 */ 1908 if (do_update) { 1909 sctp_gather_internal_ifa_flags(ifa); 1910 } 1911 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 1912 return (0); 1913 } 1914 /* ok to use deprecated addresses? */ 1915 sin6 = &ifa->address.sin6; 1916 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1917 /* skip unspecified addresses */ 1918 return (0); 1919 } 1920 if ( /* (local_scope == 0) && */ 1921 (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) { 1922 return (0); 1923 } 1924 if ((scope->site_scope == 0) && 1925 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1926 return (0); 1927 } 1928 } else { 1929 return (0); 1930 } 1931 break; 1932 #endif 1933 default: 1934 return (0); 1935 } 1936 return (1); 1937 } 1938 1939 static struct mbuf * 1940 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t *len) 1941 { 1942 #if defined(INET) || defined(INET6) 1943 struct sctp_paramhdr *paramh; 1944 struct mbuf *mret; 1945 uint16_t plen; 1946 #endif 1947 1948 switch (ifa->address.sa.sa_family) { 1949 #ifdef INET 1950 case AF_INET: 1951 plen = (uint16_t)sizeof(struct sctp_ipv4addr_param); 1952 break; 1953 #endif 1954 #ifdef INET6 1955 case AF_INET6: 1956 plen = (uint16_t)sizeof(struct sctp_ipv6addr_param); 1957 break; 1958 #endif 1959 default: 1960 return (m); 1961 } 1962 #if defined(INET) || defined(INET6) 1963 if (M_TRAILINGSPACE(m) >= plen) { 1964 /* easy side we just drop it on the end */ 1965 paramh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m))); 1966 mret = m; 1967 } else { 1968 /* Need more space */ 1969 mret = m; 1970 while (SCTP_BUF_NEXT(mret) != NULL) { 1971 mret = SCTP_BUF_NEXT(mret); 1972 } 1973 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA); 1974 if (SCTP_BUF_NEXT(mret) == NULL) { 1975 /* We are hosed, can't add more addresses */ 1976 return (m); 1977 } 1978 mret = SCTP_BUF_NEXT(mret); 1979 paramh = mtod(mret, struct sctp_paramhdr *); 1980 } 1981 /* now add the parameter */ 1982 switch (ifa->address.sa.sa_family) { 1983 #ifdef INET 1984 case AF_INET: 1985 { 1986 struct sctp_ipv4addr_param *ipv4p; 1987 struct sockaddr_in *sin; 1988 1989 sin = &ifa->address.sin; 1990 ipv4p = (struct sctp_ipv4addr_param *)paramh; 1991 paramh->param_type = htons(SCTP_IPV4_ADDRESS); 1992 paramh->param_length = htons(plen); 1993 ipv4p->addr = sin->sin_addr.s_addr; 1994 SCTP_BUF_LEN(mret) += plen; 1995 break; 1996 } 1997 #endif 1998 #ifdef INET6 1999 case AF_INET6: 2000 { 2001 struct sctp_ipv6addr_param *ipv6p; 2002 struct sockaddr_in6 *sin6; 2003 2004 sin6 = &ifa->address.sin6; 2005 ipv6p = (struct sctp_ipv6addr_param *)paramh; 2006 paramh->param_type = htons(SCTP_IPV6_ADDRESS); 2007 paramh->param_length = htons(plen); 2008 memcpy(ipv6p->addr, &sin6->sin6_addr, 2009 sizeof(ipv6p->addr)); 2010 /* clear embedded scope in the address */ 2011 in6_clearscope((struct in6_addr *)ipv6p->addr); 2012 SCTP_BUF_LEN(mret) += plen; 2013 break; 2014 } 2015 #endif 2016 default: 2017 return (m); 2018 } 2019 if (len != NULL) { 2020 *len += plen; 2021 } 2022 return (mret); 2023 #endif 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 #ifdef INET 2064 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2065 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2066 &sctp_ifap->address.sin.sin_addr) != 0)) { 2067 continue; 2068 } 2069 #endif 2070 #ifdef INET6 2071 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2072 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2073 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2074 continue; 2075 } 2076 #endif 2077 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2078 continue; 2079 } 2080 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) { 2081 continue; 2082 } 2083 cnt++; 2084 if (cnt > SCTP_ADDRESS_LIMIT) { 2085 break; 2086 } 2087 } 2088 if (cnt > SCTP_ADDRESS_LIMIT) { 2089 break; 2090 } 2091 } 2092 skip_count: 2093 if (cnt > 1) { 2094 total_count = 0; 2095 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2096 cnt = 0; 2097 if ((scope->loopback_scope == 0) && 2098 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2099 /* 2100 * Skip loopback devices if 2101 * loopback_scope not set 2102 */ 2103 continue; 2104 } 2105 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2106 #ifdef INET 2107 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2108 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2109 &sctp_ifap->address.sin.sin_addr) != 0)) { 2110 continue; 2111 } 2112 #endif 2113 #ifdef INET6 2114 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2115 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2116 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2117 continue; 2118 } 2119 #endif 2120 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2121 continue; 2122 } 2123 if (sctp_is_address_in_scope(sctp_ifap, 2124 scope, 0) == 0) { 2125 continue; 2126 } 2127 if ((chunk_len != NULL) && 2128 (padding_len != NULL) && 2129 (*padding_len > 0)) { 2130 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2131 SCTP_BUF_LEN(m_at) += *padding_len; 2132 *chunk_len += *padding_len; 2133 *padding_len = 0; 2134 } 2135 m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len); 2136 if (limit_out) { 2137 cnt++; 2138 total_count++; 2139 if (cnt >= 2) { 2140 /* 2141 * two from each 2142 * address 2143 */ 2144 break; 2145 } 2146 if (total_count > SCTP_ADDRESS_LIMIT) { 2147 /* No more addresses */ 2148 break; 2149 } 2150 } 2151 } 2152 } 2153 } 2154 } else { 2155 struct sctp_laddr *laddr; 2156 2157 cnt = cnt_inits_to; 2158 /* First, how many ? */ 2159 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2160 if (laddr->ifa == NULL) { 2161 continue; 2162 } 2163 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) 2164 /* 2165 * Address being deleted by the system, dont 2166 * list. 2167 */ 2168 continue; 2169 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2170 /* 2171 * Address being deleted on this ep don't 2172 * list. 2173 */ 2174 continue; 2175 } 2176 if (sctp_is_address_in_scope(laddr->ifa, 2177 scope, 1) == 0) { 2178 continue; 2179 } 2180 cnt++; 2181 } 2182 /* 2183 * To get through a NAT we only list addresses if we have 2184 * more than one. That way if you just bind a single address 2185 * we let the source of the init dictate our address. 2186 */ 2187 if (cnt > 1) { 2188 cnt = cnt_inits_to; 2189 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2190 if (laddr->ifa == NULL) { 2191 continue; 2192 } 2193 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) { 2194 continue; 2195 } 2196 if (sctp_is_address_in_scope(laddr->ifa, 2197 scope, 0) == 0) { 2198 continue; 2199 } 2200 if ((chunk_len != NULL) && 2201 (padding_len != NULL) && 2202 (*padding_len > 0)) { 2203 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2204 SCTP_BUF_LEN(m_at) += *padding_len; 2205 *chunk_len += *padding_len; 2206 *padding_len = 0; 2207 } 2208 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len); 2209 cnt++; 2210 if (cnt >= SCTP_ADDRESS_LIMIT) { 2211 break; 2212 } 2213 } 2214 } 2215 } 2216 SCTP_IPI_ADDR_RUNLOCK(); 2217 return (m_at); 2218 } 2219 2220 static struct sctp_ifa * 2221 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, 2222 uint8_t dest_is_loop, 2223 uint8_t dest_is_priv, 2224 sa_family_t fam) 2225 { 2226 uint8_t dest_is_global = 0; 2227 2228 /* dest_is_priv is true if destination is a private address */ 2229 /* dest_is_loop is true if destination is a loopback addresses */ 2230 2231 /** 2232 * Here we determine if its a preferred address. A preferred address 2233 * means it is the same scope or higher scope then the destination. 2234 * L = loopback, P = private, G = global 2235 * ----------------------------------------- 2236 * src | dest | result 2237 * ---------------------------------------- 2238 * L | L | yes 2239 * ----------------------------------------- 2240 * P | L | yes-v4 no-v6 2241 * ----------------------------------------- 2242 * G | L | yes-v4 no-v6 2243 * ----------------------------------------- 2244 * L | P | no 2245 * ----------------------------------------- 2246 * P | P | yes 2247 * ----------------------------------------- 2248 * G | P | no 2249 * ----------------------------------------- 2250 * L | G | no 2251 * ----------------------------------------- 2252 * P | G | no 2253 * ----------------------------------------- 2254 * G | G | yes 2255 * ----------------------------------------- 2256 */ 2257 2258 if (ifa->address.sa.sa_family != fam) { 2259 /* forget mis-matched family */ 2260 return (NULL); 2261 } 2262 if ((dest_is_priv == 0) && (dest_is_loop == 0)) { 2263 dest_is_global = 1; 2264 } 2265 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:"); 2266 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa); 2267 /* Ok the address may be ok */ 2268 #ifdef INET6 2269 if (fam == AF_INET6) { 2270 /* ok to use deprecated addresses? no lets not! */ 2271 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2272 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n"); 2273 return (NULL); 2274 } 2275 if (ifa->src_is_priv && !ifa->src_is_loop) { 2276 if (dest_is_loop) { 2277 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n"); 2278 return (NULL); 2279 } 2280 } 2281 if (ifa->src_is_glob) { 2282 if (dest_is_loop) { 2283 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n"); 2284 return (NULL); 2285 } 2286 } 2287 } 2288 #endif 2289 /* 2290 * Now that we know what is what, implement or table this could in 2291 * theory be done slicker (it used to be), but this is 2292 * straightforward and easier to validate :-) 2293 */ 2294 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n", 2295 ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob); 2296 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n", 2297 dest_is_loop, dest_is_priv, dest_is_global); 2298 2299 if ((ifa->src_is_loop) && (dest_is_priv)) { 2300 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n"); 2301 return (NULL); 2302 } 2303 if ((ifa->src_is_glob) && (dest_is_priv)) { 2304 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n"); 2305 return (NULL); 2306 } 2307 if ((ifa->src_is_loop) && (dest_is_global)) { 2308 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n"); 2309 return (NULL); 2310 } 2311 if ((ifa->src_is_priv) && (dest_is_global)) { 2312 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n"); 2313 return (NULL); 2314 } 2315 SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n"); 2316 /* its a preferred address */ 2317 return (ifa); 2318 } 2319 2320 static struct sctp_ifa * 2321 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, 2322 uint8_t dest_is_loop, 2323 uint8_t dest_is_priv, 2324 sa_family_t fam) 2325 { 2326 uint8_t dest_is_global = 0; 2327 2328 /** 2329 * Here we determine if its a acceptable address. A acceptable 2330 * address means it is the same scope or higher scope but we can 2331 * allow for NAT which means its ok to have a global dest and a 2332 * private src. 2333 * 2334 * L = loopback, P = private, G = global 2335 * ----------------------------------------- 2336 * src | dest | result 2337 * ----------------------------------------- 2338 * L | L | yes 2339 * ----------------------------------------- 2340 * P | L | yes-v4 no-v6 2341 * ----------------------------------------- 2342 * G | L | yes 2343 * ----------------------------------------- 2344 * L | P | no 2345 * ----------------------------------------- 2346 * P | P | yes 2347 * ----------------------------------------- 2348 * G | P | yes - May not work 2349 * ----------------------------------------- 2350 * L | G | no 2351 * ----------------------------------------- 2352 * P | G | yes - May not work 2353 * ----------------------------------------- 2354 * G | G | yes 2355 * ----------------------------------------- 2356 */ 2357 2358 if (ifa->address.sa.sa_family != fam) { 2359 /* forget non matching family */ 2360 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n", 2361 ifa->address.sa.sa_family, fam); 2362 return (NULL); 2363 } 2364 /* Ok the address may be ok */ 2365 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa); 2366 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n", 2367 dest_is_loop, dest_is_priv); 2368 if ((dest_is_loop == 0) && (dest_is_priv == 0)) { 2369 dest_is_global = 1; 2370 } 2371 #ifdef INET6 2372 if (fam == AF_INET6) { 2373 /* ok to use deprecated addresses? */ 2374 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2375 return (NULL); 2376 } 2377 if (ifa->src_is_priv) { 2378 /* Special case, linklocal to loop */ 2379 if (dest_is_loop) 2380 return (NULL); 2381 } 2382 } 2383 #endif 2384 /* 2385 * Now that we know what is what, implement our table. This could in 2386 * theory be done slicker (it used to be), but this is 2387 * straightforward and easier to validate :-) 2388 */ 2389 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n", 2390 ifa->src_is_loop, 2391 dest_is_priv); 2392 if ((ifa->src_is_loop == 1) && (dest_is_priv)) { 2393 return (NULL); 2394 } 2395 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n", 2396 ifa->src_is_loop, 2397 dest_is_global); 2398 if ((ifa->src_is_loop == 1) && (dest_is_global)) { 2399 return (NULL); 2400 } 2401 SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n"); 2402 /* its an acceptable address */ 2403 return (ifa); 2404 } 2405 2406 int 2407 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa) 2408 { 2409 struct sctp_laddr *laddr; 2410 2411 if (stcb == NULL) { 2412 /* There are no restrictions, no TCB :-) */ 2413 return (0); 2414 } 2415 LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) { 2416 if (laddr->ifa == NULL) { 2417 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2418 __func__); 2419 continue; 2420 } 2421 if (laddr->ifa == ifa) { 2422 /* Yes it is on the list */ 2423 return (1); 2424 } 2425 } 2426 return (0); 2427 } 2428 2429 int 2430 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa) 2431 { 2432 struct sctp_laddr *laddr; 2433 2434 if (ifa == NULL) 2435 return (0); 2436 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2437 if (laddr->ifa == NULL) { 2438 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2439 __func__); 2440 continue; 2441 } 2442 if ((laddr->ifa == ifa) && laddr->action == 0) 2443 /* same pointer */ 2444 return (1); 2445 } 2446 return (0); 2447 } 2448 2449 static struct sctp_ifa * 2450 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp, 2451 sctp_route_t *ro, 2452 uint32_t vrf_id, 2453 int non_asoc_addr_ok, 2454 uint8_t dest_is_priv, 2455 uint8_t dest_is_loop, 2456 sa_family_t fam) 2457 { 2458 struct sctp_laddr *laddr, *starting_point; 2459 void *ifn; 2460 int resettotop = 0; 2461 struct sctp_ifn *sctp_ifn; 2462 struct sctp_ifa *sctp_ifa, *sifa; 2463 struct sctp_vrf *vrf; 2464 uint32_t ifn_index; 2465 2466 vrf = sctp_find_vrf(vrf_id); 2467 if (vrf == NULL) 2468 return (NULL); 2469 2470 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2471 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2472 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2473 /* 2474 * first question, is the ifn we will emit on in our list, if so, we 2475 * want such an address. Note that we first looked for a preferred 2476 * address. 2477 */ 2478 if (sctp_ifn) { 2479 /* is a preferred one on the interface we route out? */ 2480 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2481 #ifdef INET 2482 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2483 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2484 &sctp_ifa->address.sin.sin_addr) != 0)) { 2485 continue; 2486 } 2487 #endif 2488 #ifdef INET6 2489 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2490 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2491 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2492 continue; 2493 } 2494 #endif 2495 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2496 (non_asoc_addr_ok == 0)) 2497 continue; 2498 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, 2499 dest_is_loop, 2500 dest_is_priv, fam); 2501 if (sifa == NULL) 2502 continue; 2503 if (sctp_is_addr_in_ep(inp, sifa)) { 2504 atomic_add_int(&sifa->refcount, 1); 2505 return (sifa); 2506 } 2507 } 2508 } 2509 /* 2510 * ok, now we now need to find one on the list of the addresses. We 2511 * can't get one on the emitting interface so let's find first a 2512 * preferred one. If not that an acceptable one otherwise... we 2513 * return NULL. 2514 */ 2515 starting_point = inp->next_addr_touse; 2516 once_again: 2517 if (inp->next_addr_touse == NULL) { 2518 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2519 resettotop = 1; 2520 } 2521 for (laddr = inp->next_addr_touse; laddr; 2522 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2523 if (laddr->ifa == NULL) { 2524 /* address has been removed */ 2525 continue; 2526 } 2527 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2528 /* address is being deleted */ 2529 continue; 2530 } 2531 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, 2532 dest_is_priv, fam); 2533 if (sifa == NULL) 2534 continue; 2535 atomic_add_int(&sifa->refcount, 1); 2536 return (sifa); 2537 } 2538 if (resettotop == 0) { 2539 inp->next_addr_touse = NULL; 2540 goto once_again; 2541 } 2542 2543 inp->next_addr_touse = starting_point; 2544 resettotop = 0; 2545 once_again_too: 2546 if (inp->next_addr_touse == NULL) { 2547 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2548 resettotop = 1; 2549 } 2550 2551 /* ok, what about an acceptable address in the inp */ 2552 for (laddr = inp->next_addr_touse; laddr; 2553 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2554 if (laddr->ifa == NULL) { 2555 /* address has been removed */ 2556 continue; 2557 } 2558 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2559 /* address is being deleted */ 2560 continue; 2561 } 2562 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2563 dest_is_priv, fam); 2564 if (sifa == NULL) 2565 continue; 2566 atomic_add_int(&sifa->refcount, 1); 2567 return (sifa); 2568 } 2569 if (resettotop == 0) { 2570 inp->next_addr_touse = NULL; 2571 goto once_again_too; 2572 } 2573 2574 /* 2575 * no address bound can be a source for the destination we are in 2576 * trouble 2577 */ 2578 return (NULL); 2579 } 2580 2581 static struct sctp_ifa * 2582 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp, 2583 struct sctp_tcb *stcb, 2584 sctp_route_t *ro, 2585 uint32_t vrf_id, 2586 uint8_t dest_is_priv, 2587 uint8_t dest_is_loop, 2588 int non_asoc_addr_ok, 2589 sa_family_t fam) 2590 { 2591 struct sctp_laddr *laddr, *starting_point; 2592 void *ifn; 2593 struct sctp_ifn *sctp_ifn; 2594 struct sctp_ifa *sctp_ifa, *sifa; 2595 uint8_t start_at_beginning = 0; 2596 struct sctp_vrf *vrf; 2597 uint32_t ifn_index; 2598 2599 /* 2600 * first question, is the ifn we will emit on in our list, if so, we 2601 * want that one. 2602 */ 2603 vrf = sctp_find_vrf(vrf_id); 2604 if (vrf == NULL) 2605 return (NULL); 2606 2607 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2608 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2609 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2610 2611 /* 2612 * first question, is the ifn we will emit on in our list? If so, 2613 * we want that one. First we look for a preferred. Second, we go 2614 * for an acceptable. 2615 */ 2616 if (sctp_ifn) { 2617 /* first try for a preferred address on the ep */ 2618 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2619 #ifdef INET 2620 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2621 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2622 &sctp_ifa->address.sin.sin_addr) != 0)) { 2623 continue; 2624 } 2625 #endif 2626 #ifdef INET6 2627 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2628 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2629 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2630 continue; 2631 } 2632 #endif 2633 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2634 continue; 2635 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2636 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2637 if (sifa == NULL) 2638 continue; 2639 if (((non_asoc_addr_ok == 0) && 2640 (sctp_is_addr_restricted(stcb, sifa))) || 2641 (non_asoc_addr_ok && 2642 (sctp_is_addr_restricted(stcb, sifa)) && 2643 (!sctp_is_addr_pending(stcb, sifa)))) { 2644 /* on the no-no list */ 2645 continue; 2646 } 2647 atomic_add_int(&sifa->refcount, 1); 2648 return (sifa); 2649 } 2650 } 2651 /* next try for an acceptable address on the ep */ 2652 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2653 #ifdef INET 2654 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2655 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2656 &sctp_ifa->address.sin.sin_addr) != 0)) { 2657 continue; 2658 } 2659 #endif 2660 #ifdef INET6 2661 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2662 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2663 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2664 continue; 2665 } 2666 #endif 2667 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2668 continue; 2669 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2670 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2671 if (sifa == NULL) 2672 continue; 2673 if (((non_asoc_addr_ok == 0) && 2674 (sctp_is_addr_restricted(stcb, sifa))) || 2675 (non_asoc_addr_ok && 2676 (sctp_is_addr_restricted(stcb, sifa)) && 2677 (!sctp_is_addr_pending(stcb, sifa)))) { 2678 /* on the no-no list */ 2679 continue; 2680 } 2681 atomic_add_int(&sifa->refcount, 1); 2682 return (sifa); 2683 } 2684 } 2685 } 2686 /* 2687 * if we can't find one like that then we must look at all addresses 2688 * bound to pick one at first preferable then secondly acceptable. 2689 */ 2690 starting_point = stcb->asoc.last_used_address; 2691 sctp_from_the_top: 2692 if (stcb->asoc.last_used_address == NULL) { 2693 start_at_beginning = 1; 2694 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2695 } 2696 /* search beginning with the last used address */ 2697 for (laddr = stcb->asoc.last_used_address; laddr; 2698 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2699 if (laddr->ifa == NULL) { 2700 /* address has been removed */ 2701 continue; 2702 } 2703 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2704 /* address is being deleted */ 2705 continue; 2706 } 2707 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam); 2708 if (sifa == NULL) 2709 continue; 2710 if (((non_asoc_addr_ok == 0) && 2711 (sctp_is_addr_restricted(stcb, sifa))) || 2712 (non_asoc_addr_ok && 2713 (sctp_is_addr_restricted(stcb, sifa)) && 2714 (!sctp_is_addr_pending(stcb, sifa)))) { 2715 /* on the no-no list */ 2716 continue; 2717 } 2718 stcb->asoc.last_used_address = laddr; 2719 atomic_add_int(&sifa->refcount, 1); 2720 return (sifa); 2721 } 2722 if (start_at_beginning == 0) { 2723 stcb->asoc.last_used_address = NULL; 2724 goto sctp_from_the_top; 2725 } 2726 /* now try for any higher scope than the destination */ 2727 stcb->asoc.last_used_address = starting_point; 2728 start_at_beginning = 0; 2729 sctp_from_the_top2: 2730 if (stcb->asoc.last_used_address == NULL) { 2731 start_at_beginning = 1; 2732 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2733 } 2734 /* search beginning with the last used address */ 2735 for (laddr = stcb->asoc.last_used_address; laddr; 2736 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2737 if (laddr->ifa == NULL) { 2738 /* address has been removed */ 2739 continue; 2740 } 2741 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2742 /* address is being deleted */ 2743 continue; 2744 } 2745 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2746 dest_is_priv, fam); 2747 if (sifa == NULL) 2748 continue; 2749 if (((non_asoc_addr_ok == 0) && 2750 (sctp_is_addr_restricted(stcb, sifa))) || 2751 (non_asoc_addr_ok && 2752 (sctp_is_addr_restricted(stcb, sifa)) && 2753 (!sctp_is_addr_pending(stcb, sifa)))) { 2754 /* on the no-no list */ 2755 continue; 2756 } 2757 stcb->asoc.last_used_address = laddr; 2758 atomic_add_int(&sifa->refcount, 1); 2759 return (sifa); 2760 } 2761 if (start_at_beginning == 0) { 2762 stcb->asoc.last_used_address = NULL; 2763 goto sctp_from_the_top2; 2764 } 2765 return (NULL); 2766 } 2767 2768 static struct sctp_ifa * 2769 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn, 2770 struct sctp_inpcb *inp, 2771 struct sctp_tcb *stcb, 2772 int non_asoc_addr_ok, 2773 uint8_t dest_is_loop, 2774 uint8_t dest_is_priv, 2775 int addr_wanted, 2776 sa_family_t fam, 2777 sctp_route_t *ro) 2778 { 2779 struct sctp_ifa *ifa, *sifa; 2780 int num_eligible_addr = 0; 2781 #ifdef INET6 2782 struct sockaddr_in6 sin6, lsa6; 2783 2784 if (fam == AF_INET6) { 2785 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6)); 2786 (void)sa6_recoverscope(&sin6); 2787 } 2788 #endif /* INET6 */ 2789 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2790 #ifdef INET 2791 if ((ifa->address.sa.sa_family == AF_INET) && 2792 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2793 &ifa->address.sin.sin_addr) != 0)) { 2794 continue; 2795 } 2796 #endif 2797 #ifdef INET6 2798 if ((ifa->address.sa.sa_family == AF_INET6) && 2799 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2800 &ifa->address.sin6.sin6_addr) != 0)) { 2801 continue; 2802 } 2803 #endif 2804 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2805 (non_asoc_addr_ok == 0)) 2806 continue; 2807 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2808 dest_is_priv, fam); 2809 if (sifa == NULL) 2810 continue; 2811 #ifdef INET6 2812 if (fam == AF_INET6 && 2813 dest_is_loop && 2814 sifa->src_is_loop && sifa->src_is_priv) { 2815 /* 2816 * don't allow fe80::1 to be a src on loop ::1, we 2817 * don't list it to the peer so we will get an 2818 * abort. 2819 */ 2820 continue; 2821 } 2822 if (fam == AF_INET6 && 2823 IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) && 2824 IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) { 2825 /* 2826 * link-local <-> link-local must belong to the same 2827 * scope. 2828 */ 2829 memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6)); 2830 (void)sa6_recoverscope(&lsa6); 2831 if (sin6.sin6_scope_id != lsa6.sin6_scope_id) { 2832 continue; 2833 } 2834 } 2835 #endif /* INET6 */ 2836 2837 /* 2838 * Check if the IPv6 address matches to next-hop. In the 2839 * mobile case, old IPv6 address may be not deleted from the 2840 * interface. Then, the interface has previous and new 2841 * addresses. We should use one corresponding to the 2842 * next-hop. (by micchie) 2843 */ 2844 #ifdef INET6 2845 if (stcb && fam == AF_INET6 && 2846 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2847 if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) == 0) { 2848 continue; 2849 } 2850 } 2851 #endif 2852 #ifdef INET 2853 /* Avoid topologically incorrect IPv4 address */ 2854 if (stcb && fam == AF_INET && 2855 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2856 if (sctp_v4src_match_nexthop(sifa, ro) == 0) { 2857 continue; 2858 } 2859 } 2860 #endif 2861 if (stcb) { 2862 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2863 continue; 2864 } 2865 if (((non_asoc_addr_ok == 0) && 2866 (sctp_is_addr_restricted(stcb, sifa))) || 2867 (non_asoc_addr_ok && 2868 (sctp_is_addr_restricted(stcb, sifa)) && 2869 (!sctp_is_addr_pending(stcb, sifa)))) { 2870 /* 2871 * It is restricted for some reason.. 2872 * probably not yet added. 2873 */ 2874 continue; 2875 } 2876 } 2877 if (num_eligible_addr >= addr_wanted) { 2878 return (sifa); 2879 } 2880 num_eligible_addr++; 2881 } 2882 return (NULL); 2883 } 2884 2885 static int 2886 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn, 2887 struct sctp_inpcb *inp, 2888 struct sctp_tcb *stcb, 2889 int non_asoc_addr_ok, 2890 uint8_t dest_is_loop, 2891 uint8_t dest_is_priv, 2892 sa_family_t fam) 2893 { 2894 struct sctp_ifa *ifa, *sifa; 2895 int num_eligible_addr = 0; 2896 2897 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2898 #ifdef INET 2899 if ((ifa->address.sa.sa_family == AF_INET) && 2900 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2901 &ifa->address.sin.sin_addr) != 0)) { 2902 continue; 2903 } 2904 #endif 2905 #ifdef INET6 2906 if ((ifa->address.sa.sa_family == AF_INET6) && 2907 (stcb != NULL) && 2908 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2909 &ifa->address.sin6.sin6_addr) != 0)) { 2910 continue; 2911 } 2912 #endif 2913 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2914 (non_asoc_addr_ok == 0)) { 2915 continue; 2916 } 2917 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2918 dest_is_priv, fam); 2919 if (sifa == NULL) { 2920 continue; 2921 } 2922 if (stcb) { 2923 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2924 continue; 2925 } 2926 if (((non_asoc_addr_ok == 0) && 2927 (sctp_is_addr_restricted(stcb, sifa))) || 2928 (non_asoc_addr_ok && 2929 (sctp_is_addr_restricted(stcb, sifa)) && 2930 (!sctp_is_addr_pending(stcb, sifa)))) { 2931 /* 2932 * It is restricted for some reason.. 2933 * probably not yet added. 2934 */ 2935 continue; 2936 } 2937 } 2938 num_eligible_addr++; 2939 } 2940 return (num_eligible_addr); 2941 } 2942 2943 static struct sctp_ifa * 2944 sctp_choose_boundall(struct sctp_inpcb *inp, 2945 struct sctp_tcb *stcb, 2946 struct sctp_nets *net, 2947 sctp_route_t *ro, 2948 uint32_t vrf_id, 2949 uint8_t dest_is_priv, 2950 uint8_t dest_is_loop, 2951 int non_asoc_addr_ok, 2952 sa_family_t fam) 2953 { 2954 int cur_addr_num = 0, num_preferred = 0; 2955 void *ifn; 2956 struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn; 2957 struct sctp_ifa *sctp_ifa, *sifa; 2958 uint32_t ifn_index; 2959 struct sctp_vrf *vrf; 2960 #ifdef INET 2961 int retried = 0; 2962 #endif 2963 2964 /*- 2965 * For boundall we can use any address in the association. 2966 * If non_asoc_addr_ok is set we can use any address (at least in 2967 * theory). So we look for preferred addresses first. If we find one, 2968 * we use it. Otherwise we next try to get an address on the 2969 * interface, which we should be able to do (unless non_asoc_addr_ok 2970 * is false and we are routed out that way). In these cases where we 2971 * can't use the address of the interface we go through all the 2972 * ifn's looking for an address we can use and fill that in. Punting 2973 * means we send back address 0, which will probably cause problems 2974 * actually since then IP will fill in the address of the route ifn, 2975 * which means we probably already rejected it.. i.e. here comes an 2976 * abort :-<. 2977 */ 2978 vrf = sctp_find_vrf(vrf_id); 2979 if (vrf == NULL) 2980 return (NULL); 2981 2982 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2983 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2984 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index); 2985 emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2986 if (sctp_ifn == NULL) { 2987 /* ?? We don't have this guy ?? */ 2988 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n"); 2989 goto bound_all_plan_b; 2990 } 2991 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n", 2992 ifn_index, sctp_ifn->ifn_name); 2993 2994 if (net) { 2995 cur_addr_num = net->indx_of_eligible_next_to_use; 2996 } 2997 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, 2998 inp, stcb, 2999 non_asoc_addr_ok, 3000 dest_is_loop, 3001 dest_is_priv, fam); 3002 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n", 3003 num_preferred, sctp_ifn->ifn_name); 3004 if (num_preferred == 0) { 3005 /* 3006 * no eligible addresses, we must use some other interface 3007 * address if we can find one. 3008 */ 3009 goto bound_all_plan_b; 3010 } 3011 /* 3012 * Ok we have num_eligible_addr set with how many we can use, this 3013 * may vary from call to call due to addresses being deprecated 3014 * etc.. 3015 */ 3016 if (cur_addr_num >= num_preferred) { 3017 cur_addr_num = 0; 3018 } 3019 /* 3020 * select the nth address from the list (where cur_addr_num is the 3021 * nth) and 0 is the first one, 1 is the second one etc... 3022 */ 3023 SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num); 3024 3025 sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3026 dest_is_priv, cur_addr_num, fam, ro); 3027 3028 /* if sctp_ifa is NULL something changed??, fall to plan b. */ 3029 if (sctp_ifa) { 3030 atomic_add_int(&sctp_ifa->refcount, 1); 3031 if (net) { 3032 /* save off where the next one we will want */ 3033 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3034 } 3035 return (sctp_ifa); 3036 } 3037 /* 3038 * plan_b: Look at all interfaces and find a preferred address. If 3039 * no preferred fall through to plan_c. 3040 */ 3041 bound_all_plan_b: 3042 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n"); 3043 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3044 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n", 3045 sctp_ifn->ifn_name); 3046 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3047 /* wrong base scope */ 3048 SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n"); 3049 continue; 3050 } 3051 if ((sctp_ifn == looked_at) && looked_at) { 3052 /* already looked at this guy */ 3053 SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n"); 3054 continue; 3055 } 3056 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, 3057 dest_is_loop, dest_is_priv, fam); 3058 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3059 "Found ifn:%p %d preferred source addresses\n", 3060 ifn, num_preferred); 3061 if (num_preferred == 0) { 3062 /* None on this interface. */ 3063 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No preferred -- skipping to next\n"); 3064 continue; 3065 } 3066 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3067 "num preferred:%d on interface:%p cur_addr_num:%d\n", 3068 num_preferred, (void *)sctp_ifn, cur_addr_num); 3069 3070 /* 3071 * Ok we have num_eligible_addr set with how many we can 3072 * use, this may vary from call to call due to addresses 3073 * being deprecated etc.. 3074 */ 3075 if (cur_addr_num >= num_preferred) { 3076 cur_addr_num = 0; 3077 } 3078 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3079 dest_is_priv, cur_addr_num, fam, ro); 3080 if (sifa == NULL) 3081 continue; 3082 if (net) { 3083 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3084 SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n", 3085 cur_addr_num); 3086 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:"); 3087 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 3088 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:"); 3089 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); 3090 } 3091 atomic_add_int(&sifa->refcount, 1); 3092 return (sifa); 3093 } 3094 #ifdef INET 3095 again_with_private_addresses_allowed: 3096 #endif 3097 /* plan_c: do we have an acceptable address on the emit interface */ 3098 sifa = NULL; 3099 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n"); 3100 if (emit_ifn == NULL) { 3101 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n"); 3102 goto plan_d; 3103 } 3104 LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) { 3105 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa); 3106 #ifdef INET 3107 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3108 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3109 &sctp_ifa->address.sin.sin_addr) != 0)) { 3110 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3111 continue; 3112 } 3113 #endif 3114 #ifdef INET6 3115 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3116 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3117 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3118 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3119 continue; 3120 } 3121 #endif 3122 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3123 (non_asoc_addr_ok == 0)) { 3124 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n"); 3125 continue; 3126 } 3127 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, 3128 dest_is_priv, fam); 3129 if (sifa == NULL) { 3130 SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n"); 3131 continue; 3132 } 3133 if (stcb) { 3134 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3135 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n"); 3136 sifa = NULL; 3137 continue; 3138 } 3139 if (((non_asoc_addr_ok == 0) && 3140 (sctp_is_addr_restricted(stcb, sifa))) || 3141 (non_asoc_addr_ok && 3142 (sctp_is_addr_restricted(stcb, sifa)) && 3143 (!sctp_is_addr_pending(stcb, sifa)))) { 3144 /* 3145 * It is restricted for some reason.. 3146 * probably not yet added. 3147 */ 3148 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its restricted\n"); 3149 sifa = NULL; 3150 continue; 3151 } 3152 } 3153 atomic_add_int(&sifa->refcount, 1); 3154 goto out; 3155 } 3156 plan_d: 3157 /* 3158 * plan_d: We are in trouble. No preferred address on the emit 3159 * interface. And not even a preferred address on all interfaces. Go 3160 * out and see if we can find an acceptable address somewhere 3161 * amongst all interfaces. 3162 */ 3163 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at); 3164 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3165 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3166 /* wrong base scope */ 3167 continue; 3168 } 3169 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3170 #ifdef INET 3171 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3172 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3173 &sctp_ifa->address.sin.sin_addr) != 0)) { 3174 continue; 3175 } 3176 #endif 3177 #ifdef INET6 3178 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3179 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3180 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3181 continue; 3182 } 3183 #endif 3184 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3185 (non_asoc_addr_ok == 0)) 3186 continue; 3187 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3188 dest_is_loop, 3189 dest_is_priv, fam); 3190 if (sifa == NULL) 3191 continue; 3192 if (stcb) { 3193 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3194 sifa = NULL; 3195 continue; 3196 } 3197 if (((non_asoc_addr_ok == 0) && 3198 (sctp_is_addr_restricted(stcb, sifa))) || 3199 (non_asoc_addr_ok && 3200 (sctp_is_addr_restricted(stcb, sifa)) && 3201 (!sctp_is_addr_pending(stcb, sifa)))) { 3202 /* 3203 * It is restricted for some 3204 * reason.. probably not yet added. 3205 */ 3206 sifa = NULL; 3207 continue; 3208 } 3209 } 3210 goto out; 3211 } 3212 } 3213 #ifdef INET 3214 if (stcb) { 3215 if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) { 3216 stcb->asoc.scope.ipv4_local_scope = 1; 3217 retried = 1; 3218 goto again_with_private_addresses_allowed; 3219 } else if (retried == 1) { 3220 stcb->asoc.scope.ipv4_local_scope = 0; 3221 } 3222 } 3223 #endif 3224 out: 3225 #ifdef INET 3226 if (sifa) { 3227 if (retried == 1) { 3228 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3229 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3230 /* wrong base scope */ 3231 continue; 3232 } 3233 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3234 struct sctp_ifa *tmp_sifa; 3235 3236 #ifdef INET 3237 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3238 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3239 &sctp_ifa->address.sin.sin_addr) != 0)) { 3240 continue; 3241 } 3242 #endif 3243 #ifdef INET6 3244 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3245 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3246 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3247 continue; 3248 } 3249 #endif 3250 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3251 (non_asoc_addr_ok == 0)) 3252 continue; 3253 tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3254 dest_is_loop, 3255 dest_is_priv, fam); 3256 if (tmp_sifa == NULL) { 3257 continue; 3258 } 3259 if (tmp_sifa == sifa) { 3260 continue; 3261 } 3262 if (stcb) { 3263 if (sctp_is_address_in_scope(tmp_sifa, 3264 &stcb->asoc.scope, 0) == 0) { 3265 continue; 3266 } 3267 if (((non_asoc_addr_ok == 0) && 3268 (sctp_is_addr_restricted(stcb, tmp_sifa))) || 3269 (non_asoc_addr_ok && 3270 (sctp_is_addr_restricted(stcb, tmp_sifa)) && 3271 (!sctp_is_addr_pending(stcb, tmp_sifa)))) { 3272 /* 3273 * It is restricted 3274 * for some reason.. 3275 * probably not yet 3276 * added. 3277 */ 3278 continue; 3279 } 3280 } 3281 if ((tmp_sifa->address.sin.sin_family == AF_INET) && 3282 (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) { 3283 sctp_add_local_addr_restricted(stcb, tmp_sifa); 3284 } 3285 } 3286 } 3287 } 3288 atomic_add_int(&sifa->refcount, 1); 3289 } 3290 #endif 3291 return (sifa); 3292 } 3293 3294 /* tcb may be NULL */ 3295 struct sctp_ifa * 3296 sctp_source_address_selection(struct sctp_inpcb *inp, 3297 struct sctp_tcb *stcb, 3298 sctp_route_t *ro, 3299 struct sctp_nets *net, 3300 int non_asoc_addr_ok, uint32_t vrf_id) 3301 { 3302 struct sctp_ifa *answer; 3303 uint8_t dest_is_priv, dest_is_loop; 3304 sa_family_t fam; 3305 #ifdef INET 3306 struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst; 3307 #endif 3308 #ifdef INET6 3309 struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst; 3310 #endif 3311 3312 /** 3313 * Rules: 3314 * - Find the route if needed, cache if I can. 3315 * - Look at interface address in route, Is it in the bound list. If so we 3316 * have the best source. 3317 * - If not we must rotate amongst the addresses. 3318 * 3319 * Caveats and issues 3320 * 3321 * Do we need to pay attention to scope. We can have a private address 3322 * or a global address we are sourcing or sending to. So if we draw 3323 * it out 3324 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3325 * For V4 3326 * ------------------------------------------ 3327 * source * dest * result 3328 * ----------------------------------------- 3329 * <a> Private * Global * NAT 3330 * ----------------------------------------- 3331 * <b> Private * Private * No problem 3332 * ----------------------------------------- 3333 * <c> Global * Private * Huh, How will this work? 3334 * ----------------------------------------- 3335 * <d> Global * Global * No Problem 3336 *------------------------------------------ 3337 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3338 * For V6 3339 *------------------------------------------ 3340 * source * dest * result 3341 * ----------------------------------------- 3342 * <a> Linklocal * Global * 3343 * ----------------------------------------- 3344 * <b> Linklocal * Linklocal * No problem 3345 * ----------------------------------------- 3346 * <c> Global * Linklocal * Huh, How will this work? 3347 * ----------------------------------------- 3348 * <d> Global * Global * No Problem 3349 *------------------------------------------ 3350 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3351 * 3352 * And then we add to that what happens if there are multiple addresses 3353 * assigned to an interface. Remember the ifa on a ifn is a linked 3354 * list of addresses. So one interface can have more than one IP 3355 * address. What happens if we have both a private and a global 3356 * address? Do we then use context of destination to sort out which 3357 * one is best? And what about NAT's sending P->G may get you a NAT 3358 * translation, or should you select the G thats on the interface in 3359 * preference. 3360 * 3361 * Decisions: 3362 * 3363 * - count the number of addresses on the interface. 3364 * - if it is one, no problem except case <c>. 3365 * For <a> we will assume a NAT out there. 3366 * - if there are more than one, then we need to worry about scope P 3367 * or G. We should prefer G -> G and P -> P if possible. 3368 * Then as a secondary fall back to mixed types G->P being a last 3369 * ditch one. 3370 * - The above all works for bound all, but bound specific we need to 3371 * use the same concept but instead only consider the bound 3372 * addresses. If the bound set is NOT assigned to the interface then 3373 * we must use rotation amongst the bound addresses.. 3374 */ 3375 if (ro->ro_nh == NULL) { 3376 /* 3377 * Need a route to cache. 3378 */ 3379 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 3380 } 3381 if (ro->ro_nh == NULL) { 3382 return (NULL); 3383 } 3384 fam = ro->ro_dst.sa_family; 3385 dest_is_priv = dest_is_loop = 0; 3386 /* Setup our scopes for the destination */ 3387 switch (fam) { 3388 #ifdef INET 3389 case AF_INET: 3390 /* Scope based on outbound address */ 3391 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) { 3392 dest_is_loop = 1; 3393 if (net != NULL) { 3394 /* mark it as local */ 3395 net->addr_is_local = 1; 3396 } 3397 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) { 3398 dest_is_priv = 1; 3399 } 3400 break; 3401 #endif 3402 #ifdef INET6 3403 case AF_INET6: 3404 /* Scope based on outbound address */ 3405 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) || 3406 SCTP_ROUTE_IS_REAL_LOOP(ro)) { 3407 /* 3408 * If the address is a loopback address, which 3409 * consists of "::1" OR "fe80::1%lo0", we are 3410 * loopback scope. But we don't use dest_is_priv 3411 * (link local addresses). 3412 */ 3413 dest_is_loop = 1; 3414 if (net != NULL) { 3415 /* mark it as local */ 3416 net->addr_is_local = 1; 3417 } 3418 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) { 3419 dest_is_priv = 1; 3420 } 3421 break; 3422 #endif 3423 } 3424 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:"); 3425 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst); 3426 SCTP_IPI_ADDR_RLOCK(); 3427 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3428 /* 3429 * Bound all case 3430 */ 3431 answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id, 3432 dest_is_priv, dest_is_loop, 3433 non_asoc_addr_ok, fam); 3434 SCTP_IPI_ADDR_RUNLOCK(); 3435 return (answer); 3436 } 3437 /* 3438 * Subset bound case 3439 */ 3440 if (stcb) { 3441 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro, 3442 vrf_id, dest_is_priv, 3443 dest_is_loop, 3444 non_asoc_addr_ok, fam); 3445 } else { 3446 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id, 3447 non_asoc_addr_ok, 3448 dest_is_priv, 3449 dest_is_loop, fam); 3450 } 3451 SCTP_IPI_ADDR_RUNLOCK(); 3452 return (answer); 3453 } 3454 3455 static bool 3456 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize) 3457 { 3458 struct cmsghdr cmh; 3459 struct sctp_sndinfo sndinfo; 3460 struct sctp_prinfo prinfo; 3461 struct sctp_authinfo authinfo; 3462 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3463 bool found; 3464 3465 /* 3466 * Independent of how many mbufs, find the c_type inside the control 3467 * structure and copy out the data. 3468 */ 3469 found = false; 3470 tot_len = SCTP_BUF_LEN(control); 3471 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3472 rem_len = tot_len - off; 3473 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3474 /* There is not enough room for one more. */ 3475 return (found); 3476 } 3477 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3478 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3479 /* We dont't have a complete CMSG header. */ 3480 return (found); 3481 } 3482 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3483 /* We don't have the complete CMSG. */ 3484 return (found); 3485 } 3486 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3487 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3488 if ((cmh.cmsg_level == IPPROTO_SCTP) && 3489 ((c_type == cmh.cmsg_type) || 3490 ((c_type == SCTP_SNDRCV) && 3491 ((cmh.cmsg_type == SCTP_SNDINFO) || 3492 (cmh.cmsg_type == SCTP_PRINFO) || 3493 (cmh.cmsg_type == SCTP_AUTHINFO))))) { 3494 if (c_type == cmh.cmsg_type) { 3495 if (cpsize > INT_MAX) { 3496 return (found); 3497 } 3498 if (cmsg_data_len < (int)cpsize) { 3499 return (found); 3500 } 3501 /* It is exactly what we want. Copy it out. */ 3502 m_copydata(control, cmsg_data_off, (int)cpsize, (caddr_t)data); 3503 return (1); 3504 } else { 3505 struct sctp_sndrcvinfo *sndrcvinfo; 3506 3507 sndrcvinfo = (struct sctp_sndrcvinfo *)data; 3508 if (!found) { 3509 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { 3510 return (found); 3511 } 3512 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); 3513 } 3514 switch (cmh.cmsg_type) { 3515 case SCTP_SNDINFO: 3516 if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) { 3517 return (found); 3518 } 3519 m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); 3520 sndrcvinfo->sinfo_stream = sndinfo.snd_sid; 3521 sndrcvinfo->sinfo_flags = sndinfo.snd_flags; 3522 sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid; 3523 sndrcvinfo->sinfo_context = sndinfo.snd_context; 3524 sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id; 3525 break; 3526 case SCTP_PRINFO: 3527 if (cmsg_data_len < (int)sizeof(struct sctp_prinfo)) { 3528 return (found); 3529 } 3530 m_copydata(control, cmsg_data_off, sizeof(struct sctp_prinfo), (caddr_t)&prinfo); 3531 if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) { 3532 sndrcvinfo->sinfo_timetolive = prinfo.pr_value; 3533 } else { 3534 sndrcvinfo->sinfo_timetolive = 0; 3535 } 3536 sndrcvinfo->sinfo_flags |= prinfo.pr_policy; 3537 break; 3538 case SCTP_AUTHINFO: 3539 if (cmsg_data_len < (int)sizeof(struct sctp_authinfo)) { 3540 return (found); 3541 } 3542 m_copydata(control, cmsg_data_off, sizeof(struct sctp_authinfo), (caddr_t)&authinfo); 3543 sndrcvinfo->sinfo_keynumber_valid = 1; 3544 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber; 3545 break; 3546 default: 3547 return (found); 3548 } 3549 found = true; 3550 } 3551 } 3552 } 3553 return (found); 3554 } 3555 3556 static int 3557 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error) 3558 { 3559 struct cmsghdr cmh; 3560 struct sctp_initmsg initmsg; 3561 #ifdef INET 3562 struct sockaddr_in sin; 3563 #endif 3564 #ifdef INET6 3565 struct sockaddr_in6 sin6; 3566 #endif 3567 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3568 3569 tot_len = SCTP_BUF_LEN(control); 3570 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3571 rem_len = tot_len - off; 3572 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3573 /* There is not enough room for one more. */ 3574 *error = EINVAL; 3575 return (1); 3576 } 3577 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3578 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3579 /* We dont't have a complete CMSG header. */ 3580 *error = EINVAL; 3581 return (1); 3582 } 3583 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3584 /* We don't have the complete CMSG. */ 3585 *error = EINVAL; 3586 return (1); 3587 } 3588 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3589 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3590 if (cmh.cmsg_level == IPPROTO_SCTP) { 3591 switch (cmh.cmsg_type) { 3592 case SCTP_INIT: 3593 if (cmsg_data_len < (int)sizeof(struct sctp_initmsg)) { 3594 *error = EINVAL; 3595 return (1); 3596 } 3597 m_copydata(control, cmsg_data_off, sizeof(struct sctp_initmsg), (caddr_t)&initmsg); 3598 if (initmsg.sinit_max_attempts) 3599 stcb->asoc.max_init_times = initmsg.sinit_max_attempts; 3600 if (initmsg.sinit_num_ostreams) 3601 stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams; 3602 if (initmsg.sinit_max_instreams) 3603 stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams; 3604 if (initmsg.sinit_max_init_timeo) 3605 stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo; 3606 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) { 3607 struct sctp_stream_out *tmp_str; 3608 unsigned int i; 3609 #if defined(SCTP_DETAILED_STR_STATS) 3610 int j; 3611 #endif 3612 3613 /* Default is NOT correct */ 3614 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n", 3615 stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams); 3616 SCTP_TCB_UNLOCK(stcb); 3617 SCTP_MALLOC(tmp_str, 3618 struct sctp_stream_out *, 3619 (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)), 3620 SCTP_M_STRMO); 3621 SCTP_TCB_LOCK(stcb); 3622 if (tmp_str != NULL) { 3623 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO); 3624 stcb->asoc.strmout = tmp_str; 3625 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams; 3626 } else { 3627 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt; 3628 } 3629 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3630 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 3631 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 3632 stcb->asoc.strmout[i].chunks_on_queues = 0; 3633 #if defined(SCTP_DETAILED_STR_STATS) 3634 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 3635 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 3636 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 3637 } 3638 #else 3639 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 3640 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 3641 #endif 3642 stcb->asoc.strmout[i].next_mid_ordered = 0; 3643 stcb->asoc.strmout[i].next_mid_unordered = 0; 3644 stcb->asoc.strmout[i].sid = i; 3645 stcb->asoc.strmout[i].last_msg_incomplete = 0; 3646 stcb->asoc.strmout[i].state = SCTP_STREAM_OPENING; 3647 } 3648 } 3649 break; 3650 #ifdef INET 3651 case SCTP_DSTADDRV4: 3652 if (cmsg_data_len < (int)sizeof(struct in_addr)) { 3653 *error = EINVAL; 3654 return (1); 3655 } 3656 memset(&sin, 0, sizeof(struct sockaddr_in)); 3657 sin.sin_family = AF_INET; 3658 sin.sin_len = sizeof(struct sockaddr_in); 3659 sin.sin_port = stcb->rport; 3660 m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3661 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3662 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3663 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3664 *error = EINVAL; 3665 return (1); 3666 } 3667 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3668 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3669 *error = ENOBUFS; 3670 return (1); 3671 } 3672 break; 3673 #endif 3674 #ifdef INET6 3675 case SCTP_DSTADDRV6: 3676 if (cmsg_data_len < (int)sizeof(struct in6_addr)) { 3677 *error = EINVAL; 3678 return (1); 3679 } 3680 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3681 sin6.sin6_family = AF_INET6; 3682 sin6.sin6_len = sizeof(struct sockaddr_in6); 3683 sin6.sin6_port = stcb->rport; 3684 m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3685 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) || 3686 IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) { 3687 *error = EINVAL; 3688 return (1); 3689 } 3690 #ifdef INET 3691 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3692 in6_sin6_2_sin(&sin, &sin6); 3693 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3694 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3695 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3696 *error = EINVAL; 3697 return (1); 3698 } 3699 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3700 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3701 *error = ENOBUFS; 3702 return (1); 3703 } 3704 } else 3705 #endif 3706 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, stcb->asoc.port, 3707 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3708 *error = ENOBUFS; 3709 return (1); 3710 } 3711 break; 3712 #endif 3713 default: 3714 break; 3715 } 3716 } 3717 } 3718 return (0); 3719 } 3720 3721 #if defined(INET) || defined(INET6) 3722 static struct sctp_tcb * 3723 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p, 3724 uint16_t port, 3725 struct mbuf *control, 3726 struct sctp_nets **net_p, 3727 int *error) 3728 { 3729 struct cmsghdr cmh; 3730 struct sctp_tcb *stcb; 3731 struct sockaddr *addr; 3732 #ifdef INET 3733 struct sockaddr_in sin; 3734 #endif 3735 #ifdef INET6 3736 struct sockaddr_in6 sin6; 3737 #endif 3738 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3739 3740 tot_len = SCTP_BUF_LEN(control); 3741 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3742 rem_len = tot_len - off; 3743 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3744 /* There is not enough room for one more. */ 3745 *error = EINVAL; 3746 return (NULL); 3747 } 3748 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3749 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3750 /* We dont't have a complete CMSG header. */ 3751 *error = EINVAL; 3752 return (NULL); 3753 } 3754 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3755 /* We don't have the complete CMSG. */ 3756 *error = EINVAL; 3757 return (NULL); 3758 } 3759 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3760 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3761 if (cmh.cmsg_level == IPPROTO_SCTP) { 3762 switch (cmh.cmsg_type) { 3763 #ifdef INET 3764 case SCTP_DSTADDRV4: 3765 if (cmsg_data_len < (int)sizeof(struct in_addr)) { 3766 *error = EINVAL; 3767 return (NULL); 3768 } 3769 memset(&sin, 0, sizeof(struct sockaddr_in)); 3770 sin.sin_family = AF_INET; 3771 sin.sin_len = sizeof(struct sockaddr_in); 3772 sin.sin_port = port; 3773 m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3774 addr = (struct sockaddr *)&sin; 3775 break; 3776 #endif 3777 #ifdef INET6 3778 case SCTP_DSTADDRV6: 3779 if (cmsg_data_len < (int)sizeof(struct in6_addr)) { 3780 *error = EINVAL; 3781 return (NULL); 3782 } 3783 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3784 sin6.sin6_family = AF_INET6; 3785 sin6.sin6_len = sizeof(struct sockaddr_in6); 3786 sin6.sin6_port = port; 3787 m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3788 #ifdef INET 3789 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3790 in6_sin6_2_sin(&sin, &sin6); 3791 addr = (struct sockaddr *)&sin; 3792 } else 3793 #endif 3794 addr = (struct sockaddr *)&sin6; 3795 break; 3796 #endif 3797 default: 3798 addr = NULL; 3799 break; 3800 } 3801 if (addr) { 3802 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL); 3803 if (stcb != NULL) { 3804 return (stcb); 3805 } 3806 } 3807 } 3808 } 3809 return (NULL); 3810 } 3811 #endif 3812 3813 static struct mbuf * 3814 sctp_add_cookie(struct mbuf *init, int init_offset, 3815 struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t **signature) 3816 { 3817 struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret; 3818 struct sctp_state_cookie *stc; 3819 struct sctp_paramhdr *ph; 3820 uint16_t cookie_sz; 3821 3822 mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) + 3823 sizeof(struct sctp_paramhdr)), 0, 3824 M_NOWAIT, 1, MT_DATA); 3825 if (mret == NULL) { 3826 return (NULL); 3827 } 3828 copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT); 3829 if (copy_init == NULL) { 3830 sctp_m_freem(mret); 3831 return (NULL); 3832 } 3833 #ifdef SCTP_MBUF_LOGGING 3834 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3835 sctp_log_mbc(copy_init, SCTP_MBUF_ICOPY); 3836 } 3837 #endif 3838 copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL, 3839 M_NOWAIT); 3840 if (copy_initack == NULL) { 3841 sctp_m_freem(mret); 3842 sctp_m_freem(copy_init); 3843 return (NULL); 3844 } 3845 #ifdef SCTP_MBUF_LOGGING 3846 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3847 sctp_log_mbc(copy_initack, SCTP_MBUF_ICOPY); 3848 } 3849 #endif 3850 /* easy side we just drop it on the end */ 3851 ph = mtod(mret, struct sctp_paramhdr *); 3852 SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) + 3853 sizeof(struct sctp_paramhdr); 3854 stc = (struct sctp_state_cookie *)((caddr_t)ph + 3855 sizeof(struct sctp_paramhdr)); 3856 ph->param_type = htons(SCTP_STATE_COOKIE); 3857 ph->param_length = 0; /* fill in at the end */ 3858 /* Fill in the stc cookie data */ 3859 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); 3860 3861 /* tack the INIT and then the INIT-ACK onto the chain */ 3862 cookie_sz = 0; 3863 for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3864 cookie_sz += SCTP_BUF_LEN(m_at); 3865 if (SCTP_BUF_NEXT(m_at) == NULL) { 3866 SCTP_BUF_NEXT(m_at) = copy_init; 3867 break; 3868 } 3869 } 3870 for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3871 cookie_sz += SCTP_BUF_LEN(m_at); 3872 if (SCTP_BUF_NEXT(m_at) == NULL) { 3873 SCTP_BUF_NEXT(m_at) = copy_initack; 3874 break; 3875 } 3876 } 3877 for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3878 cookie_sz += SCTP_BUF_LEN(m_at); 3879 if (SCTP_BUF_NEXT(m_at) == NULL) { 3880 break; 3881 } 3882 } 3883 sig = sctp_get_mbuf_for_msg(SCTP_SIGNATURE_SIZE, 0, M_NOWAIT, 1, MT_DATA); 3884 if (sig == NULL) { 3885 /* no space, so free the entire chain */ 3886 sctp_m_freem(mret); 3887 return (NULL); 3888 } 3889 SCTP_BUF_NEXT(m_at) = sig; 3890 SCTP_BUF_LEN(sig) = SCTP_SIGNATURE_SIZE; 3891 cookie_sz += SCTP_SIGNATURE_SIZE; 3892 ph->param_length = htons(cookie_sz); 3893 *signature = (uint8_t *)mtod(sig, caddr_t); 3894 memset(*signature, 0, SCTP_SIGNATURE_SIZE); 3895 return (mret); 3896 } 3897 3898 static uint8_t 3899 sctp_get_ect(struct sctp_tcb *stcb) 3900 { 3901 if ((stcb != NULL) && (stcb->asoc.ecn_supported == 1)) { 3902 return (SCTP_ECT0_BIT); 3903 } else { 3904 return (0); 3905 } 3906 } 3907 3908 #if defined(INET) || defined(INET6) 3909 static void 3910 sctp_handle_no_route(struct sctp_tcb *stcb, 3911 struct sctp_nets *net, 3912 int so_locked) 3913 { 3914 SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n"); 3915 3916 if (net) { 3917 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was "); 3918 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa); 3919 if (net->dest_state & SCTP_ADDR_CONFIRMED) { 3920 if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) { 3921 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net); 3922 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 3923 stcb, 0, 3924 (void *)net, 3925 so_locked); 3926 net->dest_state &= ~SCTP_ADDR_REACHABLE; 3927 net->dest_state &= ~SCTP_ADDR_PF; 3928 } 3929 } 3930 if (stcb) { 3931 if (net == stcb->asoc.primary_destination) { 3932 /* need a new primary */ 3933 struct sctp_nets *alt; 3934 3935 alt = sctp_find_alternate_net(stcb, net, 0); 3936 if (alt != net) { 3937 if (stcb->asoc.alternate) { 3938 sctp_free_remote_addr(stcb->asoc.alternate); 3939 } 3940 stcb->asoc.alternate = alt; 3941 atomic_add_int(&stcb->asoc.alternate->ref_count, 1); 3942 if (net->ro._s_addr) { 3943 sctp_free_ifa(net->ro._s_addr); 3944 net->ro._s_addr = NULL; 3945 } 3946 net->src_addr_selected = 0; 3947 } 3948 } 3949 } 3950 } 3951 } 3952 #endif 3953 3954 static int 3955 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, 3956 struct sctp_tcb *stcb, /* may be NULL */ 3957 struct sctp_nets *net, 3958 struct sockaddr *to, 3959 struct mbuf *m, 3960 uint32_t auth_offset, 3961 struct sctp_auth_chunk *auth, 3962 uint16_t auth_keyid, 3963 int nofragment_flag, 3964 int ecn_ok, 3965 int out_of_asoc_ok, 3966 uint16_t src_port, 3967 uint16_t dest_port, 3968 uint32_t v_tag, 3969 uint16_t port, 3970 union sctp_sockstore *over_addr, 3971 uint8_t mflowtype, uint32_t mflowid, 3972 bool use_zero_crc, 3973 int so_locked) 3974 { 3975 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */ 3976 /** 3977 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header 3978 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure: 3979 * - fill in the HMAC digest of any AUTH chunk in the packet. 3980 * - calculate and fill in the SCTP checksum. 3981 * - prepend an IP address header. 3982 * - if boundall use INADDR_ANY. 3983 * - if boundspecific do source address selection. 3984 * - set fragmentation option for ipV4. 3985 * - On return from IP output, check/adjust mtu size of output 3986 * interface and smallest_mtu size as well. 3987 */ 3988 /* Will need ifdefs around this */ 3989 struct mbuf *newm; 3990 struct sctphdr *sctphdr; 3991 int packet_length; 3992 int ret; 3993 #if defined(INET) || defined(INET6) 3994 uint32_t vrf_id; 3995 #endif 3996 #if defined(INET) || defined(INET6) 3997 struct mbuf *o_pak; 3998 sctp_route_t *ro = NULL; 3999 struct udphdr *udp = NULL; 4000 #endif 4001 uint8_t tos_value; 4002 4003 if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) { 4004 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4005 sctp_m_freem(m); 4006 return (EFAULT); 4007 } 4008 #if defined(INET) || defined(INET6) 4009 if (stcb) { 4010 vrf_id = stcb->asoc.vrf_id; 4011 } else { 4012 vrf_id = inp->def_vrf_id; 4013 } 4014 #endif 4015 /* fill in the HMAC digest for any AUTH chunk in the packet */ 4016 if ((auth != NULL) && (stcb != NULL)) { 4017 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid); 4018 } 4019 4020 if (net) { 4021 tos_value = net->dscp; 4022 } else if (stcb) { 4023 tos_value = stcb->asoc.default_dscp; 4024 } else { 4025 tos_value = inp->sctp_ep.default_dscp; 4026 } 4027 4028 switch (to->sa_family) { 4029 #ifdef INET 4030 case AF_INET: 4031 { 4032 struct ip *ip = NULL; 4033 sctp_route_t iproute; 4034 int len; 4035 4036 len = SCTP_MIN_V4_OVERHEAD; 4037 if (port) { 4038 len += sizeof(struct udphdr); 4039 } 4040 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4041 if (newm == NULL) { 4042 sctp_m_freem(m); 4043 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4044 return (ENOMEM); 4045 } 4046 SCTP_ALIGN_TO_END(newm, len); 4047 SCTP_BUF_LEN(newm) = len; 4048 SCTP_BUF_NEXT(newm) = m; 4049 m = newm; 4050 if (net != NULL) { 4051 m->m_pkthdr.flowid = net->flowid; 4052 M_HASHTYPE_SET(m, net->flowtype); 4053 } else { 4054 m->m_pkthdr.flowid = mflowid; 4055 M_HASHTYPE_SET(m, mflowtype); 4056 } 4057 packet_length = sctp_calculate_len(m); 4058 ip = mtod(m, struct ip *); 4059 ip->ip_v = IPVERSION; 4060 ip->ip_hl = (sizeof(struct ip) >> 2); 4061 if (tos_value == 0) { 4062 /* 4063 * This means especially, that it is not set 4064 * at the SCTP layer. So use the value from 4065 * the IP layer. 4066 */ 4067 tos_value = inp->ip_inp.inp.inp_ip_tos; 4068 } 4069 tos_value &= 0xfc; 4070 if (ecn_ok) { 4071 tos_value |= sctp_get_ect(stcb); 4072 } 4073 if ((nofragment_flag) && (port == 0)) { 4074 ip->ip_off = htons(IP_DF); 4075 } else { 4076 ip->ip_off = htons(0); 4077 } 4078 /* FreeBSD has a function for ip_id's */ 4079 ip_fillid(ip); 4080 4081 ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl; 4082 ip->ip_len = htons(packet_length); 4083 ip->ip_tos = tos_value; 4084 if (port) { 4085 ip->ip_p = IPPROTO_UDP; 4086 } else { 4087 ip->ip_p = IPPROTO_SCTP; 4088 } 4089 ip->ip_sum = 0; 4090 if (net == NULL) { 4091 ro = &iproute; 4092 memset(&iproute, 0, sizeof(iproute)); 4093 memcpy(&ro->ro_dst, to, to->sa_len); 4094 } else { 4095 ro = (sctp_route_t *)&net->ro; 4096 } 4097 /* Now the address selection part */ 4098 ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr; 4099 4100 /* call the routine to select the src address */ 4101 if (net && out_of_asoc_ok == 0) { 4102 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4103 sctp_free_ifa(net->ro._s_addr); 4104 net->ro._s_addr = NULL; 4105 net->src_addr_selected = 0; 4106 RO_NHFREE(ro); 4107 } 4108 if (net->src_addr_selected == 0) { 4109 /* Cache the source address */ 4110 net->ro._s_addr = sctp_source_address_selection(inp, stcb, 4111 ro, net, 0, 4112 vrf_id); 4113 net->src_addr_selected = 1; 4114 } 4115 if (net->ro._s_addr == NULL) { 4116 /* No route to host */ 4117 net->src_addr_selected = 0; 4118 sctp_handle_no_route(stcb, net, so_locked); 4119 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4120 sctp_m_freem(m); 4121 return (EHOSTUNREACH); 4122 } 4123 ip->ip_src = net->ro._s_addr->address.sin.sin_addr; 4124 } else { 4125 if (over_addr == NULL) { 4126 struct sctp_ifa *_lsrc; 4127 4128 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4129 net, 4130 out_of_asoc_ok, 4131 vrf_id); 4132 if (_lsrc == NULL) { 4133 sctp_handle_no_route(stcb, net, so_locked); 4134 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4135 sctp_m_freem(m); 4136 return (EHOSTUNREACH); 4137 } 4138 ip->ip_src = _lsrc->address.sin.sin_addr; 4139 sctp_free_ifa(_lsrc); 4140 } else { 4141 ip->ip_src = over_addr->sin.sin_addr; 4142 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4143 } 4144 } 4145 if (port) { 4146 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4147 sctp_handle_no_route(stcb, net, so_locked); 4148 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4149 sctp_m_freem(m); 4150 return (EHOSTUNREACH); 4151 } 4152 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 4153 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4154 udp->uh_dport = port; 4155 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip))); 4156 if (V_udp_cksum) { 4157 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 4158 } else { 4159 udp->uh_sum = 0; 4160 } 4161 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4162 } else { 4163 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip)); 4164 } 4165 4166 sctphdr->src_port = src_port; 4167 sctphdr->dest_port = dest_port; 4168 sctphdr->v_tag = v_tag; 4169 sctphdr->checksum = 0; 4170 4171 /* 4172 * If source address selection fails and we find no 4173 * route then the ip_output should fail as well with 4174 * a NO_ROUTE_TO_HOST type error. We probably should 4175 * catch that somewhere and abort the association 4176 * right away (assuming this is an INIT being sent). 4177 */ 4178 if (ro->ro_nh == NULL) { 4179 /* 4180 * src addr selection failed to find a route 4181 * (or valid source addr), so we can't get 4182 * there from here (yet)! 4183 */ 4184 sctp_handle_no_route(stcb, net, so_locked); 4185 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4186 sctp_m_freem(m); 4187 return (EHOSTUNREACH); 4188 } 4189 if (ro != &iproute) { 4190 memcpy(&iproute, ro, sizeof(*ro)); 4191 } 4192 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n", 4193 (uint32_t)(ntohl(ip->ip_src.s_addr))); 4194 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n", 4195 (uint32_t)(ntohl(ip->ip_dst.s_addr))); 4196 SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n", 4197 (void *)ro->ro_nh); 4198 4199 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4200 /* failed to prepend data, give up */ 4201 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4202 sctp_m_freem(m); 4203 return (ENOMEM); 4204 } 4205 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4206 if (port) { 4207 if (use_zero_crc) { 4208 SCTP_STAT_INCR(sctps_sendzerocrc); 4209 } else { 4210 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr)); 4211 SCTP_STAT_INCR(sctps_sendswcrc); 4212 } 4213 if (V_udp_cksum) { 4214 SCTP_ENABLE_UDP_CSUM(o_pak); 4215 } 4216 } else { 4217 if (use_zero_crc) { 4218 SCTP_STAT_INCR(sctps_sendzerocrc); 4219 } else { 4220 m->m_pkthdr.csum_flags = CSUM_SCTP; 4221 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4222 SCTP_STAT_INCR(sctps_sendhwcrc); 4223 } 4224 } 4225 #ifdef SCTP_PACKET_LOGGING 4226 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4227 sctp_packet_log(o_pak); 4228 #endif 4229 /* send it out. table id is taken from stcb */ 4230 SCTP_PROBE5(send, NULL, stcb, ip, stcb, sctphdr); 4231 SCTP_IP_OUTPUT(ret, o_pak, ro, inp, vrf_id); 4232 if (port) { 4233 UDPSTAT_INC(udps_opackets); 4234 } 4235 SCTP_STAT_INCR(sctps_sendpackets); 4236 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4237 if (ret) 4238 SCTP_STAT_INCR(sctps_senderrors); 4239 4240 SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret); 4241 if (net == NULL) { 4242 /* free tempy routes */ 4243 RO_NHFREE(ro); 4244 } else { 4245 if ((ro->ro_nh != NULL) && (net->ro._s_addr) && 4246 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4247 uint32_t mtu; 4248 4249 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh); 4250 if (mtu > 0) { 4251 if (net->port) { 4252 mtu -= sizeof(struct udphdr); 4253 } 4254 if (mtu < net->mtu) { 4255 net->mtu = mtu; 4256 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4257 sctp_pathmtu_adjustment(stcb, mtu, true); 4258 } 4259 } 4260 } 4261 } else if (ro->ro_nh == NULL) { 4262 /* route was freed */ 4263 if (net->ro._s_addr && 4264 net->src_addr_selected) { 4265 sctp_free_ifa(net->ro._s_addr); 4266 net->ro._s_addr = NULL; 4267 } 4268 net->src_addr_selected = 0; 4269 } 4270 } 4271 return (ret); 4272 } 4273 #endif 4274 #ifdef INET6 4275 case AF_INET6: 4276 { 4277 uint32_t flowlabel, flowinfo; 4278 struct ip6_hdr *ip6h; 4279 struct route_in6 ip6route; 4280 struct ifnet *ifp; 4281 struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp; 4282 int prev_scope = 0; 4283 struct sockaddr_in6 lsa6_storage; 4284 int error; 4285 u_short prev_port = 0; 4286 int len; 4287 4288 if (net) { 4289 flowlabel = net->flowlabel; 4290 } else if (stcb) { 4291 flowlabel = stcb->asoc.default_flowlabel; 4292 } else { 4293 flowlabel = inp->sctp_ep.default_flowlabel; 4294 } 4295 if (flowlabel == 0) { 4296 /* 4297 * This means especially, that it is not set 4298 * at the SCTP layer. So use the value from 4299 * the IP layer. 4300 */ 4301 flowlabel = ntohl(((struct inpcb *)inp)->inp_flow); 4302 } 4303 flowlabel &= 0x000fffff; 4304 len = SCTP_MIN_OVERHEAD; 4305 if (port) { 4306 len += sizeof(struct udphdr); 4307 } 4308 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4309 if (newm == NULL) { 4310 sctp_m_freem(m); 4311 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4312 return (ENOMEM); 4313 } 4314 SCTP_ALIGN_TO_END(newm, len); 4315 SCTP_BUF_LEN(newm) = len; 4316 SCTP_BUF_NEXT(newm) = m; 4317 m = newm; 4318 if (net != NULL) { 4319 m->m_pkthdr.flowid = net->flowid; 4320 M_HASHTYPE_SET(m, net->flowtype); 4321 } else { 4322 m->m_pkthdr.flowid = mflowid; 4323 M_HASHTYPE_SET(m, mflowtype); 4324 } 4325 packet_length = sctp_calculate_len(m); 4326 4327 ip6h = mtod(m, struct ip6_hdr *); 4328 /* protect *sin6 from overwrite */ 4329 sin6 = (struct sockaddr_in6 *)to; 4330 tmp = *sin6; 4331 sin6 = &tmp; 4332 4333 /* KAME hack: embed scopeid */ 4334 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4335 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4336 sctp_m_freem(m); 4337 return (EINVAL); 4338 } 4339 if (net == NULL) { 4340 memset(&ip6route, 0, sizeof(ip6route)); 4341 ro = (sctp_route_t *)&ip6route; 4342 memcpy(&ro->ro_dst, sin6, sin6->sin6_len); 4343 } else { 4344 ro = (sctp_route_t *)&net->ro; 4345 } 4346 /* 4347 * We assume here that inp_flow is in host byte 4348 * order within the TCB! 4349 */ 4350 if (tos_value == 0) { 4351 /* 4352 * This means especially, that it is not set 4353 * at the SCTP layer. So use the value from 4354 * the IP layer. 4355 */ 4356 tos_value = (ntohl(((struct inpcb *)inp)->inp_flow) >> 20) & 0xff; 4357 } 4358 tos_value &= 0xfc; 4359 if (ecn_ok) { 4360 tos_value |= sctp_get_ect(stcb); 4361 } 4362 flowinfo = 0x06; 4363 flowinfo <<= 8; 4364 flowinfo |= tos_value; 4365 flowinfo <<= 20; 4366 flowinfo |= flowlabel; 4367 ip6h->ip6_flow = htonl(flowinfo); 4368 if (port) { 4369 ip6h->ip6_nxt = IPPROTO_UDP; 4370 } else { 4371 ip6h->ip6_nxt = IPPROTO_SCTP; 4372 } 4373 ip6h->ip6_plen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr))); 4374 ip6h->ip6_dst = sin6->sin6_addr; 4375 4376 /* 4377 * Add SRC address selection here: we can only reuse 4378 * to a limited degree the kame src-addr-sel, since 4379 * we can try their selection but it may not be 4380 * bound. 4381 */ 4382 memset(&lsa6_tmp, 0, sizeof(lsa6_tmp)); 4383 lsa6_tmp.sin6_family = AF_INET6; 4384 lsa6_tmp.sin6_len = sizeof(lsa6_tmp); 4385 lsa6 = &lsa6_tmp; 4386 if (net && out_of_asoc_ok == 0) { 4387 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4388 sctp_free_ifa(net->ro._s_addr); 4389 net->ro._s_addr = NULL; 4390 net->src_addr_selected = 0; 4391 RO_NHFREE(ro); 4392 } 4393 if (net->src_addr_selected == 0) { 4394 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4395 /* KAME hack: embed scopeid */ 4396 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4397 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4398 sctp_m_freem(m); 4399 return (EINVAL); 4400 } 4401 /* Cache the source address */ 4402 net->ro._s_addr = sctp_source_address_selection(inp, 4403 stcb, 4404 ro, 4405 net, 4406 0, 4407 vrf_id); 4408 (void)sa6_recoverscope(sin6); 4409 net->src_addr_selected = 1; 4410 } 4411 if (net->ro._s_addr == NULL) { 4412 SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n"); 4413 net->src_addr_selected = 0; 4414 sctp_handle_no_route(stcb, net, so_locked); 4415 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4416 sctp_m_freem(m); 4417 return (EHOSTUNREACH); 4418 } 4419 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr; 4420 } else { 4421 sin6 = (struct sockaddr_in6 *)&ro->ro_dst; 4422 /* KAME hack: embed scopeid */ 4423 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4424 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4425 sctp_m_freem(m); 4426 return (EINVAL); 4427 } 4428 if (over_addr == NULL) { 4429 struct sctp_ifa *_lsrc; 4430 4431 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4432 net, 4433 out_of_asoc_ok, 4434 vrf_id); 4435 if (_lsrc == NULL) { 4436 sctp_handle_no_route(stcb, net, so_locked); 4437 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4438 sctp_m_freem(m); 4439 return (EHOSTUNREACH); 4440 } 4441 lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr; 4442 sctp_free_ifa(_lsrc); 4443 } else { 4444 lsa6->sin6_addr = over_addr->sin6.sin6_addr; 4445 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4446 } 4447 (void)sa6_recoverscope(sin6); 4448 } 4449 lsa6->sin6_port = inp->sctp_lport; 4450 4451 if (ro->ro_nh == NULL) { 4452 /* 4453 * src addr selection failed to find a route 4454 * (or valid source addr), so we can't get 4455 * there from here! 4456 */ 4457 sctp_handle_no_route(stcb, net, so_locked); 4458 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4459 sctp_m_freem(m); 4460 return (EHOSTUNREACH); 4461 } 4462 /* 4463 * XXX: sa6 may not have a valid sin6_scope_id in 4464 * the non-SCOPEDROUTING case. 4465 */ 4466 memset(&lsa6_storage, 0, sizeof(lsa6_storage)); 4467 lsa6_storage.sin6_family = AF_INET6; 4468 lsa6_storage.sin6_len = sizeof(lsa6_storage); 4469 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4470 if ((error = sa6_recoverscope(&lsa6_storage)) != 0) { 4471 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error); 4472 sctp_m_freem(m); 4473 return (error); 4474 } 4475 /* XXX */ 4476 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4477 lsa6_storage.sin6_port = inp->sctp_lport; 4478 lsa6 = &lsa6_storage; 4479 ip6h->ip6_src = lsa6->sin6_addr; 4480 4481 if (port) { 4482 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4483 sctp_handle_no_route(stcb, net, so_locked); 4484 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4485 sctp_m_freem(m); 4486 return (EHOSTUNREACH); 4487 } 4488 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4489 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4490 udp->uh_dport = port; 4491 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr))); 4492 udp->uh_sum = 0; 4493 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4494 } else { 4495 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4496 } 4497 4498 sctphdr->src_port = src_port; 4499 sctphdr->dest_port = dest_port; 4500 sctphdr->v_tag = v_tag; 4501 sctphdr->checksum = 0; 4502 4503 /* 4504 * We set the hop limit now since there is a good 4505 * chance that our ro pointer is now filled 4506 */ 4507 ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro); 4508 ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 4509 4510 #ifdef SCTP_DEBUG 4511 /* Copy to be sure something bad is not happening */ 4512 sin6->sin6_addr = ip6h->ip6_dst; 4513 lsa6->sin6_addr = ip6h->ip6_src; 4514 #endif 4515 4516 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n"); 4517 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: "); 4518 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6); 4519 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: "); 4520 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6); 4521 if (net) { 4522 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4523 /* 4524 * preserve the port and scope for link 4525 * local send 4526 */ 4527 prev_scope = sin6->sin6_scope_id; 4528 prev_port = sin6->sin6_port; 4529 } 4530 4531 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4532 /* failed to prepend data, give up */ 4533 sctp_m_freem(m); 4534 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4535 return (ENOMEM); 4536 } 4537 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4538 if (port) { 4539 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 4540 SCTP_STAT_INCR(sctps_sendswcrc); 4541 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) { 4542 udp->uh_sum = 0xffff; 4543 } 4544 } else { 4545 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 4546 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4547 SCTP_STAT_INCR(sctps_sendhwcrc); 4548 } 4549 /* send it out. table id is taken from stcb */ 4550 #ifdef SCTP_PACKET_LOGGING 4551 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4552 sctp_packet_log(o_pak); 4553 #endif 4554 SCTP_PROBE5(send, NULL, stcb, ip6h, stcb, sctphdr); 4555 SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, inp, vrf_id); 4556 if (net) { 4557 /* for link local this must be done */ 4558 sin6->sin6_scope_id = prev_scope; 4559 sin6->sin6_port = prev_port; 4560 } 4561 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 4562 if (port) { 4563 UDPSTAT_INC(udps_opackets); 4564 } 4565 SCTP_STAT_INCR(sctps_sendpackets); 4566 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4567 if (ret) { 4568 SCTP_STAT_INCR(sctps_senderrors); 4569 } 4570 if (net == NULL) { 4571 /* Now if we had a temp route free it */ 4572 RO_NHFREE(ro); 4573 } else { 4574 /* 4575 * PMTU check versus smallest asoc MTU goes 4576 * here 4577 */ 4578 if (ro->ro_nh == NULL) { 4579 /* Route was freed */ 4580 if (net->ro._s_addr && 4581 net->src_addr_selected) { 4582 sctp_free_ifa(net->ro._s_addr); 4583 net->ro._s_addr = NULL; 4584 } 4585 net->src_addr_selected = 0; 4586 } 4587 if ((ro->ro_nh != NULL) && (net->ro._s_addr) && 4588 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4589 uint32_t mtu; 4590 4591 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh); 4592 if (mtu > 0) { 4593 if (net->port) { 4594 mtu -= sizeof(struct udphdr); 4595 } 4596 if (mtu < net->mtu) { 4597 net->mtu = mtu; 4598 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4599 sctp_pathmtu_adjustment(stcb, mtu, false); 4600 } 4601 } 4602 } 4603 } else if (ifp != NULL) { 4604 if ((ND_IFINFO(ifp)->linkmtu > 0) && 4605 (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) { 4606 sctp_pathmtu_adjustment(stcb, ND_IFINFO(ifp)->linkmtu, false); 4607 } 4608 } 4609 } 4610 return (ret); 4611 } 4612 #endif 4613 default: 4614 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 4615 ((struct sockaddr *)to)->sa_family); 4616 sctp_m_freem(m); 4617 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4618 return (EFAULT); 4619 } 4620 } 4621 4622 void 4623 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked) 4624 { 4625 struct mbuf *m, *m_last; 4626 struct sctp_nets *net; 4627 struct sctp_init_chunk *init; 4628 struct sctp_supported_addr_param *sup_addr; 4629 struct sctp_adaptation_layer_indication *ali; 4630 struct sctp_supported_chunk_types_param *pr_supported; 4631 struct sctp_paramhdr *ph; 4632 int cnt_inits_to = 0; 4633 int error; 4634 uint16_t num_ext, chunk_len, padding_len, parameter_len; 4635 4636 /* INIT's always go to the primary (and usually ONLY address) */ 4637 net = stcb->asoc.primary_destination; 4638 if (net == NULL) { 4639 net = TAILQ_FIRST(&stcb->asoc.nets); 4640 if (net == NULL) { 4641 /* TSNH */ 4642 return; 4643 } 4644 /* we confirm any address we send an INIT to */ 4645 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4646 (void)sctp_set_primary_addr(stcb, NULL, net); 4647 } else { 4648 /* we confirm any address we send an INIT to */ 4649 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4650 } 4651 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n"); 4652 #ifdef INET6 4653 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4654 /* 4655 * special hook, if we are sending to link local it will not 4656 * show up in our private address count. 4657 */ 4658 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr)) 4659 cnt_inits_to = 1; 4660 } 4661 #endif 4662 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 4663 /* This case should not happen */ 4664 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n"); 4665 return; 4666 } 4667 /* start the INIT timer */ 4668 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net); 4669 4670 m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA); 4671 if (m == NULL) { 4672 /* No memory, INIT timer will re-attempt. */ 4673 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n"); 4674 return; 4675 } 4676 chunk_len = (uint16_t)sizeof(struct sctp_init_chunk); 4677 padding_len = 0; 4678 /* Now lets put the chunk header in place */ 4679 init = mtod(m, struct sctp_init_chunk *); 4680 /* now the chunk header */ 4681 init->ch.chunk_type = SCTP_INITIATION; 4682 init->ch.chunk_flags = 0; 4683 /* fill in later from mbuf we build */ 4684 init->ch.chunk_length = 0; 4685 /* place in my tag */ 4686 init->init.initiate_tag = htonl(stcb->asoc.my_vtag); 4687 /* set up some of the credits. */ 4688 init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0, 4689 SCTP_MINIMAL_RWND)); 4690 init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams); 4691 init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams); 4692 init->init.initial_tsn = htonl(stcb->asoc.init_seq_number); 4693 4694 /* Adaptation layer indication parameter */ 4695 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 4696 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 4697 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 4698 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 4699 ali->ph.param_length = htons(parameter_len); 4700 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 4701 chunk_len += parameter_len; 4702 } 4703 4704 /* ECN parameter */ 4705 if (stcb->asoc.ecn_supported == 1) { 4706 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4707 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4708 ph->param_type = htons(SCTP_ECN_CAPABLE); 4709 ph->param_length = htons(parameter_len); 4710 chunk_len += parameter_len; 4711 } 4712 4713 /* PR-SCTP supported parameter */ 4714 if (stcb->asoc.prsctp_supported == 1) { 4715 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4716 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4717 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 4718 ph->param_length = htons(parameter_len); 4719 chunk_len += parameter_len; 4720 } 4721 4722 /* Zero checksum acceptable parameter */ 4723 if (stcb->asoc.zero_checksum > 0) { 4724 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4725 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4726 ph->param_type = htons(SCTP_ZERO_CHECKSUM_ACCEPTABLE); 4727 ph->param_length = htons(parameter_len); 4728 chunk_len += parameter_len; 4729 } 4730 4731 /* Add NAT friendly parameter. */ 4732 if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) { 4733 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4734 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4735 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 4736 ph->param_length = htons(parameter_len); 4737 chunk_len += parameter_len; 4738 } 4739 4740 /* And now tell the peer which extensions we support */ 4741 num_ext = 0; 4742 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 4743 if (stcb->asoc.prsctp_supported == 1) { 4744 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 4745 if (stcb->asoc.idata_supported) { 4746 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 4747 } 4748 } 4749 if (stcb->asoc.auth_supported == 1) { 4750 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 4751 } 4752 if (stcb->asoc.asconf_supported == 1) { 4753 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 4754 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 4755 } 4756 if (stcb->asoc.reconfig_supported == 1) { 4757 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 4758 } 4759 if (stcb->asoc.idata_supported) { 4760 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 4761 } 4762 if (stcb->asoc.nrsack_supported == 1) { 4763 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 4764 } 4765 if (stcb->asoc.pktdrop_supported == 1) { 4766 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 4767 } 4768 if (num_ext > 0) { 4769 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 4770 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 4771 pr_supported->ph.param_length = htons(parameter_len); 4772 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4773 chunk_len += parameter_len; 4774 } 4775 /* add authentication parameters */ 4776 if (stcb->asoc.auth_supported) { 4777 /* attach RANDOM parameter, if available */ 4778 if (stcb->asoc.authinfo.random != NULL) { 4779 struct sctp_auth_random *randp; 4780 4781 if (padding_len > 0) { 4782 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4783 chunk_len += padding_len; 4784 padding_len = 0; 4785 } 4786 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 4787 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len; 4788 /* random key already contains the header */ 4789 memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len); 4790 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4791 chunk_len += parameter_len; 4792 } 4793 /* add HMAC_ALGO parameter */ 4794 if (stcb->asoc.local_hmacs != NULL) { 4795 struct sctp_auth_hmac_algo *hmacs; 4796 4797 if (padding_len > 0) { 4798 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4799 chunk_len += padding_len; 4800 padding_len = 0; 4801 } 4802 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 4803 parameter_len = (uint16_t)(sizeof(struct sctp_auth_hmac_algo) + 4804 stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t)); 4805 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 4806 hmacs->ph.param_length = htons(parameter_len); 4807 sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *)hmacs->hmac_ids); 4808 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4809 chunk_len += parameter_len; 4810 } 4811 /* add CHUNKS parameter */ 4812 if (stcb->asoc.local_auth_chunks != NULL) { 4813 struct sctp_auth_chunk_list *chunks; 4814 4815 if (padding_len > 0) { 4816 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4817 chunk_len += padding_len; 4818 padding_len = 0; 4819 } 4820 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 4821 parameter_len = (uint16_t)(sizeof(struct sctp_auth_chunk_list) + 4822 sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks)); 4823 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 4824 chunks->ph.param_length = htons(parameter_len); 4825 sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types); 4826 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4827 chunk_len += parameter_len; 4828 } 4829 } 4830 4831 /* now any cookie time extensions */ 4832 if (stcb->asoc.cookie_preserve_req > 0) { 4833 struct sctp_cookie_perserve_param *cookie_preserve; 4834 4835 if (padding_len > 0) { 4836 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4837 chunk_len += padding_len; 4838 padding_len = 0; 4839 } 4840 parameter_len = (uint16_t)sizeof(struct sctp_cookie_perserve_param); 4841 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len); 4842 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE); 4843 cookie_preserve->ph.param_length = htons(parameter_len); 4844 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req); 4845 stcb->asoc.cookie_preserve_req = 0; 4846 chunk_len += parameter_len; 4847 } 4848 4849 if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) { 4850 uint8_t i; 4851 4852 if (padding_len > 0) { 4853 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4854 chunk_len += padding_len; 4855 padding_len = 0; 4856 } 4857 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4858 if (stcb->asoc.scope.ipv4_addr_legal) { 4859 parameter_len += (uint16_t)sizeof(uint16_t); 4860 } 4861 if (stcb->asoc.scope.ipv6_addr_legal) { 4862 parameter_len += (uint16_t)sizeof(uint16_t); 4863 } 4864 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len); 4865 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE); 4866 sup_addr->ph.param_length = htons(parameter_len); 4867 i = 0; 4868 if (stcb->asoc.scope.ipv4_addr_legal) { 4869 sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS); 4870 } 4871 if (stcb->asoc.scope.ipv6_addr_legal) { 4872 sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS); 4873 } 4874 padding_len = 4 - 2 * i; 4875 chunk_len += parameter_len; 4876 } 4877 4878 SCTP_BUF_LEN(m) = chunk_len; 4879 /* now the addresses */ 4880 /* 4881 * To optimize this we could put the scoping stuff into a structure 4882 * and remove the individual uint8's from the assoc structure. Then 4883 * we could just sifa in the address within the stcb. But for now 4884 * this is a quick hack to get the address stuff teased apart. 4885 */ 4886 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, 4887 m, cnt_inits_to, 4888 &padding_len, &chunk_len); 4889 4890 init->ch.chunk_length = htons(chunk_len); 4891 if (padding_len > 0) { 4892 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 4893 sctp_m_freem(m); 4894 return; 4895 } 4896 } 4897 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n"); 4898 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 4899 (struct sockaddr *)&net->ro._l_addr, 4900 m, 0, NULL, 0, 0, 0, 0, 4901 inp->sctp_lport, stcb->rport, htonl(0), 4902 net->port, NULL, 4903 0, 0, 4904 false, so_locked))) { 4905 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 4906 if (error == ENOBUFS) { 4907 stcb->asoc.ifp_had_enobuf = 1; 4908 SCTP_STAT_INCR(sctps_lowlevelerr); 4909 } 4910 } else { 4911 stcb->asoc.ifp_had_enobuf = 0; 4912 } 4913 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 4914 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 4915 } 4916 4917 struct mbuf * 4918 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt, 4919 int param_offset, int *abort_processing, 4920 struct sctp_chunkhdr *cp, 4921 int *nat_friendly, 4922 int *cookie_found) 4923 { 4924 /* 4925 * Given a mbuf containing an INIT or INIT-ACK with the param_offset 4926 * being equal to the beginning of the params i.e. (iphlen + 4927 * sizeof(struct sctp_init_msg) parse through the parameters to the 4928 * end of the mbuf verifying that all parameters are known. 4929 * 4930 * For unknown parameters build and return a mbuf with 4931 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop 4932 * processing this chunk stop, and set *abort_processing to 1. 4933 * 4934 * By having param_offset be pre-set to where parameters begin it is 4935 * hoped that this routine may be reused in the future by new 4936 * features. 4937 */ 4938 struct sctp_paramhdr *phdr, params; 4939 4940 struct mbuf *mat, *m_tmp, *op_err, *op_err_last; 4941 int at, limit, pad_needed; 4942 uint16_t ptype, plen, padded_size; 4943 4944 *abort_processing = 0; 4945 if (cookie_found != NULL) { 4946 *cookie_found = 0; 4947 } 4948 mat = in_initpkt; 4949 limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk); 4950 at = param_offset; 4951 op_err = NULL; 4952 op_err_last = NULL; 4953 pad_needed = 0; 4954 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n"); 4955 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 4956 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) { 4957 ptype = ntohs(phdr->param_type); 4958 plen = ntohs(phdr->param_length); 4959 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) { 4960 /* wacked parameter */ 4961 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen); 4962 goto invalid_size; 4963 } 4964 limit -= SCTP_SIZE32(plen); 4965 /*- 4966 * All parameters for all chunks that we know/understand are 4967 * listed here. We process them other places and make 4968 * appropriate stop actions per the upper bits. However this 4969 * is the generic routine processor's can call to get back 4970 * an operr.. to either incorporate (init-ack) or send. 4971 */ 4972 padded_size = SCTP_SIZE32(plen); 4973 switch (ptype) { 4974 /* Param's with variable size */ 4975 case SCTP_HEARTBEAT_INFO: 4976 case SCTP_UNRECOG_PARAM: 4977 case SCTP_ERROR_CAUSE_IND: 4978 /* ok skip fwd */ 4979 at += padded_size; 4980 break; 4981 case SCTP_STATE_COOKIE: 4982 if (cookie_found != NULL) { 4983 *cookie_found = 1; 4984 } 4985 at += padded_size; 4986 break; 4987 /* Param's with variable size within a range */ 4988 case SCTP_CHUNK_LIST: 4989 case SCTP_SUPPORTED_CHUNK_EXT: 4990 if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) { 4991 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen); 4992 goto invalid_size; 4993 } 4994 at += padded_size; 4995 break; 4996 case SCTP_SUPPORTED_ADDRTYPE: 4997 if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) { 4998 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen); 4999 goto invalid_size; 5000 } 5001 at += padded_size; 5002 break; 5003 case SCTP_RANDOM: 5004 if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) { 5005 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen); 5006 goto invalid_size; 5007 } 5008 at += padded_size; 5009 break; 5010 case SCTP_SET_PRIM_ADDR: 5011 case SCTP_DEL_IP_ADDRESS: 5012 case SCTP_ADD_IP_ADDRESS: 5013 if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) && 5014 (padded_size != sizeof(struct sctp_asconf_addr_param))) { 5015 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen); 5016 goto invalid_size; 5017 } 5018 at += padded_size; 5019 break; 5020 /* Param's with a fixed size */ 5021 case SCTP_IPV4_ADDRESS: 5022 if (padded_size != sizeof(struct sctp_ipv4addr_param)) { 5023 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen); 5024 goto invalid_size; 5025 } 5026 at += padded_size; 5027 break; 5028 case SCTP_IPV6_ADDRESS: 5029 if (padded_size != sizeof(struct sctp_ipv6addr_param)) { 5030 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen); 5031 goto invalid_size; 5032 } 5033 at += padded_size; 5034 break; 5035 case SCTP_COOKIE_PRESERVE: 5036 if (padded_size != sizeof(struct sctp_cookie_perserve_param)) { 5037 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen); 5038 goto invalid_size; 5039 } 5040 at += padded_size; 5041 break; 5042 case SCTP_HAS_NAT_SUPPORT: 5043 *nat_friendly = 1; 5044 /* fall through */ 5045 case SCTP_PRSCTP_SUPPORTED: 5046 if (padded_size != sizeof(struct sctp_paramhdr)) { 5047 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen); 5048 goto invalid_size; 5049 } 5050 at += padded_size; 5051 break; 5052 case SCTP_ECN_CAPABLE: 5053 if (padded_size != sizeof(struct sctp_paramhdr)) { 5054 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen); 5055 goto invalid_size; 5056 } 5057 at += padded_size; 5058 break; 5059 case SCTP_ULP_ADAPTATION: 5060 if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) { 5061 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen); 5062 goto invalid_size; 5063 } 5064 at += padded_size; 5065 break; 5066 case SCTP_SUCCESS_REPORT: 5067 if (padded_size != sizeof(struct sctp_asconf_paramhdr)) { 5068 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen); 5069 goto invalid_size; 5070 } 5071 at += padded_size; 5072 break; 5073 case SCTP_HOSTNAME_ADDRESS: 5074 { 5075 /* Hostname parameters are deprecated. */ 5076 struct sctp_gen_error_cause *cause; 5077 int l_len; 5078 5079 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n"); 5080 *abort_processing = 1; 5081 sctp_m_freem(op_err); 5082 op_err = NULL; 5083 op_err_last = NULL; 5084 #ifdef INET6 5085 l_len = SCTP_MIN_OVERHEAD; 5086 #else 5087 l_len = SCTP_MIN_V4_OVERHEAD; 5088 #endif 5089 l_len += sizeof(struct sctp_chunkhdr); 5090 l_len += sizeof(struct sctp_gen_error_cause); 5091 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5092 if (op_err != NULL) { 5093 /* 5094 * Pre-reserve space for IP, SCTP, 5095 * and chunk header. 5096 */ 5097 #ifdef INET6 5098 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5099 #else 5100 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5101 #endif 5102 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5103 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5104 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_gen_error_cause); 5105 cause = mtod(op_err, struct sctp_gen_error_cause *); 5106 cause->code = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR); 5107 cause->length = htons((uint16_t)(sizeof(struct sctp_gen_error_cause) + plen)); 5108 SCTP_BUF_NEXT(op_err) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT); 5109 if (SCTP_BUF_NEXT(op_err) == NULL) { 5110 sctp_m_freem(op_err); 5111 op_err = NULL; 5112 op_err_last = NULL; 5113 } 5114 } 5115 return (op_err); 5116 } 5117 default: 5118 /* 5119 * we do not recognize the parameter figure out what 5120 * we do. 5121 */ 5122 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype); 5123 if ((ptype & 0x4000) == 0x4000) { 5124 /* Report bit is set?? */ 5125 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n"); 5126 if (op_err == NULL) { 5127 int l_len; 5128 5129 /* Ok need to try to get an mbuf */ 5130 #ifdef INET6 5131 l_len = SCTP_MIN_OVERHEAD; 5132 #else 5133 l_len = SCTP_MIN_V4_OVERHEAD; 5134 #endif 5135 l_len += sizeof(struct sctp_chunkhdr); 5136 l_len += sizeof(struct sctp_paramhdr); 5137 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5138 if (op_err) { 5139 SCTP_BUF_LEN(op_err) = 0; 5140 #ifdef INET6 5141 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5142 #else 5143 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5144 #endif 5145 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5146 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5147 op_err_last = op_err; 5148 } 5149 } 5150 if (op_err != NULL) { 5151 /* If we have space */ 5152 struct sctp_paramhdr *param; 5153 5154 if (pad_needed > 0) { 5155 op_err_last = sctp_add_pad_tombuf(op_err_last, pad_needed); 5156 } 5157 if (op_err_last == NULL) { 5158 sctp_m_freem(op_err); 5159 op_err = NULL; 5160 op_err_last = NULL; 5161 goto more_processing; 5162 } 5163 if (M_TRAILINGSPACE(op_err_last) < (int)sizeof(struct sctp_paramhdr)) { 5164 m_tmp = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); 5165 if (m_tmp == NULL) { 5166 sctp_m_freem(op_err); 5167 op_err = NULL; 5168 op_err_last = NULL; 5169 goto more_processing; 5170 } 5171 SCTP_BUF_LEN(m_tmp) = 0; 5172 SCTP_BUF_NEXT(m_tmp) = NULL; 5173 SCTP_BUF_NEXT(op_err_last) = m_tmp; 5174 op_err_last = m_tmp; 5175 } 5176 param = (struct sctp_paramhdr *)(mtod(op_err_last, caddr_t)+SCTP_BUF_LEN(op_err_last)); 5177 param->param_type = htons(SCTP_UNRECOG_PARAM); 5178 param->param_length = htons((uint16_t)sizeof(struct sctp_paramhdr) + plen); 5179 SCTP_BUF_LEN(op_err_last) += sizeof(struct sctp_paramhdr); 5180 SCTP_BUF_NEXT(op_err_last) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT); 5181 if (SCTP_BUF_NEXT(op_err_last) == NULL) { 5182 sctp_m_freem(op_err); 5183 op_err = NULL; 5184 op_err_last = NULL; 5185 goto more_processing; 5186 } else { 5187 while (SCTP_BUF_NEXT(op_err_last) != NULL) { 5188 op_err_last = SCTP_BUF_NEXT(op_err_last); 5189 } 5190 } 5191 if (plen % 4 != 0) { 5192 pad_needed = 4 - (plen % 4); 5193 } else { 5194 pad_needed = 0; 5195 } 5196 } 5197 } 5198 more_processing: 5199 if ((ptype & 0x8000) == 0x0000) { 5200 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n"); 5201 return (op_err); 5202 } else { 5203 /* skip this chunk and continue processing */ 5204 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n"); 5205 at += SCTP_SIZE32(plen); 5206 } 5207 break; 5208 } 5209 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5210 } 5211 return (op_err); 5212 invalid_size: 5213 SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n"); 5214 *abort_processing = 1; 5215 sctp_m_freem(op_err); 5216 op_err = NULL; 5217 op_err_last = NULL; 5218 if (phdr != NULL) { 5219 struct sctp_paramhdr *param; 5220 int l_len; 5221 #ifdef INET6 5222 l_len = SCTP_MIN_OVERHEAD; 5223 #else 5224 l_len = SCTP_MIN_V4_OVERHEAD; 5225 #endif 5226 l_len += sizeof(struct sctp_chunkhdr); 5227 l_len += (2 * sizeof(struct sctp_paramhdr)); 5228 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5229 if (op_err) { 5230 SCTP_BUF_LEN(op_err) = 0; 5231 #ifdef INET6 5232 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5233 #else 5234 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5235 #endif 5236 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5237 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5238 SCTP_BUF_LEN(op_err) = 2 * sizeof(struct sctp_paramhdr); 5239 param = mtod(op_err, struct sctp_paramhdr *); 5240 param->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 5241 param->param_length = htons(2 * sizeof(struct sctp_paramhdr)); 5242 param++; 5243 param->param_type = htons(ptype); 5244 param->param_length = htons(plen); 5245 } 5246 } 5247 return (op_err); 5248 } 5249 5250 /* 5251 * Given a INIT chunk, look through the parameters to verify that there 5252 * are no new addresses. 5253 * Return true, if there is a new address or there is a problem parsing 5254 the parameters. Provide an optional error cause used when sending an ABORT. 5255 * Return false, if there are no new addresses and there is no problem in 5256 parameter processing. 5257 */ 5258 static bool 5259 sctp_are_there_new_addresses(struct sctp_association *asoc, 5260 struct mbuf *in_initpkt, int offset, int limit, struct sockaddr *src, 5261 struct mbuf **op_err) 5262 { 5263 struct sockaddr *sa_touse; 5264 struct sockaddr *sa; 5265 struct sctp_paramhdr *phdr, params; 5266 struct sctp_nets *net; 5267 #ifdef INET 5268 struct sockaddr_in sin4, *sa4; 5269 #endif 5270 #ifdef INET6 5271 struct sockaddr_in6 sin6, *sa6; 5272 #endif 5273 uint16_t ptype, plen; 5274 bool fnd, check_src; 5275 5276 *op_err = NULL; 5277 #ifdef INET 5278 memset(&sin4, 0, sizeof(sin4)); 5279 sin4.sin_family = AF_INET; 5280 sin4.sin_len = sizeof(sin4); 5281 #endif 5282 #ifdef INET6 5283 memset(&sin6, 0, sizeof(sin6)); 5284 sin6.sin6_family = AF_INET6; 5285 sin6.sin6_len = sizeof(sin6); 5286 #endif 5287 /* First what about the src address of the pkt ? */ 5288 check_src = false; 5289 switch (src->sa_family) { 5290 #ifdef INET 5291 case AF_INET: 5292 if (asoc->scope.ipv4_addr_legal) { 5293 check_src = true; 5294 } 5295 break; 5296 #endif 5297 #ifdef INET6 5298 case AF_INET6: 5299 if (asoc->scope.ipv6_addr_legal) { 5300 check_src = true; 5301 } 5302 break; 5303 #endif 5304 default: 5305 /* TSNH */ 5306 break; 5307 } 5308 if (check_src) { 5309 fnd = false; 5310 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5311 sa = (struct sockaddr *)&net->ro._l_addr; 5312 if (sa->sa_family == src->sa_family) { 5313 #ifdef INET 5314 if (sa->sa_family == AF_INET) { 5315 struct sockaddr_in *src4; 5316 5317 sa4 = (struct sockaddr_in *)sa; 5318 src4 = (struct sockaddr_in *)src; 5319 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) { 5320 fnd = true; 5321 break; 5322 } 5323 } 5324 #endif 5325 #ifdef INET6 5326 if (sa->sa_family == AF_INET6) { 5327 struct sockaddr_in6 *src6; 5328 5329 sa6 = (struct sockaddr_in6 *)sa; 5330 src6 = (struct sockaddr_in6 *)src; 5331 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) { 5332 fnd = true; 5333 break; 5334 } 5335 } 5336 #endif 5337 } 5338 } 5339 if (!fnd) { 5340 /* 5341 * If sending an ABORT in case of an additional 5342 * address, don't use the new address error cause. 5343 * This looks no different than if no listener was 5344 * present. 5345 */ 5346 *op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), "Address added"); 5347 return (true); 5348 } 5349 } 5350 /* Ok so far lets munge through the rest of the packet */ 5351 offset += sizeof(struct sctp_init_chunk); 5352 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5353 while (phdr) { 5354 sa_touse = NULL; 5355 ptype = ntohs(phdr->param_type); 5356 plen = ntohs(phdr->param_length); 5357 if (offset + plen > limit) { 5358 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Partial parameter"); 5359 return (true); 5360 } 5361 if (plen < sizeof(struct sctp_paramhdr)) { 5362 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length too small"); 5363 return (true); 5364 } 5365 switch (ptype) { 5366 #ifdef INET 5367 case SCTP_IPV4_ADDRESS: 5368 { 5369 struct sctp_ipv4addr_param *p4, p4_buf; 5370 5371 if (plen != sizeof(struct sctp_ipv4addr_param)) { 5372 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length illegal"); 5373 return (true); 5374 } 5375 phdr = sctp_get_next_param(in_initpkt, offset, 5376 (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf)); 5377 if (phdr == NULL) { 5378 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, ""); 5379 return (true); 5380 } 5381 if (asoc->scope.ipv4_addr_legal) { 5382 p4 = (struct sctp_ipv4addr_param *)phdr; 5383 sin4.sin_addr.s_addr = p4->addr; 5384 sa_touse = (struct sockaddr *)&sin4; 5385 } 5386 break; 5387 } 5388 #endif 5389 #ifdef INET6 5390 case SCTP_IPV6_ADDRESS: 5391 { 5392 struct sctp_ipv6addr_param *p6, p6_buf; 5393 5394 if (plen != sizeof(struct sctp_ipv6addr_param)) { 5395 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, "Parameter length illegal"); 5396 return (true); 5397 } 5398 phdr = sctp_get_next_param(in_initpkt, offset, 5399 (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf)); 5400 if (phdr == NULL) { 5401 *op_err = sctp_generate_cause(SCTP_CAUSE_PROTOCOL_VIOLATION, ""); 5402 return (true); 5403 } 5404 if (asoc->scope.ipv6_addr_legal) { 5405 p6 = (struct sctp_ipv6addr_param *)phdr; 5406 memcpy((caddr_t)&sin6.sin6_addr, p6->addr, 5407 sizeof(p6->addr)); 5408 sa_touse = (struct sockaddr *)&sin6; 5409 } 5410 break; 5411 } 5412 #endif 5413 default: 5414 sa_touse = NULL; 5415 break; 5416 } 5417 if (sa_touse) { 5418 /* ok, sa_touse points to one to check */ 5419 fnd = false; 5420 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5421 sa = (struct sockaddr *)&net->ro._l_addr; 5422 if (sa->sa_family != sa_touse->sa_family) { 5423 continue; 5424 } 5425 #ifdef INET 5426 if (sa->sa_family == AF_INET) { 5427 sa4 = (struct sockaddr_in *)sa; 5428 if (sa4->sin_addr.s_addr == 5429 sin4.sin_addr.s_addr) { 5430 fnd = true; 5431 break; 5432 } 5433 } 5434 #endif 5435 #ifdef INET6 5436 if (sa->sa_family == AF_INET6) { 5437 sa6 = (struct sockaddr_in6 *)sa; 5438 if (SCTP6_ARE_ADDR_EQUAL( 5439 sa6, &sin6)) { 5440 fnd = true; 5441 break; 5442 } 5443 } 5444 #endif 5445 } 5446 if (!fnd) { 5447 /* 5448 * If sending an ABORT in case of an 5449 * additional address, don't use the new 5450 * address error cause. This looks no 5451 * different than if no listener was 5452 * present. 5453 */ 5454 *op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), "Address added"); 5455 return (true); 5456 } 5457 } 5458 offset += SCTP_SIZE32(plen); 5459 if (offset >= limit) { 5460 break; 5461 } 5462 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5463 } 5464 return (false); 5465 } 5466 5467 /* 5468 * Given a MBUF chain that was sent into us containing an INIT. Build a 5469 * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done 5470 * a pullup to include IPv6/4header, SCTP header and initial part of INIT 5471 * message (i.e. the struct sctp_init_msg). 5472 */ 5473 void 5474 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 5475 struct sctp_nets *src_net, struct mbuf *init_pkt, 5476 int iphlen, int offset, 5477 struct sockaddr *src, struct sockaddr *dst, 5478 struct sctphdr *sh, struct sctp_init_chunk *init_chk, 5479 uint8_t mflowtype, uint32_t mflowid, 5480 uint32_t vrf_id, uint16_t port) 5481 { 5482 struct sctp_association *asoc; 5483 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; 5484 struct sctp_init_ack_chunk *initack; 5485 struct sctp_adaptation_layer_indication *ali; 5486 struct sctp_supported_chunk_types_param *pr_supported; 5487 struct sctp_paramhdr *ph; 5488 union sctp_sockstore *over_addr; 5489 struct sctp_scoping scp; 5490 struct timeval now; 5491 #ifdef INET 5492 struct sockaddr_in *dst4 = (struct sockaddr_in *)dst; 5493 struct sockaddr_in *src4 = (struct sockaddr_in *)src; 5494 struct sockaddr_in *sin; 5495 #endif 5496 #ifdef INET6 5497 struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst; 5498 struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src; 5499 struct sockaddr_in6 *sin6; 5500 #endif 5501 struct sockaddr *to; 5502 struct sctp_state_cookie stc; 5503 struct sctp_nets *net = NULL; 5504 uint8_t *signature = NULL; 5505 int cnt_inits_to = 0; 5506 uint16_t his_limit, i_want; 5507 int abort_flag; 5508 int nat_friendly = 0; 5509 int error; 5510 struct socket *so; 5511 uint16_t num_ext, chunk_len, padding_len, parameter_len; 5512 5513 if (stcb) { 5514 asoc = &stcb->asoc; 5515 } else { 5516 asoc = NULL; 5517 } 5518 if ((asoc != NULL) && 5519 (SCTP_GET_STATE(stcb) != SCTP_STATE_COOKIE_WAIT)) { 5520 if (sctp_are_there_new_addresses(asoc, init_pkt, offset, offset + ntohs(init_chk->ch.chunk_length), src, &op_err)) { 5521 /* 5522 * new addresses, out of here in non-cookie-wait 5523 * states 5524 */ 5525 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5526 mflowtype, mflowid, inp->fibnum, 5527 vrf_id, port); 5528 return; 5529 } 5530 if (src_net != NULL && (src_net->port != port)) { 5531 /* 5532 * change of remote encapsulation port, out of here 5533 * in non-cookie-wait states 5534 * 5535 * Send an ABORT, without an specific error cause. 5536 * This looks no different than if no listener was 5537 * present. 5538 */ 5539 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5540 "Remote encapsulation port changed"); 5541 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5542 mflowtype, mflowid, inp->fibnum, 5543 vrf_id, port); 5544 return; 5545 } 5546 } 5547 abort_flag = 0; 5548 op_err = sctp_arethere_unrecognized_parameters(init_pkt, 5549 (offset + sizeof(struct sctp_init_chunk)), 5550 &abort_flag, 5551 (struct sctp_chunkhdr *)init_chk, 5552 &nat_friendly, NULL); 5553 if (abort_flag) { 5554 do_a_abort: 5555 if (op_err == NULL) { 5556 char msg[SCTP_DIAG_INFO_LEN]; 5557 5558 SCTP_SNPRINTF(msg, sizeof(msg), "%s:%d at %s", __FILE__, __LINE__, __func__); 5559 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5560 msg); 5561 } 5562 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 5563 init_chk->init.initiate_tag, op_err, 5564 mflowtype, mflowid, inp->fibnum, 5565 vrf_id, port); 5566 return; 5567 } 5568 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 5569 if (m == NULL) { 5570 /* No memory, INIT timer will re-attempt. */ 5571 sctp_m_freem(op_err); 5572 return; 5573 } 5574 chunk_len = (uint16_t)sizeof(struct sctp_init_ack_chunk); 5575 padding_len = 0; 5576 5577 /* 5578 * We might not overwrite the identification[] completely and on 5579 * some platforms time_entered will contain some padding. Therefore 5580 * zero out the cookie to avoid putting uninitialized memory on the 5581 * wire. 5582 */ 5583 memset(&stc, 0, sizeof(struct sctp_state_cookie)); 5584 5585 /* the time I built cookie */ 5586 (void)SCTP_GETTIME_TIMEVAL(&now); 5587 stc.time_entered.tv_sec = now.tv_sec; 5588 stc.time_entered.tv_usec = now.tv_usec; 5589 5590 /* populate any tie tags */ 5591 if (asoc != NULL) { 5592 /* unlock before tag selections */ 5593 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; 5594 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce; 5595 stc.cookie_life = asoc->cookie_life; 5596 net = asoc->primary_destination; 5597 } else { 5598 stc.tie_tag_my_vtag = 0; 5599 stc.tie_tag_peer_vtag = 0; 5600 /* life I will award this cookie */ 5601 stc.cookie_life = inp->sctp_ep.def_cookie_life; 5602 } 5603 5604 /* copy in the ports for later check */ 5605 stc.myport = sh->dest_port; 5606 stc.peerport = sh->src_port; 5607 5608 /* 5609 * If we wanted to honor cookie life extensions, we would add to 5610 * stc.cookie_life. For now we should NOT honor any extension 5611 */ 5612 stc.site_scope = stc.local_scope = stc.loopback_scope = 0; 5613 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5614 stc.ipv6_addr_legal = 1; 5615 if (SCTP_IPV6_V6ONLY(inp)) { 5616 stc.ipv4_addr_legal = 0; 5617 } else { 5618 stc.ipv4_addr_legal = 1; 5619 } 5620 } else { 5621 stc.ipv6_addr_legal = 0; 5622 stc.ipv4_addr_legal = 1; 5623 } 5624 stc.ipv4_scope = 0; 5625 if (net == NULL) { 5626 to = src; 5627 switch (dst->sa_family) { 5628 #ifdef INET 5629 case AF_INET: 5630 { 5631 /* lookup address */ 5632 stc.address[0] = src4->sin_addr.s_addr; 5633 stc.address[1] = 0; 5634 stc.address[2] = 0; 5635 stc.address[3] = 0; 5636 stc.addr_type = SCTP_IPV4_ADDRESS; 5637 /* local from address */ 5638 stc.laddress[0] = dst4->sin_addr.s_addr; 5639 stc.laddress[1] = 0; 5640 stc.laddress[2] = 0; 5641 stc.laddress[3] = 0; 5642 stc.laddr_type = SCTP_IPV4_ADDRESS; 5643 /* scope_id is only for v6 */ 5644 stc.scope_id = 0; 5645 if ((IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) || 5646 (IN4_ISPRIVATE_ADDRESS(&dst4->sin_addr))) { 5647 stc.ipv4_scope = 1; 5648 } 5649 /* Must use the address in this case */ 5650 if (sctp_is_address_on_local_host(src, vrf_id)) { 5651 stc.loopback_scope = 1; 5652 stc.ipv4_scope = 1; 5653 stc.site_scope = 1; 5654 stc.local_scope = 0; 5655 } 5656 break; 5657 } 5658 #endif 5659 #ifdef INET6 5660 case AF_INET6: 5661 { 5662 stc.addr_type = SCTP_IPV6_ADDRESS; 5663 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr)); 5664 stc.scope_id = ntohs(in6_getscope(&src6->sin6_addr)); 5665 if (sctp_is_address_on_local_host(src, vrf_id)) { 5666 stc.loopback_scope = 1; 5667 stc.local_scope = 0; 5668 stc.site_scope = 1; 5669 stc.ipv4_scope = 1; 5670 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr) || 5671 IN6_IS_ADDR_LINKLOCAL(&dst6->sin6_addr)) { 5672 /* 5673 * If the new destination or source 5674 * is a LINK_LOCAL we must have 5675 * common both site and local scope. 5676 * Don't set local scope though 5677 * since we must depend on the 5678 * source to be added implicitly. We 5679 * cannot assure just because we 5680 * share one link that all links are 5681 * common. 5682 */ 5683 stc.local_scope = 0; 5684 stc.site_scope = 1; 5685 stc.ipv4_scope = 1; 5686 /* 5687 * we start counting for the private 5688 * address stuff at 1. since the 5689 * link local we source from won't 5690 * show up in our scoped count. 5691 */ 5692 cnt_inits_to = 1; 5693 /* 5694 * pull out the scope_id from 5695 * incoming pkt 5696 */ 5697 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr) || 5698 IN6_IS_ADDR_SITELOCAL(&dst6->sin6_addr)) { 5699 /* 5700 * If the new destination or source 5701 * is SITE_LOCAL then we must have 5702 * site scope in common. 5703 */ 5704 stc.site_scope = 1; 5705 } 5706 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr)); 5707 stc.laddr_type = SCTP_IPV6_ADDRESS; 5708 break; 5709 } 5710 #endif 5711 default: 5712 /* TSNH */ 5713 goto do_a_abort; 5714 break; 5715 } 5716 } else { 5717 /* set the scope per the existing tcb */ 5718 5719 #ifdef INET6 5720 struct sctp_nets *lnet; 5721 #endif 5722 5723 stc.loopback_scope = asoc->scope.loopback_scope; 5724 stc.ipv4_scope = asoc->scope.ipv4_local_scope; 5725 stc.site_scope = asoc->scope.site_scope; 5726 stc.local_scope = asoc->scope.local_scope; 5727 #ifdef INET6 5728 /* Why do we not consider IPv4 LL addresses? */ 5729 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 5730 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) { 5731 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) { 5732 /* 5733 * if we have a LL address, start 5734 * counting at 1. 5735 */ 5736 cnt_inits_to = 1; 5737 } 5738 } 5739 } 5740 #endif 5741 /* use the net pointer */ 5742 to = (struct sockaddr *)&net->ro._l_addr; 5743 switch (to->sa_family) { 5744 #ifdef INET 5745 case AF_INET: 5746 sin = (struct sockaddr_in *)to; 5747 stc.address[0] = sin->sin_addr.s_addr; 5748 stc.address[1] = 0; 5749 stc.address[2] = 0; 5750 stc.address[3] = 0; 5751 stc.addr_type = SCTP_IPV4_ADDRESS; 5752 if (net->src_addr_selected == 0) { 5753 /* 5754 * strange case here, the INIT should have 5755 * did the selection. 5756 */ 5757 net->ro._s_addr = sctp_source_address_selection(inp, 5758 stcb, (sctp_route_t *)&net->ro, 5759 net, 0, vrf_id); 5760 if (net->ro._s_addr == NULL) { 5761 sctp_m_freem(op_err); 5762 sctp_m_freem(m); 5763 return; 5764 } 5765 5766 net->src_addr_selected = 1; 5767 } 5768 stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr; 5769 stc.laddress[1] = 0; 5770 stc.laddress[2] = 0; 5771 stc.laddress[3] = 0; 5772 stc.laddr_type = SCTP_IPV4_ADDRESS; 5773 /* scope_id is only for v6 */ 5774 stc.scope_id = 0; 5775 break; 5776 #endif 5777 #ifdef INET6 5778 case AF_INET6: 5779 sin6 = (struct sockaddr_in6 *)to; 5780 memcpy(&stc.address, &sin6->sin6_addr, 5781 sizeof(struct in6_addr)); 5782 stc.addr_type = SCTP_IPV6_ADDRESS; 5783 stc.scope_id = sin6->sin6_scope_id; 5784 if (net->src_addr_selected == 0) { 5785 /* 5786 * strange case here, the INIT should have 5787 * done the selection. 5788 */ 5789 net->ro._s_addr = sctp_source_address_selection(inp, 5790 stcb, (sctp_route_t *)&net->ro, 5791 net, 0, vrf_id); 5792 if (net->ro._s_addr == NULL) { 5793 sctp_m_freem(op_err); 5794 sctp_m_freem(m); 5795 return; 5796 } 5797 5798 net->src_addr_selected = 1; 5799 } 5800 memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr, 5801 sizeof(struct in6_addr)); 5802 stc.laddr_type = SCTP_IPV6_ADDRESS; 5803 break; 5804 #endif 5805 } 5806 } 5807 if (asoc != NULL) { 5808 stc.zero_checksum = asoc->zero_checksum > 0 ? 1 : 0; 5809 } else { 5810 stc.zero_checksum = inp->zero_checksum; 5811 } 5812 /* Now lets put the SCTP header in place */ 5813 initack = mtod(m, struct sctp_init_ack_chunk *); 5814 /* Save it off for quick ref */ 5815 stc.peers_vtag = ntohl(init_chk->init.initiate_tag); 5816 /* who are we */ 5817 memcpy(stc.identification, SCTP_VERSION_STRING, 5818 min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification))); 5819 memset(stc.reserved, 0, SCTP_RESERVE_SPACE); 5820 /* now the chunk header */ 5821 initack->ch.chunk_type = SCTP_INITIATION_ACK; 5822 initack->ch.chunk_flags = 0; 5823 /* fill in later from mbuf we build */ 5824 initack->ch.chunk_length = 0; 5825 /* place in my tag */ 5826 if ((asoc != NULL) && 5827 ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 5828 (SCTP_GET_STATE(stcb) == SCTP_STATE_INUSE) || 5829 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED))) { 5830 /* re-use the v-tags and init-seq here */ 5831 initack->init.initiate_tag = htonl(asoc->my_vtag); 5832 initack->init.initial_tsn = htonl(asoc->init_seq_number); 5833 } else { 5834 uint32_t vtag, itsn; 5835 5836 if (asoc) { 5837 atomic_add_int(&asoc->refcnt, 1); 5838 SCTP_TCB_UNLOCK(stcb); 5839 new_tag: 5840 SCTP_INP_INFO_RLOCK(); 5841 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5842 SCTP_INP_INFO_RUNLOCK(); 5843 if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) { 5844 /* 5845 * Got a duplicate vtag on some guy behind a 5846 * nat make sure we don't use it. 5847 */ 5848 goto new_tag; 5849 } 5850 initack->init.initiate_tag = htonl(vtag); 5851 /* get a TSN to use too */ 5852 itsn = sctp_select_initial_TSN(&inp->sctp_ep); 5853 initack->init.initial_tsn = htonl(itsn); 5854 SCTP_TCB_LOCK(stcb); 5855 atomic_subtract_int(&asoc->refcnt, 1); 5856 } else { 5857 SCTP_INP_INCR_REF(inp); 5858 SCTP_INP_RUNLOCK(inp); 5859 SCTP_INP_INFO_RLOCK(); 5860 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5861 SCTP_INP_INFO_RUNLOCK(); 5862 initack->init.initiate_tag = htonl(vtag); 5863 /* get a TSN to use too */ 5864 initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep)); 5865 SCTP_INP_RLOCK(inp); 5866 SCTP_INP_DECR_REF(inp); 5867 } 5868 } 5869 /* save away my tag to */ 5870 stc.my_vtag = initack->init.initiate_tag; 5871 5872 /* set up some of the credits. */ 5873 so = inp->sctp_socket; 5874 if (so == NULL) { 5875 /* memory problem */ 5876 sctp_m_freem(op_err); 5877 sctp_m_freem(m); 5878 return; 5879 } else { 5880 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND)); 5881 } 5882 /* set what I want */ 5883 his_limit = ntohs(init_chk->init.num_inbound_streams); 5884 /* choose what I want */ 5885 if (asoc != NULL) { 5886 if (asoc->streamoutcnt > asoc->pre_open_streams) { 5887 i_want = asoc->streamoutcnt; 5888 } else { 5889 i_want = asoc->pre_open_streams; 5890 } 5891 } else { 5892 i_want = inp->sctp_ep.pre_open_stream_count; 5893 } 5894 if (his_limit < i_want) { 5895 /* I Want more :< */ 5896 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams; 5897 } else { 5898 /* I can have what I want :> */ 5899 initack->init.num_outbound_streams = htons(i_want); 5900 } 5901 /* tell him his limit. */ 5902 initack->init.num_inbound_streams = 5903 htons(inp->sctp_ep.max_open_streams_intome); 5904 5905 /* adaptation layer indication parameter */ 5906 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 5907 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 5908 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 5909 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 5910 ali->ph.param_length = htons(parameter_len); 5911 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 5912 chunk_len += parameter_len; 5913 } 5914 5915 /* ECN parameter */ 5916 if (((asoc != NULL) && (asoc->ecn_supported == 1)) || 5917 ((asoc == NULL) && (inp->ecn_supported == 1))) { 5918 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5919 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5920 ph->param_type = htons(SCTP_ECN_CAPABLE); 5921 ph->param_length = htons(parameter_len); 5922 chunk_len += parameter_len; 5923 } 5924 5925 /* PR-SCTP supported parameter */ 5926 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5927 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5928 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5929 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5930 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 5931 ph->param_length = htons(parameter_len); 5932 chunk_len += parameter_len; 5933 } 5934 5935 /* Zero checksum acceptable parameter */ 5936 if (((asoc != NULL) && (asoc->zero_checksum > 0)) || 5937 ((asoc == NULL) && (inp->zero_checksum == 1))) { 5938 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5939 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5940 ph->param_type = htons(SCTP_ZERO_CHECKSUM_ACCEPTABLE); 5941 ph->param_length = htons(parameter_len); 5942 chunk_len += parameter_len; 5943 } 5944 5945 /* Add NAT friendly parameter */ 5946 if (nat_friendly) { 5947 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5948 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5949 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 5950 ph->param_length = htons(parameter_len); 5951 chunk_len += parameter_len; 5952 } 5953 5954 /* And now tell the peer which extensions we support */ 5955 num_ext = 0; 5956 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 5957 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5958 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5959 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 5960 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5961 ((asoc == NULL) && (inp->idata_supported == 1))) { 5962 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 5963 } 5964 } 5965 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 5966 ((asoc == NULL) && (inp->auth_supported == 1))) { 5967 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 5968 } 5969 if (((asoc != NULL) && (asoc->asconf_supported == 1)) || 5970 ((asoc == NULL) && (inp->asconf_supported == 1))) { 5971 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 5972 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 5973 } 5974 if (((asoc != NULL) && (asoc->reconfig_supported == 1)) || 5975 ((asoc == NULL) && (inp->reconfig_supported == 1))) { 5976 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 5977 } 5978 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5979 ((asoc == NULL) && (inp->idata_supported == 1))) { 5980 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 5981 } 5982 if (((asoc != NULL) && (asoc->nrsack_supported == 1)) || 5983 ((asoc == NULL) && (inp->nrsack_supported == 1))) { 5984 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 5985 } 5986 if (((asoc != NULL) && (asoc->pktdrop_supported == 1)) || 5987 ((asoc == NULL) && (inp->pktdrop_supported == 1))) { 5988 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 5989 } 5990 if (num_ext > 0) { 5991 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 5992 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 5993 pr_supported->ph.param_length = htons(parameter_len); 5994 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 5995 chunk_len += parameter_len; 5996 } 5997 5998 /* add authentication parameters */ 5999 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 6000 ((asoc == NULL) && (inp->auth_supported == 1))) { 6001 struct sctp_auth_random *randp; 6002 struct sctp_auth_hmac_algo *hmacs; 6003 struct sctp_auth_chunk_list *chunks; 6004 6005 if (padding_len > 0) { 6006 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6007 chunk_len += padding_len; 6008 padding_len = 0; 6009 } 6010 /* generate and add RANDOM parameter */ 6011 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 6012 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + 6013 SCTP_AUTH_RANDOM_SIZE_DEFAULT; 6014 randp->ph.param_type = htons(SCTP_RANDOM); 6015 randp->ph.param_length = htons(parameter_len); 6016 SCTP_READ_RANDOM(randp->random_data, SCTP_AUTH_RANDOM_SIZE_DEFAULT); 6017 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6018 chunk_len += parameter_len; 6019 6020 if (padding_len > 0) { 6021 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6022 chunk_len += padding_len; 6023 padding_len = 0; 6024 } 6025 /* add HMAC_ALGO parameter */ 6026 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 6027 parameter_len = (uint16_t)sizeof(struct sctp_auth_hmac_algo) + 6028 sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs, 6029 (uint8_t *)hmacs->hmac_ids); 6030 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 6031 hmacs->ph.param_length = htons(parameter_len); 6032 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6033 chunk_len += parameter_len; 6034 6035 if (padding_len > 0) { 6036 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6037 chunk_len += padding_len; 6038 padding_len = 0; 6039 } 6040 /* add CHUNKS parameter */ 6041 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 6042 parameter_len = (uint16_t)sizeof(struct sctp_auth_chunk_list) + 6043 sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks, 6044 chunks->chunk_types); 6045 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 6046 chunks->ph.param_length = htons(parameter_len); 6047 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6048 chunk_len += parameter_len; 6049 } 6050 SCTP_BUF_LEN(m) = chunk_len; 6051 m_last = m; 6052 /* now the addresses */ 6053 /* 6054 * To optimize this we could put the scoping stuff into a structure 6055 * and remove the individual uint8's from the stc structure. Then we 6056 * could just sifa in the address within the stc.. but for now this 6057 * is a quick hack to get the address stuff teased apart. 6058 */ 6059 scp.ipv4_addr_legal = stc.ipv4_addr_legal; 6060 scp.ipv6_addr_legal = stc.ipv6_addr_legal; 6061 scp.loopback_scope = stc.loopback_scope; 6062 scp.ipv4_local_scope = stc.ipv4_scope; 6063 scp.local_scope = stc.local_scope; 6064 scp.site_scope = stc.site_scope; 6065 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last, 6066 cnt_inits_to, 6067 &padding_len, &chunk_len); 6068 /* padding_len can only be positive, if no addresses have been added */ 6069 if (padding_len > 0) { 6070 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6071 chunk_len += padding_len; 6072 SCTP_BUF_LEN(m) += padding_len; 6073 padding_len = 0; 6074 } 6075 6076 /* tack on the operational error if present */ 6077 if (op_err) { 6078 parameter_len = 0; 6079 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6080 parameter_len += SCTP_BUF_LEN(m_tmp); 6081 } 6082 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6083 SCTP_BUF_NEXT(m_last) = op_err; 6084 while (SCTP_BUF_NEXT(m_last) != NULL) { 6085 m_last = SCTP_BUF_NEXT(m_last); 6086 } 6087 chunk_len += parameter_len; 6088 } 6089 if (padding_len > 0) { 6090 m_last = sctp_add_pad_tombuf(m_last, padding_len); 6091 if (m_last == NULL) { 6092 /* Houston we have a problem, no space */ 6093 sctp_m_freem(m); 6094 return; 6095 } 6096 chunk_len += padding_len; 6097 padding_len = 0; 6098 } 6099 /* Now we must build a cookie */ 6100 m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature); 6101 if (m_cookie == NULL) { 6102 /* memory problem */ 6103 sctp_m_freem(m); 6104 return; 6105 } 6106 /* Now append the cookie to the end and update the space/size */ 6107 SCTP_BUF_NEXT(m_last) = m_cookie; 6108 parameter_len = 0; 6109 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6110 parameter_len += SCTP_BUF_LEN(m_tmp); 6111 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 6112 m_last = m_tmp; 6113 } 6114 } 6115 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6116 chunk_len += parameter_len; 6117 6118 /* 6119 * Place in the size, but we don't include the last pad (if any) in 6120 * the INIT-ACK. 6121 */ 6122 initack->ch.chunk_length = htons(chunk_len); 6123 6124 /* 6125 * Time to sign the cookie, we don't sign over the cookie signature 6126 * though thus we set trailer. 6127 */ 6128 (void)sctp_hmac_m(SCTP_HMAC, 6129 (uint8_t *)inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], 6130 SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), 6131 (uint8_t *)signature, SCTP_SIGNATURE_SIZE); 6132 /* 6133 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 6134 * here since the timer will drive a retranmission. 6135 */ 6136 if (padding_len > 0) { 6137 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 6138 sctp_m_freem(m); 6139 return; 6140 } 6141 } 6142 if (stc.loopback_scope) { 6143 over_addr = (union sctp_sockstore *)dst; 6144 } else { 6145 over_addr = NULL; 6146 } 6147 6148 if ((error = sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0, 6149 0, 0, 6150 inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag, 6151 port, over_addr, 6152 mflowtype, mflowid, 6153 false, /* XXXMT: Improve this! */ 6154 SCTP_SO_NOT_LOCKED))) { 6155 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 6156 if (error == ENOBUFS) { 6157 if (asoc != NULL) { 6158 asoc->ifp_had_enobuf = 1; 6159 } 6160 SCTP_STAT_INCR(sctps_lowlevelerr); 6161 } 6162 } else { 6163 if (asoc != NULL) { 6164 asoc->ifp_had_enobuf = 0; 6165 } 6166 } 6167 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 6168 } 6169 6170 static void 6171 sctp_prune_prsctp(struct sctp_tcb *stcb, 6172 struct sctp_association *asoc, 6173 struct sctp_nonpad_sndrcvinfo *srcv, 6174 int dataout) 6175 { 6176 int freed_spc = 0; 6177 struct sctp_tmit_chunk *chk, *nchk; 6178 6179 SCTP_TCB_LOCK_ASSERT(stcb); 6180 if ((asoc->prsctp_supported) && 6181 (asoc->sent_queue_cnt_removeable > 0)) { 6182 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 6183 /* 6184 * Look for chunks marked with the PR_SCTP flag AND 6185 * the buffer space flag. If the one being sent is 6186 * equal or greater priority then purge the old one 6187 * and free some space. 6188 */ 6189 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6190 /* 6191 * This one is PR-SCTP AND buffer space 6192 * limited type 6193 */ 6194 if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) { 6195 /* 6196 * Lower numbers equates to higher 6197 * priority. So if the one we are 6198 * looking at has a larger priority, 6199 * we want to drop the data and NOT 6200 * retransmit it. 6201 */ 6202 if (chk->data) { 6203 /* 6204 * We release the book_size 6205 * if the mbuf is here 6206 */ 6207 int ret_spc; 6208 uint8_t sent; 6209 6210 if (chk->sent > SCTP_DATAGRAM_UNSENT) 6211 sent = 1; 6212 else 6213 sent = 0; 6214 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6215 sent, 6216 SCTP_SO_LOCKED); 6217 freed_spc += ret_spc; 6218 if (freed_spc >= dataout) { 6219 return; 6220 } 6221 } /* if chunk was present */ 6222 } /* if of sufficient priority */ 6223 } /* if chunk has enabled */ 6224 } /* tailqforeach */ 6225 6226 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 6227 /* Here we must move to the sent queue and mark */ 6228 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6229 if (chk->rec.data.timetodrop.tv_sec > (long)srcv->sinfo_timetolive) { 6230 if (chk->data) { 6231 /* 6232 * We release the book_size 6233 * if the mbuf is here 6234 */ 6235 int ret_spc; 6236 6237 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6238 0, SCTP_SO_LOCKED); 6239 6240 freed_spc += ret_spc; 6241 if (freed_spc >= dataout) { 6242 return; 6243 } 6244 } /* end if chk->data */ 6245 } /* end if right class */ 6246 } /* end if chk pr-sctp */ 6247 } /* tailqforeachsafe (chk) */ 6248 } /* if enabled in asoc */ 6249 } 6250 6251 uint32_t 6252 sctp_get_frag_point(struct sctp_tcb *stcb) 6253 { 6254 struct sctp_association *asoc; 6255 uint32_t frag_point, overhead; 6256 6257 asoc = &stcb->asoc; 6258 /* Consider IP header and SCTP common header. */ 6259 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6260 overhead = SCTP_MIN_OVERHEAD; 6261 } else { 6262 overhead = SCTP_MIN_V4_OVERHEAD; 6263 } 6264 /* Consider DATA/IDATA chunk header and AUTH header, if needed. */ 6265 if (asoc->idata_supported) { 6266 overhead += sizeof(struct sctp_idata_chunk); 6267 if (sctp_auth_is_required_chunk(SCTP_IDATA, asoc->peer_auth_chunks)) { 6268 overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id); 6269 } 6270 } else { 6271 overhead += sizeof(struct sctp_data_chunk); 6272 if (sctp_auth_is_required_chunk(SCTP_DATA, asoc->peer_auth_chunks)) { 6273 overhead += sctp_get_auth_chunk_len(asoc->peer_hmac_id); 6274 } 6275 } 6276 KASSERT(overhead % 4 == 0, 6277 ("overhead (%u) not a multiple of 4", overhead)); 6278 /* Consider padding. */ 6279 if (asoc->smallest_mtu % 4 > 0) { 6280 overhead += (asoc->smallest_mtu % 4); 6281 } 6282 KASSERT(asoc->smallest_mtu > overhead, 6283 ("Association MTU (%u) too small for overhead (%u)", 6284 asoc->smallest_mtu, overhead)); 6285 frag_point = asoc->smallest_mtu - overhead; 6286 KASSERT(frag_point % 4 == 0, 6287 ("frag_point (%u) not a multiple of 4", frag_point)); 6288 /* Honor MAXSEG socket option. */ 6289 if ((asoc->sctp_frag_point > 0) && 6290 (asoc->sctp_frag_point < frag_point)) { 6291 frag_point = asoc->sctp_frag_point; 6292 } 6293 return (frag_point); 6294 } 6295 6296 static void 6297 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp) 6298 { 6299 /* 6300 * We assume that the user wants PR_SCTP_TTL if the user provides a 6301 * positive lifetime but does not specify any PR_SCTP policy. 6302 */ 6303 if (PR_SCTP_ENABLED(sp->sinfo_flags)) { 6304 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6305 } else if (sp->timetolive > 0) { 6306 sp->sinfo_flags |= SCTP_PR_SCTP_TTL; 6307 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6308 } else { 6309 return; 6310 } 6311 switch (PR_SCTP_POLICY(sp->sinfo_flags)) { 6312 case CHUNK_FLAGS_PR_SCTP_BUF: 6313 /* 6314 * Time to live is a priority stored in tv_sec when doing 6315 * the buffer drop thing. 6316 */ 6317 sp->ts.tv_sec = sp->timetolive; 6318 sp->ts.tv_usec = 0; 6319 break; 6320 case CHUNK_FLAGS_PR_SCTP_TTL: 6321 { 6322 struct timeval tv; 6323 6324 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6325 tv.tv_sec = sp->timetolive / 1000; 6326 tv.tv_usec = (sp->timetolive * 1000) % 1000000; 6327 /* 6328 * TODO sctp_constants.h needs alternative time 6329 * macros when _KERNEL is undefined. 6330 */ 6331 timevaladd(&sp->ts, &tv); 6332 } 6333 break; 6334 case CHUNK_FLAGS_PR_SCTP_RTX: 6335 /* 6336 * Time to live is a the number or retransmissions stored in 6337 * tv_sec. 6338 */ 6339 sp->ts.tv_sec = sp->timetolive; 6340 sp->ts.tv_usec = 0; 6341 break; 6342 default: 6343 SCTPDBG(SCTP_DEBUG_USRREQ1, 6344 "Unknown PR_SCTP policy %u.\n", 6345 PR_SCTP_POLICY(sp->sinfo_flags)); 6346 break; 6347 } 6348 } 6349 6350 static int 6351 sctp_msg_append(struct sctp_tcb *stcb, 6352 struct sctp_nets *net, 6353 struct mbuf *m, 6354 struct sctp_nonpad_sndrcvinfo *srcv) 6355 { 6356 int error = 0; 6357 struct mbuf *at; 6358 struct sctp_stream_queue_pending *sp = NULL; 6359 struct sctp_stream_out *strm; 6360 6361 SCTP_TCB_LOCK_ASSERT(stcb); 6362 6363 /* 6364 * Given an mbuf chain, put it into the association send queue and 6365 * place it on the wheel 6366 */ 6367 if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) { 6368 /* Invalid stream number */ 6369 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6370 error = EINVAL; 6371 goto out_now; 6372 } 6373 if ((stcb->asoc.stream_locked) && 6374 (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) { 6375 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6376 error = EINVAL; 6377 goto out_now; 6378 } 6379 if ((stcb->asoc.strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPEN) && 6380 (stcb->asoc.strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPENING)) { 6381 /* 6382 * Can't queue any data while stream reset is underway. 6383 */ 6384 if (stcb->asoc.strmout[srcv->sinfo_stream].state > SCTP_STREAM_OPEN) { 6385 error = EAGAIN; 6386 } else { 6387 error = EINVAL; 6388 } 6389 goto out_now; 6390 } 6391 /* Now can we send this? */ 6392 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) || 6393 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 6394 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 6395 (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) { 6396 /* got data while shutting down */ 6397 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EPIPE); 6398 error = EPIPE; 6399 goto out_now; 6400 } 6401 sctp_alloc_a_strmoq(stcb, sp); 6402 if (sp == NULL) { 6403 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6404 error = ENOMEM; 6405 goto out_now; 6406 } 6407 sp->sinfo_flags = srcv->sinfo_flags; 6408 sp->timetolive = srcv->sinfo_timetolive; 6409 sp->ppid = srcv->sinfo_ppid; 6410 sp->context = srcv->sinfo_context; 6411 sp->fsn = 0; 6412 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 6413 sp->net = net; 6414 atomic_add_int(&sp->net->ref_count, 1); 6415 } else { 6416 sp->net = NULL; 6417 } 6418 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6419 sp->sid = srcv->sinfo_stream; 6420 sp->msg_is_complete = 1; 6421 sp->sender_all_done = 1; 6422 sp->some_taken = 0; 6423 sp->data = m; 6424 sp->tail_mbuf = NULL; 6425 sctp_set_prsctp_policy(sp); 6426 /* 6427 * We could in theory (for sendall) sifa the length in, but we would 6428 * still have to hunt through the chain since we need to setup the 6429 * tail_mbuf 6430 */ 6431 sp->length = 0; 6432 for (at = m; at; at = SCTP_BUF_NEXT(at)) { 6433 if (SCTP_BUF_NEXT(at) == NULL) 6434 sp->tail_mbuf = at; 6435 sp->length += SCTP_BUF_LEN(at); 6436 } 6437 if (srcv->sinfo_keynumber_valid) { 6438 sp->auth_keyid = srcv->sinfo_keynumber; 6439 } else { 6440 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 6441 } 6442 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 6443 sctp_auth_key_acquire(stcb, sp->auth_keyid); 6444 sp->holds_key_ref = 1; 6445 } 6446 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 6447 sctp_snd_sb_alloc(stcb, sp->length); 6448 atomic_add_int(&stcb->asoc.stream_queue_cnt, 1); 6449 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 6450 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp); 6451 m = NULL; 6452 out_now: 6453 if (m) { 6454 sctp_m_freem(m); 6455 } 6456 return (error); 6457 } 6458 6459 static struct mbuf * 6460 sctp_copy_mbufchain(struct mbuf *clonechain, 6461 struct mbuf *outchain, 6462 struct mbuf **endofchain, 6463 int can_take_mbuf, 6464 int sizeofcpy, 6465 uint8_t copy_by_ref) 6466 { 6467 struct mbuf *m; 6468 struct mbuf *appendchain; 6469 caddr_t cp; 6470 int len; 6471 6472 if (endofchain == NULL) { 6473 /* error */ 6474 error_out: 6475 if (outchain) 6476 sctp_m_freem(outchain); 6477 return (NULL); 6478 } 6479 if (can_take_mbuf) { 6480 appendchain = clonechain; 6481 } else { 6482 if (!copy_by_ref && 6483 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN)))) { 6484 /* Its not in a cluster */ 6485 if (*endofchain == NULL) { 6486 /* lets get a mbuf cluster */ 6487 if (outchain == NULL) { 6488 /* This is the general case */ 6489 new_mbuf: 6490 outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6491 if (outchain == NULL) { 6492 goto error_out; 6493 } 6494 SCTP_BUF_LEN(outchain) = 0; 6495 *endofchain = outchain; 6496 /* get the prepend space */ 6497 SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4)); 6498 } else { 6499 /* 6500 * We really should not get a NULL 6501 * in endofchain 6502 */ 6503 /* find end */ 6504 m = outchain; 6505 while (m) { 6506 if (SCTP_BUF_NEXT(m) == NULL) { 6507 *endofchain = m; 6508 break; 6509 } 6510 m = SCTP_BUF_NEXT(m); 6511 } 6512 /* sanity */ 6513 if (*endofchain == NULL) { 6514 /* 6515 * huh, TSNH XXX maybe we 6516 * should panic 6517 */ 6518 sctp_m_freem(outchain); 6519 goto new_mbuf; 6520 } 6521 } 6522 /* get the new end of length */ 6523 len = (int)M_TRAILINGSPACE(*endofchain); 6524 } else { 6525 /* how much is left at the end? */ 6526 len = (int)M_TRAILINGSPACE(*endofchain); 6527 } 6528 /* Find the end of the data, for appending */ 6529 cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain))); 6530 6531 /* Now lets copy it out */ 6532 if (len >= sizeofcpy) { 6533 /* It all fits, copy it in */ 6534 m_copydata(clonechain, 0, sizeofcpy, cp); 6535 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6536 } else { 6537 /* fill up the end of the chain */ 6538 if (len > 0) { 6539 m_copydata(clonechain, 0, len, cp); 6540 SCTP_BUF_LEN((*endofchain)) += len; 6541 /* now we need another one */ 6542 sizeofcpy -= len; 6543 } 6544 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6545 if (m == NULL) { 6546 /* We failed */ 6547 goto error_out; 6548 } 6549 SCTP_BUF_NEXT((*endofchain)) = m; 6550 *endofchain = m; 6551 cp = mtod((*endofchain), caddr_t); 6552 m_copydata(clonechain, len, sizeofcpy, cp); 6553 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6554 } 6555 return (outchain); 6556 } else { 6557 /* copy the old fashion way */ 6558 appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT); 6559 #ifdef SCTP_MBUF_LOGGING 6560 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6561 sctp_log_mbc(appendchain, SCTP_MBUF_ICOPY); 6562 } 6563 #endif 6564 } 6565 } 6566 if (appendchain == NULL) { 6567 /* error */ 6568 if (outchain) 6569 sctp_m_freem(outchain); 6570 return (NULL); 6571 } 6572 if (outchain) { 6573 /* tack on to the end */ 6574 if (*endofchain != NULL) { 6575 SCTP_BUF_NEXT(((*endofchain))) = appendchain; 6576 } else { 6577 m = outchain; 6578 while (m) { 6579 if (SCTP_BUF_NEXT(m) == NULL) { 6580 SCTP_BUF_NEXT(m) = appendchain; 6581 break; 6582 } 6583 m = SCTP_BUF_NEXT(m); 6584 } 6585 } 6586 /* 6587 * save off the end and update the end-chain position 6588 */ 6589 m = appendchain; 6590 while (m) { 6591 if (SCTP_BUF_NEXT(m) == NULL) { 6592 *endofchain = m; 6593 break; 6594 } 6595 m = SCTP_BUF_NEXT(m); 6596 } 6597 return (outchain); 6598 } else { 6599 /* save off the end and update the end-chain position */ 6600 m = appendchain; 6601 while (m) { 6602 if (SCTP_BUF_NEXT(m) == NULL) { 6603 *endofchain = m; 6604 break; 6605 } 6606 m = SCTP_BUF_NEXT(m); 6607 } 6608 return (appendchain); 6609 } 6610 } 6611 6612 static int 6613 sctp_med_chunk_output(struct sctp_inpcb *inp, 6614 struct sctp_tcb *stcb, 6615 struct sctp_association *asoc, 6616 int *num_out, 6617 int *reason_code, 6618 int control_only, int from_where, 6619 struct timeval *now, int *now_filled, 6620 uint32_t frag_point, int so_locked); 6621 6622 static void 6623 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, 6624 uint32_t val SCTP_UNUSED) 6625 { 6626 struct sctp_copy_all *ca; 6627 struct mbuf *m; 6628 int ret = 0; 6629 int added_control = 0; 6630 int un_sent, do_chunk_output = 1; 6631 struct sctp_association *asoc; 6632 struct sctp_nets *net; 6633 6634 ca = (struct sctp_copy_all *)ptr; 6635 if (ca->m == NULL) { 6636 return; 6637 } 6638 if (ca->inp != inp) { 6639 /* TSNH */ 6640 return; 6641 } 6642 if (ca->sndlen > 0) { 6643 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT); 6644 if (m == NULL) { 6645 /* can't copy so we are done */ 6646 ca->cnt_failed++; 6647 return; 6648 } 6649 #ifdef SCTP_MBUF_LOGGING 6650 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6651 sctp_log_mbc(m, SCTP_MBUF_ICOPY); 6652 } 6653 #endif 6654 } else { 6655 m = NULL; 6656 } 6657 SCTP_TCB_LOCK_ASSERT(stcb); 6658 if (stcb->asoc.alternate) { 6659 net = stcb->asoc.alternate; 6660 } else { 6661 net = stcb->asoc.primary_destination; 6662 } 6663 if (ca->sndrcv.sinfo_flags & SCTP_ABORT) { 6664 /* Abort this assoc with m as the user defined reason */ 6665 if (m != NULL) { 6666 SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT); 6667 } else { 6668 m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 6669 0, M_NOWAIT, 1, MT_DATA); 6670 SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr); 6671 } 6672 if (m != NULL) { 6673 struct sctp_paramhdr *ph; 6674 6675 ph = mtod(m, struct sctp_paramhdr *); 6676 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 6677 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + ca->sndlen)); 6678 } 6679 /* 6680 * We add one here to keep the assoc from dis-appearing on 6681 * us. 6682 */ 6683 atomic_add_int(&stcb->asoc.refcnt, 1); 6684 sctp_abort_an_association(inp, stcb, m, false, SCTP_SO_NOT_LOCKED); 6685 /* 6686 * sctp_abort_an_association calls sctp_free_asoc() free 6687 * association will NOT free it since we incremented the 6688 * refcnt .. we do this to prevent it being freed and things 6689 * getting tricky since we could end up (from free_asoc) 6690 * calling inpcb_free which would get a recursive lock call 6691 * to the iterator lock.. But as a consequence of that the 6692 * stcb will return to us un-locked.. since free_asoc 6693 * returns with either no TCB or the TCB unlocked, we must 6694 * relock.. to unlock in the iterator timer :-0 6695 */ 6696 SCTP_TCB_LOCK(stcb); 6697 atomic_subtract_int(&stcb->asoc.refcnt, 1); 6698 goto no_chunk_output; 6699 } else { 6700 if (m != NULL) { 6701 ret = sctp_msg_append(stcb, net, m, &ca->sndrcv); 6702 } 6703 asoc = &stcb->asoc; 6704 if (ca->sndrcv.sinfo_flags & SCTP_EOF) { 6705 /* shutdown this assoc */ 6706 if (TAILQ_EMPTY(&asoc->send_queue) && 6707 TAILQ_EMPTY(&asoc->sent_queue) && 6708 sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED) == 0) { 6709 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6710 goto abort_anyway; 6711 } 6712 /* 6713 * there is nothing queued to send, so I'm 6714 * done... 6715 */ 6716 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 6717 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6718 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6719 /* 6720 * only send SHUTDOWN the first time 6721 * through 6722 */ 6723 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 6724 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 6725 } 6726 SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT); 6727 sctp_stop_timers_for_shutdown(stcb); 6728 sctp_send_shutdown(stcb, net); 6729 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 6730 net); 6731 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6732 NULL); 6733 added_control = 1; 6734 do_chunk_output = 0; 6735 } 6736 } else { 6737 /* 6738 * we still got (or just got) data to send, 6739 * so set SHUTDOWN_PENDING 6740 */ 6741 /* 6742 * XXX sockets draft says that SCTP_EOF 6743 * should be sent with no data. currently, 6744 * we will allow user data to be sent first 6745 * and move to SHUTDOWN-PENDING 6746 */ 6747 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 6748 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6749 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6750 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6751 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT); 6752 } 6753 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING); 6754 if (TAILQ_EMPTY(&asoc->send_queue) && 6755 TAILQ_EMPTY(&asoc->sent_queue) && 6756 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 6757 struct mbuf *op_err; 6758 char msg[SCTP_DIAG_INFO_LEN]; 6759 6760 abort_anyway: 6761 SCTP_SNPRINTF(msg, sizeof(msg), 6762 "%s:%d at %s", __FILE__, __LINE__, __func__); 6763 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 6764 msg); 6765 atomic_add_int(&stcb->asoc.refcnt, 1); 6766 sctp_abort_an_association(stcb->sctp_ep, stcb, 6767 op_err, false, SCTP_SO_NOT_LOCKED); 6768 atomic_subtract_int(&stcb->asoc.refcnt, 1); 6769 goto no_chunk_output; 6770 } 6771 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6772 NULL); 6773 } 6774 } 6775 } 6776 } 6777 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 6778 (stcb->asoc.stream_queue_cnt * SCTP_DATA_CHUNK_OVERHEAD(stcb))); 6779 6780 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 6781 (stcb->asoc.total_flight > 0) && 6782 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 6783 do_chunk_output = 0; 6784 } 6785 if (do_chunk_output) 6786 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED); 6787 else if (added_control) { 6788 struct timeval now; 6789 int num_out, reason, now_filled = 0; 6790 6791 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 6792 &reason, 1, 1, &now, &now_filled, 6793 sctp_get_frag_point(stcb), 6794 SCTP_SO_NOT_LOCKED); 6795 } 6796 no_chunk_output: 6797 if (ret) { 6798 ca->cnt_failed++; 6799 } else { 6800 ca->cnt_sent++; 6801 } 6802 } 6803 6804 static void 6805 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED) 6806 { 6807 struct sctp_copy_all *ca; 6808 6809 ca = (struct sctp_copy_all *)ptr; 6810 /* 6811 * Do a notify here? Kacheong suggests that the notify be done at 6812 * the send time.. so you would push up a notification if any send 6813 * failed. Don't know if this is feasible since the only failures we 6814 * have is "memory" related and if you cannot get an mbuf to send 6815 * the data you surely can't get an mbuf to send up to notify the 6816 * user you can't send the data :-> 6817 */ 6818 6819 /* now free everything */ 6820 if (ca->inp) { 6821 /* Lets clear the flag to allow others to run. */ 6822 SCTP_INP_WLOCK(ca->inp); 6823 ca->inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6824 SCTP_INP_WUNLOCK(ca->inp); 6825 } 6826 sctp_m_freem(ca->m); 6827 SCTP_FREE(ca, SCTP_M_COPYAL); 6828 } 6829 6830 static struct mbuf * 6831 sctp_copy_out_all(struct uio *uio, ssize_t len) 6832 { 6833 struct mbuf *ret, *at; 6834 ssize_t left, willcpy, cancpy, error; 6835 6836 ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA); 6837 if (ret == NULL) { 6838 /* TSNH */ 6839 return (NULL); 6840 } 6841 left = len; 6842 SCTP_BUF_LEN(ret) = 0; 6843 /* save space for the data chunk header */ 6844 cancpy = (int)M_TRAILINGSPACE(ret); 6845 willcpy = min(cancpy, left); 6846 at = ret; 6847 while (left > 0) { 6848 /* Align data to the end */ 6849 error = uiomove(mtod(at, caddr_t), (int)willcpy, uio); 6850 if (error) { 6851 err_out_now: 6852 sctp_m_freem(at); 6853 return (NULL); 6854 } 6855 SCTP_BUF_LEN(at) = (int)willcpy; 6856 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0; 6857 left -= willcpy; 6858 if (left > 0) { 6859 SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg((unsigned int)left, 0, M_WAITOK, 1, MT_DATA); 6860 if (SCTP_BUF_NEXT(at) == NULL) { 6861 goto err_out_now; 6862 } 6863 at = SCTP_BUF_NEXT(at); 6864 SCTP_BUF_LEN(at) = 0; 6865 cancpy = (int)M_TRAILINGSPACE(at); 6866 willcpy = min(cancpy, left); 6867 } 6868 } 6869 return (ret); 6870 } 6871 6872 static int 6873 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m, 6874 struct sctp_nonpad_sndrcvinfo *srcv) 6875 { 6876 int ret; 6877 struct sctp_copy_all *ca; 6878 6879 if (uio->uio_resid > (ssize_t)SCTP_BASE_SYSCTL(sctp_sendall_limit)) { 6880 /* You must not be larger than the limit! */ 6881 return (EMSGSIZE); 6882 } 6883 SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all), 6884 SCTP_M_COPYAL); 6885 if (ca == NULL) { 6886 sctp_m_freem(m); 6887 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6888 return (ENOMEM); 6889 } 6890 memset(ca, 0, sizeof(struct sctp_copy_all)); 6891 6892 ca->inp = inp; 6893 if (srcv != NULL) { 6894 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo)); 6895 } 6896 6897 /* Serialize. */ 6898 SCTP_INP_WLOCK(inp); 6899 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SND_ITERATOR_UP) != 0) { 6900 SCTP_INP_WUNLOCK(inp); 6901 sctp_m_freem(m); 6902 SCTP_FREE(ca, SCTP_M_COPYAL); 6903 return (EBUSY); 6904 } 6905 inp->sctp_flags |= SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6906 SCTP_INP_WUNLOCK(inp); 6907 6908 /* 6909 * take off the sendall flag, it would be bad if we failed to do 6910 * this :-0 6911 */ 6912 ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL; 6913 /* get length and mbuf chain */ 6914 if (uio) { 6915 ca->sndlen = uio->uio_resid; 6916 ca->m = sctp_copy_out_all(uio, ca->sndlen); 6917 if (ca->m == NULL) { 6918 SCTP_FREE(ca, SCTP_M_COPYAL); 6919 sctp_m_freem(m); 6920 SCTP_INP_WLOCK(inp); 6921 inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6922 SCTP_INP_WUNLOCK(inp); 6923 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6924 return (ENOMEM); 6925 } 6926 } else { 6927 /* Gather the length of the send */ 6928 struct mbuf *mat; 6929 6930 ca->sndlen = 0; 6931 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6932 ca->sndlen += SCTP_BUF_LEN(mat); 6933 } 6934 } 6935 ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL, 6936 SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES, 6937 SCTP_ASOC_ANY_STATE, 6938 (void *)ca, 0, 6939 sctp_sendall_completes, inp, 1); 6940 if (ret) { 6941 SCTP_INP_WLOCK(inp); 6942 inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6943 SCTP_INP_WUNLOCK(inp); 6944 SCTP_FREE(ca, SCTP_M_COPYAL); 6945 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 6946 return (EFAULT); 6947 } 6948 return (0); 6949 } 6950 6951 void 6952 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc) 6953 { 6954 struct sctp_tmit_chunk *chk, *nchk; 6955 6956 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6957 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 6958 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6959 asoc->ctrl_queue_cnt--; 6960 if (chk->data) { 6961 sctp_m_freem(chk->data); 6962 chk->data = NULL; 6963 } 6964 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6965 } 6966 } 6967 } 6968 6969 void 6970 sctp_toss_old_asconf(struct sctp_tcb *stcb) 6971 { 6972 struct sctp_association *asoc; 6973 struct sctp_tmit_chunk *chk, *nchk; 6974 struct sctp_asconf_chunk *acp; 6975 6976 asoc = &stcb->asoc; 6977 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 6978 /* find SCTP_ASCONF chunk in queue */ 6979 if (chk->rec.chunk_id.id == SCTP_ASCONF) { 6980 if (chk->data) { 6981 acp = mtod(chk->data, struct sctp_asconf_chunk *); 6982 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { 6983 /* Not Acked yet */ 6984 break; 6985 } 6986 } 6987 TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next); 6988 asoc->ctrl_queue_cnt--; 6989 if (chk->data) { 6990 sctp_m_freem(chk->data); 6991 chk->data = NULL; 6992 } 6993 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6994 } 6995 } 6996 } 6997 6998 static void 6999 sctp_clean_up_datalist(struct sctp_tcb *stcb, 7000 struct sctp_association *asoc, 7001 struct sctp_tmit_chunk **data_list, 7002 int bundle_at, 7003 struct sctp_nets *net) 7004 { 7005 int i; 7006 struct sctp_tmit_chunk *tp1; 7007 7008 for (i = 0; i < bundle_at; i++) { 7009 /* off of the send queue */ 7010 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next); 7011 asoc->send_queue_cnt--; 7012 if (i > 0) { 7013 /* 7014 * Any chunk NOT 0 you zap the time chunk 0 gets 7015 * zapped or set based on if a RTO measurement is 7016 * needed. 7017 */ 7018 data_list[i]->do_rtt = 0; 7019 } 7020 /* record time */ 7021 data_list[i]->sent_rcv_time = net->last_sent_time; 7022 data_list[i]->rec.data.cwnd_at_send = net->cwnd; 7023 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.tsn; 7024 if (data_list[i]->whoTo == NULL) { 7025 data_list[i]->whoTo = net; 7026 atomic_add_int(&net->ref_count, 1); 7027 } 7028 /* on to the sent queue */ 7029 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead); 7030 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 7031 struct sctp_tmit_chunk *tpp; 7032 7033 /* need to move back */ 7034 back_up_more: 7035 tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next); 7036 if (tpp == NULL) { 7037 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next); 7038 goto all_done; 7039 } 7040 tp1 = tpp; 7041 if (SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 7042 goto back_up_more; 7043 } 7044 TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next); 7045 } else { 7046 TAILQ_INSERT_TAIL(&asoc->sent_queue, 7047 data_list[i], 7048 sctp_next); 7049 } 7050 all_done: 7051 /* This does not lower until the cum-ack passes it */ 7052 asoc->sent_queue_cnt++; 7053 if ((asoc->peers_rwnd <= 0) && 7054 (asoc->total_flight == 0) && 7055 (bundle_at == 1)) { 7056 /* Mark the chunk as being a window probe */ 7057 SCTP_STAT_INCR(sctps_windowprobed); 7058 } 7059 #ifdef SCTP_AUDITING_ENABLED 7060 sctp_audit_log(0xC2, 3); 7061 #endif 7062 data_list[i]->sent = SCTP_DATAGRAM_SENT; 7063 data_list[i]->snd_count = 1; 7064 data_list[i]->rec.data.chunk_was_revoked = 0; 7065 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 7066 sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 7067 data_list[i]->whoTo->flight_size, 7068 data_list[i]->book_size, 7069 (uint32_t)(uintptr_t)data_list[i]->whoTo, 7070 data_list[i]->rec.data.tsn); 7071 } 7072 sctp_flight_size_increase(data_list[i]); 7073 sctp_total_flight_increase(stcb, data_list[i]); 7074 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 7075 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 7076 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 7077 } 7078 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 7079 (uint32_t)(data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 7080 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 7081 /* SWS sender side engages */ 7082 asoc->peers_rwnd = 0; 7083 } 7084 } 7085 if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) { 7086 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net); 7087 } 7088 } 7089 7090 static void 7091 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked) 7092 { 7093 struct sctp_tmit_chunk *chk, *nchk; 7094 7095 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 7096 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7097 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 7098 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 7099 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 7100 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) || 7101 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 7102 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 7103 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 7104 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 7105 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 7106 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 7107 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 7108 /* Stray chunks must be cleaned up */ 7109 clean_up_anyway: 7110 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 7111 asoc->ctrl_queue_cnt--; 7112 if (chk->data) { 7113 sctp_m_freem(chk->data); 7114 chk->data = NULL; 7115 } 7116 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 7117 asoc->fwd_tsn_cnt--; 7118 } 7119 sctp_free_a_chunk(stcb, chk, so_locked); 7120 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 7121 /* special handling, we must look into the param */ 7122 if (chk != asoc->str_reset) { 7123 goto clean_up_anyway; 7124 } 7125 } 7126 } 7127 } 7128 7129 static uint32_t 7130 sctp_can_we_split_this(struct sctp_tcb *stcb, uint32_t length, 7131 uint32_t space_left, uint32_t frag_point, int eeor_on) 7132 { 7133 /* 7134 * Make a decision on if I should split a msg into multiple parts. 7135 * This is only asked of incomplete messages. 7136 */ 7137 if (eeor_on) { 7138 /* 7139 * If we are doing EEOR we need to always send it if its the 7140 * entire thing, since it might be all the guy is putting in 7141 * the hopper. 7142 */ 7143 if (space_left >= length) { 7144 /*- 7145 * If we have data outstanding, 7146 * we get another chance when the sack 7147 * arrives to transmit - wait for more data 7148 */ 7149 if (stcb->asoc.total_flight == 0) { 7150 /* 7151 * If nothing is in flight, we zero the 7152 * packet counter. 7153 */ 7154 return (length); 7155 } 7156 return (0); 7157 7158 } else { 7159 /* You can fill the rest */ 7160 return (space_left); 7161 } 7162 } 7163 /*- 7164 * For those strange folk that make the send buffer 7165 * smaller than our fragmentation point, we can't 7166 * get a full msg in so we have to allow splitting. 7167 */ 7168 if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) { 7169 return (length); 7170 } 7171 if ((length <= space_left) || 7172 ((length - space_left) < SCTP_BASE_SYSCTL(sctp_min_residual))) { 7173 /* Sub-optimal residual don't split in non-eeor mode. */ 7174 return (0); 7175 } 7176 /* 7177 * If we reach here length is larger than the space_left. Do we wish 7178 * to split it for the sake of packet putting together? 7179 */ 7180 if (space_left >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) { 7181 /* Its ok to split it */ 7182 return (min(space_left, frag_point)); 7183 } 7184 /* Nope, can't split */ 7185 return (0); 7186 } 7187 7188 static uint32_t 7189 sctp_move_to_outqueue(struct sctp_tcb *stcb, 7190 struct sctp_nets *net, 7191 struct sctp_stream_out *strq, 7192 uint32_t space_left, 7193 uint32_t frag_point, 7194 int *giveup, 7195 int eeor_mode, 7196 int *bail, 7197 int so_locked) 7198 { 7199 /* Move from the stream to the send_queue keeping track of the total */ 7200 struct sctp_association *asoc; 7201 struct sctp_stream_queue_pending *sp; 7202 struct sctp_tmit_chunk *chk; 7203 struct sctp_data_chunk *dchkh = NULL; 7204 struct sctp_idata_chunk *ndchkh = NULL; 7205 uint32_t to_move, length; 7206 int leading; 7207 uint8_t rcv_flags = 0; 7208 uint8_t some_taken; 7209 7210 SCTP_TCB_LOCK_ASSERT(stcb); 7211 asoc = &stcb->asoc; 7212 one_more_time: 7213 /* sa_ignore FREED_MEMORY */ 7214 sp = TAILQ_FIRST(&strq->outqueue); 7215 if (sp == NULL) { 7216 sp = TAILQ_FIRST(&strq->outqueue); 7217 if (sp) { 7218 goto one_more_time; 7219 } 7220 if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_EXPLICIT_EOR) == 0) && 7221 (stcb->asoc.idata_supported == 0) && 7222 (strq->last_msg_incomplete)) { 7223 SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n", 7224 strq->sid, 7225 strq->last_msg_incomplete); 7226 strq->last_msg_incomplete = 0; 7227 } 7228 to_move = 0; 7229 goto out_of; 7230 } 7231 if ((sp->msg_is_complete) && (sp->length == 0)) { 7232 if (sp->sender_all_done) { 7233 /* 7234 * We are doing deferred cleanup. Last time through 7235 * when we took all the data the sender_all_done was 7236 * not set. 7237 */ 7238 if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) { 7239 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 7240 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n", 7241 sp->sender_all_done, 7242 sp->length, 7243 sp->msg_is_complete, 7244 sp->put_last_out); 7245 } 7246 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7247 TAILQ_REMOVE(&strq->outqueue, sp, next); 7248 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp); 7249 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7250 (strq->chunks_on_queues == 0) && 7251 TAILQ_EMPTY(&strq->outqueue)) { 7252 stcb->asoc.trigger_reset = 1; 7253 } 7254 if (sp->net) { 7255 sctp_free_remote_addr(sp->net); 7256 sp->net = NULL; 7257 } 7258 if (sp->data) { 7259 sctp_m_freem(sp->data); 7260 sp->data = NULL; 7261 } 7262 sctp_free_a_strmoq(stcb, sp, so_locked); 7263 /* back to get the next msg */ 7264 goto one_more_time; 7265 } else { 7266 /* 7267 * sender just finished this but still holds a 7268 * reference 7269 */ 7270 *giveup = 1; 7271 to_move = 0; 7272 goto out_of; 7273 } 7274 } else { 7275 /* is there some to get */ 7276 if (sp->length == 0) { 7277 /* no */ 7278 *giveup = 1; 7279 to_move = 0; 7280 goto out_of; 7281 } else if (sp->discard_rest) { 7282 /* Whack down the size */ 7283 atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length); 7284 if ((stcb->sctp_socket != NULL) && 7285 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 7286 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 7287 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length); 7288 } 7289 if (sp->data) { 7290 sctp_m_freem(sp->data); 7291 sp->data = NULL; 7292 sp->tail_mbuf = NULL; 7293 } 7294 sp->length = 0; 7295 sp->some_taken = 1; 7296 *giveup = 1; 7297 to_move = 0; 7298 goto out_of; 7299 } 7300 } 7301 some_taken = sp->some_taken; 7302 length = sp->length; 7303 if (sp->msg_is_complete) { 7304 /* The message is complete */ 7305 to_move = min(length, frag_point); 7306 if (to_move == length) { 7307 /* All of it fits in the MTU */ 7308 if (sp->some_taken) { 7309 rcv_flags |= SCTP_DATA_LAST_FRAG; 7310 } else { 7311 rcv_flags |= SCTP_DATA_NOT_FRAG; 7312 } 7313 sp->put_last_out = 1; 7314 if (sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) { 7315 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7316 } 7317 } else { 7318 /* Not all of it fits, we fragment */ 7319 if (sp->some_taken == 0) { 7320 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7321 } 7322 sp->some_taken = 1; 7323 } 7324 } else { 7325 to_move = sctp_can_we_split_this(stcb, length, space_left, frag_point, eeor_mode); 7326 if (to_move > 0) { 7327 if (to_move >= length) { 7328 to_move = length; 7329 } 7330 if (sp->some_taken == 0) { 7331 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7332 sp->some_taken = 1; 7333 } 7334 } else { 7335 /* Nothing to take. */ 7336 *giveup = 1; 7337 to_move = 0; 7338 goto out_of; 7339 } 7340 } 7341 7342 /* If we reach here, we can copy out a chunk */ 7343 sctp_alloc_a_chunk(stcb, chk); 7344 if (chk == NULL) { 7345 /* No chunk memory */ 7346 *giveup = 1; 7347 to_move = 0; 7348 goto out_of; 7349 } 7350 /* 7351 * Setup for unordered if needed by looking at the user sent info 7352 * flags. 7353 */ 7354 if (sp->sinfo_flags & SCTP_UNORDERED) { 7355 rcv_flags |= SCTP_DATA_UNORDERED; 7356 } 7357 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 7358 (sp->sinfo_flags & SCTP_EOF) == SCTP_EOF) { 7359 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7360 } 7361 /* clear out the chunk before setting up */ 7362 memset(chk, 0, sizeof(*chk)); 7363 chk->rec.data.rcv_flags = rcv_flags; 7364 7365 if (to_move >= length) { 7366 /* we think we can steal the whole thing */ 7367 if (to_move < sp->length) { 7368 /* bail, it changed */ 7369 goto dont_do_it; 7370 } 7371 chk->data = sp->data; 7372 chk->last_mbuf = sp->tail_mbuf; 7373 /* register the stealing */ 7374 sp->data = sp->tail_mbuf = NULL; 7375 } else { 7376 struct mbuf *m; 7377 7378 dont_do_it: 7379 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT); 7380 chk->last_mbuf = NULL; 7381 if (chk->data == NULL) { 7382 sp->some_taken = some_taken; 7383 sctp_free_a_chunk(stcb, chk, so_locked); 7384 *bail = 1; 7385 to_move = 0; 7386 goto out_of; 7387 } 7388 #ifdef SCTP_MBUF_LOGGING 7389 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 7390 sctp_log_mbc(chk->data, SCTP_MBUF_ICOPY); 7391 } 7392 #endif 7393 /* Pull off the data */ 7394 m_adj(sp->data, to_move); 7395 /* Now lets work our way down and compact it */ 7396 m = sp->data; 7397 while (m && (SCTP_BUF_LEN(m) == 0)) { 7398 sp->data = SCTP_BUF_NEXT(m); 7399 SCTP_BUF_NEXT(m) = NULL; 7400 if (sp->tail_mbuf == m) { 7401 /*- 7402 * Freeing tail? TSNH since 7403 * we supposedly were taking less 7404 * than the sp->length. 7405 */ 7406 #ifdef INVARIANTS 7407 panic("Huh, freeing tail? - TSNH"); 7408 #else 7409 SCTP_PRINTF("Huh, freeing tail? - TSNH\n"); 7410 sp->tail_mbuf = sp->data = NULL; 7411 sp->length = 0; 7412 #endif 7413 } 7414 sctp_m_free(m); 7415 m = sp->data; 7416 } 7417 } 7418 if (SCTP_BUF_IS_EXTENDED(chk->data)) { 7419 chk->copy_by_ref = 1; 7420 } else { 7421 chk->copy_by_ref = 0; 7422 } 7423 /* 7424 * get last_mbuf and counts of mb usage This is ugly but hopefully 7425 * its only one mbuf. 7426 */ 7427 if (chk->last_mbuf == NULL) { 7428 chk->last_mbuf = chk->data; 7429 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) { 7430 chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf); 7431 } 7432 } 7433 7434 if (to_move > length) { 7435 /*- This should not happen either 7436 * since we always lower to_move to the size 7437 * of sp->length if its larger. 7438 */ 7439 #ifdef INVARIANTS 7440 panic("Huh, how can to_move be larger?"); 7441 #else 7442 SCTP_PRINTF("Huh, how can to_move be larger?\n"); 7443 sp->length = 0; 7444 #endif 7445 } else { 7446 atomic_subtract_int(&sp->length, to_move); 7447 } 7448 leading = SCTP_DATA_CHUNK_OVERHEAD(stcb); 7449 if (M_LEADINGSPACE(chk->data) < leading) { 7450 /* Not enough room for a chunk header, get some */ 7451 struct mbuf *m; 7452 7453 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 1, MT_DATA); 7454 if (m == NULL) { 7455 /* 7456 * we're in trouble here. _PREPEND below will free 7457 * all the data if there is no leading space, so we 7458 * must put the data back and restore. 7459 */ 7460 if (sp->data == NULL) { 7461 /* unsteal the data */ 7462 sp->data = chk->data; 7463 sp->tail_mbuf = chk->last_mbuf; 7464 } else { 7465 struct mbuf *m_tmp; 7466 7467 /* reassemble the data */ 7468 m_tmp = sp->data; 7469 sp->data = chk->data; 7470 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp; 7471 } 7472 sp->some_taken = some_taken; 7473 atomic_add_int(&sp->length, to_move); 7474 chk->data = NULL; 7475 *bail = 1; 7476 sctp_free_a_chunk(stcb, chk, so_locked); 7477 to_move = 0; 7478 goto out_of; 7479 } else { 7480 SCTP_BUF_LEN(m) = 0; 7481 SCTP_BUF_NEXT(m) = chk->data; 7482 chk->data = m; 7483 M_ALIGN(chk->data, 4); 7484 } 7485 } 7486 SCTP_BUF_PREPEND(chk->data, SCTP_DATA_CHUNK_OVERHEAD(stcb), M_NOWAIT); 7487 if (chk->data == NULL) { 7488 /* HELP, TSNH since we assured it would not above? */ 7489 #ifdef INVARIANTS 7490 panic("prepend fails HELP?"); 7491 #else 7492 SCTP_PRINTF("prepend fails HELP?\n"); 7493 sctp_free_a_chunk(stcb, chk, so_locked); 7494 #endif 7495 *bail = 1; 7496 to_move = 0; 7497 goto out_of; 7498 } 7499 sctp_snd_sb_alloc(stcb, SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7500 chk->book_size = chk->send_size = (uint16_t)(to_move + SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7501 chk->book_size_scale = 0; 7502 chk->sent = SCTP_DATAGRAM_UNSENT; 7503 7504 chk->flags = 0; 7505 chk->asoc = &stcb->asoc; 7506 chk->pad_inplace = 0; 7507 chk->no_fr_allowed = 0; 7508 if (stcb->asoc.idata_supported == 0) { 7509 if (rcv_flags & SCTP_DATA_UNORDERED) { 7510 /* Just use 0. The receiver ignores the values. */ 7511 chk->rec.data.mid = 0; 7512 } else { 7513 chk->rec.data.mid = strq->next_mid_ordered; 7514 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7515 strq->next_mid_ordered++; 7516 } 7517 } 7518 } else { 7519 if (rcv_flags & SCTP_DATA_UNORDERED) { 7520 chk->rec.data.mid = strq->next_mid_unordered; 7521 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7522 strq->next_mid_unordered++; 7523 } 7524 } else { 7525 chk->rec.data.mid = strq->next_mid_ordered; 7526 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7527 strq->next_mid_ordered++; 7528 } 7529 } 7530 } 7531 chk->rec.data.sid = sp->sid; 7532 chk->rec.data.ppid = sp->ppid; 7533 chk->rec.data.context = sp->context; 7534 chk->rec.data.doing_fast_retransmit = 0; 7535 7536 chk->rec.data.timetodrop = sp->ts; 7537 chk->flags = sp->act_flags; 7538 7539 if (sp->net) { 7540 chk->whoTo = sp->net; 7541 atomic_add_int(&chk->whoTo->ref_count, 1); 7542 } else 7543 chk->whoTo = NULL; 7544 7545 if (sp->holds_key_ref) { 7546 chk->auth_keyid = sp->auth_keyid; 7547 sctp_auth_key_acquire(stcb, chk->auth_keyid); 7548 chk->holds_key_ref = 1; 7549 } 7550 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, to_move); 7551 chk->rec.data.tsn = atomic_fetchadd_int(&asoc->sending_seq, 1); 7552 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) { 7553 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND, 7554 (uint32_t)(uintptr_t)stcb, sp->length, 7555 (uint32_t)((chk->rec.data.sid << 16) | (0x0000ffff & chk->rec.data.mid)), 7556 chk->rec.data.tsn); 7557 } 7558 if (stcb->asoc.idata_supported == 0) { 7559 dchkh = mtod(chk->data, struct sctp_data_chunk *); 7560 } else { 7561 ndchkh = mtod(chk->data, struct sctp_idata_chunk *); 7562 } 7563 /* 7564 * Put the rest of the things in place now. Size was done earlier in 7565 * previous loop prior to padding. 7566 */ 7567 7568 SCTP_TCB_LOCK_ASSERT(stcb); 7569 #ifdef SCTP_ASOCLOG_OF_TSNS 7570 if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) { 7571 asoc->tsn_out_at = 0; 7572 asoc->tsn_out_wrapped = 1; 7573 } 7574 asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.tsn; 7575 asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.sid; 7576 asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.mid; 7577 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size; 7578 asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags; 7579 asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb; 7580 asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at; 7581 asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2; 7582 asoc->tsn_out_at++; 7583 #endif 7584 if (stcb->asoc.idata_supported == 0) { 7585 dchkh->ch.chunk_type = SCTP_DATA; 7586 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7587 dchkh->dp.tsn = htonl(chk->rec.data.tsn); 7588 dchkh->dp.sid = htons(strq->sid); 7589 dchkh->dp.ssn = htons((uint16_t)chk->rec.data.mid); 7590 dchkh->dp.ppid = chk->rec.data.ppid; 7591 dchkh->ch.chunk_length = htons(chk->send_size); 7592 } else { 7593 ndchkh->ch.chunk_type = SCTP_IDATA; 7594 ndchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7595 ndchkh->dp.tsn = htonl(chk->rec.data.tsn); 7596 ndchkh->dp.sid = htons(strq->sid); 7597 ndchkh->dp.reserved = htons(0); 7598 ndchkh->dp.mid = htonl(chk->rec.data.mid); 7599 if (sp->fsn == 0) 7600 ndchkh->dp.ppid_fsn.ppid = chk->rec.data.ppid; 7601 else 7602 ndchkh->dp.ppid_fsn.fsn = htonl(sp->fsn); 7603 sp->fsn++; 7604 ndchkh->ch.chunk_length = htons(chk->send_size); 7605 } 7606 /* Now advance the chk->send_size by the actual pad needed. */ 7607 if (chk->send_size < SCTP_SIZE32(chk->book_size)) { 7608 /* need a pad */ 7609 struct mbuf *lm; 7610 int pads; 7611 7612 pads = SCTP_SIZE32(chk->book_size) - chk->send_size; 7613 lm = sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf); 7614 if (lm != NULL) { 7615 chk->last_mbuf = lm; 7616 chk->pad_inplace = 1; 7617 } 7618 chk->send_size += pads; 7619 } 7620 if (PR_SCTP_ENABLED(chk->flags)) { 7621 asoc->pr_sctp_cnt++; 7622 } 7623 if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) { 7624 /* All done pull and kill the message */ 7625 if (sp->put_last_out == 0) { 7626 SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n"); 7627 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d\n", 7628 sp->sender_all_done, 7629 sp->length, 7630 sp->msg_is_complete, 7631 sp->put_last_out); 7632 } 7633 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7634 TAILQ_REMOVE(&strq->outqueue, sp, next); 7635 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp); 7636 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7637 (strq->chunks_on_queues == 0) && 7638 TAILQ_EMPTY(&strq->outqueue)) { 7639 stcb->asoc.trigger_reset = 1; 7640 } 7641 if (sp->net) { 7642 sctp_free_remote_addr(sp->net); 7643 sp->net = NULL; 7644 } 7645 if (sp->data) { 7646 sctp_m_freem(sp->data); 7647 sp->data = NULL; 7648 } 7649 sctp_free_a_strmoq(stcb, sp, so_locked); 7650 } 7651 asoc->chunks_on_out_queue++; 7652 strq->chunks_on_queues++; 7653 TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next); 7654 asoc->send_queue_cnt++; 7655 out_of: 7656 return (to_move); 7657 } 7658 7659 static void 7660 sctp_fill_outqueue(struct sctp_tcb *stcb, struct sctp_nets *net, 7661 uint32_t frag_point, int eeor_mode, int *quit_now, 7662 int so_locked) 7663 { 7664 struct sctp_association *asoc; 7665 struct sctp_stream_out *strq; 7666 uint32_t space_left, moved, total_moved; 7667 int bail, giveup; 7668 7669 SCTP_TCB_LOCK_ASSERT(stcb); 7670 asoc = &stcb->asoc; 7671 total_moved = 0; 7672 switch (net->ro._l_addr.sa.sa_family) { 7673 #ifdef INET 7674 case AF_INET: 7675 space_left = net->mtu - SCTP_MIN_V4_OVERHEAD; 7676 break; 7677 #endif 7678 #ifdef INET6 7679 case AF_INET6: 7680 space_left = net->mtu - SCTP_MIN_OVERHEAD; 7681 break; 7682 #endif 7683 default: 7684 /* TSNH */ 7685 space_left = net->mtu; 7686 break; 7687 } 7688 /* Need an allowance for the data chunk header too */ 7689 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7690 7691 /* must make even word boundary */ 7692 space_left &= 0xfffffffc; 7693 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7694 giveup = 0; 7695 bail = 0; 7696 while ((space_left > 0) && (strq != NULL)) { 7697 moved = sctp_move_to_outqueue(stcb, net, strq, space_left, 7698 frag_point, &giveup, eeor_mode, 7699 &bail, so_locked); 7700 if ((giveup != 0) || (bail != 0)) { 7701 break; 7702 } 7703 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7704 total_moved += moved; 7705 if (space_left >= moved) { 7706 space_left -= moved; 7707 } else { 7708 space_left = 0; 7709 } 7710 if (space_left >= SCTP_DATA_CHUNK_OVERHEAD(stcb)) { 7711 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7712 } else { 7713 space_left = 0; 7714 } 7715 space_left &= 0xfffffffc; 7716 } 7717 if (bail != 0) 7718 *quit_now = 1; 7719 7720 stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc); 7721 7722 if (total_moved == 0) { 7723 if ((stcb->asoc.sctp_cmt_on_off == 0) && 7724 (net == stcb->asoc.primary_destination)) { 7725 /* ran dry for primary network net */ 7726 SCTP_STAT_INCR(sctps_primary_randry); 7727 } else if (stcb->asoc.sctp_cmt_on_off > 0) { 7728 /* ran dry with CMT on */ 7729 SCTP_STAT_INCR(sctps_cmt_randry); 7730 } 7731 } 7732 } 7733 7734 void 7735 sctp_fix_ecn_echo(struct sctp_association *asoc) 7736 { 7737 struct sctp_tmit_chunk *chk; 7738 7739 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7740 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 7741 chk->sent = SCTP_DATAGRAM_UNSENT; 7742 } 7743 } 7744 } 7745 7746 void 7747 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net) 7748 { 7749 struct sctp_association *asoc; 7750 struct sctp_tmit_chunk *chk; 7751 struct sctp_stream_queue_pending *sp; 7752 unsigned int i; 7753 7754 if (net == NULL) { 7755 return; 7756 } 7757 asoc = &stcb->asoc; 7758 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 7759 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 7760 if (sp->net == net) { 7761 sctp_free_remote_addr(sp->net); 7762 sp->net = NULL; 7763 } 7764 } 7765 } 7766 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7767 if (chk->whoTo == net) { 7768 sctp_free_remote_addr(chk->whoTo); 7769 chk->whoTo = NULL; 7770 } 7771 } 7772 } 7773 7774 int 7775 sctp_med_chunk_output(struct sctp_inpcb *inp, 7776 struct sctp_tcb *stcb, 7777 struct sctp_association *asoc, 7778 int *num_out, 7779 int *reason_code, 7780 int control_only, int from_where, 7781 struct timeval *now, int *now_filled, 7782 uint32_t frag_point, int so_locked) 7783 { 7784 /** 7785 * Ok this is the generic chunk service queue. we must do the 7786 * following: 7787 * - Service the stream queue that is next, moving any 7788 * message (note I must get a complete message i.e. FIRST/MIDDLE and 7789 * LAST to the out queue in one pass) and assigning TSN's. This 7790 * only applies though if the peer does not support NDATA. For NDATA 7791 * chunks its ok to not send the entire message ;-) 7792 * - Check to see if the cwnd/rwnd allows any output, if so we go ahead and 7793 * formulate and send the low level chunks. Making sure to combine 7794 * any control in the control chunk queue also. 7795 */ 7796 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; 7797 struct mbuf *outchain, *endoutchain; 7798 struct sctp_tmit_chunk *chk, *nchk; 7799 7800 /* temp arrays for unlinking */ 7801 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 7802 int no_fragmentflg, error; 7803 unsigned int max_rwnd_per_dest, max_send_per_dest; 7804 int one_chunk, hbflag, skip_data_for_this_net; 7805 int asconf, cookie, no_out_cnt; 7806 int bundle_at, ctl_cnt, no_data_chunks, eeor_mode; 7807 unsigned int mtu, r_mtu, omtu, mx_mtu, to_out; 7808 int tsns_sent = 0; 7809 uint32_t auth_offset; 7810 struct sctp_auth_chunk *auth; 7811 uint16_t auth_keyid; 7812 int override_ok = 1; 7813 int skip_fill_up = 0; 7814 int data_auth_reqd = 0; 7815 7816 /* 7817 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the 7818 * destination. 7819 */ 7820 int quit_now = 0; 7821 bool use_zero_crc; 7822 7823 *num_out = 0; 7824 *reason_code = 0; 7825 auth_keyid = stcb->asoc.authinfo.active_keyid; 7826 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) || 7827 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 7828 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 7829 eeor_mode = 1; 7830 } else { 7831 eeor_mode = 0; 7832 } 7833 ctl_cnt = no_out_cnt = asconf = cookie = 0; 7834 /* 7835 * First lets prime the pump. For each destination, if there is room 7836 * in the flight size, attempt to pull an MTU's worth out of the 7837 * stream queues into the general send_queue 7838 */ 7839 #ifdef SCTP_AUDITING_ENABLED 7840 sctp_audit_log(0xC2, 2); 7841 #endif 7842 SCTP_TCB_LOCK_ASSERT(stcb); 7843 hbflag = 0; 7844 if (control_only) 7845 no_data_chunks = 1; 7846 else 7847 no_data_chunks = 0; 7848 7849 /* Nothing to possible to send? */ 7850 if ((TAILQ_EMPTY(&asoc->control_send_queue) || 7851 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) && 7852 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7853 TAILQ_EMPTY(&asoc->send_queue) && 7854 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 7855 nothing_to_send: 7856 *reason_code = 9; 7857 return (0); 7858 } 7859 if (asoc->peers_rwnd == 0) { 7860 /* No room in peers rwnd */ 7861 *reason_code = 1; 7862 if (asoc->total_flight > 0) { 7863 /* we are allowed one chunk in flight */ 7864 no_data_chunks = 1; 7865 } 7866 } 7867 if (stcb->asoc.ecn_echo_cnt_onq) { 7868 /* Record where a sack goes, if any */ 7869 if (no_data_chunks && 7870 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) { 7871 /* Nothing but ECNe to send - we don't do that */ 7872 goto nothing_to_send; 7873 } 7874 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7875 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7876 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 7877 sack_goes_to = chk->whoTo; 7878 break; 7879 } 7880 } 7881 } 7882 max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets); 7883 if (stcb->sctp_socket) 7884 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets; 7885 else 7886 max_send_per_dest = 0; 7887 if (no_data_chunks == 0) { 7888 /* How many non-directed chunks are there? */ 7889 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7890 if (chk->whoTo == NULL) { 7891 /* 7892 * We already have non-directed chunks on 7893 * the queue, no need to do a fill-up. 7894 */ 7895 skip_fill_up = 1; 7896 break; 7897 } 7898 } 7899 } 7900 if ((no_data_chunks == 0) && 7901 (skip_fill_up == 0) && 7902 (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) { 7903 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 7904 /* 7905 * This for loop we are in takes in each net, if 7906 * its's got space in cwnd and has data sent to it 7907 * (when CMT is off) then it calls 7908 * sctp_fill_outqueue for the net. This gets data on 7909 * the send queue for that network. 7910 * 7911 * In sctp_fill_outqueue TSN's are assigned and data 7912 * is copied out of the stream buffers. Note mostly 7913 * copy by reference (we hope). 7914 */ 7915 net->window_probe = 0; 7916 if ((net != stcb->asoc.alternate) && 7917 ((net->dest_state & SCTP_ADDR_PF) || 7918 ((net->dest_state & SCTP_ADDR_REACHABLE) == 0) || 7919 (net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 7920 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7921 sctp_log_cwnd(stcb, net, 1, 7922 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7923 } 7924 continue; 7925 } 7926 if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) && 7927 (net->flight_size == 0)) { 7928 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net); 7929 } 7930 if (net->flight_size >= net->cwnd) { 7931 /* skip this network, no room - can't fill */ 7932 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7933 sctp_log_cwnd(stcb, net, 3, 7934 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7935 } 7936 continue; 7937 } 7938 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7939 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7940 } 7941 sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked); 7942 if (quit_now) { 7943 /* memory alloc failure */ 7944 no_data_chunks = 1; 7945 break; 7946 } 7947 } 7948 } 7949 /* now service each destination and send out what we can for it */ 7950 /* Nothing to send? */ 7951 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7952 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7953 TAILQ_EMPTY(&asoc->send_queue)) { 7954 *reason_code = 8; 7955 return (0); 7956 } 7957 7958 if (asoc->sctp_cmt_on_off > 0) { 7959 /* get the last start point */ 7960 start_at = asoc->last_net_cmt_send_started; 7961 if (start_at == NULL) { 7962 /* null so to beginning */ 7963 start_at = TAILQ_FIRST(&asoc->nets); 7964 } else { 7965 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next); 7966 if (start_at == NULL) { 7967 start_at = TAILQ_FIRST(&asoc->nets); 7968 } 7969 } 7970 asoc->last_net_cmt_send_started = start_at; 7971 } else { 7972 start_at = TAILQ_FIRST(&asoc->nets); 7973 } 7974 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7975 if (chk->whoTo == NULL) { 7976 if (asoc->alternate) { 7977 chk->whoTo = asoc->alternate; 7978 } else { 7979 chk->whoTo = asoc->primary_destination; 7980 } 7981 atomic_add_int(&chk->whoTo->ref_count, 1); 7982 } 7983 } 7984 old_start_at = NULL; 7985 again_one_more_time: 7986 for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) { 7987 /* how much can we send? */ 7988 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */ 7989 if (old_start_at && (old_start_at == net)) { 7990 /* through list completely. */ 7991 break; 7992 } 7993 tsns_sent = 0xa; 7994 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7995 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7996 (net->flight_size >= net->cwnd)) { 7997 /* 7998 * Nothing on control or asconf and flight is full, 7999 * we can skip even in the CMT case. 8000 */ 8001 continue; 8002 } 8003 bundle_at = 0; 8004 endoutchain = outchain = NULL; 8005 auth = NULL; 8006 auth_offset = 0; 8007 no_fragmentflg = 1; 8008 one_chunk = 0; 8009 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 8010 skip_data_for_this_net = 1; 8011 } else { 8012 skip_data_for_this_net = 0; 8013 } 8014 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8015 #ifdef INET 8016 case AF_INET: 8017 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8018 break; 8019 #endif 8020 #ifdef INET6 8021 case AF_INET6: 8022 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8023 break; 8024 #endif 8025 default: 8026 /* TSNH */ 8027 mtu = net->mtu; 8028 break; 8029 } 8030 mx_mtu = mtu; 8031 to_out = 0; 8032 if (mtu > asoc->peers_rwnd) { 8033 if (asoc->total_flight > 0) { 8034 /* We have a packet in flight somewhere */ 8035 r_mtu = asoc->peers_rwnd; 8036 } else { 8037 /* We are always allowed to send one MTU out */ 8038 one_chunk = 1; 8039 r_mtu = mtu; 8040 } 8041 } else { 8042 r_mtu = mtu; 8043 } 8044 error = 0; 8045 /************************/ 8046 /* ASCONF transmission */ 8047 /************************/ 8048 /* Now first lets go through the asconf queue */ 8049 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 8050 if (chk->rec.chunk_id.id != SCTP_ASCONF) { 8051 continue; 8052 } 8053 if (chk->whoTo == NULL) { 8054 if (asoc->alternate == NULL) { 8055 if (asoc->primary_destination != net) { 8056 break; 8057 } 8058 } else { 8059 if (asoc->alternate != net) { 8060 break; 8061 } 8062 } 8063 } else { 8064 if (chk->whoTo != net) { 8065 break; 8066 } 8067 } 8068 if (chk->data == NULL) { 8069 break; 8070 } 8071 if (chk->sent != SCTP_DATAGRAM_UNSENT && 8072 chk->sent != SCTP_DATAGRAM_RESEND) { 8073 break; 8074 } 8075 /* 8076 * if no AUTH is yet included and this chunk 8077 * requires it, make sure to account for it. We 8078 * don't apply the size until the AUTH chunk is 8079 * actually added below in case there is no room for 8080 * this chunk. NOTE: we overload the use of "omtu" 8081 * here 8082 */ 8083 if ((auth == NULL) && 8084 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8085 stcb->asoc.peer_auth_chunks)) { 8086 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8087 } else 8088 omtu = 0; 8089 /* Here we do NOT factor the r_mtu */ 8090 if ((chk->send_size < (int)(mtu - omtu)) || 8091 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8092 /* 8093 * We probably should glom the mbuf chain 8094 * from the chk->data for control but the 8095 * problem is it becomes yet one more level 8096 * of tracking to do if for some reason 8097 * output fails. Then I have got to 8098 * reconstruct the merged control chain.. el 8099 * yucko.. for now we take the easy way and 8100 * do the copy 8101 */ 8102 /* 8103 * Add an AUTH chunk, if chunk requires it 8104 * save the offset into the chain for AUTH 8105 */ 8106 if ((auth == NULL) && 8107 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8108 stcb->asoc.peer_auth_chunks))) { 8109 outchain = sctp_add_auth_chunk(outchain, 8110 &endoutchain, 8111 &auth, 8112 &auth_offset, 8113 stcb, 8114 chk->rec.chunk_id.id); 8115 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8116 } 8117 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8118 (int)chk->rec.chunk_id.can_take_data, 8119 chk->send_size, chk->copy_by_ref); 8120 if (outchain == NULL) { 8121 *reason_code = 8; 8122 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8123 return (ENOMEM); 8124 } 8125 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8126 /* update our MTU size */ 8127 if (mtu > (chk->send_size + omtu)) 8128 mtu -= (chk->send_size + omtu); 8129 else 8130 mtu = 0; 8131 to_out += (chk->send_size + omtu); 8132 /* Do clear IP_DF ? */ 8133 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8134 no_fragmentflg = 0; 8135 } 8136 if (chk->rec.chunk_id.can_take_data) 8137 chk->data = NULL; 8138 /* 8139 * set hb flag since we can use these for 8140 * RTO 8141 */ 8142 hbflag = 1; 8143 asconf = 1; 8144 /* 8145 * should sysctl this: don't bundle data 8146 * with ASCONF since it requires AUTH 8147 */ 8148 no_data_chunks = 1; 8149 chk->sent = SCTP_DATAGRAM_SENT; 8150 if (chk->whoTo == NULL) { 8151 chk->whoTo = net; 8152 atomic_add_int(&net->ref_count, 1); 8153 } 8154 chk->snd_count++; 8155 if (mtu == 0) { 8156 /* 8157 * Ok we are out of room but we can 8158 * output without effecting the 8159 * flight size since this little guy 8160 * is a control only packet. 8161 */ 8162 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8163 /* 8164 * do NOT clear the asconf flag as 8165 * it is used to do appropriate 8166 * source address selection. 8167 */ 8168 if (*now_filled == 0) { 8169 (void)SCTP_GETTIME_TIMEVAL(now); 8170 *now_filled = 1; 8171 } 8172 net->last_sent_time = *now; 8173 hbflag = 0; 8174 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8175 (struct sockaddr *)&net->ro._l_addr, 8176 outchain, auth_offset, auth, 8177 stcb->asoc.authinfo.active_keyid, 8178 no_fragmentflg, 0, asconf, 8179 inp->sctp_lport, stcb->rport, 8180 htonl(stcb->asoc.peer_vtag), 8181 net->port, NULL, 8182 0, 0, 8183 false, so_locked))) { 8184 /* 8185 * error, we could not 8186 * output 8187 */ 8188 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8189 if (from_where == 0) { 8190 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8191 } 8192 if (error == ENOBUFS) { 8193 asoc->ifp_had_enobuf = 1; 8194 SCTP_STAT_INCR(sctps_lowlevelerr); 8195 } 8196 /* error, could not output */ 8197 if (error == EHOSTUNREACH) { 8198 /* 8199 * Destination went 8200 * unreachable 8201 * during this send 8202 */ 8203 sctp_move_chunks_from_net(stcb, net); 8204 } 8205 asconf = 0; 8206 *reason_code = 7; 8207 break; 8208 } else { 8209 asoc->ifp_had_enobuf = 0; 8210 } 8211 /* 8212 * increase the number we sent, if a 8213 * cookie is sent we don't tell them 8214 * any was sent out. 8215 */ 8216 outchain = endoutchain = NULL; 8217 auth = NULL; 8218 auth_offset = 0; 8219 asconf = 0; 8220 if (!no_out_cnt) 8221 *num_out += ctl_cnt; 8222 /* recalc a clean slate and setup */ 8223 switch (net->ro._l_addr.sa.sa_family) { 8224 #ifdef INET 8225 case AF_INET: 8226 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8227 break; 8228 #endif 8229 #ifdef INET6 8230 case AF_INET6: 8231 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8232 break; 8233 #endif 8234 default: 8235 /* TSNH */ 8236 mtu = net->mtu; 8237 break; 8238 } 8239 to_out = 0; 8240 no_fragmentflg = 1; 8241 } 8242 } 8243 } 8244 if (error != 0) { 8245 /* try next net */ 8246 continue; 8247 } 8248 /************************/ 8249 /* Control transmission */ 8250 /************************/ 8251 /* Now first lets go through the control queue */ 8252 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 8253 if ((sack_goes_to) && 8254 (chk->rec.chunk_id.id == SCTP_ECN_ECHO) && 8255 (chk->whoTo != sack_goes_to)) { 8256 /* 8257 * if we have a sack in queue, and we are 8258 * looking at an ecn echo that is NOT queued 8259 * to where the sack is going.. 8260 */ 8261 if (chk->whoTo == net) { 8262 /* 8263 * Don't transmit it to where its 8264 * going (current net) 8265 */ 8266 continue; 8267 } else if (sack_goes_to == net) { 8268 /* 8269 * But do transmit it to this 8270 * address 8271 */ 8272 goto skip_net_check; 8273 } 8274 } 8275 if (chk->whoTo == NULL) { 8276 if (asoc->alternate == NULL) { 8277 if (asoc->primary_destination != net) { 8278 continue; 8279 } 8280 } else { 8281 if (asoc->alternate != net) { 8282 continue; 8283 } 8284 } 8285 } else { 8286 if (chk->whoTo != net) { 8287 continue; 8288 } 8289 } 8290 skip_net_check: 8291 if (chk->data == NULL) { 8292 continue; 8293 } 8294 if (chk->sent != SCTP_DATAGRAM_UNSENT) { 8295 /* 8296 * It must be unsent. Cookies and ASCONF's 8297 * hang around but there timers will force 8298 * when marked for resend. 8299 */ 8300 continue; 8301 } 8302 /* 8303 * if no AUTH is yet included and this chunk 8304 * requires it, make sure to account for it. We 8305 * don't apply the size until the AUTH chunk is 8306 * actually added below in case there is no room for 8307 * this chunk. NOTE: we overload the use of "omtu" 8308 * here 8309 */ 8310 if ((auth == NULL) && 8311 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8312 stcb->asoc.peer_auth_chunks)) { 8313 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8314 } else 8315 omtu = 0; 8316 /* Here we do NOT factor the r_mtu */ 8317 if ((chk->send_size <= (int)(mtu - omtu)) || 8318 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8319 /* 8320 * We probably should glom the mbuf chain 8321 * from the chk->data for control but the 8322 * problem is it becomes yet one more level 8323 * of tracking to do if for some reason 8324 * output fails. Then I have got to 8325 * reconstruct the merged control chain.. el 8326 * yucko.. for now we take the easy way and 8327 * do the copy 8328 */ 8329 /* 8330 * Add an AUTH chunk, if chunk requires it 8331 * save the offset into the chain for AUTH 8332 */ 8333 if ((auth == NULL) && 8334 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8335 stcb->asoc.peer_auth_chunks))) { 8336 outchain = sctp_add_auth_chunk(outchain, 8337 &endoutchain, 8338 &auth, 8339 &auth_offset, 8340 stcb, 8341 chk->rec.chunk_id.id); 8342 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8343 } 8344 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8345 (int)chk->rec.chunk_id.can_take_data, 8346 chk->send_size, chk->copy_by_ref); 8347 if (outchain == NULL) { 8348 *reason_code = 8; 8349 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8350 return (ENOMEM); 8351 } 8352 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8353 /* update our MTU size */ 8354 if (mtu > (chk->send_size + omtu)) 8355 mtu -= (chk->send_size + omtu); 8356 else 8357 mtu = 0; 8358 to_out += (chk->send_size + omtu); 8359 /* Do clear IP_DF ? */ 8360 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8361 no_fragmentflg = 0; 8362 } 8363 if (chk->rec.chunk_id.can_take_data) 8364 chk->data = NULL; 8365 /* Mark things to be removed, if needed */ 8366 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8367 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 8368 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 8369 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 8370 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 8371 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 8372 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 8373 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 8374 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 8375 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 8376 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 8377 if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) { 8378 hbflag = 1; 8379 } 8380 /* remove these chunks at the end */ 8381 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8382 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 8383 /* turn off the timer */ 8384 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 8385 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 8386 inp, stcb, NULL, 8387 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1); 8388 } 8389 } 8390 ctl_cnt++; 8391 } else { 8392 /* 8393 * Other chunks, since they have 8394 * timers running (i.e. COOKIE) we 8395 * just "trust" that it gets sent or 8396 * retransmitted. 8397 */ 8398 ctl_cnt++; 8399 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 8400 cookie = 1; 8401 no_out_cnt = 1; 8402 } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 8403 /* 8404 * Increment ecne send count 8405 * here this means we may be 8406 * over-zealous in our 8407 * counting if the send 8408 * fails, but its the best 8409 * place to do it (we used 8410 * to do it in the queue of 8411 * the chunk, but that did 8412 * not tell how many times 8413 * it was sent. 8414 */ 8415 SCTP_STAT_INCR(sctps_sendecne); 8416 } 8417 chk->sent = SCTP_DATAGRAM_SENT; 8418 if (chk->whoTo == NULL) { 8419 chk->whoTo = net; 8420 atomic_add_int(&net->ref_count, 1); 8421 } 8422 chk->snd_count++; 8423 } 8424 if (mtu == 0) { 8425 /* 8426 * Ok we are out of room but we can 8427 * output without effecting the 8428 * flight size since this little guy 8429 * is a control only packet. 8430 */ 8431 use_zero_crc = asoc->zero_checksum == 2; 8432 if (asconf) { 8433 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8434 use_zero_crc = false; 8435 /* 8436 * do NOT clear the asconf 8437 * flag as it is used to do 8438 * appropriate source 8439 * address selection. 8440 */ 8441 } 8442 if (cookie) { 8443 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8444 use_zero_crc = false; 8445 cookie = 0; 8446 } 8447 /* Only HB or ASCONF advances time */ 8448 if (hbflag) { 8449 if (*now_filled == 0) { 8450 (void)SCTP_GETTIME_TIMEVAL(now); 8451 *now_filled = 1; 8452 } 8453 net->last_sent_time = *now; 8454 hbflag = 0; 8455 } 8456 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8457 (struct sockaddr *)&net->ro._l_addr, 8458 outchain, 8459 auth_offset, auth, 8460 stcb->asoc.authinfo.active_keyid, 8461 no_fragmentflg, 0, asconf, 8462 inp->sctp_lport, stcb->rport, 8463 htonl(stcb->asoc.peer_vtag), 8464 net->port, NULL, 8465 0, 0, 8466 use_zero_crc, so_locked))) { 8467 /* 8468 * error, we could not 8469 * output 8470 */ 8471 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8472 if (from_where == 0) { 8473 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8474 } 8475 if (error == ENOBUFS) { 8476 asoc->ifp_had_enobuf = 1; 8477 SCTP_STAT_INCR(sctps_lowlevelerr); 8478 } 8479 if (error == EHOSTUNREACH) { 8480 /* 8481 * Destination went 8482 * unreachable 8483 * during this send 8484 */ 8485 sctp_move_chunks_from_net(stcb, net); 8486 } 8487 asconf = 0; 8488 *reason_code = 7; 8489 break; 8490 } else { 8491 asoc->ifp_had_enobuf = 0; 8492 } 8493 /* 8494 * increase the number we sent, if a 8495 * cookie is sent we don't tell them 8496 * any was sent out. 8497 */ 8498 outchain = endoutchain = NULL; 8499 auth = NULL; 8500 auth_offset = 0; 8501 asconf = 0; 8502 if (!no_out_cnt) 8503 *num_out += ctl_cnt; 8504 /* recalc a clean slate and setup */ 8505 switch (net->ro._l_addr.sa.sa_family) { 8506 #ifdef INET 8507 case AF_INET: 8508 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8509 break; 8510 #endif 8511 #ifdef INET6 8512 case AF_INET6: 8513 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8514 break; 8515 #endif 8516 default: 8517 /* TSNH */ 8518 mtu = net->mtu; 8519 break; 8520 } 8521 to_out = 0; 8522 no_fragmentflg = 1; 8523 } 8524 } 8525 } 8526 if (error != 0) { 8527 /* try next net */ 8528 continue; 8529 } 8530 /* JRI: if dest is in PF state, do not send data to it */ 8531 if ((asoc->sctp_cmt_on_off > 0) && 8532 (net != stcb->asoc.alternate) && 8533 (net->dest_state & SCTP_ADDR_PF)) { 8534 goto no_data_fill; 8535 } 8536 if (net->flight_size >= net->cwnd) { 8537 goto no_data_fill; 8538 } 8539 if ((asoc->sctp_cmt_on_off > 0) && 8540 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) && 8541 (net->flight_size > max_rwnd_per_dest)) { 8542 goto no_data_fill; 8543 } 8544 /* 8545 * We need a specific accounting for the usage of the send 8546 * buffer. We also need to check the number of messages per 8547 * net. For now, this is better than nothing and it disabled 8548 * by default... 8549 */ 8550 if ((asoc->sctp_cmt_on_off > 0) && 8551 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) && 8552 (max_send_per_dest > 0) && 8553 (net->flight_size > max_send_per_dest)) { 8554 goto no_data_fill; 8555 } 8556 /*********************/ 8557 /* Data transmission */ 8558 /*********************/ 8559 /* 8560 * if AUTH for DATA is required and no AUTH has been added 8561 * yet, account for this in the mtu now... if no data can be 8562 * bundled, this adjustment won't matter anyways since the 8563 * packet will be going out... 8564 */ 8565 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, 8566 stcb->asoc.peer_auth_chunks); 8567 if (data_auth_reqd && (auth == NULL)) { 8568 mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8569 } 8570 /* now lets add any data within the MTU constraints */ 8571 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8572 #ifdef INET 8573 case AF_INET: 8574 if (net->mtu > SCTP_MIN_V4_OVERHEAD) 8575 omtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8576 else 8577 omtu = 0; 8578 break; 8579 #endif 8580 #ifdef INET6 8581 case AF_INET6: 8582 if (net->mtu > SCTP_MIN_OVERHEAD) 8583 omtu = net->mtu - SCTP_MIN_OVERHEAD; 8584 else 8585 omtu = 0; 8586 break; 8587 #endif 8588 default: 8589 /* TSNH */ 8590 omtu = 0; 8591 break; 8592 } 8593 if ((((SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) || 8594 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED)) && 8595 (skip_data_for_this_net == 0)) || 8596 (cookie)) { 8597 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 8598 if (no_data_chunks) { 8599 /* let only control go out */ 8600 *reason_code = 1; 8601 break; 8602 } 8603 if (net->flight_size >= net->cwnd) { 8604 /* skip this net, no room for data */ 8605 *reason_code = 2; 8606 break; 8607 } 8608 if ((chk->whoTo != NULL) && 8609 (chk->whoTo != net)) { 8610 /* Don't send the chunk on this net */ 8611 continue; 8612 } 8613 8614 if (asoc->sctp_cmt_on_off == 0) { 8615 if ((asoc->alternate) && 8616 (asoc->alternate != net) && 8617 (chk->whoTo == NULL)) { 8618 continue; 8619 } else if ((net != asoc->primary_destination) && 8620 (asoc->alternate == NULL) && 8621 (chk->whoTo == NULL)) { 8622 continue; 8623 } 8624 } 8625 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) { 8626 /*- 8627 * strange, we have a chunk that is 8628 * to big for its destination and 8629 * yet no fragment ok flag. 8630 * Something went wrong when the 8631 * PMTU changed...we did not mark 8632 * this chunk for some reason?? I 8633 * will fix it here by letting IP 8634 * fragment it for now and printing 8635 * a warning. This really should not 8636 * happen ... 8637 */ 8638 SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n", 8639 chk->send_size, mtu); 8640 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 8641 } 8642 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 8643 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 8644 struct sctp_data_chunk *dchkh; 8645 8646 dchkh = mtod(chk->data, struct sctp_data_chunk *); 8647 dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY; 8648 } 8649 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || 8650 ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) { 8651 /* ok we will add this one */ 8652 8653 /* 8654 * Add an AUTH chunk, if chunk 8655 * requires it, save the offset into 8656 * the chain for AUTH 8657 */ 8658 if (data_auth_reqd) { 8659 if (auth == NULL) { 8660 outchain = sctp_add_auth_chunk(outchain, 8661 &endoutchain, 8662 &auth, 8663 &auth_offset, 8664 stcb, 8665 SCTP_DATA); 8666 auth_keyid = chk->auth_keyid; 8667 override_ok = 0; 8668 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8669 } else if (override_ok) { 8670 /* 8671 * use this data's 8672 * keyid 8673 */ 8674 auth_keyid = chk->auth_keyid; 8675 override_ok = 0; 8676 } else if (auth_keyid != chk->auth_keyid) { 8677 /* 8678 * different keyid, 8679 * so done bundling 8680 */ 8681 break; 8682 } 8683 } 8684 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0, 8685 chk->send_size, chk->copy_by_ref); 8686 if (outchain == NULL) { 8687 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n"); 8688 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 8689 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8690 } 8691 *reason_code = 3; 8692 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8693 return (ENOMEM); 8694 } 8695 /* update our MTU size */ 8696 /* Do clear IP_DF ? */ 8697 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8698 no_fragmentflg = 0; 8699 } 8700 /* unsigned subtraction of mtu */ 8701 if (mtu > chk->send_size) 8702 mtu -= chk->send_size; 8703 else 8704 mtu = 0; 8705 /* unsigned subtraction of r_mtu */ 8706 if (r_mtu > chk->send_size) 8707 r_mtu -= chk->send_size; 8708 else 8709 r_mtu = 0; 8710 8711 to_out += chk->send_size; 8712 if ((to_out > mx_mtu) && no_fragmentflg) { 8713 #ifdef INVARIANTS 8714 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out); 8715 #else 8716 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n", 8717 mx_mtu, to_out); 8718 #endif 8719 } 8720 chk->window_probe = 0; 8721 data_list[bundle_at++] = chk; 8722 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 8723 break; 8724 } 8725 if (chk->sent == SCTP_DATAGRAM_UNSENT) { 8726 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) { 8727 SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks); 8728 } else { 8729 SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks); 8730 } 8731 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) && 8732 ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0)) 8733 /* 8734 * Count number of 8735 * user msg's that 8736 * were fragmented 8737 * we do this by 8738 * counting when we 8739 * see a LAST 8740 * fragment only. 8741 */ 8742 SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs); 8743 } 8744 if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) { 8745 if ((one_chunk) && (stcb->asoc.total_flight == 0)) { 8746 data_list[0]->window_probe = 1; 8747 net->window_probe = 1; 8748 } 8749 break; 8750 } 8751 } else { 8752 /* 8753 * Must be sent in order of the 8754 * TSN's (on a network) 8755 */ 8756 break; 8757 } 8758 } /* for (chunk gather loop for this net) */ 8759 } /* if asoc.state OPEN */ 8760 no_data_fill: 8761 /* Is there something to send for this destination? */ 8762 if (outchain) { 8763 /* We may need to start a control timer or two */ 8764 use_zero_crc = asoc->zero_checksum == 2; 8765 if (asconf) { 8766 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, 8767 stcb, net); 8768 use_zero_crc = false; 8769 /* 8770 * do NOT clear the asconf flag as it is 8771 * used to do appropriate source address 8772 * selection. 8773 */ 8774 } 8775 if (cookie) { 8776 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8777 use_zero_crc = false; 8778 cookie = 0; 8779 } 8780 /* must start a send timer if data is being sent */ 8781 if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) { 8782 /* 8783 * no timer running on this destination 8784 * restart it. 8785 */ 8786 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8787 } 8788 if (bundle_at || hbflag) { 8789 /* For data/asconf and hb set time */ 8790 if (*now_filled == 0) { 8791 (void)SCTP_GETTIME_TIMEVAL(now); 8792 *now_filled = 1; 8793 } 8794 net->last_sent_time = *now; 8795 } 8796 /* Now send it, if there is anything to send :> */ 8797 if ((error = sctp_lowlevel_chunk_output(inp, 8798 stcb, 8799 net, 8800 (struct sockaddr *)&net->ro._l_addr, 8801 outchain, 8802 auth_offset, 8803 auth, 8804 auth_keyid, 8805 no_fragmentflg, 8806 bundle_at, 8807 asconf, 8808 inp->sctp_lport, stcb->rport, 8809 htonl(stcb->asoc.peer_vtag), 8810 net->port, NULL, 8811 0, 0, 8812 use_zero_crc, 8813 so_locked))) { 8814 /* error, we could not output */ 8815 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8816 if (from_where == 0) { 8817 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8818 } 8819 if (error == ENOBUFS) { 8820 asoc->ifp_had_enobuf = 1; 8821 SCTP_STAT_INCR(sctps_lowlevelerr); 8822 } 8823 if (error == EHOSTUNREACH) { 8824 /* 8825 * Destination went unreachable 8826 * during this send 8827 */ 8828 sctp_move_chunks_from_net(stcb, net); 8829 } 8830 asconf = 0; 8831 *reason_code = 6; 8832 /*- 8833 * I add this line to be paranoid. As far as 8834 * I can tell the continue, takes us back to 8835 * the top of the for, but just to make sure 8836 * I will reset these again here. 8837 */ 8838 ctl_cnt = 0; 8839 continue; /* This takes us back to the 8840 * for() for the nets. */ 8841 } else { 8842 asoc->ifp_had_enobuf = 0; 8843 } 8844 endoutchain = NULL; 8845 auth = NULL; 8846 auth_offset = 0; 8847 asconf = 0; 8848 if (!no_out_cnt) { 8849 *num_out += (ctl_cnt + bundle_at); 8850 } 8851 if (bundle_at) { 8852 /* setup for a RTO measurement */ 8853 tsns_sent = data_list[0]->rec.data.tsn; 8854 /* fill time if not already filled */ 8855 if (*now_filled == 0) { 8856 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 8857 *now_filled = 1; 8858 *now = asoc->time_last_sent; 8859 } else { 8860 asoc->time_last_sent = *now; 8861 } 8862 if (net->rto_needed) { 8863 data_list[0]->do_rtt = 1; 8864 net->rto_needed = 0; 8865 } 8866 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at); 8867 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net); 8868 } 8869 if (one_chunk) { 8870 break; 8871 } 8872 } 8873 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8874 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND); 8875 } 8876 } 8877 if (old_start_at == NULL) { 8878 old_start_at = start_at; 8879 start_at = TAILQ_FIRST(&asoc->nets); 8880 if (old_start_at) 8881 goto again_one_more_time; 8882 } 8883 8884 /* 8885 * At the end there should be no NON timed chunks hanging on this 8886 * queue. 8887 */ 8888 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8889 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND); 8890 } 8891 if ((*num_out == 0) && (*reason_code == 0)) { 8892 *reason_code = 4; 8893 } else { 8894 *reason_code = 5; 8895 } 8896 sctp_clean_up_ctl(stcb, asoc, so_locked); 8897 return (0); 8898 } 8899 8900 void 8901 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err) 8902 { 8903 /*- 8904 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of 8905 * the control chunk queue. 8906 */ 8907 struct sctp_chunkhdr *hdr; 8908 struct sctp_tmit_chunk *chk; 8909 struct mbuf *mat, *last_mbuf; 8910 uint32_t chunk_length; 8911 uint16_t padding_length; 8912 8913 SCTP_TCB_LOCK_ASSERT(stcb); 8914 SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT); 8915 if (op_err == NULL) { 8916 return; 8917 } 8918 last_mbuf = NULL; 8919 chunk_length = 0; 8920 for (mat = op_err; mat != NULL; mat = SCTP_BUF_NEXT(mat)) { 8921 chunk_length += SCTP_BUF_LEN(mat); 8922 if (SCTP_BUF_NEXT(mat) == NULL) { 8923 last_mbuf = mat; 8924 } 8925 } 8926 if (chunk_length > SCTP_MAX_CHUNK_LENGTH) { 8927 sctp_m_freem(op_err); 8928 return; 8929 } 8930 padding_length = chunk_length % 4; 8931 if (padding_length != 0) { 8932 padding_length = 4 - padding_length; 8933 } 8934 if (padding_length != 0) { 8935 if (sctp_add_pad_tombuf(last_mbuf, padding_length) == NULL) { 8936 sctp_m_freem(op_err); 8937 return; 8938 } 8939 } 8940 sctp_alloc_a_chunk(stcb, chk); 8941 if (chk == NULL) { 8942 /* no memory */ 8943 sctp_m_freem(op_err); 8944 return; 8945 } 8946 chk->copy_by_ref = 0; 8947 chk->rec.chunk_id.id = SCTP_OPERATION_ERROR; 8948 chk->rec.chunk_id.can_take_data = 0; 8949 chk->flags = 0; 8950 chk->send_size = (uint16_t)chunk_length; 8951 chk->sent = SCTP_DATAGRAM_UNSENT; 8952 chk->snd_count = 0; 8953 chk->asoc = &stcb->asoc; 8954 chk->data = op_err; 8955 chk->whoTo = NULL; 8956 hdr = mtod(op_err, struct sctp_chunkhdr *); 8957 hdr->chunk_type = SCTP_OPERATION_ERROR; 8958 hdr->chunk_flags = 0; 8959 hdr->chunk_length = htons(chk->send_size); 8960 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 8961 chk->asoc->ctrl_queue_cnt++; 8962 } 8963 8964 int 8965 sctp_send_cookie_echo(struct mbuf *m, 8966 int offset, int limit, 8967 struct sctp_tcb *stcb, 8968 struct sctp_nets *net) 8969 { 8970 /*- 8971 * pull out the cookie and put it at the front of the control chunk 8972 * queue. 8973 */ 8974 int at; 8975 struct mbuf *cookie; 8976 struct sctp_paramhdr param, *phdr; 8977 struct sctp_chunkhdr *hdr; 8978 struct sctp_tmit_chunk *chk; 8979 uint16_t ptype, plen; 8980 8981 SCTP_TCB_LOCK_ASSERT(stcb); 8982 /* First find the cookie in the param area */ 8983 cookie = NULL; 8984 at = offset + sizeof(struct sctp_init_chunk); 8985 for (;;) { 8986 phdr = sctp_get_next_param(m, at, ¶m, sizeof(param)); 8987 if (phdr == NULL) { 8988 return (-3); 8989 } 8990 ptype = ntohs(phdr->param_type); 8991 plen = ntohs(phdr->param_length); 8992 if (plen < sizeof(struct sctp_paramhdr)) { 8993 return (-6); 8994 } 8995 if (ptype == SCTP_STATE_COOKIE) { 8996 int pad; 8997 8998 /* found the cookie */ 8999 if (at + plen > limit) { 9000 return (-7); 9001 } 9002 cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT); 9003 if (cookie == NULL) { 9004 /* No memory */ 9005 return (-2); 9006 } 9007 if ((pad = (plen % 4)) > 0) { 9008 pad = 4 - pad; 9009 } 9010 if (pad > 0) { 9011 if (sctp_pad_lastmbuf(cookie, pad, NULL) == NULL) { 9012 return (-8); 9013 } 9014 } 9015 #ifdef SCTP_MBUF_LOGGING 9016 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9017 sctp_log_mbc(cookie, SCTP_MBUF_ICOPY); 9018 } 9019 #endif 9020 break; 9021 } 9022 at += SCTP_SIZE32(plen); 9023 } 9024 /* ok, we got the cookie lets change it into a cookie echo chunk */ 9025 /* first the change from param to cookie */ 9026 hdr = mtod(cookie, struct sctp_chunkhdr *); 9027 hdr->chunk_type = SCTP_COOKIE_ECHO; 9028 hdr->chunk_flags = 0; 9029 /* get the chunk stuff now and place it in the FRONT of the queue */ 9030 sctp_alloc_a_chunk(stcb, chk); 9031 if (chk == NULL) { 9032 /* no memory */ 9033 sctp_m_freem(cookie); 9034 return (-5); 9035 } 9036 chk->copy_by_ref = 0; 9037 chk->rec.chunk_id.id = SCTP_COOKIE_ECHO; 9038 chk->rec.chunk_id.can_take_data = 0; 9039 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9040 chk->send_size = SCTP_SIZE32(plen); 9041 chk->sent = SCTP_DATAGRAM_UNSENT; 9042 chk->snd_count = 0; 9043 chk->asoc = &stcb->asoc; 9044 chk->data = cookie; 9045 chk->whoTo = net; 9046 atomic_add_int(&chk->whoTo->ref_count, 1); 9047 TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next); 9048 chk->asoc->ctrl_queue_cnt++; 9049 return (0); 9050 } 9051 9052 void 9053 sctp_send_heartbeat_ack(struct sctp_tcb *stcb, 9054 struct mbuf *m, 9055 int offset, 9056 int chk_length, 9057 struct sctp_nets *net) 9058 { 9059 /* 9060 * take a HB request and make it into a HB ack and send it. 9061 */ 9062 struct mbuf *outchain; 9063 struct sctp_chunkhdr *chdr; 9064 struct sctp_tmit_chunk *chk; 9065 9066 if (net == NULL) 9067 /* must have a net pointer */ 9068 return; 9069 9070 outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT); 9071 if (outchain == NULL) { 9072 /* gak out of memory */ 9073 return; 9074 } 9075 #ifdef SCTP_MBUF_LOGGING 9076 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9077 sctp_log_mbc(outchain, SCTP_MBUF_ICOPY); 9078 } 9079 #endif 9080 chdr = mtod(outchain, struct sctp_chunkhdr *); 9081 chdr->chunk_type = SCTP_HEARTBEAT_ACK; 9082 chdr->chunk_flags = 0; 9083 if (chk_length % 4 != 0) { 9084 sctp_pad_lastmbuf(outchain, 4 - (chk_length % 4), NULL); 9085 } 9086 sctp_alloc_a_chunk(stcb, chk); 9087 if (chk == NULL) { 9088 /* no memory */ 9089 sctp_m_freem(outchain); 9090 return; 9091 } 9092 chk->copy_by_ref = 0; 9093 chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK; 9094 chk->rec.chunk_id.can_take_data = 1; 9095 chk->flags = 0; 9096 chk->send_size = chk_length; 9097 chk->sent = SCTP_DATAGRAM_UNSENT; 9098 chk->snd_count = 0; 9099 chk->asoc = &stcb->asoc; 9100 chk->data = outchain; 9101 chk->whoTo = net; 9102 atomic_add_int(&chk->whoTo->ref_count, 1); 9103 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9104 chk->asoc->ctrl_queue_cnt++; 9105 } 9106 9107 void 9108 sctp_send_cookie_ack(struct sctp_tcb *stcb) 9109 { 9110 /* formulate and queue a cookie-ack back to sender */ 9111 struct mbuf *cookie_ack; 9112 struct sctp_chunkhdr *hdr; 9113 struct sctp_tmit_chunk *chk; 9114 9115 SCTP_TCB_LOCK_ASSERT(stcb); 9116 9117 cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 9118 if (cookie_ack == NULL) { 9119 /* no mbuf's */ 9120 return; 9121 } 9122 SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD); 9123 sctp_alloc_a_chunk(stcb, chk); 9124 if (chk == NULL) { 9125 /* no memory */ 9126 sctp_m_freem(cookie_ack); 9127 return; 9128 } 9129 chk->copy_by_ref = 0; 9130 chk->rec.chunk_id.id = SCTP_COOKIE_ACK; 9131 chk->rec.chunk_id.can_take_data = 1; 9132 chk->flags = 0; 9133 chk->send_size = sizeof(struct sctp_chunkhdr); 9134 chk->sent = SCTP_DATAGRAM_UNSENT; 9135 chk->snd_count = 0; 9136 chk->asoc = &stcb->asoc; 9137 chk->data = cookie_ack; 9138 if (chk->asoc->last_control_chunk_from != NULL) { 9139 chk->whoTo = chk->asoc->last_control_chunk_from; 9140 atomic_add_int(&chk->whoTo->ref_count, 1); 9141 } else { 9142 chk->whoTo = NULL; 9143 } 9144 hdr = mtod(cookie_ack, struct sctp_chunkhdr *); 9145 hdr->chunk_type = SCTP_COOKIE_ACK; 9146 hdr->chunk_flags = 0; 9147 hdr->chunk_length = htons(chk->send_size); 9148 SCTP_BUF_LEN(cookie_ack) = chk->send_size; 9149 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9150 chk->asoc->ctrl_queue_cnt++; 9151 return; 9152 } 9153 9154 void 9155 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net) 9156 { 9157 /* formulate and queue a SHUTDOWN-ACK back to the sender */ 9158 struct mbuf *m_shutdown_ack; 9159 struct sctp_shutdown_ack_chunk *ack_cp; 9160 struct sctp_tmit_chunk *chk; 9161 9162 m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9163 if (m_shutdown_ack == NULL) { 9164 /* no mbuf's */ 9165 return; 9166 } 9167 SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD); 9168 sctp_alloc_a_chunk(stcb, chk); 9169 if (chk == NULL) { 9170 /* no memory */ 9171 sctp_m_freem(m_shutdown_ack); 9172 return; 9173 } 9174 chk->copy_by_ref = 0; 9175 chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK; 9176 chk->rec.chunk_id.can_take_data = 1; 9177 chk->flags = 0; 9178 chk->send_size = sizeof(struct sctp_chunkhdr); 9179 chk->sent = SCTP_DATAGRAM_UNSENT; 9180 chk->snd_count = 0; 9181 chk->asoc = &stcb->asoc; 9182 chk->data = m_shutdown_ack; 9183 chk->whoTo = net; 9184 if (chk->whoTo) { 9185 atomic_add_int(&chk->whoTo->ref_count, 1); 9186 } 9187 ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *); 9188 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK; 9189 ack_cp->ch.chunk_flags = 0; 9190 ack_cp->ch.chunk_length = htons(chk->send_size); 9191 SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size; 9192 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9193 chk->asoc->ctrl_queue_cnt++; 9194 return; 9195 } 9196 9197 void 9198 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net) 9199 { 9200 /* formulate and queue a SHUTDOWN to the sender */ 9201 struct mbuf *m_shutdown; 9202 struct sctp_shutdown_chunk *shutdown_cp; 9203 struct sctp_tmit_chunk *chk; 9204 9205 TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 9206 if (chk->rec.chunk_id.id == SCTP_SHUTDOWN) { 9207 /* We already have a SHUTDOWN queued. Reuse it. */ 9208 if (chk->whoTo) { 9209 sctp_free_remote_addr(chk->whoTo); 9210 chk->whoTo = NULL; 9211 } 9212 break; 9213 } 9214 } 9215 if (chk == NULL) { 9216 m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9217 if (m_shutdown == NULL) { 9218 /* no mbuf's */ 9219 return; 9220 } 9221 SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD); 9222 sctp_alloc_a_chunk(stcb, chk); 9223 if (chk == NULL) { 9224 /* no memory */ 9225 sctp_m_freem(m_shutdown); 9226 return; 9227 } 9228 chk->copy_by_ref = 0; 9229 chk->rec.chunk_id.id = SCTP_SHUTDOWN; 9230 chk->rec.chunk_id.can_take_data = 1; 9231 chk->flags = 0; 9232 chk->send_size = sizeof(struct sctp_shutdown_chunk); 9233 chk->sent = SCTP_DATAGRAM_UNSENT; 9234 chk->snd_count = 0; 9235 chk->asoc = &stcb->asoc; 9236 chk->data = m_shutdown; 9237 chk->whoTo = net; 9238 if (chk->whoTo) { 9239 atomic_add_int(&chk->whoTo->ref_count, 1); 9240 } 9241 shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *); 9242 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN; 9243 shutdown_cp->ch.chunk_flags = 0; 9244 shutdown_cp->ch.chunk_length = htons(chk->send_size); 9245 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9246 SCTP_BUF_LEN(m_shutdown) = chk->send_size; 9247 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9248 chk->asoc->ctrl_queue_cnt++; 9249 } else { 9250 TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, sctp_next); 9251 chk->whoTo = net; 9252 if (chk->whoTo) { 9253 atomic_add_int(&chk->whoTo->ref_count, 1); 9254 } 9255 shutdown_cp = mtod(chk->data, struct sctp_shutdown_chunk *); 9256 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9257 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 9258 } 9259 return; 9260 } 9261 9262 void 9263 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked) 9264 { 9265 /* 9266 * formulate and queue an ASCONF to the peer. ASCONF parameters 9267 * should be queued on the assoc queue. 9268 */ 9269 struct sctp_tmit_chunk *chk; 9270 struct mbuf *m_asconf; 9271 int len; 9272 9273 SCTP_TCB_LOCK_ASSERT(stcb); 9274 9275 if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) && 9276 (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) { 9277 /* can't send a new one if there is one in flight already */ 9278 return; 9279 } 9280 9281 /* compose an ASCONF chunk, maximum length is PMTU */ 9282 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked); 9283 if (m_asconf == NULL) { 9284 return; 9285 } 9286 9287 sctp_alloc_a_chunk(stcb, chk); 9288 if (chk == NULL) { 9289 /* no memory */ 9290 sctp_m_freem(m_asconf); 9291 return; 9292 } 9293 9294 chk->copy_by_ref = 0; 9295 chk->rec.chunk_id.id = SCTP_ASCONF; 9296 chk->rec.chunk_id.can_take_data = 0; 9297 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9298 chk->data = m_asconf; 9299 chk->send_size = len; 9300 chk->sent = SCTP_DATAGRAM_UNSENT; 9301 chk->snd_count = 0; 9302 chk->asoc = &stcb->asoc; 9303 chk->whoTo = net; 9304 if (chk->whoTo) { 9305 atomic_add_int(&chk->whoTo->ref_count, 1); 9306 } 9307 TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next); 9308 chk->asoc->ctrl_queue_cnt++; 9309 return; 9310 } 9311 9312 void 9313 sctp_send_asconf_ack(struct sctp_tcb *stcb) 9314 { 9315 /* 9316 * formulate and queue a asconf-ack back to sender. the asconf-ack 9317 * must be stored in the tcb. 9318 */ 9319 struct sctp_tmit_chunk *chk; 9320 struct sctp_asconf_ack *ack, *latest_ack; 9321 struct mbuf *m_ack; 9322 struct sctp_nets *net = NULL; 9323 9324 SCTP_TCB_LOCK_ASSERT(stcb); 9325 /* Get the latest ASCONF-ACK */ 9326 latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead); 9327 if (latest_ack == NULL) { 9328 return; 9329 } 9330 if (latest_ack->last_sent_to != NULL && 9331 latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) { 9332 /* we're doing a retransmission */ 9333 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0); 9334 if (net == NULL) { 9335 /* no alternate */ 9336 if (stcb->asoc.last_control_chunk_from == NULL) { 9337 if (stcb->asoc.alternate) { 9338 net = stcb->asoc.alternate; 9339 } else { 9340 net = stcb->asoc.primary_destination; 9341 } 9342 } else { 9343 net = stcb->asoc.last_control_chunk_from; 9344 } 9345 } 9346 } else { 9347 /* normal case */ 9348 if (stcb->asoc.last_control_chunk_from == NULL) { 9349 if (stcb->asoc.alternate) { 9350 net = stcb->asoc.alternate; 9351 } else { 9352 net = stcb->asoc.primary_destination; 9353 } 9354 } else { 9355 net = stcb->asoc.last_control_chunk_from; 9356 } 9357 } 9358 latest_ack->last_sent_to = net; 9359 9360 TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) { 9361 if (ack->data == NULL) { 9362 continue; 9363 } 9364 9365 /* copy the asconf_ack */ 9366 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT); 9367 if (m_ack == NULL) { 9368 /* couldn't copy it */ 9369 return; 9370 } 9371 #ifdef SCTP_MBUF_LOGGING 9372 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9373 sctp_log_mbc(m_ack, SCTP_MBUF_ICOPY); 9374 } 9375 #endif 9376 9377 sctp_alloc_a_chunk(stcb, chk); 9378 if (chk == NULL) { 9379 /* no memory */ 9380 if (m_ack) 9381 sctp_m_freem(m_ack); 9382 return; 9383 } 9384 chk->copy_by_ref = 0; 9385 chk->rec.chunk_id.id = SCTP_ASCONF_ACK; 9386 chk->rec.chunk_id.can_take_data = 1; 9387 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9388 chk->whoTo = net; 9389 if (chk->whoTo) { 9390 atomic_add_int(&chk->whoTo->ref_count, 1); 9391 } 9392 chk->data = m_ack; 9393 chk->send_size = ack->len; 9394 chk->sent = SCTP_DATAGRAM_UNSENT; 9395 chk->snd_count = 0; 9396 chk->asoc = &stcb->asoc; 9397 9398 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9399 chk->asoc->ctrl_queue_cnt++; 9400 } 9401 return; 9402 } 9403 9404 static int 9405 sctp_chunk_retransmission(struct sctp_inpcb *inp, 9406 struct sctp_tcb *stcb, 9407 struct sctp_association *asoc, 9408 int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked) 9409 { 9410 /*- 9411 * send out one MTU of retransmission. If fast_retransmit is 9412 * happening we ignore the cwnd. Otherwise we obey the cwnd and 9413 * rwnd. For a Cookie or Asconf in the control chunk queue we 9414 * retransmit them by themselves. 9415 * 9416 * For data chunks we will pick out the lowest TSN's in the sent_queue 9417 * marked for resend and bundle them all together (up to a MTU of 9418 * destination). The address to send to should have been 9419 * selected/changed where the retransmission was marked (i.e. in FR 9420 * or t3-timeout routines). 9421 */ 9422 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 9423 struct sctp_tmit_chunk *chk, *fwd; 9424 struct mbuf *m, *endofchain; 9425 struct sctp_nets *net = NULL; 9426 uint32_t tsns_sent = 0; 9427 int no_fragmentflg, bundle_at; 9428 unsigned int mtu; 9429 int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started; 9430 struct sctp_auth_chunk *auth = NULL; 9431 uint32_t auth_offset = 0; 9432 uint16_t auth_keyid; 9433 int override_ok = 1; 9434 int data_auth_reqd = 0; 9435 uint32_t dmtu = 0; 9436 bool use_zero_crc; 9437 9438 SCTP_TCB_LOCK_ASSERT(stcb); 9439 tmr_started = ctl_cnt = 0; 9440 no_fragmentflg = 1; 9441 fwd_tsn = 0; 9442 *cnt_out = 0; 9443 fwd = NULL; 9444 endofchain = m = NULL; 9445 auth_keyid = stcb->asoc.authinfo.active_keyid; 9446 #ifdef SCTP_AUDITING_ENABLED 9447 sctp_audit_log(0xC3, 1); 9448 #endif 9449 if ((TAILQ_EMPTY(&asoc->sent_queue)) && 9450 (TAILQ_EMPTY(&asoc->control_send_queue))) { 9451 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n", 9452 asoc->sent_queue_retran_cnt); 9453 asoc->sent_queue_cnt = 0; 9454 asoc->sent_queue_cnt_removeable = 0; 9455 /* send back 0/0 so we enter normal transmission */ 9456 *cnt_out = 0; 9457 return (0); 9458 } 9459 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 9460 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) || 9461 (chk->rec.chunk_id.id == SCTP_STREAM_RESET) || 9462 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) { 9463 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9464 continue; 9465 } 9466 if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 9467 if (chk != asoc->str_reset) { 9468 /* 9469 * not eligible for retran if its 9470 * not ours 9471 */ 9472 continue; 9473 } 9474 } 9475 ctl_cnt++; 9476 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 9477 fwd_tsn = 1; 9478 } 9479 /* 9480 * Add an AUTH chunk, if chunk requires it save the 9481 * offset into the chain for AUTH 9482 */ 9483 if ((auth == NULL) && 9484 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 9485 stcb->asoc.peer_auth_chunks))) { 9486 m = sctp_add_auth_chunk(m, &endofchain, 9487 &auth, &auth_offset, 9488 stcb, 9489 chk->rec.chunk_id.id); 9490 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9491 } 9492 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9493 break; 9494 } 9495 } 9496 one_chunk = 0; 9497 /* do we have control chunks to retransmit? */ 9498 if (m != NULL) { 9499 /* Start a timer no matter if we succeed or fail */ 9500 use_zero_crc = asoc->zero_checksum == 2; 9501 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 9502 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo); 9503 use_zero_crc = false; 9504 } else if (chk->rec.chunk_id.id == SCTP_ASCONF) { 9505 /* XXXMT: Can this happen? */ 9506 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo); 9507 use_zero_crc = false; 9508 } 9509 chk->snd_count++; /* update our count */ 9510 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo, 9511 (struct sockaddr *)&chk->whoTo->ro._l_addr, m, 9512 auth_offset, auth, stcb->asoc.authinfo.active_keyid, 9513 no_fragmentflg, 0, 0, 9514 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9515 chk->whoTo->port, NULL, 9516 0, 0, 9517 use_zero_crc, 9518 so_locked))) { 9519 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9520 if (error == ENOBUFS) { 9521 asoc->ifp_had_enobuf = 1; 9522 SCTP_STAT_INCR(sctps_lowlevelerr); 9523 } 9524 return (error); 9525 } else { 9526 asoc->ifp_had_enobuf = 0; 9527 } 9528 endofchain = NULL; 9529 auth = NULL; 9530 auth_offset = 0; 9531 /* 9532 * We don't want to mark the net->sent time here since this 9533 * we use this for HB and retrans cannot measure RTT 9534 */ 9535 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */ 9536 *cnt_out += 1; 9537 chk->sent = SCTP_DATAGRAM_SENT; 9538 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt); 9539 if (fwd_tsn == 0) { 9540 return (0); 9541 } else { 9542 /* Clean up the fwd-tsn list */ 9543 sctp_clean_up_ctl(stcb, asoc, so_locked); 9544 return (0); 9545 } 9546 } 9547 /* 9548 * Ok, it is just data retransmission we need to do or that and a 9549 * fwd-tsn with it all. 9550 */ 9551 if (TAILQ_EMPTY(&asoc->sent_queue)) { 9552 return (SCTP_RETRAN_DONE); 9553 } 9554 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED) || 9555 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT)) { 9556 /* not yet open, resend the cookie and that is it */ 9557 return (1); 9558 } 9559 #ifdef SCTP_AUDITING_ENABLED 9560 sctp_auditing(20, inp, stcb, NULL); 9561 #endif 9562 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks); 9563 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 9564 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9565 /* No, not sent to this net or not ready for rtx */ 9566 continue; 9567 } 9568 if (chk->data == NULL) { 9569 SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n", 9570 chk->rec.data.tsn, chk->snd_count, chk->sent); 9571 continue; 9572 } 9573 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) && 9574 (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) { 9575 struct mbuf *op_err; 9576 char msg[SCTP_DIAG_INFO_LEN]; 9577 9578 SCTP_SNPRINTF(msg, sizeof(msg), "TSN %8.8x retransmitted %d times, giving up", 9579 chk->rec.data.tsn, chk->snd_count); 9580 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 9581 msg); 9582 atomic_add_int(&stcb->asoc.refcnt, 1); 9583 sctp_abort_an_association(stcb->sctp_ep, stcb, op_err, 9584 false, so_locked); 9585 SCTP_TCB_LOCK(stcb); 9586 atomic_subtract_int(&stcb->asoc.refcnt, 1); 9587 return (SCTP_RETRAN_EXIT); 9588 } 9589 /* pick up the net */ 9590 net = chk->whoTo; 9591 switch (net->ro._l_addr.sa.sa_family) { 9592 #ifdef INET 9593 case AF_INET: 9594 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 9595 break; 9596 #endif 9597 #ifdef INET6 9598 case AF_INET6: 9599 mtu = net->mtu - SCTP_MIN_OVERHEAD; 9600 break; 9601 #endif 9602 default: 9603 /* TSNH */ 9604 mtu = net->mtu; 9605 break; 9606 } 9607 9608 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) { 9609 /* No room in peers rwnd */ 9610 uint32_t tsn; 9611 9612 tsn = asoc->last_acked_seq + 1; 9613 if (tsn == chk->rec.data.tsn) { 9614 /* 9615 * we make a special exception for this 9616 * case. The peer has no rwnd but is missing 9617 * the lowest chunk.. which is probably what 9618 * is holding up the rwnd. 9619 */ 9620 goto one_chunk_around; 9621 } 9622 return (1); 9623 } 9624 one_chunk_around: 9625 if (asoc->peers_rwnd < mtu) { 9626 one_chunk = 1; 9627 if ((asoc->peers_rwnd == 0) && 9628 (asoc->total_flight == 0)) { 9629 chk->window_probe = 1; 9630 chk->whoTo->window_probe = 1; 9631 } 9632 } 9633 #ifdef SCTP_AUDITING_ENABLED 9634 sctp_audit_log(0xC3, 2); 9635 #endif 9636 bundle_at = 0; 9637 m = NULL; 9638 net->fast_retran_ip = 0; 9639 if (chk->rec.data.doing_fast_retransmit == 0) { 9640 /* 9641 * if no FR in progress skip destination that have 9642 * flight_size > cwnd. 9643 */ 9644 if (net->flight_size >= net->cwnd) { 9645 continue; 9646 } 9647 } else { 9648 /* 9649 * Mark the destination net to have FR recovery 9650 * limits put on it. 9651 */ 9652 *fr_done = 1; 9653 net->fast_retran_ip = 1; 9654 } 9655 9656 /* 9657 * if no AUTH is yet included and this chunk requires it, 9658 * make sure to account for it. We don't apply the size 9659 * until the AUTH chunk is actually added below in case 9660 * there is no room for this chunk. 9661 */ 9662 if (data_auth_reqd && (auth == NULL)) { 9663 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9664 } else 9665 dmtu = 0; 9666 9667 if ((chk->send_size <= (mtu - dmtu)) || 9668 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 9669 /* ok we will add this one */ 9670 if (data_auth_reqd) { 9671 if (auth == NULL) { 9672 m = sctp_add_auth_chunk(m, 9673 &endofchain, 9674 &auth, 9675 &auth_offset, 9676 stcb, 9677 SCTP_DATA); 9678 auth_keyid = chk->auth_keyid; 9679 override_ok = 0; 9680 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9681 } else if (override_ok) { 9682 auth_keyid = chk->auth_keyid; 9683 override_ok = 0; 9684 } else if (chk->auth_keyid != auth_keyid) { 9685 /* different keyid, so done bundling */ 9686 break; 9687 } 9688 } 9689 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9690 if (m == NULL) { 9691 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9692 return (ENOMEM); 9693 } 9694 /* Do clear IP_DF ? */ 9695 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9696 no_fragmentflg = 0; 9697 } 9698 /* update our MTU size */ 9699 if (mtu > (chk->send_size + dmtu)) 9700 mtu -= (chk->send_size + dmtu); 9701 else 9702 mtu = 0; 9703 data_list[bundle_at++] = chk; 9704 if (one_chunk && (asoc->total_flight <= 0)) { 9705 SCTP_STAT_INCR(sctps_windowprobed); 9706 } 9707 } 9708 if (one_chunk == 0) { 9709 /* 9710 * now are there anymore forward from chk to pick 9711 * up? 9712 */ 9713 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) { 9714 if (fwd->sent != SCTP_DATAGRAM_RESEND) { 9715 /* Nope, not for retran */ 9716 continue; 9717 } 9718 if (fwd->whoTo != net) { 9719 /* Nope, not the net in question */ 9720 continue; 9721 } 9722 if (data_auth_reqd && (auth == NULL)) { 9723 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9724 } else 9725 dmtu = 0; 9726 if (fwd->send_size <= (mtu - dmtu)) { 9727 if (data_auth_reqd) { 9728 if (auth == NULL) { 9729 m = sctp_add_auth_chunk(m, 9730 &endofchain, 9731 &auth, 9732 &auth_offset, 9733 stcb, 9734 SCTP_DATA); 9735 auth_keyid = fwd->auth_keyid; 9736 override_ok = 0; 9737 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9738 } else if (override_ok) { 9739 auth_keyid = fwd->auth_keyid; 9740 override_ok = 0; 9741 } else if (fwd->auth_keyid != auth_keyid) { 9742 /* 9743 * different keyid, 9744 * so done bundling 9745 */ 9746 break; 9747 } 9748 } 9749 m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref); 9750 if (m == NULL) { 9751 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9752 return (ENOMEM); 9753 } 9754 /* Do clear IP_DF ? */ 9755 if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9756 no_fragmentflg = 0; 9757 } 9758 /* update our MTU size */ 9759 if (mtu > (fwd->send_size + dmtu)) 9760 mtu -= (fwd->send_size + dmtu); 9761 else 9762 mtu = 0; 9763 data_list[bundle_at++] = fwd; 9764 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 9765 break; 9766 } 9767 } else { 9768 /* can't fit so we are done */ 9769 break; 9770 } 9771 } 9772 } 9773 /* Is there something to send for this destination? */ 9774 if (m) { 9775 /* 9776 * No matter if we fail/or succeed we should start a 9777 * timer. A failure is like a lost IP packet :-) 9778 */ 9779 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9780 /* 9781 * no timer running on this destination 9782 * restart it. 9783 */ 9784 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9785 tmr_started = 1; 9786 } 9787 /* Now lets send it, if there is anything to send :> */ 9788 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 9789 (struct sockaddr *)&net->ro._l_addr, m, 9790 auth_offset, auth, auth_keyid, 9791 no_fragmentflg, 0, 0, 9792 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9793 net->port, NULL, 9794 0, 0, 9795 asoc->zero_checksum == 2, 9796 so_locked))) { 9797 /* error, we could not output */ 9798 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9799 if (error == ENOBUFS) { 9800 asoc->ifp_had_enobuf = 1; 9801 SCTP_STAT_INCR(sctps_lowlevelerr); 9802 } 9803 return (error); 9804 } else { 9805 asoc->ifp_had_enobuf = 0; 9806 } 9807 endofchain = NULL; 9808 auth = NULL; 9809 auth_offset = 0; 9810 /* For HB's */ 9811 /* 9812 * We don't want to mark the net->sent time here 9813 * since this we use this for HB and retrans cannot 9814 * measure RTT 9815 */ 9816 /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */ 9817 9818 /* For auto-close */ 9819 if (*now_filled == 0) { 9820 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 9821 *now = asoc->time_last_sent; 9822 *now_filled = 1; 9823 } else { 9824 asoc->time_last_sent = *now; 9825 } 9826 *cnt_out += bundle_at; 9827 #ifdef SCTP_AUDITING_ENABLED 9828 sctp_audit_log(0xC4, bundle_at); 9829 #endif 9830 if (bundle_at) { 9831 tsns_sent = data_list[0]->rec.data.tsn; 9832 } 9833 for (i = 0; i < bundle_at; i++) { 9834 SCTP_STAT_INCR(sctps_sendretransdata); 9835 data_list[i]->sent = SCTP_DATAGRAM_SENT; 9836 /* 9837 * When we have a revoked data, and we 9838 * retransmit it, then we clear the revoked 9839 * flag since this flag dictates if we 9840 * subtracted from the fs 9841 */ 9842 if (data_list[i]->rec.data.chunk_was_revoked) { 9843 /* Deflate the cwnd */ 9844 data_list[i]->whoTo->cwnd -= data_list[i]->book_size; 9845 data_list[i]->rec.data.chunk_was_revoked = 0; 9846 } 9847 data_list[i]->snd_count++; 9848 sctp_ucount_decr(asoc->sent_queue_retran_cnt); 9849 /* record the time */ 9850 data_list[i]->sent_rcv_time = asoc->time_last_sent; 9851 if (data_list[i]->book_size_scale) { 9852 /* 9853 * need to double the book size on 9854 * this one 9855 */ 9856 data_list[i]->book_size_scale = 0; 9857 /* 9858 * Since we double the booksize, we 9859 * must also double the output queue 9860 * size, since this get shrunk when 9861 * we free by this amount. 9862 */ 9863 atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size); 9864 data_list[i]->book_size *= 2; 9865 } else { 9866 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 9867 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 9868 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 9869 } 9870 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 9871 (uint32_t)(data_list[i]->send_size + 9872 SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 9873 } 9874 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 9875 sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND, 9876 data_list[i]->whoTo->flight_size, 9877 data_list[i]->book_size, 9878 (uint32_t)(uintptr_t)data_list[i]->whoTo, 9879 data_list[i]->rec.data.tsn); 9880 } 9881 sctp_flight_size_increase(data_list[i]); 9882 sctp_total_flight_increase(stcb, data_list[i]); 9883 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 9884 /* SWS sender side engages */ 9885 asoc->peers_rwnd = 0; 9886 } 9887 if ((i == 0) && 9888 (data_list[i]->rec.data.doing_fast_retransmit)) { 9889 SCTP_STAT_INCR(sctps_sendfastretrans); 9890 if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) && 9891 (tmr_started == 0)) { 9892 /*- 9893 * ok we just fast-retrans'd 9894 * the lowest TSN, i.e the 9895 * first on the list. In 9896 * this case we want to give 9897 * some more time to get a 9898 * SACK back without a 9899 * t3-expiring. 9900 */ 9901 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net, 9902 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2); 9903 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9904 } 9905 } 9906 } 9907 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9908 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND); 9909 } 9910 #ifdef SCTP_AUDITING_ENABLED 9911 sctp_auditing(21, inp, stcb, NULL); 9912 #endif 9913 } else { 9914 /* None will fit */ 9915 return (1); 9916 } 9917 if (asoc->sent_queue_retran_cnt <= 0) { 9918 /* all done we have no more to retran */ 9919 asoc->sent_queue_retran_cnt = 0; 9920 break; 9921 } 9922 if (one_chunk) { 9923 /* No more room in rwnd */ 9924 return (1); 9925 } 9926 /* stop the for loop here. we sent out a packet */ 9927 break; 9928 } 9929 return (0); 9930 } 9931 9932 static void 9933 sctp_timer_validation(struct sctp_inpcb *inp, 9934 struct sctp_tcb *stcb, 9935 struct sctp_association *asoc) 9936 { 9937 struct sctp_nets *net; 9938 9939 /* Validate that a timer is running somewhere */ 9940 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9941 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9942 /* Here is a timer */ 9943 return; 9944 } 9945 } 9946 SCTP_TCB_LOCK_ASSERT(stcb); 9947 /* Gak, we did not have a timer somewhere */ 9948 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n"); 9949 if (asoc->alternate) { 9950 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate); 9951 } else { 9952 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination); 9953 } 9954 return; 9955 } 9956 9957 void 9958 sctp_chunk_output(struct sctp_inpcb *inp, 9959 struct sctp_tcb *stcb, 9960 int from_where, 9961 int so_locked) 9962 { 9963 /*- 9964 * Ok this is the generic chunk service queue. we must do the 9965 * following: 9966 * - See if there are retransmits pending, if so we must 9967 * do these first. 9968 * - Service the stream queue that is next, moving any 9969 * message (note I must get a complete message i.e. 9970 * FIRST/MIDDLE and LAST to the out queue in one pass) and assigning 9971 * TSN's 9972 * - Check to see if the cwnd/rwnd allows any output, if so we 9973 * go ahead and formulate and send the low level chunks. Making sure 9974 * to combine any control in the control chunk queue also. 9975 */ 9976 struct sctp_association *asoc; 9977 struct sctp_nets *net; 9978 int error = 0, num_out, tot_out = 0, ret = 0, reason_code; 9979 unsigned int burst_cnt = 0; 9980 struct timeval now; 9981 int now_filled = 0; 9982 int nagle_on; 9983 uint32_t frag_point = sctp_get_frag_point(stcb); 9984 int un_sent = 0; 9985 int fr_done; 9986 unsigned int tot_frs = 0; 9987 9988 asoc = &stcb->asoc; 9989 do_it_again: 9990 /* The Nagle algorithm is only applied when handling a send call. */ 9991 if (from_where == SCTP_OUTPUT_FROM_USR_SEND) { 9992 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) { 9993 nagle_on = 0; 9994 } else { 9995 nagle_on = 1; 9996 } 9997 } else { 9998 nagle_on = 0; 9999 } 10000 SCTP_TCB_LOCK_ASSERT(stcb); 10001 10002 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 10003 10004 if ((un_sent <= 0) && 10005 (TAILQ_EMPTY(&asoc->control_send_queue)) && 10006 (TAILQ_EMPTY(&asoc->asconf_send_queue)) && 10007 (asoc->sent_queue_retran_cnt == 0) && 10008 (asoc->trigger_reset == 0)) { 10009 /* Nothing to do unless there is something to be sent left */ 10010 return; 10011 } 10012 /* 10013 * Do we have something to send, data or control AND a sack timer 10014 * running, if so piggy-back the sack. 10015 */ 10016 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 10017 sctp_send_sack(stcb, so_locked); 10018 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, NULL, 10019 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3); 10020 } 10021 while (asoc->sent_queue_retran_cnt) { 10022 /*- 10023 * Ok, it is retransmission time only, we send out only ONE 10024 * packet with a single call off to the retran code. 10025 */ 10026 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) { 10027 /*- 10028 * Special hook for handling cookies discarded 10029 * by peer that carried data. Send cookie-ack only 10030 * and then the next call with get the retran's. 10031 */ 10032 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10033 from_where, 10034 &now, &now_filled, frag_point, so_locked); 10035 return; 10036 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) { 10037 /* if its not from a HB then do it */ 10038 fr_done = 0; 10039 ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked); 10040 if (fr_done) { 10041 tot_frs++; 10042 } 10043 } else { 10044 /* 10045 * its from any other place, we don't allow retran 10046 * output (only control) 10047 */ 10048 ret = 1; 10049 } 10050 if (ret > 0) { 10051 /* Can't send anymore */ 10052 /*- 10053 * now lets push out control by calling med-level 10054 * output once. this assures that we WILL send HB's 10055 * if queued too. 10056 */ 10057 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10058 from_where, 10059 &now, &now_filled, frag_point, so_locked); 10060 #ifdef SCTP_AUDITING_ENABLED 10061 sctp_auditing(8, inp, stcb, NULL); 10062 #endif 10063 sctp_timer_validation(inp, stcb, asoc); 10064 return; 10065 } 10066 if (ret < 0) { 10067 /*- 10068 * The count was off.. retran is not happening so do 10069 * the normal retransmission. 10070 */ 10071 #ifdef SCTP_AUDITING_ENABLED 10072 sctp_auditing(9, inp, stcb, NULL); 10073 #endif 10074 if (ret == SCTP_RETRAN_EXIT) { 10075 return; 10076 } 10077 break; 10078 } 10079 if (from_where == SCTP_OUTPUT_FROM_T3) { 10080 /* Only one transmission allowed out of a timeout */ 10081 #ifdef SCTP_AUDITING_ENABLED 10082 sctp_auditing(10, inp, stcb, NULL); 10083 #endif 10084 /* Push out any control */ 10085 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where, 10086 &now, &now_filled, frag_point, so_locked); 10087 return; 10088 } 10089 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) { 10090 /* Hit FR burst limit */ 10091 return; 10092 } 10093 if ((num_out == 0) && (ret == 0)) { 10094 /* No more retrans to send */ 10095 break; 10096 } 10097 } 10098 #ifdef SCTP_AUDITING_ENABLED 10099 sctp_auditing(12, inp, stcb, NULL); 10100 #endif 10101 /* Check for bad destinations, if they exist move chunks around. */ 10102 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 10103 if ((net->dest_state & SCTP_ADDR_REACHABLE) == 0) { 10104 /*- 10105 * if possible move things off of this address we 10106 * still may send below due to the dormant state but 10107 * we try to find an alternate address to send to 10108 * and if we have one we move all queued data on the 10109 * out wheel to this alternate address. 10110 */ 10111 if (net->ref_count > 1) 10112 sctp_move_chunks_from_net(stcb, net); 10113 } else { 10114 /*- 10115 * if ((asoc->sat_network) || (net->addr_is_local)) 10116 * { burst_limit = asoc->max_burst * 10117 * SCTP_SAT_NETWORK_BURST_INCR; } 10118 */ 10119 if (asoc->max_burst > 0) { 10120 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) { 10121 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { 10122 /* 10123 * JRS - Use the congestion 10124 * control given in the 10125 * congestion control module 10126 */ 10127 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); 10128 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10129 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); 10130 } 10131 SCTP_STAT_INCR(sctps_maxburstqueued); 10132 } 10133 net->fast_retran_ip = 0; 10134 } else { 10135 if (net->flight_size == 0) { 10136 /* 10137 * Should be decaying the 10138 * cwnd here 10139 */ 10140 ; 10141 } 10142 } 10143 } 10144 } 10145 } 10146 burst_cnt = 0; 10147 do { 10148 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out, 10149 &reason_code, 0, from_where, 10150 &now, &now_filled, frag_point, so_locked); 10151 if (error) { 10152 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error); 10153 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10154 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP); 10155 } 10156 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10157 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES); 10158 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES); 10159 } 10160 break; 10161 } 10162 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out); 10163 10164 tot_out += num_out; 10165 burst_cnt++; 10166 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10167 sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES); 10168 if (num_out == 0) { 10169 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES); 10170 } 10171 } 10172 if (nagle_on) { 10173 /* 10174 * When the Nagle algorithm is used, look at how 10175 * much is unsent, then if its smaller than an MTU 10176 * and we have data in flight we stop, except if we 10177 * are handling a fragmented user message. 10178 */ 10179 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 10180 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && 10181 (stcb->asoc.total_flight > 0)) { 10182 /* && sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {*/ 10183 break; 10184 } 10185 } 10186 if (TAILQ_EMPTY(&asoc->control_send_queue) && 10187 TAILQ_EMPTY(&asoc->send_queue) && 10188 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 10189 /* Nothing left to send */ 10190 break; 10191 } 10192 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) { 10193 /* Nothing left to send */ 10194 break; 10195 } 10196 } while (num_out && 10197 ((asoc->max_burst == 0) || 10198 SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) || 10199 (burst_cnt < asoc->max_burst))); 10200 10201 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) { 10202 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { 10203 SCTP_STAT_INCR(sctps_maxburstqueued); 10204 asoc->burst_limit_applied = 1; 10205 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10206 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED); 10207 } 10208 } else { 10209 asoc->burst_limit_applied = 0; 10210 } 10211 } 10212 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10213 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); 10214 } 10215 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n", 10216 tot_out); 10217 10218 /*- 10219 * Now we need to clean up the control chunk chain if a ECNE is on 10220 * it. It must be marked as UNSENT again so next call will continue 10221 * to send it until such time that we get a CWR, to remove it. 10222 */ 10223 if (stcb->asoc.ecn_echo_cnt_onq) 10224 sctp_fix_ecn_echo(asoc); 10225 10226 if (stcb->asoc.trigger_reset) { 10227 if (sctp_send_stream_reset_out_if_possible(stcb, so_locked) == 0) { 10228 goto do_it_again; 10229 } 10230 } 10231 return; 10232 } 10233 10234 int 10235 sctp_output( 10236 struct sctp_inpcb *inp, 10237 struct mbuf *m, 10238 struct sockaddr *addr, 10239 struct mbuf *control, 10240 struct thread *p, 10241 int flags) 10242 { 10243 if (inp == NULL) { 10244 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10245 return (EINVAL); 10246 } 10247 10248 if (inp->sctp_socket == NULL) { 10249 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10250 return (EINVAL); 10251 } 10252 return (sctp_sosend(inp->sctp_socket, 10253 addr, 10254 (struct uio *)NULL, 10255 m, 10256 control, 10257 flags, p 10258 )); 10259 } 10260 10261 void 10262 send_forward_tsn(struct sctp_tcb *stcb, 10263 struct sctp_association *asoc) 10264 { 10265 struct sctp_tmit_chunk *chk, *at, *tp1, *last; 10266 struct sctp_forward_tsn_chunk *fwdtsn; 10267 struct sctp_strseq *strseq; 10268 struct sctp_strseq_mid *strseq_m; 10269 uint32_t advance_peer_ack_point; 10270 unsigned int cnt_of_space, i, ovh; 10271 unsigned int space_needed; 10272 unsigned int cnt_of_skipped = 0; 10273 10274 SCTP_TCB_LOCK_ASSERT(stcb); 10275 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10276 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 10277 /* mark it to unsent */ 10278 chk->sent = SCTP_DATAGRAM_UNSENT; 10279 chk->snd_count = 0; 10280 /* Do we correct its output location? */ 10281 if (chk->whoTo) { 10282 sctp_free_remote_addr(chk->whoTo); 10283 chk->whoTo = NULL; 10284 } 10285 goto sctp_fill_in_rest; 10286 } 10287 } 10288 /* Ok if we reach here we must build one */ 10289 sctp_alloc_a_chunk(stcb, chk); 10290 if (chk == NULL) { 10291 return; 10292 } 10293 asoc->fwd_tsn_cnt++; 10294 chk->copy_by_ref = 0; 10295 /* 10296 * We don't do the old thing here since this is used not for on-wire 10297 * but to tell if we are sending a fwd-tsn by the stack during 10298 * output. And if its a IFORWARD or a FORWARD it is a fwd-tsn. 10299 */ 10300 chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN; 10301 chk->rec.chunk_id.can_take_data = 0; 10302 chk->flags = 0; 10303 chk->asoc = asoc; 10304 chk->whoTo = NULL; 10305 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 10306 if (chk->data == NULL) { 10307 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 10308 return; 10309 } 10310 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 10311 chk->sent = SCTP_DATAGRAM_UNSENT; 10312 chk->snd_count = 0; 10313 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 10314 asoc->ctrl_queue_cnt++; 10315 sctp_fill_in_rest: 10316 /*- 10317 * Here we go through and fill out the part that deals with 10318 * stream/seq of the ones we skip. 10319 */ 10320 SCTP_BUF_LEN(chk->data) = 0; 10321 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10322 if ((at->sent != SCTP_FORWARD_TSN_SKIP) && 10323 (at->sent != SCTP_DATAGRAM_NR_ACKED)) { 10324 /* no more to look at */ 10325 break; 10326 } 10327 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10328 /* We don't report these */ 10329 continue; 10330 } 10331 cnt_of_skipped++; 10332 } 10333 if (asoc->idata_supported) { 10334 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10335 (cnt_of_skipped * sizeof(struct sctp_strseq_mid))); 10336 } else { 10337 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10338 (cnt_of_skipped * sizeof(struct sctp_strseq))); 10339 } 10340 cnt_of_space = (unsigned int)M_TRAILINGSPACE(chk->data); 10341 10342 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 10343 ovh = SCTP_MIN_OVERHEAD; 10344 } else { 10345 ovh = SCTP_MIN_V4_OVERHEAD; 10346 } 10347 if (cnt_of_space > (asoc->smallest_mtu - ovh)) { 10348 /* trim to a mtu size */ 10349 cnt_of_space = asoc->smallest_mtu - ovh; 10350 } 10351 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10352 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10353 0xff, 0, cnt_of_skipped, 10354 asoc->advanced_peer_ack_point); 10355 } 10356 advance_peer_ack_point = asoc->advanced_peer_ack_point; 10357 if (cnt_of_space < space_needed) { 10358 /*- 10359 * ok we must trim down the chunk by lowering the 10360 * advance peer ack point. 10361 */ 10362 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10363 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10364 0xff, 0xff, cnt_of_space, 10365 space_needed); 10366 } 10367 cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk); 10368 if (asoc->idata_supported) { 10369 cnt_of_skipped /= sizeof(struct sctp_strseq_mid); 10370 } else { 10371 cnt_of_skipped /= sizeof(struct sctp_strseq); 10372 } 10373 /*- 10374 * Go through and find the TSN that will be the one 10375 * we report. 10376 */ 10377 at = TAILQ_FIRST(&asoc->sent_queue); 10378 if (at != NULL) { 10379 for (i = 0; i < cnt_of_skipped; i++) { 10380 tp1 = TAILQ_NEXT(at, sctp_next); 10381 if (tp1 == NULL) { 10382 break; 10383 } 10384 at = tp1; 10385 } 10386 } 10387 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10388 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10389 0xff, cnt_of_skipped, at->rec.data.tsn, 10390 asoc->advanced_peer_ack_point); 10391 } 10392 last = at; 10393 /*- 10394 * last now points to last one I can report, update 10395 * peer ack point 10396 */ 10397 if (last) { 10398 advance_peer_ack_point = last->rec.data.tsn; 10399 } 10400 if (asoc->idata_supported) { 10401 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10402 cnt_of_skipped * sizeof(struct sctp_strseq_mid); 10403 } else { 10404 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10405 cnt_of_skipped * sizeof(struct sctp_strseq); 10406 } 10407 } 10408 chk->send_size = space_needed; 10409 /* Setup the chunk */ 10410 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *); 10411 fwdtsn->ch.chunk_length = htons(chk->send_size); 10412 fwdtsn->ch.chunk_flags = 0; 10413 if (asoc->idata_supported) { 10414 fwdtsn->ch.chunk_type = SCTP_IFORWARD_CUM_TSN; 10415 } else { 10416 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN; 10417 } 10418 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point); 10419 SCTP_BUF_LEN(chk->data) = chk->send_size; 10420 fwdtsn++; 10421 /*- 10422 * Move pointer to after the fwdtsn and transfer to the 10423 * strseq pointer. 10424 */ 10425 if (asoc->idata_supported) { 10426 strseq_m = (struct sctp_strseq_mid *)fwdtsn; 10427 strseq = NULL; 10428 } else { 10429 strseq = (struct sctp_strseq *)fwdtsn; 10430 strseq_m = NULL; 10431 } 10432 /*- 10433 * Now populate the strseq list. This is done blindly 10434 * without pulling out duplicate stream info. This is 10435 * inefficient but won't harm the process since the peer will 10436 * look at these in sequence and will thus release anything. 10437 * It could mean we exceed the PMTU and chop off some that 10438 * we could have included.. but this is unlikely (aka 1432/4 10439 * would mean 300+ stream seq's would have to be reported in 10440 * one FWD-TSN. With a bit of work we can later FIX this to 10441 * optimize and pull out duplicates.. but it does add more 10442 * overhead. So for now... not! 10443 */ 10444 i = 0; 10445 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10446 if (i >= cnt_of_skipped) { 10447 break; 10448 } 10449 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10450 /* We don't report these */ 10451 continue; 10452 } 10453 if (at->rec.data.tsn == advance_peer_ack_point) { 10454 at->rec.data.fwd_tsn_cnt = 0; 10455 } 10456 if (asoc->idata_supported) { 10457 strseq_m->sid = htons(at->rec.data.sid); 10458 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10459 strseq_m->flags = htons(PR_SCTP_UNORDERED_FLAG); 10460 } else { 10461 strseq_m->flags = 0; 10462 } 10463 strseq_m->mid = htonl(at->rec.data.mid); 10464 strseq_m++; 10465 } else { 10466 strseq->sid = htons(at->rec.data.sid); 10467 strseq->ssn = htons((uint16_t)at->rec.data.mid); 10468 strseq++; 10469 } 10470 i++; 10471 } 10472 return; 10473 } 10474 10475 void 10476 sctp_send_sack(struct sctp_tcb *stcb, int so_locked) 10477 { 10478 /*- 10479 * Queue up a SACK or NR-SACK in the control queue. 10480 * We must first check to see if a SACK or NR-SACK is 10481 * somehow on the control queue. 10482 * If so, we will take and and remove the old one. 10483 */ 10484 struct sctp_association *asoc; 10485 struct sctp_tmit_chunk *chk, *a_chk; 10486 struct sctp_sack_chunk *sack; 10487 struct sctp_nr_sack_chunk *nr_sack; 10488 struct sctp_gap_ack_block *gap_descriptor; 10489 const struct sack_track *selector; 10490 int mergeable = 0; 10491 int offset; 10492 caddr_t limit; 10493 uint32_t *dup; 10494 int limit_reached = 0; 10495 unsigned int i, siz, j; 10496 unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space; 10497 int num_dups = 0; 10498 int space_req; 10499 uint32_t highest_tsn; 10500 uint8_t flags; 10501 uint8_t type; 10502 uint8_t tsn_map; 10503 10504 if (stcb->asoc.nrsack_supported == 1) { 10505 type = SCTP_NR_SELECTIVE_ACK; 10506 } else { 10507 type = SCTP_SELECTIVE_ACK; 10508 } 10509 a_chk = NULL; 10510 asoc = &stcb->asoc; 10511 SCTP_TCB_LOCK_ASSERT(stcb); 10512 if (asoc->last_data_chunk_from == NULL) { 10513 /* Hmm we never received anything */ 10514 return; 10515 } 10516 sctp_slide_mapping_arrays(stcb); 10517 sctp_set_rwnd(stcb, asoc); 10518 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10519 if (chk->rec.chunk_id.id == type) { 10520 /* Hmm, found a sack already on queue, remove it */ 10521 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 10522 asoc->ctrl_queue_cnt--; 10523 a_chk = chk; 10524 if (a_chk->data) { 10525 sctp_m_freem(a_chk->data); 10526 a_chk->data = NULL; 10527 } 10528 if (a_chk->whoTo) { 10529 sctp_free_remote_addr(a_chk->whoTo); 10530 a_chk->whoTo = NULL; 10531 } 10532 break; 10533 } 10534 } 10535 if (a_chk == NULL) { 10536 sctp_alloc_a_chunk(stcb, a_chk); 10537 if (a_chk == NULL) { 10538 /* No memory so we drop the idea, and set a timer */ 10539 if (stcb->asoc.delayed_ack) { 10540 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10541 stcb->sctp_ep, stcb, NULL, 10542 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4); 10543 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10544 stcb->sctp_ep, stcb, NULL); 10545 } else { 10546 stcb->asoc.send_sack = 1; 10547 } 10548 return; 10549 } 10550 a_chk->copy_by_ref = 0; 10551 a_chk->rec.chunk_id.id = type; 10552 a_chk->rec.chunk_id.can_take_data = 1; 10553 } 10554 /* Clear our pkt counts */ 10555 asoc->data_pkts_seen = 0; 10556 10557 a_chk->flags = 0; 10558 a_chk->asoc = asoc; 10559 a_chk->snd_count = 0; 10560 a_chk->send_size = 0; /* fill in later */ 10561 a_chk->sent = SCTP_DATAGRAM_UNSENT; 10562 a_chk->whoTo = NULL; 10563 10564 if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) == 0) { 10565 /*- 10566 * Ok, the destination for the SACK is unreachable, lets see if 10567 * we can select an alternate to asoc->last_data_chunk_from 10568 */ 10569 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0); 10570 if (a_chk->whoTo == NULL) { 10571 /* Nope, no alternate */ 10572 a_chk->whoTo = asoc->last_data_chunk_from; 10573 } 10574 } else { 10575 a_chk->whoTo = asoc->last_data_chunk_from; 10576 } 10577 if (a_chk->whoTo) { 10578 atomic_add_int(&a_chk->whoTo->ref_count, 1); 10579 } 10580 if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) { 10581 highest_tsn = asoc->highest_tsn_inside_map; 10582 } else { 10583 highest_tsn = asoc->highest_tsn_inside_nr_map; 10584 } 10585 if (highest_tsn == asoc->cumulative_tsn) { 10586 /* no gaps */ 10587 if (type == SCTP_SELECTIVE_ACK) { 10588 space_req = sizeof(struct sctp_sack_chunk); 10589 } else { 10590 space_req = sizeof(struct sctp_nr_sack_chunk); 10591 } 10592 } else { 10593 /* gaps get a cluster */ 10594 space_req = MCLBYTES; 10595 } 10596 /* Ok now lets formulate a MBUF with our sack */ 10597 a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA); 10598 if ((a_chk->data == NULL) || 10599 (a_chk->whoTo == NULL)) { 10600 /* rats, no mbuf memory */ 10601 if (a_chk->data) { 10602 /* was a problem with the destination */ 10603 sctp_m_freem(a_chk->data); 10604 a_chk->data = NULL; 10605 } 10606 sctp_free_a_chunk(stcb, a_chk, so_locked); 10607 /* sa_ignore NO_NULL_CHK */ 10608 if (stcb->asoc.delayed_ack) { 10609 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10610 stcb->sctp_ep, stcb, NULL, 10611 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5); 10612 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10613 stcb->sctp_ep, stcb, NULL); 10614 } else { 10615 stcb->asoc.send_sack = 1; 10616 } 10617 return; 10618 } 10619 /* ok, lets go through and fill it in */ 10620 SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD); 10621 space = (unsigned int)M_TRAILINGSPACE(a_chk->data); 10622 if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) { 10623 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD); 10624 } 10625 limit = mtod(a_chk->data, caddr_t); 10626 limit += space; 10627 10628 flags = 0; 10629 10630 if ((asoc->sctp_cmt_on_off > 0) && 10631 SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) { 10632 /*- 10633 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been 10634 * received, then set high bit to 1, else 0. Reset 10635 * pkts_rcvd. 10636 */ 10637 flags |= (asoc->cmt_dac_pkts_rcvd << 6); 10638 asoc->cmt_dac_pkts_rcvd = 0; 10639 } 10640 #ifdef SCTP_ASOCLOG_OF_TSNS 10641 stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn; 10642 stcb->asoc.cumack_log_atsnt++; 10643 if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) { 10644 stcb->asoc.cumack_log_atsnt = 0; 10645 } 10646 #endif 10647 /* reset the readers interpretation */ 10648 stcb->freed_by_sorcv_sincelast = 0; 10649 10650 if (type == SCTP_SELECTIVE_ACK) { 10651 sack = mtod(a_chk->data, struct sctp_sack_chunk *); 10652 nr_sack = NULL; 10653 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk)); 10654 if (highest_tsn > asoc->mapping_array_base_tsn) { 10655 siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10656 } else { 10657 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + highest_tsn + 7) / 8; 10658 } 10659 } else { 10660 sack = NULL; 10661 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *); 10662 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk)); 10663 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) { 10664 siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10665 } else { 10666 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8; 10667 } 10668 } 10669 10670 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10671 offset = 1; 10672 } else { 10673 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10674 } 10675 if (((type == SCTP_SELECTIVE_ACK) && 10676 SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) || 10677 ((type == SCTP_NR_SELECTIVE_ACK) && 10678 SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) { 10679 /* we have a gap .. maybe */ 10680 for (i = 0; i < siz; i++) { 10681 tsn_map = asoc->mapping_array[i]; 10682 if (type == SCTP_SELECTIVE_ACK) { 10683 tsn_map |= asoc->nr_mapping_array[i]; 10684 } 10685 if (i == 0) { 10686 /* 10687 * Clear all bits corresponding to TSNs 10688 * smaller or equal to the cumulative TSN. 10689 */ 10690 tsn_map &= (~0U << (1 - offset)); 10691 } 10692 selector = &sack_array[tsn_map]; 10693 if (mergeable && selector->right_edge) { 10694 /* 10695 * Backup, left and right edges were ok to 10696 * merge. 10697 */ 10698 num_gap_blocks--; 10699 gap_descriptor--; 10700 } 10701 if (selector->num_entries == 0) 10702 mergeable = 0; 10703 else { 10704 for (j = 0; j < selector->num_entries; j++) { 10705 if (mergeable && selector->right_edge) { 10706 /* 10707 * do a merge by NOT setting 10708 * the left side 10709 */ 10710 mergeable = 0; 10711 } else { 10712 /* 10713 * no merge, set the left 10714 * side 10715 */ 10716 mergeable = 0; 10717 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10718 } 10719 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10720 num_gap_blocks++; 10721 gap_descriptor++; 10722 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10723 /* no more room */ 10724 limit_reached = 1; 10725 break; 10726 } 10727 } 10728 if (selector->left_edge) { 10729 mergeable = 1; 10730 } 10731 } 10732 if (limit_reached) { 10733 /* Reached the limit stop */ 10734 break; 10735 } 10736 offset += 8; 10737 } 10738 } 10739 if ((type == SCTP_NR_SELECTIVE_ACK) && 10740 (limit_reached == 0)) { 10741 mergeable = 0; 10742 10743 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) { 10744 siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10745 } else { 10746 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8; 10747 } 10748 10749 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10750 offset = 1; 10751 } else { 10752 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10753 } 10754 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) { 10755 /* we have a gap .. maybe */ 10756 for (i = 0; i < siz; i++) { 10757 tsn_map = asoc->nr_mapping_array[i]; 10758 if (i == 0) { 10759 /* 10760 * Clear all bits corresponding to 10761 * TSNs smaller or equal to the 10762 * cumulative TSN. 10763 */ 10764 tsn_map &= (~0U << (1 - offset)); 10765 } 10766 selector = &sack_array[tsn_map]; 10767 if (mergeable && selector->right_edge) { 10768 /* 10769 * Backup, left and right edges were 10770 * ok to merge. 10771 */ 10772 num_nr_gap_blocks--; 10773 gap_descriptor--; 10774 } 10775 if (selector->num_entries == 0) 10776 mergeable = 0; 10777 else { 10778 for (j = 0; j < selector->num_entries; j++) { 10779 if (mergeable && selector->right_edge) { 10780 /* 10781 * do a merge by NOT 10782 * setting the left 10783 * side 10784 */ 10785 mergeable = 0; 10786 } else { 10787 /* 10788 * no merge, set the 10789 * left side 10790 */ 10791 mergeable = 0; 10792 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10793 } 10794 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10795 num_nr_gap_blocks++; 10796 gap_descriptor++; 10797 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10798 /* no more room */ 10799 limit_reached = 1; 10800 break; 10801 } 10802 } 10803 if (selector->left_edge) { 10804 mergeable = 1; 10805 } 10806 } 10807 if (limit_reached) { 10808 /* Reached the limit stop */ 10809 break; 10810 } 10811 offset += 8; 10812 } 10813 } 10814 } 10815 /* now we must add any dups we are going to report. */ 10816 if ((limit_reached == 0) && (asoc->numduptsns)) { 10817 dup = (uint32_t *)gap_descriptor; 10818 for (i = 0; i < asoc->numduptsns; i++) { 10819 *dup = htonl(asoc->dup_tsns[i]); 10820 dup++; 10821 num_dups++; 10822 if (((caddr_t)dup + sizeof(uint32_t)) > limit) { 10823 /* no more room */ 10824 break; 10825 } 10826 } 10827 asoc->numduptsns = 0; 10828 } 10829 /* 10830 * now that the chunk is prepared queue it to the control chunk 10831 * queue. 10832 */ 10833 if (type == SCTP_SELECTIVE_ACK) { 10834 a_chk->send_size = (uint16_t)(sizeof(struct sctp_sack_chunk) + 10835 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10836 num_dups * sizeof(int32_t)); 10837 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10838 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10839 sack->sack.a_rwnd = htonl(asoc->my_rwnd); 10840 sack->sack.num_gap_ack_blks = htons(num_gap_blocks); 10841 sack->sack.num_dup_tsns = htons(num_dups); 10842 sack->ch.chunk_type = type; 10843 sack->ch.chunk_flags = flags; 10844 sack->ch.chunk_length = htons(a_chk->send_size); 10845 } else { 10846 a_chk->send_size = (uint16_t)(sizeof(struct sctp_nr_sack_chunk) + 10847 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10848 num_dups * sizeof(int32_t)); 10849 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10850 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10851 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd); 10852 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks); 10853 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks); 10854 nr_sack->nr_sack.num_dup_tsns = htons(num_dups); 10855 nr_sack->nr_sack.reserved = 0; 10856 nr_sack->ch.chunk_type = type; 10857 nr_sack->ch.chunk_flags = flags; 10858 nr_sack->ch.chunk_length = htons(a_chk->send_size); 10859 } 10860 TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next); 10861 asoc->my_last_reported_rwnd = asoc->my_rwnd; 10862 asoc->ctrl_queue_cnt++; 10863 asoc->send_sack = 0; 10864 SCTP_STAT_INCR(sctps_sendsacks); 10865 return; 10866 } 10867 10868 void 10869 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked) 10870 { 10871 struct mbuf *m_abort, *m, *m_last; 10872 struct mbuf *m_out, *m_end = NULL; 10873 struct sctp_abort_chunk *abort; 10874 struct sctp_auth_chunk *auth = NULL; 10875 struct sctp_nets *net; 10876 uint32_t vtag; 10877 uint32_t auth_offset = 0; 10878 int error; 10879 uint16_t cause_len, chunk_len, padding_len; 10880 10881 SCTP_TCB_LOCK_ASSERT(stcb); 10882 /*- 10883 * Add an AUTH chunk, if chunk requires it and save the offset into 10884 * the chain for AUTH 10885 */ 10886 if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION, 10887 stcb->asoc.peer_auth_chunks)) { 10888 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset, 10889 stcb, SCTP_ABORT_ASSOCIATION); 10890 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10891 } else { 10892 m_out = NULL; 10893 } 10894 m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER); 10895 if (m_abort == NULL) { 10896 if (m_out) { 10897 sctp_m_freem(m_out); 10898 } 10899 if (operr) { 10900 sctp_m_freem(operr); 10901 } 10902 return; 10903 } 10904 /* link in any error */ 10905 SCTP_BUF_NEXT(m_abort) = operr; 10906 cause_len = 0; 10907 m_last = NULL; 10908 for (m = operr; m; m = SCTP_BUF_NEXT(m)) { 10909 cause_len += (uint16_t)SCTP_BUF_LEN(m); 10910 if (SCTP_BUF_NEXT(m) == NULL) { 10911 m_last = m; 10912 } 10913 } 10914 SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk); 10915 chunk_len = (uint16_t)sizeof(struct sctp_abort_chunk) + cause_len; 10916 padding_len = SCTP_SIZE32(chunk_len) - chunk_len; 10917 if (m_out == NULL) { 10918 /* NO Auth chunk prepended, so reserve space in front */ 10919 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD); 10920 m_out = m_abort; 10921 } else { 10922 /* Put AUTH chunk at the front of the chain */ 10923 SCTP_BUF_NEXT(m_end) = m_abort; 10924 } 10925 if (stcb->asoc.alternate) { 10926 net = stcb->asoc.alternate; 10927 } else { 10928 net = stcb->asoc.primary_destination; 10929 } 10930 /* Fill in the ABORT chunk header. */ 10931 abort = mtod(m_abort, struct sctp_abort_chunk *); 10932 abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION; 10933 if (stcb->asoc.peer_vtag == 0) { 10934 /* This happens iff the assoc is in COOKIE-WAIT state. */ 10935 vtag = stcb->asoc.my_vtag; 10936 abort->ch.chunk_flags = SCTP_HAD_NO_TCB; 10937 } else { 10938 vtag = stcb->asoc.peer_vtag; 10939 abort->ch.chunk_flags = 0; 10940 } 10941 abort->ch.chunk_length = htons(chunk_len); 10942 /* Add padding, if necessary. */ 10943 if (padding_len > 0) { 10944 if ((m_last == NULL) || 10945 (sctp_add_pad_tombuf(m_last, padding_len) == NULL)) { 10946 sctp_m_freem(m_out); 10947 return; 10948 } 10949 } 10950 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10951 (struct sockaddr *)&net->ro._l_addr, 10952 m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0, 10953 stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag), 10954 stcb->asoc.primary_destination->port, NULL, 10955 0, 0, 10956 stcb->asoc.zero_checksum == 2, 10957 so_locked))) { 10958 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 10959 if (error == ENOBUFS) { 10960 stcb->asoc.ifp_had_enobuf = 1; 10961 SCTP_STAT_INCR(sctps_lowlevelerr); 10962 } 10963 } else { 10964 stcb->asoc.ifp_had_enobuf = 0; 10965 } 10966 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10967 } 10968 10969 void 10970 sctp_send_shutdown_complete(struct sctp_tcb *stcb, 10971 struct sctp_nets *net, 10972 int reflect_vtag) 10973 { 10974 /* formulate and SEND a SHUTDOWN-COMPLETE */ 10975 struct mbuf *m_shutdown_comp; 10976 struct sctp_shutdown_complete_chunk *shutdown_complete; 10977 uint32_t vtag; 10978 int error; 10979 uint8_t flags; 10980 10981 m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 10982 if (m_shutdown_comp == NULL) { 10983 /* no mbuf's */ 10984 return; 10985 } 10986 if (reflect_vtag) { 10987 flags = SCTP_HAD_NO_TCB; 10988 vtag = stcb->asoc.my_vtag; 10989 } else { 10990 flags = 0; 10991 vtag = stcb->asoc.peer_vtag; 10992 } 10993 shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *); 10994 shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE; 10995 shutdown_complete->ch.chunk_flags = flags; 10996 shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk)); 10997 SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk); 10998 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10999 (struct sockaddr *)&net->ro._l_addr, 11000 m_shutdown_comp, 0, NULL, 0, 1, 0, 0, 11001 stcb->sctp_ep->sctp_lport, stcb->rport, 11002 htonl(vtag), 11003 net->port, NULL, 11004 0, 0, 11005 stcb->asoc.zero_checksum == 2, 11006 SCTP_SO_NOT_LOCKED))) { 11007 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 11008 if (error == ENOBUFS) { 11009 stcb->asoc.ifp_had_enobuf = 1; 11010 SCTP_STAT_INCR(sctps_lowlevelerr); 11011 } 11012 } else { 11013 stcb->asoc.ifp_had_enobuf = 0; 11014 } 11015 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11016 return; 11017 } 11018 11019 static void 11020 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst, 11021 struct sctphdr *sh, uint32_t vtag, 11022 uint8_t type, struct mbuf *cause, 11023 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11024 uint32_t vrf_id, uint16_t port) 11025 { 11026 struct mbuf *o_pak; 11027 struct mbuf *mout; 11028 struct sctphdr *shout; 11029 struct sctp_chunkhdr *ch; 11030 #if defined(INET) || defined(INET6) 11031 struct udphdr *udp; 11032 #endif 11033 int ret, len, cause_len, padding_len; 11034 #ifdef INET 11035 struct sockaddr_in *src_sin, *dst_sin; 11036 struct ip *ip; 11037 #endif 11038 #ifdef INET6 11039 struct sockaddr_in6 *src_sin6, *dst_sin6; 11040 struct ip6_hdr *ip6; 11041 #endif 11042 11043 /* Compute the length of the cause and add final padding. */ 11044 cause_len = 0; 11045 if (cause != NULL) { 11046 struct mbuf *m_at, *m_last = NULL; 11047 11048 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 11049 if (SCTP_BUF_NEXT(m_at) == NULL) 11050 m_last = m_at; 11051 cause_len += SCTP_BUF_LEN(m_at); 11052 } 11053 padding_len = cause_len % 4; 11054 if (padding_len != 0) { 11055 padding_len = 4 - padding_len; 11056 } 11057 if (padding_len != 0) { 11058 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 11059 sctp_m_freem(cause); 11060 return; 11061 } 11062 } 11063 } else { 11064 padding_len = 0; 11065 } 11066 /* Get an mbuf for the header. */ 11067 len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 11068 switch (dst->sa_family) { 11069 #ifdef INET 11070 case AF_INET: 11071 len += sizeof(struct ip); 11072 break; 11073 #endif 11074 #ifdef INET6 11075 case AF_INET6: 11076 len += sizeof(struct ip6_hdr); 11077 break; 11078 #endif 11079 default: 11080 break; 11081 } 11082 #if defined(INET) || defined(INET6) 11083 if (port) { 11084 len += sizeof(struct udphdr); 11085 } 11086 #endif 11087 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); 11088 if (mout == NULL) { 11089 if (cause) { 11090 sctp_m_freem(cause); 11091 } 11092 return; 11093 } 11094 SCTP_BUF_RESV_UF(mout, max_linkhdr); 11095 SCTP_BUF_LEN(mout) = len; 11096 SCTP_BUF_NEXT(mout) = cause; 11097 M_SETFIB(mout, fibnum); 11098 mout->m_pkthdr.flowid = mflowid; 11099 M_HASHTYPE_SET(mout, mflowtype); 11100 #ifdef INET 11101 ip = NULL; 11102 #endif 11103 #ifdef INET6 11104 ip6 = NULL; 11105 #endif 11106 switch (dst->sa_family) { 11107 #ifdef INET 11108 case AF_INET: 11109 src_sin = (struct sockaddr_in *)src; 11110 dst_sin = (struct sockaddr_in *)dst; 11111 ip = mtod(mout, struct ip *); 11112 ip->ip_v = IPVERSION; 11113 ip->ip_hl = (sizeof(struct ip) >> 2); 11114 ip->ip_tos = 0; 11115 ip->ip_off = htons(IP_DF); 11116 ip_fillid(ip); 11117 ip->ip_ttl = MODULE_GLOBAL(ip_defttl); 11118 if (port) { 11119 ip->ip_p = IPPROTO_UDP; 11120 } else { 11121 ip->ip_p = IPPROTO_SCTP; 11122 } 11123 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr; 11124 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr; 11125 ip->ip_sum = 0; 11126 len = sizeof(struct ip); 11127 shout = (struct sctphdr *)((caddr_t)ip + len); 11128 break; 11129 #endif 11130 #ifdef INET6 11131 case AF_INET6: 11132 src_sin6 = (struct sockaddr_in6 *)src; 11133 dst_sin6 = (struct sockaddr_in6 *)dst; 11134 ip6 = mtod(mout, struct ip6_hdr *); 11135 ip6->ip6_flow = htonl(0x60000000); 11136 if (V_ip6_auto_flowlabel) { 11137 ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); 11138 } 11139 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim); 11140 if (port) { 11141 ip6->ip6_nxt = IPPROTO_UDP; 11142 } else { 11143 ip6->ip6_nxt = IPPROTO_SCTP; 11144 } 11145 ip6->ip6_src = dst_sin6->sin6_addr; 11146 ip6->ip6_dst = src_sin6->sin6_addr; 11147 len = sizeof(struct ip6_hdr); 11148 shout = (struct sctphdr *)((caddr_t)ip6 + len); 11149 break; 11150 #endif 11151 default: 11152 len = 0; 11153 shout = mtod(mout, struct sctphdr *); 11154 break; 11155 } 11156 #if defined(INET) || defined(INET6) 11157 if (port) { 11158 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 11159 sctp_m_freem(mout); 11160 return; 11161 } 11162 udp = (struct udphdr *)shout; 11163 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 11164 udp->uh_dport = port; 11165 udp->uh_sum = 0; 11166 udp->uh_ulen = htons((uint16_t)(sizeof(struct udphdr) + 11167 sizeof(struct sctphdr) + 11168 sizeof(struct sctp_chunkhdr) + 11169 cause_len + padding_len)); 11170 len += sizeof(struct udphdr); 11171 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr)); 11172 } else { 11173 udp = NULL; 11174 } 11175 #endif 11176 shout->src_port = sh->dest_port; 11177 shout->dest_port = sh->src_port; 11178 shout->checksum = 0; 11179 if (vtag) { 11180 shout->v_tag = htonl(vtag); 11181 } else { 11182 shout->v_tag = sh->v_tag; 11183 } 11184 len += sizeof(struct sctphdr); 11185 ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr)); 11186 ch->chunk_type = type; 11187 if (vtag) { 11188 ch->chunk_flags = 0; 11189 } else { 11190 ch->chunk_flags = SCTP_HAD_NO_TCB; 11191 } 11192 ch->chunk_length = htons((uint16_t)(sizeof(struct sctp_chunkhdr) + cause_len)); 11193 len += sizeof(struct sctp_chunkhdr); 11194 len += cause_len + padding_len; 11195 11196 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 11197 sctp_m_freem(mout); 11198 return; 11199 } 11200 SCTP_ATTACH_CHAIN(o_pak, mout, len); 11201 switch (dst->sa_family) { 11202 #ifdef INET 11203 case AF_INET: 11204 if (port) { 11205 if (V_udp_cksum) { 11206 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 11207 } else { 11208 udp->uh_sum = 0; 11209 } 11210 } 11211 ip->ip_len = htons(len); 11212 if (port) { 11213 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); 11214 SCTP_STAT_INCR(sctps_sendswcrc); 11215 if (V_udp_cksum) { 11216 SCTP_ENABLE_UDP_CSUM(o_pak); 11217 } 11218 } else { 11219 mout->m_pkthdr.csum_flags = CSUM_SCTP; 11220 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11221 SCTP_STAT_INCR(sctps_sendhwcrc); 11222 } 11223 #ifdef SCTP_PACKET_LOGGING 11224 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11225 sctp_packet_log(o_pak); 11226 } 11227 #endif 11228 SCTP_PROBE5(send, NULL, NULL, ip, NULL, shout); 11229 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id); 11230 break; 11231 #endif 11232 #ifdef INET6 11233 case AF_INET6: 11234 ip6->ip6_plen = htons((uint16_t)(len - sizeof(struct ip6_hdr))); 11235 if (port) { 11236 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 11237 SCTP_STAT_INCR(sctps_sendswcrc); 11238 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) { 11239 udp->uh_sum = 0xffff; 11240 } 11241 } else { 11242 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 11243 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11244 SCTP_STAT_INCR(sctps_sendhwcrc); 11245 } 11246 #ifdef SCTP_PACKET_LOGGING 11247 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11248 sctp_packet_log(o_pak); 11249 } 11250 #endif 11251 SCTP_PROBE5(send, NULL, NULL, ip6, NULL, shout); 11252 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id); 11253 break; 11254 #endif 11255 default: 11256 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 11257 dst->sa_family); 11258 sctp_m_freem(mout); 11259 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 11260 return; 11261 } 11262 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 11263 if (port) { 11264 UDPSTAT_INC(udps_opackets); 11265 } 11266 SCTP_STAT_INCR(sctps_sendpackets); 11267 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 11268 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11269 if (ret) { 11270 SCTP_STAT_INCR(sctps_senderrors); 11271 } 11272 return; 11273 } 11274 11275 void 11276 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, 11277 struct sctphdr *sh, 11278 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11279 uint32_t vrf_id, uint16_t port) 11280 { 11281 sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL, 11282 mflowtype, mflowid, fibnum, 11283 vrf_id, port); 11284 } 11285 11286 void 11287 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked) 11288 { 11289 struct sctp_tmit_chunk *chk; 11290 struct sctp_heartbeat_chunk *hb; 11291 struct timeval now; 11292 11293 SCTP_TCB_LOCK_ASSERT(stcb); 11294 if (net == NULL) { 11295 return; 11296 } 11297 (void)SCTP_GETTIME_TIMEVAL(&now); 11298 switch (net->ro._l_addr.sa.sa_family) { 11299 #ifdef INET 11300 case AF_INET: 11301 break; 11302 #endif 11303 #ifdef INET6 11304 case AF_INET6: 11305 break; 11306 #endif 11307 default: 11308 return; 11309 } 11310 sctp_alloc_a_chunk(stcb, chk); 11311 if (chk == NULL) { 11312 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n"); 11313 return; 11314 } 11315 11316 chk->copy_by_ref = 0; 11317 chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST; 11318 chk->rec.chunk_id.can_take_data = 1; 11319 chk->flags = 0; 11320 chk->asoc = &stcb->asoc; 11321 chk->send_size = sizeof(struct sctp_heartbeat_chunk); 11322 11323 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11324 if (chk->data == NULL) { 11325 sctp_free_a_chunk(stcb, chk, so_locked); 11326 return; 11327 } 11328 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11329 SCTP_BUF_LEN(chk->data) = chk->send_size; 11330 chk->sent = SCTP_DATAGRAM_UNSENT; 11331 chk->snd_count = 0; 11332 chk->whoTo = net; 11333 atomic_add_int(&chk->whoTo->ref_count, 1); 11334 /* Now we have a mbuf that we can fill in with the details */ 11335 hb = mtod(chk->data, struct sctp_heartbeat_chunk *); 11336 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk)); 11337 /* fill out chunk header */ 11338 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST; 11339 hb->ch.chunk_flags = 0; 11340 hb->ch.chunk_length = htons(chk->send_size); 11341 /* Fill out hb parameter */ 11342 hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO); 11343 hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param)); 11344 hb->heartbeat.hb_info.time_value_1 = (uint32_t)now.tv_sec; 11345 hb->heartbeat.hb_info.time_value_2 = now.tv_usec; 11346 /* Did our user request this one, put it in */ 11347 hb->heartbeat.hb_info.addr_family = (uint8_t)net->ro._l_addr.sa.sa_family; 11348 hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len; 11349 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 11350 /* 11351 * we only take from the entropy pool if the address is not 11352 * confirmed. 11353 */ 11354 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11355 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11356 } else { 11357 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0; 11358 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0; 11359 } 11360 switch (net->ro._l_addr.sa.sa_family) { 11361 #ifdef INET 11362 case AF_INET: 11363 memcpy(hb->heartbeat.hb_info.address, 11364 &net->ro._l_addr.sin.sin_addr, 11365 sizeof(net->ro._l_addr.sin.sin_addr)); 11366 break; 11367 #endif 11368 #ifdef INET6 11369 case AF_INET6: 11370 memcpy(hb->heartbeat.hb_info.address, 11371 &net->ro._l_addr.sin6.sin6_addr, 11372 sizeof(net->ro._l_addr.sin6.sin6_addr)); 11373 break; 11374 #endif 11375 default: 11376 if (chk->data) { 11377 sctp_m_freem(chk->data); 11378 chk->data = NULL; 11379 } 11380 sctp_free_a_chunk(stcb, chk, so_locked); 11381 return; 11382 break; 11383 } 11384 net->hb_responded = 0; 11385 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11386 stcb->asoc.ctrl_queue_cnt++; 11387 SCTP_STAT_INCR(sctps_sendheartbeat); 11388 return; 11389 } 11390 11391 void 11392 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net, 11393 uint32_t high_tsn) 11394 { 11395 struct sctp_association *asoc; 11396 struct sctp_ecne_chunk *ecne; 11397 struct sctp_tmit_chunk *chk; 11398 11399 if (net == NULL) { 11400 return; 11401 } 11402 asoc = &stcb->asoc; 11403 SCTP_TCB_LOCK_ASSERT(stcb); 11404 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11405 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) { 11406 /* found a previous ECN_ECHO update it if needed */ 11407 uint32_t cnt, ctsn; 11408 11409 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11410 ctsn = ntohl(ecne->tsn); 11411 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11412 ecne->tsn = htonl(high_tsn); 11413 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11414 } 11415 cnt = ntohl(ecne->num_pkts_since_cwr); 11416 cnt++; 11417 ecne->num_pkts_since_cwr = htonl(cnt); 11418 return; 11419 } 11420 } 11421 /* nope could not find one to update so we must build one */ 11422 sctp_alloc_a_chunk(stcb, chk); 11423 if (chk == NULL) { 11424 return; 11425 } 11426 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11427 chk->copy_by_ref = 0; 11428 chk->rec.chunk_id.id = SCTP_ECN_ECHO; 11429 chk->rec.chunk_id.can_take_data = 0; 11430 chk->flags = 0; 11431 chk->asoc = &stcb->asoc; 11432 chk->send_size = sizeof(struct sctp_ecne_chunk); 11433 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11434 if (chk->data == NULL) { 11435 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11436 return; 11437 } 11438 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11439 SCTP_BUF_LEN(chk->data) = chk->send_size; 11440 chk->sent = SCTP_DATAGRAM_UNSENT; 11441 chk->snd_count = 0; 11442 chk->whoTo = net; 11443 atomic_add_int(&chk->whoTo->ref_count, 1); 11444 11445 stcb->asoc.ecn_echo_cnt_onq++; 11446 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11447 ecne->ch.chunk_type = SCTP_ECN_ECHO; 11448 ecne->ch.chunk_flags = 0; 11449 ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk)); 11450 ecne->tsn = htonl(high_tsn); 11451 ecne->num_pkts_since_cwr = htonl(1); 11452 TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next); 11453 asoc->ctrl_queue_cnt++; 11454 } 11455 11456 void 11457 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, 11458 struct mbuf *m, int len, int iphlen, int bad_crc) 11459 { 11460 struct sctp_association *asoc; 11461 struct sctp_pktdrop_chunk *drp; 11462 struct sctp_tmit_chunk *chk; 11463 uint8_t *datap; 11464 int was_trunc = 0; 11465 int fullsz = 0; 11466 long spc; 11467 int offset; 11468 struct sctp_chunkhdr *ch, chunk_buf; 11469 unsigned int chk_length; 11470 11471 if (!stcb) { 11472 return; 11473 } 11474 asoc = &stcb->asoc; 11475 SCTP_TCB_LOCK_ASSERT(stcb); 11476 if (asoc->pktdrop_supported == 0) { 11477 /*- 11478 * peer must declare support before I send one. 11479 */ 11480 return; 11481 } 11482 if (stcb->sctp_socket == NULL) { 11483 return; 11484 } 11485 sctp_alloc_a_chunk(stcb, chk); 11486 if (chk == NULL) { 11487 return; 11488 } 11489 chk->copy_by_ref = 0; 11490 chk->rec.chunk_id.id = SCTP_PACKET_DROPPED; 11491 chk->rec.chunk_id.can_take_data = 1; 11492 chk->flags = 0; 11493 len -= iphlen; 11494 chk->send_size = len; 11495 /* Validate that we do not have an ABORT in here. */ 11496 offset = iphlen + sizeof(struct sctphdr); 11497 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11498 sizeof(*ch), (uint8_t *)&chunk_buf); 11499 while (ch != NULL) { 11500 chk_length = ntohs(ch->chunk_length); 11501 if (chk_length < sizeof(*ch)) { 11502 /* break to abort land */ 11503 break; 11504 } 11505 switch (ch->chunk_type) { 11506 case SCTP_PACKET_DROPPED: 11507 case SCTP_ABORT_ASSOCIATION: 11508 case SCTP_INITIATION_ACK: 11509 /** 11510 * We don't respond with an PKT-DROP to an ABORT 11511 * or PKT-DROP. We also do not respond to an 11512 * INIT-ACK, because we can't know if the initiation 11513 * tag is correct or not. 11514 */ 11515 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11516 return; 11517 default: 11518 break; 11519 } 11520 offset += SCTP_SIZE32(chk_length); 11521 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11522 sizeof(*ch), (uint8_t *)&chunk_buf); 11523 } 11524 11525 if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) > 11526 min(stcb->asoc.smallest_mtu, MCLBYTES)) { 11527 /* 11528 * only send 1 mtu worth, trim off the excess on the end. 11529 */ 11530 fullsz = len; 11531 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD; 11532 was_trunc = 1; 11533 } 11534 chk->asoc = &stcb->asoc; 11535 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11536 if (chk->data == NULL) { 11537 jump_out: 11538 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11539 return; 11540 } 11541 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11542 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 11543 if (drp == NULL) { 11544 sctp_m_freem(chk->data); 11545 chk->data = NULL; 11546 goto jump_out; 11547 } 11548 chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) + 11549 sizeof(struct sctphdr) + SCTP_MED_OVERHEAD)); 11550 chk->book_size_scale = 0; 11551 if (was_trunc) { 11552 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 11553 drp->trunc_len = htons(fullsz); 11554 /* 11555 * Len is already adjusted to size minus overhead above take 11556 * out the pkt_drop chunk itself from it. 11557 */ 11558 chk->send_size = (uint16_t)(len - sizeof(struct sctp_pktdrop_chunk)); 11559 len = chk->send_size; 11560 } else { 11561 /* no truncation needed */ 11562 drp->ch.chunk_flags = 0; 11563 drp->trunc_len = htons(0); 11564 } 11565 if (bad_crc) { 11566 drp->ch.chunk_flags |= SCTP_BADCRC; 11567 } 11568 chk->send_size += sizeof(struct sctp_pktdrop_chunk); 11569 SCTP_BUF_LEN(chk->data) = chk->send_size; 11570 chk->sent = SCTP_DATAGRAM_UNSENT; 11571 chk->snd_count = 0; 11572 if (net) { 11573 /* we should hit here */ 11574 chk->whoTo = net; 11575 atomic_add_int(&chk->whoTo->ref_count, 1); 11576 } else { 11577 chk->whoTo = NULL; 11578 } 11579 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 11580 drp->ch.chunk_length = htons(chk->send_size); 11581 spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket); 11582 if (spc < 0) { 11583 spc = 0; 11584 } 11585 drp->bottle_bw = htonl(spc); 11586 if (asoc->my_rwnd) { 11587 drp->current_onq = htonl(asoc->size_on_reasm_queue + 11588 asoc->size_on_all_streams + 11589 asoc->my_rwnd_control_len + 11590 SCTP_SBAVAIL(&stcb->sctp_socket->so_rcv)); 11591 } else { 11592 /*- 11593 * If my rwnd is 0, possibly from mbuf depletion as well as 11594 * space used, tell the peer there is NO space aka onq == bw 11595 */ 11596 drp->current_onq = htonl(spc); 11597 } 11598 drp->reserved = 0; 11599 datap = drp->data; 11600 m_copydata(m, iphlen, len, (caddr_t)datap); 11601 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11602 asoc->ctrl_queue_cnt++; 11603 } 11604 11605 void 11606 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override) 11607 { 11608 struct sctp_association *asoc; 11609 struct sctp_cwr_chunk *cwr; 11610 struct sctp_tmit_chunk *chk; 11611 11612 SCTP_TCB_LOCK_ASSERT(stcb); 11613 if (net == NULL) { 11614 return; 11615 } 11616 asoc = &stcb->asoc; 11617 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11618 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) { 11619 /* 11620 * found a previous CWR queued to same destination 11621 * update it if needed 11622 */ 11623 uint32_t ctsn; 11624 11625 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11626 ctsn = ntohl(cwr->tsn); 11627 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11628 cwr->tsn = htonl(high_tsn); 11629 } 11630 if (override & SCTP_CWR_REDUCE_OVERRIDE) { 11631 /* Make sure override is carried */ 11632 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE; 11633 } 11634 return; 11635 } 11636 } 11637 sctp_alloc_a_chunk(stcb, chk); 11638 if (chk == NULL) { 11639 return; 11640 } 11641 chk->copy_by_ref = 0; 11642 chk->rec.chunk_id.id = SCTP_ECN_CWR; 11643 chk->rec.chunk_id.can_take_data = 1; 11644 chk->flags = 0; 11645 chk->asoc = asoc; 11646 chk->send_size = sizeof(struct sctp_cwr_chunk); 11647 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11648 if (chk->data == NULL) { 11649 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11650 return; 11651 } 11652 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11653 SCTP_BUF_LEN(chk->data) = chk->send_size; 11654 chk->sent = SCTP_DATAGRAM_UNSENT; 11655 chk->snd_count = 0; 11656 chk->whoTo = net; 11657 atomic_add_int(&chk->whoTo->ref_count, 1); 11658 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11659 cwr->ch.chunk_type = SCTP_ECN_CWR; 11660 cwr->ch.chunk_flags = override; 11661 cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk)); 11662 cwr->tsn = htonl(high_tsn); 11663 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 11664 asoc->ctrl_queue_cnt++; 11665 } 11666 11667 static int 11668 sctp_add_stream_reset_out(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 11669 uint32_t seq, uint32_t resp_seq, uint32_t last_sent) 11670 { 11671 uint16_t len, old_len, i; 11672 struct sctp_stream_reset_out_request *req_out; 11673 struct sctp_chunkhdr *ch; 11674 int at; 11675 int number_entries = 0; 11676 11677 ch = mtod(chk->data, struct sctp_chunkhdr *); 11678 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11679 /* get to new offset for the param. */ 11680 req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len); 11681 /* now how long will this param be? */ 11682 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11683 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11684 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11685 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11686 number_entries++; 11687 } 11688 } 11689 if (number_entries == 0) { 11690 return (0); 11691 } 11692 if (number_entries == stcb->asoc.streamoutcnt) { 11693 number_entries = 0; 11694 } 11695 if (number_entries > SCTP_MAX_STREAMS_AT_ONCE_RESET) { 11696 number_entries = SCTP_MAX_STREAMS_AT_ONCE_RESET; 11697 } 11698 len = (uint16_t)(sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries)); 11699 req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST); 11700 req_out->ph.param_length = htons(len); 11701 req_out->request_seq = htonl(seq); 11702 req_out->response_seq = htonl(resp_seq); 11703 req_out->send_reset_at_tsn = htonl(last_sent); 11704 at = 0; 11705 if (number_entries) { 11706 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11707 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11708 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11709 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11710 req_out->list_of_streams[at] = htons(i); 11711 at++; 11712 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11713 if (at >= number_entries) { 11714 break; 11715 } 11716 } 11717 } 11718 } else { 11719 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11720 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11721 } 11722 } 11723 if (SCTP_SIZE32(len) > len) { 11724 /*- 11725 * Need to worry about the pad we may end up adding to the 11726 * end. This is easy since the struct is either aligned to 4 11727 * bytes or 2 bytes off. 11728 */ 11729 req_out->list_of_streams[number_entries] = 0; 11730 } 11731 /* now fix the chunk length */ 11732 ch->chunk_length = htons(len + old_len); 11733 chk->book_size = len + old_len; 11734 chk->book_size_scale = 0; 11735 chk->send_size = SCTP_SIZE32(chk->book_size); 11736 SCTP_BUF_LEN(chk->data) = chk->send_size; 11737 return (1); 11738 } 11739 11740 static void 11741 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk, 11742 int number_entries, uint16_t *list, 11743 uint32_t seq) 11744 { 11745 uint16_t len, old_len, i; 11746 struct sctp_stream_reset_in_request *req_in; 11747 struct sctp_chunkhdr *ch; 11748 11749 ch = mtod(chk->data, struct sctp_chunkhdr *); 11750 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11751 11752 /* get to new offset for the param. */ 11753 req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len); 11754 /* now how long will this param be? */ 11755 len = (uint16_t)(sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries)); 11756 req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST); 11757 req_in->ph.param_length = htons(len); 11758 req_in->request_seq = htonl(seq); 11759 if (number_entries) { 11760 for (i = 0; i < number_entries; i++) { 11761 req_in->list_of_streams[i] = htons(list[i]); 11762 } 11763 } 11764 if (SCTP_SIZE32(len) > len) { 11765 /*- 11766 * Need to worry about the pad we may end up adding to the 11767 * end. This is easy since the struct is either aligned to 4 11768 * bytes or 2 bytes off. 11769 */ 11770 req_in->list_of_streams[number_entries] = 0; 11771 } 11772 /* now fix the chunk length */ 11773 ch->chunk_length = htons(len + old_len); 11774 chk->book_size = len + old_len; 11775 chk->book_size_scale = 0; 11776 chk->send_size = SCTP_SIZE32(chk->book_size); 11777 SCTP_BUF_LEN(chk->data) = chk->send_size; 11778 return; 11779 } 11780 11781 static void 11782 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk, 11783 uint32_t seq) 11784 { 11785 uint16_t len, old_len; 11786 struct sctp_stream_reset_tsn_request *req_tsn; 11787 struct sctp_chunkhdr *ch; 11788 11789 ch = mtod(chk->data, struct sctp_chunkhdr *); 11790 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11791 11792 /* get to new offset for the param. */ 11793 req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len); 11794 /* now how long will this param be? */ 11795 len = sizeof(struct sctp_stream_reset_tsn_request); 11796 req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST); 11797 req_tsn->ph.param_length = htons(len); 11798 req_tsn->request_seq = htonl(seq); 11799 11800 /* now fix the chunk length */ 11801 ch->chunk_length = htons(len + old_len); 11802 chk->send_size = len + old_len; 11803 chk->book_size = SCTP_SIZE32(chk->send_size); 11804 chk->book_size_scale = 0; 11805 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11806 return; 11807 } 11808 11809 void 11810 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk, 11811 uint32_t resp_seq, uint32_t result) 11812 { 11813 uint16_t len, old_len; 11814 struct sctp_stream_reset_response *resp; 11815 struct sctp_chunkhdr *ch; 11816 11817 ch = mtod(chk->data, struct sctp_chunkhdr *); 11818 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11819 11820 /* get to new offset for the param. */ 11821 resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len); 11822 /* now how long will this param be? */ 11823 len = sizeof(struct sctp_stream_reset_response); 11824 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11825 resp->ph.param_length = htons(len); 11826 resp->response_seq = htonl(resp_seq); 11827 resp->result = ntohl(result); 11828 11829 /* now fix the chunk length */ 11830 ch->chunk_length = htons(len + old_len); 11831 chk->book_size = len + old_len; 11832 chk->book_size_scale = 0; 11833 chk->send_size = SCTP_SIZE32(chk->book_size); 11834 SCTP_BUF_LEN(chk->data) = chk->send_size; 11835 return; 11836 } 11837 11838 void 11839 sctp_send_deferred_reset_response(struct sctp_tcb *stcb, 11840 struct sctp_stream_reset_list *ent, 11841 int response) 11842 { 11843 struct sctp_association *asoc; 11844 struct sctp_tmit_chunk *chk; 11845 struct sctp_chunkhdr *ch; 11846 11847 asoc = &stcb->asoc; 11848 11849 /* 11850 * Reset our last reset action to the new one IP -> response 11851 * (PERFORMED probably). This assures that if we fail to send, a 11852 * retran from the peer will get the new response. 11853 */ 11854 asoc->last_reset_action[0] = response; 11855 if (asoc->stream_reset_outstanding) { 11856 return; 11857 } 11858 sctp_alloc_a_chunk(stcb, chk); 11859 if (chk == NULL) { 11860 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11861 return; 11862 } 11863 chk->copy_by_ref = 0; 11864 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 11865 chk->rec.chunk_id.can_take_data = 0; 11866 chk->flags = 0; 11867 chk->asoc = &stcb->asoc; 11868 chk->book_size = sizeof(struct sctp_chunkhdr); 11869 chk->send_size = SCTP_SIZE32(chk->book_size); 11870 chk->book_size_scale = 0; 11871 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11872 if (chk->data == NULL) { 11873 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 11874 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11875 return; 11876 } 11877 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11878 /* setup chunk parameters */ 11879 chk->sent = SCTP_DATAGRAM_UNSENT; 11880 chk->snd_count = 0; 11881 if (stcb->asoc.alternate) { 11882 chk->whoTo = stcb->asoc.alternate; 11883 } else { 11884 chk->whoTo = stcb->asoc.primary_destination; 11885 } 11886 ch = mtod(chk->data, struct sctp_chunkhdr *); 11887 ch->chunk_type = SCTP_STREAM_RESET; 11888 ch->chunk_flags = 0; 11889 ch->chunk_length = htons(chk->book_size); 11890 atomic_add_int(&chk->whoTo->ref_count, 1); 11891 SCTP_BUF_LEN(chk->data) = chk->send_size; 11892 sctp_add_stream_reset_result(chk, ent->seq, response); 11893 /* insert the chunk for sending */ 11894 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 11895 chk, 11896 sctp_next); 11897 asoc->ctrl_queue_cnt++; 11898 } 11899 11900 void 11901 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk, 11902 uint32_t resp_seq, uint32_t result, 11903 uint32_t send_una, uint32_t recv_next) 11904 { 11905 uint16_t len, old_len; 11906 struct sctp_stream_reset_response_tsn *resp; 11907 struct sctp_chunkhdr *ch; 11908 11909 ch = mtod(chk->data, struct sctp_chunkhdr *); 11910 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11911 11912 /* get to new offset for the param. */ 11913 resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len); 11914 /* now how long will this param be? */ 11915 len = sizeof(struct sctp_stream_reset_response_tsn); 11916 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11917 resp->ph.param_length = htons(len); 11918 resp->response_seq = htonl(resp_seq); 11919 resp->result = htonl(result); 11920 resp->senders_next_tsn = htonl(send_una); 11921 resp->receivers_next_tsn = htonl(recv_next); 11922 11923 /* now fix the chunk length */ 11924 ch->chunk_length = htons(len + old_len); 11925 chk->book_size = len + old_len; 11926 chk->send_size = SCTP_SIZE32(chk->book_size); 11927 chk->book_size_scale = 0; 11928 SCTP_BUF_LEN(chk->data) = chk->send_size; 11929 return; 11930 } 11931 11932 static void 11933 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk, 11934 uint32_t seq, 11935 uint16_t adding) 11936 { 11937 uint16_t len, old_len; 11938 struct sctp_chunkhdr *ch; 11939 struct sctp_stream_reset_add_strm *addstr; 11940 11941 ch = mtod(chk->data, struct sctp_chunkhdr *); 11942 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11943 11944 /* get to new offset for the param. */ 11945 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11946 /* now how long will this param be? */ 11947 len = sizeof(struct sctp_stream_reset_add_strm); 11948 11949 /* Fill it out. */ 11950 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS); 11951 addstr->ph.param_length = htons(len); 11952 addstr->request_seq = htonl(seq); 11953 addstr->number_of_streams = htons(adding); 11954 addstr->reserved = 0; 11955 11956 /* now fix the chunk length */ 11957 ch->chunk_length = htons(len + old_len); 11958 chk->send_size = len + old_len; 11959 chk->book_size = SCTP_SIZE32(chk->send_size); 11960 chk->book_size_scale = 0; 11961 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11962 return; 11963 } 11964 11965 static void 11966 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk, 11967 uint32_t seq, 11968 uint16_t adding) 11969 { 11970 uint16_t len, old_len; 11971 struct sctp_chunkhdr *ch; 11972 struct sctp_stream_reset_add_strm *addstr; 11973 11974 ch = mtod(chk->data, struct sctp_chunkhdr *); 11975 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11976 11977 /* get to new offset for the param. */ 11978 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11979 /* now how long will this param be? */ 11980 len = sizeof(struct sctp_stream_reset_add_strm); 11981 /* Fill it out. */ 11982 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS); 11983 addstr->ph.param_length = htons(len); 11984 addstr->request_seq = htonl(seq); 11985 addstr->number_of_streams = htons(adding); 11986 addstr->reserved = 0; 11987 11988 /* now fix the chunk length */ 11989 ch->chunk_length = htons(len + old_len); 11990 chk->send_size = len + old_len; 11991 chk->book_size = SCTP_SIZE32(chk->send_size); 11992 chk->book_size_scale = 0; 11993 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11994 return; 11995 } 11996 11997 int 11998 sctp_send_stream_reset_out_if_possible(struct sctp_tcb *stcb, int so_locked) 11999 { 12000 struct sctp_association *asoc; 12001 struct sctp_tmit_chunk *chk; 12002 struct sctp_chunkhdr *ch; 12003 uint32_t seq; 12004 12005 asoc = &stcb->asoc; 12006 asoc->trigger_reset = 0; 12007 if (asoc->stream_reset_outstanding) { 12008 return (EALREADY); 12009 } 12010 sctp_alloc_a_chunk(stcb, chk); 12011 if (chk == NULL) { 12012 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12013 return (ENOMEM); 12014 } 12015 chk->copy_by_ref = 0; 12016 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12017 chk->rec.chunk_id.can_take_data = 0; 12018 chk->flags = 0; 12019 chk->asoc = &stcb->asoc; 12020 chk->book_size = sizeof(struct sctp_chunkhdr); 12021 chk->send_size = SCTP_SIZE32(chk->book_size); 12022 chk->book_size_scale = 0; 12023 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12024 if (chk->data == NULL) { 12025 sctp_free_a_chunk(stcb, chk, so_locked); 12026 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12027 return (ENOMEM); 12028 } 12029 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12030 12031 /* setup chunk parameters */ 12032 chk->sent = SCTP_DATAGRAM_UNSENT; 12033 chk->snd_count = 0; 12034 if (stcb->asoc.alternate) { 12035 chk->whoTo = stcb->asoc.alternate; 12036 } else { 12037 chk->whoTo = stcb->asoc.primary_destination; 12038 } 12039 ch = mtod(chk->data, struct sctp_chunkhdr *); 12040 ch->chunk_type = SCTP_STREAM_RESET; 12041 ch->chunk_flags = 0; 12042 ch->chunk_length = htons(chk->book_size); 12043 atomic_add_int(&chk->whoTo->ref_count, 1); 12044 SCTP_BUF_LEN(chk->data) = chk->send_size; 12045 seq = stcb->asoc.str_reset_seq_out; 12046 if (sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1))) { 12047 seq++; 12048 asoc->stream_reset_outstanding++; 12049 } else { 12050 m_freem(chk->data); 12051 chk->data = NULL; 12052 sctp_free_a_chunk(stcb, chk, so_locked); 12053 return (ENOENT); 12054 } 12055 asoc->str_reset = chk; 12056 /* insert the chunk for sending */ 12057 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12058 chk, 12059 sctp_next); 12060 asoc->ctrl_queue_cnt++; 12061 12062 if (stcb->asoc.send_sack) { 12063 sctp_send_sack(stcb, so_locked); 12064 } 12065 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12066 return (0); 12067 } 12068 12069 int 12070 sctp_send_str_reset_req(struct sctp_tcb *stcb, 12071 uint16_t number_entries, uint16_t *list, 12072 uint8_t send_in_req, 12073 uint8_t send_tsn_req, 12074 uint8_t add_stream, 12075 uint16_t adding_o, 12076 uint16_t adding_i, uint8_t peer_asked) 12077 { 12078 struct sctp_association *asoc; 12079 struct sctp_tmit_chunk *chk; 12080 struct sctp_chunkhdr *ch; 12081 int can_send_out_req = 0; 12082 uint32_t seq; 12083 12084 SCTP_TCB_LOCK_ASSERT(stcb); 12085 12086 asoc = &stcb->asoc; 12087 if (asoc->stream_reset_outstanding) { 12088 /*- 12089 * Already one pending, must get ACK back to clear the flag. 12090 */ 12091 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY); 12092 return (EBUSY); 12093 } 12094 if ((send_in_req == 0) && (send_tsn_req == 0) && 12095 (add_stream == 0)) { 12096 /* nothing to do */ 12097 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12098 return (EINVAL); 12099 } 12100 if (send_tsn_req && send_in_req) { 12101 /* error, can't do that */ 12102 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12103 return (EINVAL); 12104 } else if (send_in_req) { 12105 can_send_out_req = 1; 12106 } 12107 if (number_entries > (MCLBYTES - 12108 SCTP_MIN_OVERHEAD - 12109 sizeof(struct sctp_chunkhdr) - 12110 sizeof(struct sctp_stream_reset_out_request)) / 12111 sizeof(uint16_t)) { 12112 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12113 return (ENOMEM); 12114 } 12115 sctp_alloc_a_chunk(stcb, chk); 12116 if (chk == NULL) { 12117 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12118 return (ENOMEM); 12119 } 12120 chk->copy_by_ref = 0; 12121 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12122 chk->rec.chunk_id.can_take_data = 0; 12123 chk->flags = 0; 12124 chk->asoc = &stcb->asoc; 12125 chk->book_size = sizeof(struct sctp_chunkhdr); 12126 chk->send_size = SCTP_SIZE32(chk->book_size); 12127 chk->book_size_scale = 0; 12128 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12129 if (chk->data == NULL) { 12130 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 12131 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12132 return (ENOMEM); 12133 } 12134 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12135 12136 /* setup chunk parameters */ 12137 chk->sent = SCTP_DATAGRAM_UNSENT; 12138 chk->snd_count = 0; 12139 if (stcb->asoc.alternate) { 12140 chk->whoTo = stcb->asoc.alternate; 12141 } else { 12142 chk->whoTo = stcb->asoc.primary_destination; 12143 } 12144 atomic_add_int(&chk->whoTo->ref_count, 1); 12145 ch = mtod(chk->data, struct sctp_chunkhdr *); 12146 ch->chunk_type = SCTP_STREAM_RESET; 12147 ch->chunk_flags = 0; 12148 ch->chunk_length = htons(chk->book_size); 12149 SCTP_BUF_LEN(chk->data) = chk->send_size; 12150 12151 seq = stcb->asoc.str_reset_seq_out; 12152 if (can_send_out_req) { 12153 int ret; 12154 12155 ret = sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1)); 12156 if (ret) { 12157 seq++; 12158 asoc->stream_reset_outstanding++; 12159 } 12160 } 12161 if ((add_stream & 1) && 12162 ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) { 12163 /* Need to allocate more */ 12164 struct sctp_stream_out *oldstream; 12165 struct sctp_stream_queue_pending *sp, *nsp; 12166 int i; 12167 #if defined(SCTP_DETAILED_STR_STATS) 12168 int j; 12169 #endif 12170 12171 oldstream = stcb->asoc.strmout; 12172 /* get some more */ 12173 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *, 12174 (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out), 12175 SCTP_M_STRMO); 12176 if (stcb->asoc.strmout == NULL) { 12177 uint8_t x; 12178 12179 stcb->asoc.strmout = oldstream; 12180 /* Turn off the bit */ 12181 x = add_stream & 0xfe; 12182 add_stream = x; 12183 goto skip_stuff; 12184 } 12185 /* 12186 * Ok now we proceed with copying the old out stuff and 12187 * initializing the new stuff. 12188 */ 12189 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, false); 12190 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 12191 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12192 /* FIX ME FIX ME */ 12193 /* 12194 * This should be a SS_COPY operation FIX ME STREAM 12195 * SCHEDULER EXPERT 12196 */ 12197 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]); 12198 stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues; 12199 #if defined(SCTP_DETAILED_STR_STATS) 12200 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 12201 stcb->asoc.strmout[i].abandoned_sent[j] = oldstream[i].abandoned_sent[j]; 12202 stcb->asoc.strmout[i].abandoned_unsent[j] = oldstream[i].abandoned_unsent[j]; 12203 } 12204 #else 12205 stcb->asoc.strmout[i].abandoned_sent[0] = oldstream[i].abandoned_sent[0]; 12206 stcb->asoc.strmout[i].abandoned_unsent[0] = oldstream[i].abandoned_unsent[0]; 12207 #endif 12208 stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered; 12209 stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered; 12210 stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete; 12211 stcb->asoc.strmout[i].sid = i; 12212 stcb->asoc.strmout[i].state = oldstream[i].state; 12213 /* now anything on those queues? */ 12214 TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) { 12215 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next); 12216 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next); 12217 } 12218 } 12219 /* now the new streams */ 12220 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc); 12221 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) { 12222 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12223 stcb->asoc.strmout[i].chunks_on_queues = 0; 12224 #if defined(SCTP_DETAILED_STR_STATS) 12225 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 12226 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 12227 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 12228 } 12229 #else 12230 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 12231 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 12232 #endif 12233 stcb->asoc.strmout[i].next_mid_ordered = 0; 12234 stcb->asoc.strmout[i].next_mid_unordered = 0; 12235 stcb->asoc.strmout[i].sid = i; 12236 stcb->asoc.strmout[i].last_msg_incomplete = 0; 12237 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 12238 stcb->asoc.strmout[i].state = SCTP_STREAM_CLOSED; 12239 } 12240 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o; 12241 SCTP_FREE(oldstream, SCTP_M_STRMO); 12242 } 12243 skip_stuff: 12244 if ((add_stream & 1) && (adding_o > 0)) { 12245 asoc->strm_pending_add_size = adding_o; 12246 asoc->peer_req_out = peer_asked; 12247 sctp_add_an_out_stream(chk, seq, adding_o); 12248 seq++; 12249 asoc->stream_reset_outstanding++; 12250 } 12251 if ((add_stream & 2) && (adding_i > 0)) { 12252 sctp_add_an_in_stream(chk, seq, adding_i); 12253 seq++; 12254 asoc->stream_reset_outstanding++; 12255 } 12256 if (send_in_req) { 12257 sctp_add_stream_reset_in(chk, number_entries, list, seq); 12258 seq++; 12259 asoc->stream_reset_outstanding++; 12260 } 12261 if (send_tsn_req) { 12262 sctp_add_stream_reset_tsn(chk, seq); 12263 asoc->stream_reset_outstanding++; 12264 } 12265 asoc->str_reset = chk; 12266 /* insert the chunk for sending */ 12267 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12268 chk, 12269 sctp_next); 12270 asoc->ctrl_queue_cnt++; 12271 if (stcb->asoc.send_sack) { 12272 sctp_send_sack(stcb, SCTP_SO_LOCKED); 12273 } 12274 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12275 return (0); 12276 } 12277 12278 void 12279 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, 12280 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12281 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12282 uint32_t vrf_id, uint16_t port) 12283 { 12284 /* Don't respond to an ABORT with an ABORT. */ 12285 if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) { 12286 if (cause) 12287 sctp_m_freem(cause); 12288 return; 12289 } 12290 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause, 12291 mflowtype, mflowid, fibnum, 12292 vrf_id, port); 12293 return; 12294 } 12295 12296 void 12297 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst, 12298 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12299 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12300 uint32_t vrf_id, uint16_t port) 12301 { 12302 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause, 12303 mflowtype, mflowid, fibnum, 12304 vrf_id, port); 12305 return; 12306 } 12307 12308 static struct mbuf * 12309 sctp_copy_resume(struct uio *uio, 12310 int max_send_len, 12311 int user_marks_eor, 12312 int *error, 12313 uint32_t *sndout, 12314 struct mbuf **new_tail) 12315 { 12316 struct mbuf *m; 12317 12318 m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0, 12319 (M_PKTHDR | (user_marks_eor ? M_EOR : 0))); 12320 if (m == NULL) { 12321 /* The only possible error is EFAULT. */ 12322 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 12323 *error = EFAULT; 12324 } else { 12325 *sndout = m_length(m, NULL); 12326 *new_tail = m_last(m); 12327 } 12328 return (m); 12329 } 12330 12331 static int 12332 sctp_copy_one(struct sctp_stream_queue_pending *sp, 12333 struct uio *uio, 12334 int resv_upfront) 12335 { 12336 sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, resv_upfront, 0); 12337 if (sp->data == NULL) { 12338 /* The only possible error is EFAULT. */ 12339 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 12340 return (EFAULT); 12341 } 12342 sp->tail_mbuf = m_last(sp->data); 12343 return (0); 12344 } 12345 12346 static struct sctp_stream_queue_pending * 12347 sctp_copy_it_in(struct sctp_tcb *stcb, 12348 struct sctp_association *asoc, 12349 struct sctp_nonpad_sndrcvinfo *srcv, 12350 struct uio *uio, 12351 struct sctp_nets *net, 12352 ssize_t max_send_len, 12353 int user_marks_eor, 12354 int *error) 12355 { 12356 12357 /*- 12358 * This routine must be very careful in its work. Protocol 12359 * processing is up and running so care must be taken to spl...() 12360 * when you need to do something that may effect the stcb/asoc. The 12361 * sb is locked however. When data is copied the protocol processing 12362 * should be enabled since this is a slower operation... 12363 */ 12364 struct sctp_stream_queue_pending *sp; 12365 int resv_in_first; 12366 12367 *error = 0; 12368 sctp_alloc_a_strmoq(stcb, sp); 12369 if (sp == NULL) { 12370 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12371 *error = ENOMEM; 12372 goto out_now; 12373 } 12374 sp->act_flags = 0; 12375 sp->sender_all_done = 0; 12376 sp->sinfo_flags = srcv->sinfo_flags; 12377 sp->timetolive = srcv->sinfo_timetolive; 12378 sp->ppid = srcv->sinfo_ppid; 12379 sp->context = srcv->sinfo_context; 12380 sp->fsn = 0; 12381 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 12382 sp->sid = srcv->sinfo_stream; 12383 sp->length = (uint32_t)min(uio->uio_resid, max_send_len); 12384 if ((sp->length == (uint32_t)uio->uio_resid) && 12385 ((user_marks_eor == 0) || 12386 (srcv->sinfo_flags & SCTP_EOF) || 12387 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 12388 sp->msg_is_complete = 1; 12389 } else { 12390 sp->msg_is_complete = 0; 12391 } 12392 sp->sender_all_done = 0; 12393 sp->some_taken = 0; 12394 sp->put_last_out = 0; 12395 resv_in_first = SCTP_DATA_CHUNK_OVERHEAD(stcb); 12396 sp->data = sp->tail_mbuf = NULL; 12397 if (sp->length == 0) { 12398 goto skip_copy; 12399 } 12400 if (srcv->sinfo_keynumber_valid) { 12401 sp->auth_keyid = srcv->sinfo_keynumber; 12402 } else { 12403 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 12404 } 12405 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 12406 sctp_auth_key_acquire(stcb, sp->auth_keyid); 12407 sp->holds_key_ref = 1; 12408 } 12409 *error = sctp_copy_one(sp, uio, resv_in_first); 12410 skip_copy: 12411 if (*error) { 12412 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 12413 sp = NULL; 12414 } else { 12415 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 12416 sp->net = net; 12417 atomic_add_int(&sp->net->ref_count, 1); 12418 } else { 12419 sp->net = NULL; 12420 } 12421 sctp_set_prsctp_policy(sp); 12422 } 12423 out_now: 12424 return (sp); 12425 } 12426 12427 int 12428 sctp_sosend(struct socket *so, 12429 struct sockaddr *addr, 12430 struct uio *uio, 12431 struct mbuf *top, 12432 struct mbuf *control, 12433 int flags, 12434 struct thread *p) 12435 { 12436 struct sctp_sndrcvinfo sndrcvninfo; 12437 #if defined(INET) && defined(INET6) 12438 struct sockaddr_in sin; 12439 #endif 12440 struct sockaddr *addr_to_use; 12441 int error; 12442 bool use_sndinfo; 12443 12444 if (control != NULL) { 12445 /* process cmsg snd/rcv info (maybe a assoc-id) */ 12446 use_sndinfo = sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, sizeof(sndrcvninfo)); 12447 } else { 12448 use_sndinfo = false; 12449 } 12450 #if defined(INET) && defined(INET6) 12451 if ((addr != NULL) && (addr->sa_family == AF_INET6)) { 12452 struct sockaddr_in6 *sin6; 12453 12454 if (addr->sa_len != sizeof(struct sockaddr_in6)) { 12455 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12456 return (EINVAL); 12457 } 12458 sin6 = (struct sockaddr_in6 *)addr; 12459 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 12460 in6_sin6_2_sin(&sin, sin6); 12461 addr_to_use = (struct sockaddr *)&sin; 12462 } else { 12463 addr_to_use = addr; 12464 } 12465 } else { 12466 addr_to_use = addr; 12467 } 12468 #else 12469 addr_to_use = addr; 12470 #endif 12471 error = sctp_lower_sosend(so, addr_to_use, uio, top, control, flags, 12472 use_sndinfo ? &sndrcvninfo : NULL, p); 12473 return (error); 12474 } 12475 12476 int 12477 sctp_lower_sosend(struct socket *so, 12478 struct sockaddr *addr, 12479 struct uio *uio, 12480 struct mbuf *top, 12481 struct mbuf *control, 12482 int flags, 12483 struct sctp_sndrcvinfo *srcv, 12484 struct thread *p) 12485 { 12486 struct sctp_nonpad_sndrcvinfo sndrcvninfo_buf; 12487 struct epoch_tracker et; 12488 struct timeval now; 12489 struct sctp_block_entry be; 12490 struct sctp_inpcb *inp; 12491 struct sctp_tcb *stcb = NULL; 12492 struct sctp_nets *net; 12493 struct sctp_association *asoc; 12494 struct sctp_inpcb *t_inp; 12495 struct sctp_nonpad_sndrcvinfo *sndrcvninfo; 12496 ssize_t sndlen = 0, max_len, local_add_more; 12497 ssize_t local_soresv = 0; 12498 sctp_assoc_t sinfo_assoc_id; 12499 int user_marks_eor; 12500 int nagle_applies = 0; 12501 int error; 12502 int queue_only = 0, queue_only_for_init = 0; 12503 int un_sent; 12504 int now_filled = 0; 12505 unsigned int inqueue_bytes = 0; 12506 uint16_t port; 12507 uint16_t sinfo_flags; 12508 uint16_t sinfo_stream; 12509 bool create_lock_applied = false; 12510 bool free_cnt_applied = false; 12511 bool some_on_control; 12512 bool got_all_of_the_send = false; 12513 bool non_blocking = false; 12514 12515 error = 0; 12516 net = NULL; 12517 stcb = NULL; 12518 12519 if ((uio == NULL) && (top == NULL)) { 12520 error = EINVAL; 12521 goto out_unlocked; 12522 } 12523 if (addr != NULL) { 12524 union sctp_sockstore *raddr = (union sctp_sockstore *)addr; 12525 12526 switch (raddr->sa.sa_family) { 12527 #ifdef INET 12528 case AF_INET: 12529 if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) { 12530 error = EINVAL; 12531 goto out_unlocked; 12532 } 12533 port = raddr->sin.sin_port; 12534 break; 12535 #endif 12536 #ifdef INET6 12537 case AF_INET6: 12538 if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) { 12539 error = EINVAL; 12540 goto out_unlocked; 12541 } 12542 port = raddr->sin6.sin6_port; 12543 break; 12544 #endif 12545 default: 12546 error = EAFNOSUPPORT; 12547 goto out_unlocked; 12548 } 12549 } else { 12550 port = 0; 12551 } 12552 if (uio != NULL) { 12553 if (uio->uio_resid < 0) { 12554 error = EINVAL; 12555 goto out_unlocked; 12556 } 12557 sndlen = uio->uio_resid; 12558 } else { 12559 sndlen = SCTP_HEADER_LEN(top); 12560 } 12561 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %zd\n", 12562 (void *)addr, sndlen); 12563 12564 t_inp = inp = (struct sctp_inpcb *)so->so_pcb; 12565 if (inp == NULL) { 12566 error = EINVAL; 12567 goto out_unlocked; 12568 } 12569 user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 12570 if ((uio == NULL) && (user_marks_eor != 0)) { 12571 /*- 12572 * We do not support eeor mode for 12573 * sending with mbuf chains (like sendfile). 12574 */ 12575 error = EINVAL; 12576 goto out_unlocked; 12577 } 12578 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 12579 SCTP_IS_LISTENING(inp)) { 12580 /* The listener can NOT send. */ 12581 error = EINVAL; 12582 goto out_unlocked; 12583 } 12584 atomic_add_int(&inp->total_sends, 1); 12585 12586 if (srcv != NULL) { 12587 sndrcvninfo = (struct sctp_nonpad_sndrcvinfo *)srcv; 12588 sinfo_assoc_id = sndrcvninfo->sinfo_assoc_id; 12589 sinfo_flags = sndrcvninfo->sinfo_flags; 12590 if (INVALID_SINFO_FLAG(sinfo_flags) || 12591 PR_SCTP_INVALID_POLICY(sinfo_flags)) { 12592 error = EINVAL; 12593 goto out_unlocked; 12594 } 12595 if (sinfo_flags != 0) { 12596 SCTP_STAT_INCR(sctps_sends_with_flags); 12597 } 12598 } else { 12599 sndrcvninfo = NULL; 12600 sinfo_flags = inp->def_send.sinfo_flags; 12601 sinfo_assoc_id = inp->def_send.sinfo_assoc_id; 12602 } 12603 if (flags & MSG_EOR) { 12604 sinfo_flags |= SCTP_EOR; 12605 } 12606 if (flags & MSG_EOF) { 12607 sinfo_flags |= SCTP_EOF; 12608 } 12609 if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) { 12610 error = EINVAL; 12611 goto out_unlocked; 12612 } 12613 SCTP_INP_RLOCK(inp); 12614 if ((sinfo_flags & SCTP_SENDALL) && 12615 (inp->sctp_flags & SCTP_PCB_FLAGS_UDPTYPE)) { 12616 SCTP_INP_RUNLOCK(inp); 12617 error = sctp_sendall(inp, uio, top, sndrcvninfo); 12618 top = NULL; 12619 goto out_unlocked; 12620 } 12621 /* Now we must find the association. */ 12622 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 12623 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 12624 stcb = LIST_FIRST(&inp->sctp_asoc_list); 12625 if (stcb != NULL) { 12626 SCTP_TCB_LOCK(stcb); 12627 } 12628 SCTP_INP_RUNLOCK(inp); 12629 } else if (sinfo_assoc_id > SCTP_ALL_ASSOC) { 12630 stcb = sctp_findasoc_ep_asocid_locked(inp, sinfo_assoc_id, 1); 12631 SCTP_INP_RUNLOCK(inp); 12632 if (stcb != NULL) { 12633 SCTP_TCB_LOCK_ASSERT(stcb); 12634 } 12635 } else if (addr != NULL) { 12636 /*- 12637 * Since we did not use findep we must 12638 * increment it, and if we don't find a tcb 12639 * decrement it. 12640 */ 12641 SCTP_INP_INCR_REF(inp); 12642 SCTP_INP_RUNLOCK(inp); 12643 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12644 if (stcb == NULL) { 12645 SCTP_INP_WLOCK(inp); 12646 SCTP_INP_DECR_REF(inp); 12647 SCTP_INP_WUNLOCK(inp); 12648 } else { 12649 SCTP_TCB_LOCK_ASSERT(stcb); 12650 } 12651 } else { 12652 SCTP_INP_RUNLOCK(inp); 12653 } 12654 12655 #ifdef INVARIANTS 12656 if (stcb != NULL) { 12657 SCTP_TCB_LOCK_ASSERT(stcb); 12658 } 12659 #endif 12660 12661 if ((stcb == NULL) && (addr != NULL)) { 12662 /* Possible implicit send? */ 12663 SCTP_ASOC_CREATE_LOCK(inp); 12664 create_lock_applied = true; 12665 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 12666 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 12667 error = EINVAL; 12668 goto out_unlocked; 12669 } 12670 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 12671 (addr->sa_family == AF_INET6)) { 12672 error = EINVAL; 12673 goto out_unlocked; 12674 } 12675 SCTP_INP_WLOCK(inp); 12676 SCTP_INP_INCR_REF(inp); 12677 SCTP_INP_WUNLOCK(inp); 12678 /* With the lock applied look again */ 12679 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12680 #if defined(INET) || defined(INET6) 12681 if ((stcb == NULL) && (control != NULL) && (port > 0)) { 12682 stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error); 12683 } 12684 #endif 12685 if (stcb == NULL) { 12686 SCTP_INP_WLOCK(inp); 12687 SCTP_INP_DECR_REF(inp); 12688 SCTP_INP_WUNLOCK(inp); 12689 } else { 12690 SCTP_TCB_LOCK_ASSERT(stcb); 12691 SCTP_ASOC_CREATE_UNLOCK(inp); 12692 create_lock_applied = false; 12693 } 12694 if (error != 0) { 12695 goto out_unlocked; 12696 } 12697 if (t_inp != inp) { 12698 error = ENOTCONN; 12699 goto out_unlocked; 12700 } 12701 } 12702 if (stcb == NULL) { 12703 if (addr == NULL) { 12704 error = ENOENT; 12705 goto out_unlocked; 12706 } else { 12707 /* We must go ahead and start the INIT process */ 12708 uint32_t vrf_id; 12709 12710 if ((sinfo_flags & SCTP_ABORT) || 12711 ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) { 12712 /*- 12713 * User asks to abort a non-existent assoc, 12714 * or EOF a non-existent assoc with no data 12715 */ 12716 error = ENOENT; 12717 goto out_unlocked; 12718 } 12719 /* get an asoc/stcb struct */ 12720 vrf_id = inp->def_vrf_id; 12721 KASSERT(create_lock_applied, ("create_lock_applied is false")); 12722 stcb = sctp_aloc_assoc_connected(inp, addr, &error, 0, 0, vrf_id, 12723 inp->sctp_ep.pre_open_stream_count, 12724 inp->sctp_ep.port, 12725 p, 12726 SCTP_INITIALIZE_AUTH_PARAMS); 12727 if (stcb == NULL) { 12728 /* error is setup for us in the call. */ 12729 KASSERT(error != 0, ("error is 0 although stcb is NULL")); 12730 goto out_unlocked; 12731 } 12732 SCTP_TCB_LOCK_ASSERT(stcb); 12733 SCTP_ASOC_CREATE_UNLOCK(inp); 12734 create_lock_applied = false; 12735 /* 12736 * Turn on queue only flag to prevent data from 12737 * being sent 12738 */ 12739 queue_only = 1; 12740 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 12741 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered); 12742 if (control != NULL) { 12743 if (sctp_process_cmsgs_for_init(stcb, control, &error)) { 12744 sctp_free_assoc(inp, stcb, SCTP_NORMAL_PROC, 12745 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6); 12746 stcb = NULL; 12747 KASSERT(error != 0, 12748 ("error is 0 although sctp_process_cmsgs_for_init() indicated an error")); 12749 goto out_unlocked; 12750 } 12751 } 12752 /* out with the INIT */ 12753 queue_only_for_init = 1; 12754 /*- 12755 * we may want to dig in after this call and adjust the MTU 12756 * value. It defaulted to 1500 (constant) but the ro 12757 * structure may now have an update and thus we may need to 12758 * change it BEFORE we append the message. 12759 */ 12760 } 12761 } 12762 12763 KASSERT(!create_lock_applied, ("create_lock_applied is true")); 12764 KASSERT(stcb != NULL, ("stcb is NULL")); 12765 SCTP_TCB_LOCK_ASSERT(stcb); 12766 12767 asoc = &stcb->asoc; 12768 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 12769 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 12770 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 12771 /* XXX: Could also be ECONNABORTED, not enough info. */ 12772 error = ECONNRESET; 12773 } else { 12774 error = ENOTCONN; 12775 } 12776 goto out_unlocked; 12777 } 12778 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 12779 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) { 12780 queue_only = 1; 12781 } 12782 /* Keep the stcb from being freed under our feet. */ 12783 atomic_add_int(&asoc->refcnt, 1); 12784 free_cnt_applied = true; 12785 if (sndrcvninfo == NULL) { 12786 /* Use a local copy to have a consistent view. */ 12787 sndrcvninfo_buf = asoc->def_send; 12788 sndrcvninfo = &sndrcvninfo_buf; 12789 sinfo_flags = sndrcvninfo->sinfo_flags; 12790 if (flags & MSG_EOR) { 12791 sinfo_flags |= SCTP_EOR; 12792 } 12793 if (flags & MSG_EOF) { 12794 sinfo_flags |= SCTP_EOF; 12795 } 12796 } 12797 /* Are we aborting? */ 12798 if (sinfo_flags & SCTP_ABORT) { 12799 struct mbuf *mm; 12800 struct sctp_paramhdr *ph; 12801 ssize_t tot_demand, tot_out = 0, max_out; 12802 12803 SCTP_STAT_INCR(sctps_sends_with_abort); 12804 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 12805 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) { 12806 /* It has to be up before we abort. */ 12807 error = EINVAL; 12808 goto out_unlocked; 12809 } 12810 /* How big is the user initiated abort? */ 12811 if (top != NULL) { 12812 struct mbuf *cntm; 12813 12814 if (sndlen != 0) { 12815 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) { 12816 tot_out += SCTP_BUF_LEN(cntm); 12817 } 12818 } 12819 mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); 12820 } else { 12821 /* Must fit in a MTU */ 12822 tot_out = sndlen; 12823 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); 12824 if (tot_demand > SCTP_DEFAULT_ADD_MORE) { 12825 error = EMSGSIZE; 12826 goto out_unlocked; 12827 } 12828 mm = sctp_get_mbuf_for_msg((unsigned int)tot_demand, 0, M_NOWAIT, 1, MT_DATA); 12829 } 12830 if (mm == NULL) { 12831 error = ENOMEM; 12832 goto out_unlocked; 12833 } 12834 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr); 12835 max_out -= sizeof(struct sctp_abort_msg); 12836 if (tot_out > max_out) { 12837 tot_out = max_out; 12838 } 12839 ph = mtod(mm, struct sctp_paramhdr *); 12840 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 12841 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + tot_out)); 12842 ph++; 12843 SCTP_BUF_LEN(mm) = (int)(tot_out + sizeof(struct sctp_paramhdr)); 12844 if (top == NULL) { 12845 SCTP_TCB_UNLOCK(stcb); 12846 error = uiomove((caddr_t)ph, (int)tot_out, uio); 12847 SCTP_TCB_LOCK(stcb); 12848 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 12849 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 12850 sctp_m_freem(mm); 12851 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 12852 /* 12853 * XXX: Could also be ECONNABORTED, 12854 * not enough info. 12855 */ 12856 error = ECONNRESET; 12857 } else { 12858 error = ENOTCONN; 12859 } 12860 goto out_unlocked; 12861 } 12862 if (error != 0) { 12863 /*- 12864 * Here if we can't get his data we 12865 * still abort we just don't get to 12866 * send the users note :-0 12867 */ 12868 sctp_m_freem(mm); 12869 mm = NULL; 12870 error = 0; 12871 } 12872 } else { 12873 if (sndlen != 0) { 12874 SCTP_BUF_NEXT(mm) = top; 12875 } 12876 } 12877 atomic_subtract_int(&asoc->refcnt, 1); 12878 free_cnt_applied = false; 12879 /* release this lock, otherwise we hang on ourselves */ 12880 NET_EPOCH_ENTER(et); 12881 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, false, SCTP_SO_LOCKED); 12882 NET_EPOCH_EXIT(et); 12883 stcb = NULL; 12884 /* 12885 * In this case top is already chained to mm avoid double 12886 * free, since we free it below if top != NULL and driver 12887 * would free it after sending the packet out 12888 */ 12889 if (sndlen != 0) { 12890 top = NULL; 12891 } 12892 goto out_unlocked; 12893 } 12894 12895 KASSERT(stcb != NULL, ("stcb is NULL")); 12896 SCTP_TCB_LOCK_ASSERT(stcb); 12897 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 12898 ("Association about to be freed")); 12899 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 12900 ("Association was aborted")); 12901 12902 if (sinfo_flags & SCTP_ADDR_OVER) { 12903 if (addr != NULL) { 12904 net = sctp_findnet(stcb, addr); 12905 } else { 12906 net = NULL; 12907 } 12908 if ((net == NULL) || 12909 ((port != 0) && (port != stcb->rport))) { 12910 error = EINVAL; 12911 goto out_unlocked; 12912 } 12913 } else { 12914 if (asoc->alternate != NULL) { 12915 net = asoc->alternate; 12916 } else { 12917 net = asoc->primary_destination; 12918 } 12919 } 12920 if (sndlen == 0) { 12921 if (sinfo_flags & SCTP_EOF) { 12922 got_all_of_the_send = true; 12923 goto dataless_eof; 12924 } else { 12925 error = EINVAL; 12926 goto out_unlocked; 12927 } 12928 } 12929 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) { 12930 if (sndlen > (ssize_t)asoc->smallest_mtu) { 12931 error = EMSGSIZE; 12932 goto out_unlocked; 12933 } 12934 } 12935 sinfo_stream = sndrcvninfo->sinfo_stream; 12936 /* Is the stream no. valid? */ 12937 if (sinfo_stream >= asoc->streamoutcnt) { 12938 /* Invalid stream number */ 12939 error = EINVAL; 12940 goto out_unlocked; 12941 } 12942 if ((asoc->strmout[sinfo_stream].state != SCTP_STREAM_OPEN) && 12943 (asoc->strmout[sinfo_stream].state != SCTP_STREAM_OPENING)) { 12944 /* 12945 * Can't queue any data while stream reset is underway. 12946 */ 12947 if (asoc->strmout[sinfo_stream].state > SCTP_STREAM_OPEN) { 12948 error = EAGAIN; 12949 } else { 12950 error = EINVAL; 12951 } 12952 goto out_unlocked; 12953 } 12954 atomic_add_int(&stcb->total_sends, 1); 12955 if (SCTP_SO_IS_NBIO(so) || (flags & (MSG_NBIO | MSG_DONTWAIT)) != 0) { 12956 non_blocking = true; 12957 } 12958 if (non_blocking) { 12959 ssize_t amount; 12960 12961 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 12962 if (user_marks_eor == 0) { 12963 amount = sndlen; 12964 } else { 12965 amount = 1; 12966 } 12967 if ((SCTP_SB_LIMIT_SND(so) < (amount + inqueue_bytes + asoc->sb_send_resv)) || 12968 (asoc->chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12969 if ((sndlen > (ssize_t)SCTP_SB_LIMIT_SND(so)) && 12970 (user_marks_eor == 0)) { 12971 error = EMSGSIZE; 12972 } else { 12973 error = EWOULDBLOCK; 12974 } 12975 goto out_unlocked; 12976 } 12977 } 12978 atomic_add_int(&asoc->sb_send_resv, (int)sndlen); 12979 local_soresv = sndlen; 12980 12981 KASSERT(stcb != NULL, ("stcb is NULL")); 12982 SCTP_TCB_LOCK_ASSERT(stcb); 12983 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 12984 ("Association about to be freed")); 12985 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 12986 ("Association was aborted")); 12987 12988 /* Ok, we will attempt a msgsnd :> */ 12989 if (p != NULL) { 12990 p->td_ru.ru_msgsnd++; 12991 } 12992 /* Calculate the maximum we can send */ 12993 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 12994 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 12995 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12996 } else { 12997 max_len = 0; 12998 } 12999 /* Unless E_EOR mode is on, we must make a send FIT in one call. */ 13000 if ((user_marks_eor == 0) && 13001 (sndlen > (ssize_t)SCTP_SB_LIMIT_SND(stcb->sctp_socket))) { 13002 /* It will NEVER fit. */ 13003 error = EMSGSIZE; 13004 goto out_unlocked; 13005 } 13006 if (user_marks_eor != 0) { 13007 local_add_more = (ssize_t)min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold)); 13008 } else { 13009 /*- 13010 * For non-eeor the whole message must fit in 13011 * the socket send buffer. 13012 */ 13013 local_add_more = sndlen; 13014 } 13015 if (non_blocking) { 13016 goto skip_preblock; 13017 } 13018 if (((max_len <= local_add_more) && ((ssize_t)SCTP_SB_LIMIT_SND(so) >= local_add_more)) || 13019 (max_len == 0) || 13020 ((asoc->chunks_on_out_queue + asoc->stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13021 /* No room right now! */ 13022 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13023 SOCKBUF_LOCK(&so->so_snd); 13024 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) || 13025 ((asoc->stream_queue_cnt + asoc->chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13026 SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %zd) || (%d+%d > %d)\n", 13027 (unsigned int)SCTP_SB_LIMIT_SND(so), 13028 inqueue_bytes, 13029 local_add_more, 13030 asoc->stream_queue_cnt, 13031 asoc->chunks_on_out_queue, 13032 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)); 13033 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13034 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen); 13035 } 13036 be.error = 0; 13037 stcb->block_entry = &be; 13038 SCTP_TCB_UNLOCK(stcb); 13039 error = sbwait(so, SO_SND); 13040 if (error == 0) { 13041 if (so->so_error != 0) { 13042 error = so->so_error; 13043 } 13044 if (be.error != 0) { 13045 error = be.error; 13046 } 13047 } 13048 SOCKBUF_UNLOCK(&so->so_snd); 13049 SCTP_TCB_LOCK(stcb); 13050 stcb->block_entry = NULL; 13051 if (error != 0) { 13052 goto out_unlocked; 13053 } 13054 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 13055 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 13056 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 13057 /* 13058 * XXX: Could also be ECONNABORTED, 13059 * not enough info. 13060 */ 13061 error = ECONNRESET; 13062 } else { 13063 error = ENOTCONN; 13064 } 13065 goto out_unlocked; 13066 } 13067 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13068 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13069 asoc, asoc->total_output_queue_size); 13070 } 13071 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13072 SOCKBUF_LOCK(&so->so_snd); 13073 } 13074 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13075 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13076 } else { 13077 max_len = 0; 13078 } 13079 SOCKBUF_UNLOCK(&so->so_snd); 13080 } 13081 13082 skip_preblock: 13083 KASSERT(stcb != NULL, ("stcb is NULL")); 13084 SCTP_TCB_LOCK_ASSERT(stcb); 13085 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13086 ("Association about to be freed")); 13087 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13088 ("Association was aborted")); 13089 13090 /* 13091 * sndlen covers for mbuf case uio_resid covers for the non-mbuf 13092 * case NOTE: uio will be null when top/mbuf is passed 13093 */ 13094 if (top == NULL) { 13095 struct sctp_stream_queue_pending *sp; 13096 struct sctp_stream_out *strm; 13097 uint32_t sndout; 13098 13099 if ((asoc->stream_locked) && 13100 (asoc->stream_locked_on != sinfo_stream)) { 13101 error = EINVAL; 13102 goto out; 13103 } 13104 strm = &asoc->strmout[sinfo_stream]; 13105 if (strm->last_msg_incomplete == 0) { 13106 do_a_copy_in: 13107 SCTP_TCB_UNLOCK(stcb); 13108 sp = sctp_copy_it_in(stcb, asoc, sndrcvninfo, uio, net, max_len, user_marks_eor, &error); 13109 SCTP_TCB_LOCK(stcb); 13110 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 13111 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 13112 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 13113 /* 13114 * XXX: Could also be ECONNABORTED, 13115 * not enough info. 13116 */ 13117 error = ECONNRESET; 13118 } else { 13119 error = ENOTCONN; 13120 } 13121 goto out; 13122 } 13123 if (error != 0) { 13124 goto out; 13125 } 13126 /* 13127 * Reject the sending of a new user message, if the 13128 * association is about to be shut down. 13129 */ 13130 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) || 13131 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 13132 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 13133 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 13134 if (sp->data != 0) { 13135 sctp_m_freem(sp->data); 13136 sp->data = NULL; 13137 sp->tail_mbuf = NULL; 13138 sp->length = 0; 13139 } 13140 if (sp->net != NULL) { 13141 sctp_free_remote_addr(sp->net); 13142 sp->net = NULL; 13143 } 13144 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 13145 error = EPIPE; 13146 goto out_unlocked; 13147 } 13148 /* The out streams might be reallocated. */ 13149 strm = &asoc->strmout[sinfo_stream]; 13150 if (sp->msg_is_complete) { 13151 strm->last_msg_incomplete = 0; 13152 asoc->stream_locked = 0; 13153 } else { 13154 /* 13155 * Just got locked to this guy in case of an 13156 * interrupt. 13157 */ 13158 strm->last_msg_incomplete = 1; 13159 if (asoc->idata_supported == 0) { 13160 asoc->stream_locked = 1; 13161 asoc->stream_locked_on = sinfo_stream; 13162 } 13163 sp->sender_all_done = 0; 13164 } 13165 sctp_snd_sb_alloc(stcb, sp->length); 13166 atomic_add_int(&asoc->stream_queue_cnt, 1); 13167 if (sinfo_flags & SCTP_UNORDERED) { 13168 SCTP_STAT_INCR(sctps_sends_with_unord); 13169 } 13170 sp->processing = 1; 13171 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 13172 asoc->ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp); 13173 } else { 13174 sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead); 13175 if (sp == NULL) { 13176 /* ???? Huh ??? last msg is gone */ 13177 #ifdef INVARIANTS 13178 panic("Warning: Last msg marked incomplete, yet nothing left?"); 13179 #else 13180 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n"); 13181 strm->last_msg_incomplete = 0; 13182 #endif 13183 goto do_a_copy_in; 13184 } 13185 if (sp->processing != 0) { 13186 error = EINVAL; 13187 goto out; 13188 } else { 13189 sp->processing = 1; 13190 } 13191 } 13192 13193 KASSERT(stcb != NULL, ("stcb is NULL")); 13194 SCTP_TCB_LOCK_ASSERT(stcb); 13195 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13196 ("Association about to be freed")); 13197 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13198 ("Association was aborted")); 13199 13200 while (uio->uio_resid > 0) { 13201 /* How much room do we have? */ 13202 struct mbuf *new_tail, *mm; 13203 13204 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13205 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13206 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13207 } else { 13208 max_len = 0; 13209 } 13210 if ((max_len > (ssize_t)SCTP_BASE_SYSCTL(sctp_add_more_threshold)) || 13211 ((max_len > 0) && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) || 13212 (uio->uio_resid <= max_len)) { 13213 SCTP_TCB_UNLOCK(stcb); 13214 sndout = 0; 13215 new_tail = NULL; 13216 mm = sctp_copy_resume(uio, (int)max_len, user_marks_eor, &error, &sndout, &new_tail); 13217 SCTP_TCB_LOCK(stcb); 13218 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 13219 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 13220 /* 13221 * We need to get out. Peer probably 13222 * aborted. 13223 */ 13224 sctp_m_freem(mm); 13225 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 13226 /* 13227 * XXX: Could also be 13228 * ECONNABORTED, not enough 13229 * info. 13230 */ 13231 error = ECONNRESET; 13232 } else { 13233 error = ENOTCONN; 13234 } 13235 goto out; 13236 } 13237 if ((mm == NULL) || (error != 0)) { 13238 if (mm != NULL) { 13239 sctp_m_freem(mm); 13240 } 13241 if (sp != NULL) { 13242 sp->processing = 0; 13243 } 13244 goto out; 13245 } 13246 /* Update the mbuf and count */ 13247 if (sp->tail_mbuf != NULL) { 13248 /* Tack it to the end. */ 13249 SCTP_BUF_NEXT(sp->tail_mbuf) = mm; 13250 } else { 13251 /* A stolen mbuf. */ 13252 sp->data = mm; 13253 } 13254 sp->tail_mbuf = new_tail; 13255 sctp_snd_sb_alloc(stcb, sndout); 13256 atomic_add_int(&sp->length, sndout); 13257 if (sinfo_flags & SCTP_SACK_IMMEDIATELY) { 13258 sp->sinfo_flags |= SCTP_SACK_IMMEDIATELY; 13259 } 13260 13261 /* Did we reach EOR? */ 13262 if ((uio->uio_resid == 0) && 13263 ((user_marks_eor == 0) || 13264 (sinfo_flags & SCTP_EOF) || 13265 (user_marks_eor && (sinfo_flags & SCTP_EOR)))) { 13266 sp->msg_is_complete = 1; 13267 } else { 13268 sp->msg_is_complete = 0; 13269 } 13270 } 13271 13272 KASSERT(stcb != NULL, ("stcb is NULL")); 13273 SCTP_TCB_LOCK_ASSERT(stcb); 13274 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13275 ("Association about to be freed")); 13276 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13277 ("Association was aborted")); 13278 13279 if (uio->uio_resid == 0) { 13280 /* got it all? */ 13281 continue; 13282 } 13283 /* PR-SCTP? */ 13284 if ((asoc->prsctp_supported) && (asoc->sent_queue_cnt_removeable > 0)) { 13285 /* 13286 * This is ugly but we must assure locking 13287 * order 13288 */ 13289 sctp_prune_prsctp(stcb, asoc, sndrcvninfo, (int)sndlen); 13290 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13291 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) 13292 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13293 else 13294 max_len = 0; 13295 if (max_len > 0) { 13296 continue; 13297 } 13298 } 13299 /* wait for space now */ 13300 if (non_blocking) { 13301 /* Non-blocking io in place out */ 13302 if (sp != NULL) { 13303 sp->processing = 0; 13304 } 13305 goto skip_out_eof; 13306 } 13307 /* What about the INIT, send it maybe */ 13308 if (queue_only_for_init) { 13309 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13310 /* a collision took us forward? */ 13311 queue_only = 0; 13312 } else { 13313 NET_EPOCH_ENTER(et); 13314 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13315 NET_EPOCH_EXIT(et); 13316 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 13317 queue_only = 1; 13318 } 13319 } 13320 if ((net->flight_size > net->cwnd) && 13321 (asoc->sctp_cmt_on_off == 0)) { 13322 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13323 queue_only = 1; 13324 } else if (asoc->ifp_had_enobuf) { 13325 SCTP_STAT_INCR(sctps_ifnomemqueued); 13326 if (net->flight_size > (2 * net->mtu)) { 13327 queue_only = 1; 13328 } 13329 asoc->ifp_had_enobuf = 0; 13330 } 13331 un_sent = asoc->total_output_queue_size - asoc->total_flight; 13332 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13333 (asoc->total_flight > 0) && 13334 (asoc->stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13335 (un_sent < (int)(asoc->smallest_mtu - SCTP_MIN_OVERHEAD))) { 13336 /*- 13337 * Ok, Nagle is set on and we have data outstanding. 13338 * Don't send anything and let SACKs drive out the 13339 * data unless we have a "full" segment to send. 13340 */ 13341 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13342 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13343 } 13344 SCTP_STAT_INCR(sctps_naglequeued); 13345 nagle_applies = 1; 13346 } else { 13347 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13348 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13349 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13350 } 13351 SCTP_STAT_INCR(sctps_naglesent); 13352 nagle_applies = 0; 13353 } 13354 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13355 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13356 nagle_applies, un_sent); 13357 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, asoc->total_output_queue_size, 13358 asoc->total_flight, 13359 asoc->chunks_on_out_queue, asoc->total_flight_count); 13360 } 13361 if (queue_only_for_init) { 13362 queue_only_for_init = 0; 13363 } 13364 if ((queue_only == 0) && (nagle_applies == 0)) { 13365 /*- 13366 * need to start chunk output 13367 * before blocking.. note that if 13368 * a lock is already applied, then 13369 * the input via the net is happening 13370 * and I don't need to start output :-D 13371 */ 13372 NET_EPOCH_ENTER(et); 13373 sctp_chunk_output(inp, stcb, 13374 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13375 NET_EPOCH_EXIT(et); 13376 } 13377 /*- 13378 * This is a bit strange, but I think it will 13379 * work. The total_output_queue_size is locked and 13380 * protected by the TCB_LOCK, which we just released. 13381 * There is a race that can occur between releasing it 13382 * above, and me getting the socket lock, where sacks 13383 * come in but we have not put the SB_WAIT on the 13384 * so_snd buffer to get the wakeup. After the LOCK 13385 * is applied the sack_processing will also need to 13386 * LOCK the so->so_snd to do the actual sowwakeup(). So 13387 * once we have the socket buffer lock if we recheck the 13388 * size we KNOW we will get to sleep safely with the 13389 * wakeup flag in place. 13390 */ 13391 inqueue_bytes = asoc->total_output_queue_size - (asoc->chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13392 SOCKBUF_LOCK(&so->so_snd); 13393 if (SCTP_SB_LIMIT_SND(so) <= (inqueue_bytes + 13394 min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) { 13395 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13396 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK, 13397 asoc, uio->uio_resid); 13398 } 13399 be.error = 0; 13400 stcb->block_entry = &be; 13401 SCTP_TCB_UNLOCK(stcb); 13402 error = sbwait(so, SO_SND); 13403 if (error == 0) { 13404 if (so->so_error != 0) 13405 error = so->so_error; 13406 if (be.error != 0) { 13407 error = be.error; 13408 } 13409 } 13410 SOCKBUF_UNLOCK(&so->so_snd); 13411 SCTP_TCB_LOCK(stcb); 13412 stcb->block_entry = NULL; 13413 if ((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) || 13414 (asoc->state & SCTP_STATE_WAS_ABORTED)) { 13415 if (asoc->state & SCTP_STATE_WAS_ABORTED) { 13416 /* 13417 * XXX: Could also be 13418 * ECONNABORTED, not enough 13419 * info. 13420 */ 13421 error = ECONNRESET; 13422 } else { 13423 error = ENOTCONN; 13424 } 13425 goto out_unlocked; 13426 } 13427 if (error != 0) { 13428 if (sp != NULL) { 13429 sp->processing = 0; 13430 } 13431 goto out_unlocked; 13432 } 13433 } else { 13434 SOCKBUF_UNLOCK(&so->so_snd); 13435 } 13436 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13437 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13438 asoc, asoc->total_output_queue_size); 13439 } 13440 } 13441 13442 KASSERT(stcb != NULL, ("stcb is NULL")); 13443 SCTP_TCB_LOCK_ASSERT(stcb); 13444 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13445 ("Association about to be freed")); 13446 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13447 ("Association was aborted")); 13448 13449 /* The out streams might be reallocated. */ 13450 strm = &asoc->strmout[sinfo_stream]; 13451 if (sp != NULL) { 13452 if (sp->msg_is_complete == 0) { 13453 strm->last_msg_incomplete = 1; 13454 if (asoc->idata_supported == 0) { 13455 asoc->stream_locked = 1; 13456 asoc->stream_locked_on = sinfo_stream; 13457 } 13458 } else { 13459 sp->sender_all_done = 1; 13460 strm->last_msg_incomplete = 0; 13461 asoc->stream_locked = 0; 13462 } 13463 sp->processing = 0; 13464 } else { 13465 SCTP_PRINTF("Huh no sp TSNH?\n"); 13466 strm->last_msg_incomplete = 0; 13467 asoc->stream_locked = 0; 13468 } 13469 if (uio->uio_resid == 0) { 13470 got_all_of_the_send = true; 13471 } 13472 } else { 13473 error = sctp_msg_append(stcb, net, top, sndrcvninfo); 13474 top = NULL; 13475 if ((sinfo_flags & SCTP_EOF) != 0) { 13476 got_all_of_the_send = true; 13477 } 13478 } 13479 if (error != 0) { 13480 goto out; 13481 } 13482 13483 dataless_eof: 13484 KASSERT(stcb != NULL, ("stcb is NULL")); 13485 SCTP_TCB_LOCK_ASSERT(stcb); 13486 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13487 ("Association about to be freed")); 13488 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13489 ("Association was aborted")); 13490 13491 /* EOF thing ? */ 13492 if ((sinfo_flags & SCTP_EOF) && got_all_of_the_send) { 13493 SCTP_STAT_INCR(sctps_sends_with_eof); 13494 error = 0; 13495 if (TAILQ_EMPTY(&asoc->send_queue) && 13496 TAILQ_EMPTY(&asoc->sent_queue) && 13497 sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED) == 0) { 13498 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13499 goto abort_anyway; 13500 } 13501 /* there is nothing queued to send, so I'm done... */ 13502 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 13503 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13504 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13505 struct sctp_nets *netp; 13506 13507 /* only send SHUTDOWN the first time through */ 13508 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13509 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 13510 } 13511 SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT); 13512 sctp_stop_timers_for_shutdown(stcb); 13513 if (asoc->alternate != NULL) { 13514 netp = asoc->alternate; 13515 } else { 13516 netp = asoc->primary_destination; 13517 } 13518 sctp_send_shutdown(stcb, netp); 13519 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 13520 netp); 13521 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13522 NULL); 13523 } 13524 } else { 13525 /*- 13526 * we still got (or just got) data to send, so set 13527 * SHUTDOWN_PENDING 13528 */ 13529 /*- 13530 * XXX sockets draft says that SCTP_EOF should be 13531 * sent with no data. currently, we will allow user 13532 * data to be sent first and move to 13533 * SHUTDOWN-PENDING 13534 */ 13535 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 13536 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13537 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13538 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13539 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT); 13540 } 13541 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING); 13542 if (TAILQ_EMPTY(&asoc->send_queue) && 13543 TAILQ_EMPTY(&asoc->sent_queue) && 13544 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 13545 struct mbuf *op_err; 13546 char msg[SCTP_DIAG_INFO_LEN]; 13547 13548 abort_anyway: 13549 if (free_cnt_applied) { 13550 atomic_subtract_int(&asoc->refcnt, 1); 13551 free_cnt_applied = false; 13552 } 13553 SCTP_SNPRINTF(msg, sizeof(msg), 13554 "%s:%d at %s", __FILE__, __LINE__, __func__); 13555 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 13556 msg); 13557 NET_EPOCH_ENTER(et); 13558 sctp_abort_an_association(stcb->sctp_ep, stcb, 13559 op_err, false, SCTP_SO_LOCKED); 13560 NET_EPOCH_EXIT(et); 13561 stcb = NULL; 13562 error = ECONNABORTED; 13563 goto out; 13564 } 13565 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13566 NULL); 13567 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY); 13568 } 13569 } 13570 } 13571 13572 skip_out_eof: 13573 KASSERT(stcb != NULL, ("stcb is NULL")); 13574 SCTP_TCB_LOCK_ASSERT(stcb); 13575 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13576 ("Association about to be freed")); 13577 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13578 ("Association was aborted")); 13579 13580 some_on_control = !TAILQ_EMPTY(&asoc->control_send_queue); 13581 if (queue_only_for_init) { 13582 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13583 /* a collision took us forward? */ 13584 queue_only = 0; 13585 } else { 13586 NET_EPOCH_ENTER(et); 13587 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13588 NET_EPOCH_EXIT(et); 13589 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 13590 queue_only = 1; 13591 } 13592 } 13593 13594 KASSERT(stcb != NULL, ("stcb is NULL")); 13595 SCTP_TCB_LOCK_ASSERT(stcb); 13596 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13597 ("Association about to be freed")); 13598 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13599 ("Association was aborted")); 13600 13601 if ((net->flight_size > net->cwnd) && 13602 (asoc->sctp_cmt_on_off == 0)) { 13603 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13604 queue_only = 1; 13605 } else if (asoc->ifp_had_enobuf) { 13606 SCTP_STAT_INCR(sctps_ifnomemqueued); 13607 if (net->flight_size > (2 * net->mtu)) { 13608 queue_only = 1; 13609 } 13610 asoc->ifp_had_enobuf = 0; 13611 } 13612 un_sent = asoc->total_output_queue_size - asoc->total_flight; 13613 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13614 (asoc->total_flight > 0) && 13615 (asoc->stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13616 (un_sent < (int)(asoc->smallest_mtu - SCTP_MIN_OVERHEAD))) { 13617 /*- 13618 * Ok, Nagle is set on and we have data outstanding. 13619 * Don't send anything and let SACKs drive out the 13620 * data unless wen have a "full" segment to send. 13621 */ 13622 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13623 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13624 } 13625 SCTP_STAT_INCR(sctps_naglequeued); 13626 nagle_applies = 1; 13627 } else { 13628 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13629 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13630 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13631 } 13632 SCTP_STAT_INCR(sctps_naglesent); 13633 nagle_applies = 0; 13634 } 13635 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13636 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13637 nagle_applies, un_sent); 13638 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, asoc->total_output_queue_size, 13639 asoc->total_flight, 13640 asoc->chunks_on_out_queue, asoc->total_flight_count); 13641 } 13642 13643 KASSERT(stcb != NULL, ("stcb is NULL")); 13644 SCTP_TCB_LOCK_ASSERT(stcb); 13645 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13646 ("Association about to be freed")); 13647 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13648 ("Association was aborted")); 13649 13650 NET_EPOCH_ENTER(et); 13651 if ((queue_only == 0) && (nagle_applies == 0) && (asoc->peers_rwnd && un_sent)) { 13652 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13653 } else if ((queue_only == 0) && 13654 (asoc->peers_rwnd == 0) && 13655 (asoc->total_flight == 0)) { 13656 /* We get to have a probe outstanding */ 13657 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13658 } else if (some_on_control) { 13659 int num_out, reason; 13660 13661 /* Here we do control only */ 13662 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, 13663 &reason, 1, 1, &now, &now_filled, 13664 sctp_get_frag_point(stcb), 13665 SCTP_SO_LOCKED); 13666 } 13667 NET_EPOCH_EXIT(et); 13668 SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n", 13669 queue_only, asoc->peers_rwnd, un_sent, 13670 asoc->total_flight, asoc->chunks_on_out_queue, 13671 asoc->total_output_queue_size, error); 13672 13673 KASSERT(stcb != NULL, ("stcb is NULL")); 13674 SCTP_TCB_LOCK_ASSERT(stcb); 13675 KASSERT((asoc->state & SCTP_STATE_ABOUT_TO_BE_FREED) == 0, 13676 ("Association about to be freed")); 13677 KASSERT((asoc->state & SCTP_STATE_WAS_ABORTED) == 0, 13678 ("Association was aborted")); 13679 13680 out: 13681 out_unlocked: 13682 if (create_lock_applied) { 13683 SCTP_ASOC_CREATE_UNLOCK(inp); 13684 } 13685 if (stcb != NULL) { 13686 if (local_soresv) { 13687 atomic_subtract_int(&asoc->sb_send_resv, (int)sndlen); 13688 } 13689 if (free_cnt_applied) { 13690 atomic_subtract_int(&asoc->refcnt, 1); 13691 } 13692 SCTP_TCB_UNLOCK(stcb); 13693 } 13694 if (top != NULL) { 13695 sctp_m_freem(top); 13696 } 13697 if (control != NULL) { 13698 sctp_m_freem(control); 13699 } 13700 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, error); 13701 return (error); 13702 } 13703 13704 /* 13705 * generate an AUTHentication chunk, if required 13706 */ 13707 struct mbuf * 13708 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, 13709 struct sctp_auth_chunk **auth_ret, uint32_t *offset, 13710 struct sctp_tcb *stcb, uint8_t chunk) 13711 { 13712 struct mbuf *m_auth; 13713 struct sctp_auth_chunk *auth; 13714 int chunk_len; 13715 struct mbuf *cn; 13716 13717 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) || 13718 (stcb == NULL)) 13719 return (m); 13720 13721 if (stcb->asoc.auth_supported == 0) { 13722 return (m); 13723 } 13724 /* does the requested chunk require auth? */ 13725 if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) { 13726 return (m); 13727 } 13728 m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER); 13729 if (m_auth == NULL) { 13730 /* no mbuf's */ 13731 return (m); 13732 } 13733 /* reserve some space if this will be the first mbuf */ 13734 if (m == NULL) 13735 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD); 13736 /* fill in the AUTH chunk details */ 13737 auth = mtod(m_auth, struct sctp_auth_chunk *); 13738 memset(auth, 0, sizeof(*auth)); 13739 auth->ch.chunk_type = SCTP_AUTHENTICATION; 13740 auth->ch.chunk_flags = 0; 13741 chunk_len = sizeof(*auth) + 13742 sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id); 13743 auth->ch.chunk_length = htons(chunk_len); 13744 auth->hmac_id = htons(stcb->asoc.peer_hmac_id); 13745 /* key id and hmac digest will be computed and filled in upon send */ 13746 13747 /* save the offset where the auth was inserted into the chain */ 13748 *offset = 0; 13749 for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) { 13750 *offset += SCTP_BUF_LEN(cn); 13751 } 13752 13753 /* update length and return pointer to the auth chunk */ 13754 SCTP_BUF_LEN(m_auth) = chunk_len; 13755 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0); 13756 if (auth_ret != NULL) 13757 *auth_ret = auth; 13758 13759 return (m); 13760 } 13761 13762 #ifdef INET6 13763 int 13764 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t *ro) 13765 { 13766 struct nd_prefix *pfx = NULL; 13767 struct nd_pfxrouter *pfxrtr = NULL; 13768 struct sockaddr_in6 gw6; 13769 13770 if (ro == NULL || ro->ro_nh == NULL || src6->sin6_family != AF_INET6) 13771 return (0); 13772 13773 /* get prefix entry of address */ 13774 ND6_RLOCK(); 13775 LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) { 13776 if (pfx->ndpr_stateflags & NDPRF_DETACHED) 13777 continue; 13778 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr, 13779 &src6->sin6_addr, &pfx->ndpr_mask)) 13780 break; 13781 } 13782 /* no prefix entry in the prefix list */ 13783 if (pfx == NULL) { 13784 ND6_RUNLOCK(); 13785 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for "); 13786 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13787 return (0); 13788 } 13789 13790 SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is "); 13791 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13792 13793 /* search installed gateway from prefix entry */ 13794 LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) { 13795 memset(&gw6, 0, sizeof(struct sockaddr_in6)); 13796 gw6.sin6_family = AF_INET6; 13797 gw6.sin6_len = sizeof(struct sockaddr_in6); 13798 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr, 13799 sizeof(struct in6_addr)); 13800 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is "); 13801 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6); 13802 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is "); 13803 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa); 13804 if (sctp_cmpaddr((struct sockaddr *)&gw6, &ro->ro_nh->gw_sa)) { 13805 ND6_RUNLOCK(); 13806 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n"); 13807 return (1); 13808 } 13809 } 13810 ND6_RUNLOCK(); 13811 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n"); 13812 return (0); 13813 } 13814 #endif 13815 13816 int 13817 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t *ro) 13818 { 13819 #ifdef INET 13820 struct sockaddr_in *sin, *mask; 13821 struct ifaddr *ifa; 13822 struct in_addr srcnetaddr, gwnetaddr; 13823 13824 if (ro == NULL || ro->ro_nh == NULL || 13825 sifa->address.sa.sa_family != AF_INET) { 13826 return (0); 13827 } 13828 ifa = (struct ifaddr *)sifa->ifa; 13829 mask = (struct sockaddr_in *)(ifa->ifa_netmask); 13830 sin = &sifa->address.sin; 13831 srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13832 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is "); 13833 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 13834 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr); 13835 13836 sin = &ro->ro_nh->gw4_sa; 13837 gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13838 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is "); 13839 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa); 13840 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr); 13841 if (srcnetaddr.s_addr == gwnetaddr.s_addr) { 13842 return (1); 13843 } 13844 #endif 13845 return (0); 13846 } 13847