1 /*- 2 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 4 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are met: 8 * 9 * a) Redistributions of source code must retain the above copyright notice, 10 * this list of conditions and the following disclaimer. 11 * 12 * b) Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the distribution. 15 * 16 * c) Neither the name of Cisco Systems, Inc. nor the names of its 17 * contributors may be used to endorse or promote products derived 18 * from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include <netinet/sctp_os.h> 37 #include <sys/proc.h> 38 #include <netinet/sctp_var.h> 39 #include <netinet/sctp_sysctl.h> 40 #include <netinet/sctp_header.h> 41 #include <netinet/sctp_pcb.h> 42 #include <netinet/sctputil.h> 43 #include <netinet/sctp_output.h> 44 #include <netinet/sctp_uio.h> 45 #include <netinet/sctputil.h> 46 #include <netinet/sctp_auth.h> 47 #include <netinet/sctp_timer.h> 48 #include <netinet/sctp_asconf.h> 49 #include <netinet/sctp_indata.h> 50 #include <netinet/sctp_bsd_addr.h> 51 #include <netinet/sctp_input.h> 52 #include <netinet/sctp_crc32.h> 53 #include <netinet/udp.h> 54 #include <netinet/udp_var.h> 55 #include <machine/in_cksum.h> 56 57 58 59 #define SCTP_MAX_GAPS_INARRAY 4 60 struct sack_track { 61 uint8_t right_edge; /* mergable on the right edge */ 62 uint8_t left_edge; /* mergable on the left edge */ 63 uint8_t num_entries; 64 uint8_t spare; 65 struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY]; 66 }; 67 68 struct sack_track sack_array[256] = { 69 {0, 0, 0, 0, /* 0x00 */ 70 {{0, 0}, 71 {0, 0}, 72 {0, 0}, 73 {0, 0} 74 } 75 }, 76 {1, 0, 1, 0, /* 0x01 */ 77 {{0, 0}, 78 {0, 0}, 79 {0, 0}, 80 {0, 0} 81 } 82 }, 83 {0, 0, 1, 0, /* 0x02 */ 84 {{1, 1}, 85 {0, 0}, 86 {0, 0}, 87 {0, 0} 88 } 89 }, 90 {1, 0, 1, 0, /* 0x03 */ 91 {{0, 1}, 92 {0, 0}, 93 {0, 0}, 94 {0, 0} 95 } 96 }, 97 {0, 0, 1, 0, /* 0x04 */ 98 {{2, 2}, 99 {0, 0}, 100 {0, 0}, 101 {0, 0} 102 } 103 }, 104 {1, 0, 2, 0, /* 0x05 */ 105 {{0, 0}, 106 {2, 2}, 107 {0, 0}, 108 {0, 0} 109 } 110 }, 111 {0, 0, 1, 0, /* 0x06 */ 112 {{1, 2}, 113 {0, 0}, 114 {0, 0}, 115 {0, 0} 116 } 117 }, 118 {1, 0, 1, 0, /* 0x07 */ 119 {{0, 2}, 120 {0, 0}, 121 {0, 0}, 122 {0, 0} 123 } 124 }, 125 {0, 0, 1, 0, /* 0x08 */ 126 {{3, 3}, 127 {0, 0}, 128 {0, 0}, 129 {0, 0} 130 } 131 }, 132 {1, 0, 2, 0, /* 0x09 */ 133 {{0, 0}, 134 {3, 3}, 135 {0, 0}, 136 {0, 0} 137 } 138 }, 139 {0, 0, 2, 0, /* 0x0a */ 140 {{1, 1}, 141 {3, 3}, 142 {0, 0}, 143 {0, 0} 144 } 145 }, 146 {1, 0, 2, 0, /* 0x0b */ 147 {{0, 1}, 148 {3, 3}, 149 {0, 0}, 150 {0, 0} 151 } 152 }, 153 {0, 0, 1, 0, /* 0x0c */ 154 {{2, 3}, 155 {0, 0}, 156 {0, 0}, 157 {0, 0} 158 } 159 }, 160 {1, 0, 2, 0, /* 0x0d */ 161 {{0, 0}, 162 {2, 3}, 163 {0, 0}, 164 {0, 0} 165 } 166 }, 167 {0, 0, 1, 0, /* 0x0e */ 168 {{1, 3}, 169 {0, 0}, 170 {0, 0}, 171 {0, 0} 172 } 173 }, 174 {1, 0, 1, 0, /* 0x0f */ 175 {{0, 3}, 176 {0, 0}, 177 {0, 0}, 178 {0, 0} 179 } 180 }, 181 {0, 0, 1, 0, /* 0x10 */ 182 {{4, 4}, 183 {0, 0}, 184 {0, 0}, 185 {0, 0} 186 } 187 }, 188 {1, 0, 2, 0, /* 0x11 */ 189 {{0, 0}, 190 {4, 4}, 191 {0, 0}, 192 {0, 0} 193 } 194 }, 195 {0, 0, 2, 0, /* 0x12 */ 196 {{1, 1}, 197 {4, 4}, 198 {0, 0}, 199 {0, 0} 200 } 201 }, 202 {1, 0, 2, 0, /* 0x13 */ 203 {{0, 1}, 204 {4, 4}, 205 {0, 0}, 206 {0, 0} 207 } 208 }, 209 {0, 0, 2, 0, /* 0x14 */ 210 {{2, 2}, 211 {4, 4}, 212 {0, 0}, 213 {0, 0} 214 } 215 }, 216 {1, 0, 3, 0, /* 0x15 */ 217 {{0, 0}, 218 {2, 2}, 219 {4, 4}, 220 {0, 0} 221 } 222 }, 223 {0, 0, 2, 0, /* 0x16 */ 224 {{1, 2}, 225 {4, 4}, 226 {0, 0}, 227 {0, 0} 228 } 229 }, 230 {1, 0, 2, 0, /* 0x17 */ 231 {{0, 2}, 232 {4, 4}, 233 {0, 0}, 234 {0, 0} 235 } 236 }, 237 {0, 0, 1, 0, /* 0x18 */ 238 {{3, 4}, 239 {0, 0}, 240 {0, 0}, 241 {0, 0} 242 } 243 }, 244 {1, 0, 2, 0, /* 0x19 */ 245 {{0, 0}, 246 {3, 4}, 247 {0, 0}, 248 {0, 0} 249 } 250 }, 251 {0, 0, 2, 0, /* 0x1a */ 252 {{1, 1}, 253 {3, 4}, 254 {0, 0}, 255 {0, 0} 256 } 257 }, 258 {1, 0, 2, 0, /* 0x1b */ 259 {{0, 1}, 260 {3, 4}, 261 {0, 0}, 262 {0, 0} 263 } 264 }, 265 {0, 0, 1, 0, /* 0x1c */ 266 {{2, 4}, 267 {0, 0}, 268 {0, 0}, 269 {0, 0} 270 } 271 }, 272 {1, 0, 2, 0, /* 0x1d */ 273 {{0, 0}, 274 {2, 4}, 275 {0, 0}, 276 {0, 0} 277 } 278 }, 279 {0, 0, 1, 0, /* 0x1e */ 280 {{1, 4}, 281 {0, 0}, 282 {0, 0}, 283 {0, 0} 284 } 285 }, 286 {1, 0, 1, 0, /* 0x1f */ 287 {{0, 4}, 288 {0, 0}, 289 {0, 0}, 290 {0, 0} 291 } 292 }, 293 {0, 0, 1, 0, /* 0x20 */ 294 {{5, 5}, 295 {0, 0}, 296 {0, 0}, 297 {0, 0} 298 } 299 }, 300 {1, 0, 2, 0, /* 0x21 */ 301 {{0, 0}, 302 {5, 5}, 303 {0, 0}, 304 {0, 0} 305 } 306 }, 307 {0, 0, 2, 0, /* 0x22 */ 308 {{1, 1}, 309 {5, 5}, 310 {0, 0}, 311 {0, 0} 312 } 313 }, 314 {1, 0, 2, 0, /* 0x23 */ 315 {{0, 1}, 316 {5, 5}, 317 {0, 0}, 318 {0, 0} 319 } 320 }, 321 {0, 0, 2, 0, /* 0x24 */ 322 {{2, 2}, 323 {5, 5}, 324 {0, 0}, 325 {0, 0} 326 } 327 }, 328 {1, 0, 3, 0, /* 0x25 */ 329 {{0, 0}, 330 {2, 2}, 331 {5, 5}, 332 {0, 0} 333 } 334 }, 335 {0, 0, 2, 0, /* 0x26 */ 336 {{1, 2}, 337 {5, 5}, 338 {0, 0}, 339 {0, 0} 340 } 341 }, 342 {1, 0, 2, 0, /* 0x27 */ 343 {{0, 2}, 344 {5, 5}, 345 {0, 0}, 346 {0, 0} 347 } 348 }, 349 {0, 0, 2, 0, /* 0x28 */ 350 {{3, 3}, 351 {5, 5}, 352 {0, 0}, 353 {0, 0} 354 } 355 }, 356 {1, 0, 3, 0, /* 0x29 */ 357 {{0, 0}, 358 {3, 3}, 359 {5, 5}, 360 {0, 0} 361 } 362 }, 363 {0, 0, 3, 0, /* 0x2a */ 364 {{1, 1}, 365 {3, 3}, 366 {5, 5}, 367 {0, 0} 368 } 369 }, 370 {1, 0, 3, 0, /* 0x2b */ 371 {{0, 1}, 372 {3, 3}, 373 {5, 5}, 374 {0, 0} 375 } 376 }, 377 {0, 0, 2, 0, /* 0x2c */ 378 {{2, 3}, 379 {5, 5}, 380 {0, 0}, 381 {0, 0} 382 } 383 }, 384 {1, 0, 3, 0, /* 0x2d */ 385 {{0, 0}, 386 {2, 3}, 387 {5, 5}, 388 {0, 0} 389 } 390 }, 391 {0, 0, 2, 0, /* 0x2e */ 392 {{1, 3}, 393 {5, 5}, 394 {0, 0}, 395 {0, 0} 396 } 397 }, 398 {1, 0, 2, 0, /* 0x2f */ 399 {{0, 3}, 400 {5, 5}, 401 {0, 0}, 402 {0, 0} 403 } 404 }, 405 {0, 0, 1, 0, /* 0x30 */ 406 {{4, 5}, 407 {0, 0}, 408 {0, 0}, 409 {0, 0} 410 } 411 }, 412 {1, 0, 2, 0, /* 0x31 */ 413 {{0, 0}, 414 {4, 5}, 415 {0, 0}, 416 {0, 0} 417 } 418 }, 419 {0, 0, 2, 0, /* 0x32 */ 420 {{1, 1}, 421 {4, 5}, 422 {0, 0}, 423 {0, 0} 424 } 425 }, 426 {1, 0, 2, 0, /* 0x33 */ 427 {{0, 1}, 428 {4, 5}, 429 {0, 0}, 430 {0, 0} 431 } 432 }, 433 {0, 0, 2, 0, /* 0x34 */ 434 {{2, 2}, 435 {4, 5}, 436 {0, 0}, 437 {0, 0} 438 } 439 }, 440 {1, 0, 3, 0, /* 0x35 */ 441 {{0, 0}, 442 {2, 2}, 443 {4, 5}, 444 {0, 0} 445 } 446 }, 447 {0, 0, 2, 0, /* 0x36 */ 448 {{1, 2}, 449 {4, 5}, 450 {0, 0}, 451 {0, 0} 452 } 453 }, 454 {1, 0, 2, 0, /* 0x37 */ 455 {{0, 2}, 456 {4, 5}, 457 {0, 0}, 458 {0, 0} 459 } 460 }, 461 {0, 0, 1, 0, /* 0x38 */ 462 {{3, 5}, 463 {0, 0}, 464 {0, 0}, 465 {0, 0} 466 } 467 }, 468 {1, 0, 2, 0, /* 0x39 */ 469 {{0, 0}, 470 {3, 5}, 471 {0, 0}, 472 {0, 0} 473 } 474 }, 475 {0, 0, 2, 0, /* 0x3a */ 476 {{1, 1}, 477 {3, 5}, 478 {0, 0}, 479 {0, 0} 480 } 481 }, 482 {1, 0, 2, 0, /* 0x3b */ 483 {{0, 1}, 484 {3, 5}, 485 {0, 0}, 486 {0, 0} 487 } 488 }, 489 {0, 0, 1, 0, /* 0x3c */ 490 {{2, 5}, 491 {0, 0}, 492 {0, 0}, 493 {0, 0} 494 } 495 }, 496 {1, 0, 2, 0, /* 0x3d */ 497 {{0, 0}, 498 {2, 5}, 499 {0, 0}, 500 {0, 0} 501 } 502 }, 503 {0, 0, 1, 0, /* 0x3e */ 504 {{1, 5}, 505 {0, 0}, 506 {0, 0}, 507 {0, 0} 508 } 509 }, 510 {1, 0, 1, 0, /* 0x3f */ 511 {{0, 5}, 512 {0, 0}, 513 {0, 0}, 514 {0, 0} 515 } 516 }, 517 {0, 0, 1, 0, /* 0x40 */ 518 {{6, 6}, 519 {0, 0}, 520 {0, 0}, 521 {0, 0} 522 } 523 }, 524 {1, 0, 2, 0, /* 0x41 */ 525 {{0, 0}, 526 {6, 6}, 527 {0, 0}, 528 {0, 0} 529 } 530 }, 531 {0, 0, 2, 0, /* 0x42 */ 532 {{1, 1}, 533 {6, 6}, 534 {0, 0}, 535 {0, 0} 536 } 537 }, 538 {1, 0, 2, 0, /* 0x43 */ 539 {{0, 1}, 540 {6, 6}, 541 {0, 0}, 542 {0, 0} 543 } 544 }, 545 {0, 0, 2, 0, /* 0x44 */ 546 {{2, 2}, 547 {6, 6}, 548 {0, 0}, 549 {0, 0} 550 } 551 }, 552 {1, 0, 3, 0, /* 0x45 */ 553 {{0, 0}, 554 {2, 2}, 555 {6, 6}, 556 {0, 0} 557 } 558 }, 559 {0, 0, 2, 0, /* 0x46 */ 560 {{1, 2}, 561 {6, 6}, 562 {0, 0}, 563 {0, 0} 564 } 565 }, 566 {1, 0, 2, 0, /* 0x47 */ 567 {{0, 2}, 568 {6, 6}, 569 {0, 0}, 570 {0, 0} 571 } 572 }, 573 {0, 0, 2, 0, /* 0x48 */ 574 {{3, 3}, 575 {6, 6}, 576 {0, 0}, 577 {0, 0} 578 } 579 }, 580 {1, 0, 3, 0, /* 0x49 */ 581 {{0, 0}, 582 {3, 3}, 583 {6, 6}, 584 {0, 0} 585 } 586 }, 587 {0, 0, 3, 0, /* 0x4a */ 588 {{1, 1}, 589 {3, 3}, 590 {6, 6}, 591 {0, 0} 592 } 593 }, 594 {1, 0, 3, 0, /* 0x4b */ 595 {{0, 1}, 596 {3, 3}, 597 {6, 6}, 598 {0, 0} 599 } 600 }, 601 {0, 0, 2, 0, /* 0x4c */ 602 {{2, 3}, 603 {6, 6}, 604 {0, 0}, 605 {0, 0} 606 } 607 }, 608 {1, 0, 3, 0, /* 0x4d */ 609 {{0, 0}, 610 {2, 3}, 611 {6, 6}, 612 {0, 0} 613 } 614 }, 615 {0, 0, 2, 0, /* 0x4e */ 616 {{1, 3}, 617 {6, 6}, 618 {0, 0}, 619 {0, 0} 620 } 621 }, 622 {1, 0, 2, 0, /* 0x4f */ 623 {{0, 3}, 624 {6, 6}, 625 {0, 0}, 626 {0, 0} 627 } 628 }, 629 {0, 0, 2, 0, /* 0x50 */ 630 {{4, 4}, 631 {6, 6}, 632 {0, 0}, 633 {0, 0} 634 } 635 }, 636 {1, 0, 3, 0, /* 0x51 */ 637 {{0, 0}, 638 {4, 4}, 639 {6, 6}, 640 {0, 0} 641 } 642 }, 643 {0, 0, 3, 0, /* 0x52 */ 644 {{1, 1}, 645 {4, 4}, 646 {6, 6}, 647 {0, 0} 648 } 649 }, 650 {1, 0, 3, 0, /* 0x53 */ 651 {{0, 1}, 652 {4, 4}, 653 {6, 6}, 654 {0, 0} 655 } 656 }, 657 {0, 0, 3, 0, /* 0x54 */ 658 {{2, 2}, 659 {4, 4}, 660 {6, 6}, 661 {0, 0} 662 } 663 }, 664 {1, 0, 4, 0, /* 0x55 */ 665 {{0, 0}, 666 {2, 2}, 667 {4, 4}, 668 {6, 6} 669 } 670 }, 671 {0, 0, 3, 0, /* 0x56 */ 672 {{1, 2}, 673 {4, 4}, 674 {6, 6}, 675 {0, 0} 676 } 677 }, 678 {1, 0, 3, 0, /* 0x57 */ 679 {{0, 2}, 680 {4, 4}, 681 {6, 6}, 682 {0, 0} 683 } 684 }, 685 {0, 0, 2, 0, /* 0x58 */ 686 {{3, 4}, 687 {6, 6}, 688 {0, 0}, 689 {0, 0} 690 } 691 }, 692 {1, 0, 3, 0, /* 0x59 */ 693 {{0, 0}, 694 {3, 4}, 695 {6, 6}, 696 {0, 0} 697 } 698 }, 699 {0, 0, 3, 0, /* 0x5a */ 700 {{1, 1}, 701 {3, 4}, 702 {6, 6}, 703 {0, 0} 704 } 705 }, 706 {1, 0, 3, 0, /* 0x5b */ 707 {{0, 1}, 708 {3, 4}, 709 {6, 6}, 710 {0, 0} 711 } 712 }, 713 {0, 0, 2, 0, /* 0x5c */ 714 {{2, 4}, 715 {6, 6}, 716 {0, 0}, 717 {0, 0} 718 } 719 }, 720 {1, 0, 3, 0, /* 0x5d */ 721 {{0, 0}, 722 {2, 4}, 723 {6, 6}, 724 {0, 0} 725 } 726 }, 727 {0, 0, 2, 0, /* 0x5e */ 728 {{1, 4}, 729 {6, 6}, 730 {0, 0}, 731 {0, 0} 732 } 733 }, 734 {1, 0, 2, 0, /* 0x5f */ 735 {{0, 4}, 736 {6, 6}, 737 {0, 0}, 738 {0, 0} 739 } 740 }, 741 {0, 0, 1, 0, /* 0x60 */ 742 {{5, 6}, 743 {0, 0}, 744 {0, 0}, 745 {0, 0} 746 } 747 }, 748 {1, 0, 2, 0, /* 0x61 */ 749 {{0, 0}, 750 {5, 6}, 751 {0, 0}, 752 {0, 0} 753 } 754 }, 755 {0, 0, 2, 0, /* 0x62 */ 756 {{1, 1}, 757 {5, 6}, 758 {0, 0}, 759 {0, 0} 760 } 761 }, 762 {1, 0, 2, 0, /* 0x63 */ 763 {{0, 1}, 764 {5, 6}, 765 {0, 0}, 766 {0, 0} 767 } 768 }, 769 {0, 0, 2, 0, /* 0x64 */ 770 {{2, 2}, 771 {5, 6}, 772 {0, 0}, 773 {0, 0} 774 } 775 }, 776 {1, 0, 3, 0, /* 0x65 */ 777 {{0, 0}, 778 {2, 2}, 779 {5, 6}, 780 {0, 0} 781 } 782 }, 783 {0, 0, 2, 0, /* 0x66 */ 784 {{1, 2}, 785 {5, 6}, 786 {0, 0}, 787 {0, 0} 788 } 789 }, 790 {1, 0, 2, 0, /* 0x67 */ 791 {{0, 2}, 792 {5, 6}, 793 {0, 0}, 794 {0, 0} 795 } 796 }, 797 {0, 0, 2, 0, /* 0x68 */ 798 {{3, 3}, 799 {5, 6}, 800 {0, 0}, 801 {0, 0} 802 } 803 }, 804 {1, 0, 3, 0, /* 0x69 */ 805 {{0, 0}, 806 {3, 3}, 807 {5, 6}, 808 {0, 0} 809 } 810 }, 811 {0, 0, 3, 0, /* 0x6a */ 812 {{1, 1}, 813 {3, 3}, 814 {5, 6}, 815 {0, 0} 816 } 817 }, 818 {1, 0, 3, 0, /* 0x6b */ 819 {{0, 1}, 820 {3, 3}, 821 {5, 6}, 822 {0, 0} 823 } 824 }, 825 {0, 0, 2, 0, /* 0x6c */ 826 {{2, 3}, 827 {5, 6}, 828 {0, 0}, 829 {0, 0} 830 } 831 }, 832 {1, 0, 3, 0, /* 0x6d */ 833 {{0, 0}, 834 {2, 3}, 835 {5, 6}, 836 {0, 0} 837 } 838 }, 839 {0, 0, 2, 0, /* 0x6e */ 840 {{1, 3}, 841 {5, 6}, 842 {0, 0}, 843 {0, 0} 844 } 845 }, 846 {1, 0, 2, 0, /* 0x6f */ 847 {{0, 3}, 848 {5, 6}, 849 {0, 0}, 850 {0, 0} 851 } 852 }, 853 {0, 0, 1, 0, /* 0x70 */ 854 {{4, 6}, 855 {0, 0}, 856 {0, 0}, 857 {0, 0} 858 } 859 }, 860 {1, 0, 2, 0, /* 0x71 */ 861 {{0, 0}, 862 {4, 6}, 863 {0, 0}, 864 {0, 0} 865 } 866 }, 867 {0, 0, 2, 0, /* 0x72 */ 868 {{1, 1}, 869 {4, 6}, 870 {0, 0}, 871 {0, 0} 872 } 873 }, 874 {1, 0, 2, 0, /* 0x73 */ 875 {{0, 1}, 876 {4, 6}, 877 {0, 0}, 878 {0, 0} 879 } 880 }, 881 {0, 0, 2, 0, /* 0x74 */ 882 {{2, 2}, 883 {4, 6}, 884 {0, 0}, 885 {0, 0} 886 } 887 }, 888 {1, 0, 3, 0, /* 0x75 */ 889 {{0, 0}, 890 {2, 2}, 891 {4, 6}, 892 {0, 0} 893 } 894 }, 895 {0, 0, 2, 0, /* 0x76 */ 896 {{1, 2}, 897 {4, 6}, 898 {0, 0}, 899 {0, 0} 900 } 901 }, 902 {1, 0, 2, 0, /* 0x77 */ 903 {{0, 2}, 904 {4, 6}, 905 {0, 0}, 906 {0, 0} 907 } 908 }, 909 {0, 0, 1, 0, /* 0x78 */ 910 {{3, 6}, 911 {0, 0}, 912 {0, 0}, 913 {0, 0} 914 } 915 }, 916 {1, 0, 2, 0, /* 0x79 */ 917 {{0, 0}, 918 {3, 6}, 919 {0, 0}, 920 {0, 0} 921 } 922 }, 923 {0, 0, 2, 0, /* 0x7a */ 924 {{1, 1}, 925 {3, 6}, 926 {0, 0}, 927 {0, 0} 928 } 929 }, 930 {1, 0, 2, 0, /* 0x7b */ 931 {{0, 1}, 932 {3, 6}, 933 {0, 0}, 934 {0, 0} 935 } 936 }, 937 {0, 0, 1, 0, /* 0x7c */ 938 {{2, 6}, 939 {0, 0}, 940 {0, 0}, 941 {0, 0} 942 } 943 }, 944 {1, 0, 2, 0, /* 0x7d */ 945 {{0, 0}, 946 {2, 6}, 947 {0, 0}, 948 {0, 0} 949 } 950 }, 951 {0, 0, 1, 0, /* 0x7e */ 952 {{1, 6}, 953 {0, 0}, 954 {0, 0}, 955 {0, 0} 956 } 957 }, 958 {1, 0, 1, 0, /* 0x7f */ 959 {{0, 6}, 960 {0, 0}, 961 {0, 0}, 962 {0, 0} 963 } 964 }, 965 {0, 1, 1, 0, /* 0x80 */ 966 {{7, 7}, 967 {0, 0}, 968 {0, 0}, 969 {0, 0} 970 } 971 }, 972 {1, 1, 2, 0, /* 0x81 */ 973 {{0, 0}, 974 {7, 7}, 975 {0, 0}, 976 {0, 0} 977 } 978 }, 979 {0, 1, 2, 0, /* 0x82 */ 980 {{1, 1}, 981 {7, 7}, 982 {0, 0}, 983 {0, 0} 984 } 985 }, 986 {1, 1, 2, 0, /* 0x83 */ 987 {{0, 1}, 988 {7, 7}, 989 {0, 0}, 990 {0, 0} 991 } 992 }, 993 {0, 1, 2, 0, /* 0x84 */ 994 {{2, 2}, 995 {7, 7}, 996 {0, 0}, 997 {0, 0} 998 } 999 }, 1000 {1, 1, 3, 0, /* 0x85 */ 1001 {{0, 0}, 1002 {2, 2}, 1003 {7, 7}, 1004 {0, 0} 1005 } 1006 }, 1007 {0, 1, 2, 0, /* 0x86 */ 1008 {{1, 2}, 1009 {7, 7}, 1010 {0, 0}, 1011 {0, 0} 1012 } 1013 }, 1014 {1, 1, 2, 0, /* 0x87 */ 1015 {{0, 2}, 1016 {7, 7}, 1017 {0, 0}, 1018 {0, 0} 1019 } 1020 }, 1021 {0, 1, 2, 0, /* 0x88 */ 1022 {{3, 3}, 1023 {7, 7}, 1024 {0, 0}, 1025 {0, 0} 1026 } 1027 }, 1028 {1, 1, 3, 0, /* 0x89 */ 1029 {{0, 0}, 1030 {3, 3}, 1031 {7, 7}, 1032 {0, 0} 1033 } 1034 }, 1035 {0, 1, 3, 0, /* 0x8a */ 1036 {{1, 1}, 1037 {3, 3}, 1038 {7, 7}, 1039 {0, 0} 1040 } 1041 }, 1042 {1, 1, 3, 0, /* 0x8b */ 1043 {{0, 1}, 1044 {3, 3}, 1045 {7, 7}, 1046 {0, 0} 1047 } 1048 }, 1049 {0, 1, 2, 0, /* 0x8c */ 1050 {{2, 3}, 1051 {7, 7}, 1052 {0, 0}, 1053 {0, 0} 1054 } 1055 }, 1056 {1, 1, 3, 0, /* 0x8d */ 1057 {{0, 0}, 1058 {2, 3}, 1059 {7, 7}, 1060 {0, 0} 1061 } 1062 }, 1063 {0, 1, 2, 0, /* 0x8e */ 1064 {{1, 3}, 1065 {7, 7}, 1066 {0, 0}, 1067 {0, 0} 1068 } 1069 }, 1070 {1, 1, 2, 0, /* 0x8f */ 1071 {{0, 3}, 1072 {7, 7}, 1073 {0, 0}, 1074 {0, 0} 1075 } 1076 }, 1077 {0, 1, 2, 0, /* 0x90 */ 1078 {{4, 4}, 1079 {7, 7}, 1080 {0, 0}, 1081 {0, 0} 1082 } 1083 }, 1084 {1, 1, 3, 0, /* 0x91 */ 1085 {{0, 0}, 1086 {4, 4}, 1087 {7, 7}, 1088 {0, 0} 1089 } 1090 }, 1091 {0, 1, 3, 0, /* 0x92 */ 1092 {{1, 1}, 1093 {4, 4}, 1094 {7, 7}, 1095 {0, 0} 1096 } 1097 }, 1098 {1, 1, 3, 0, /* 0x93 */ 1099 {{0, 1}, 1100 {4, 4}, 1101 {7, 7}, 1102 {0, 0} 1103 } 1104 }, 1105 {0, 1, 3, 0, /* 0x94 */ 1106 {{2, 2}, 1107 {4, 4}, 1108 {7, 7}, 1109 {0, 0} 1110 } 1111 }, 1112 {1, 1, 4, 0, /* 0x95 */ 1113 {{0, 0}, 1114 {2, 2}, 1115 {4, 4}, 1116 {7, 7} 1117 } 1118 }, 1119 {0, 1, 3, 0, /* 0x96 */ 1120 {{1, 2}, 1121 {4, 4}, 1122 {7, 7}, 1123 {0, 0} 1124 } 1125 }, 1126 {1, 1, 3, 0, /* 0x97 */ 1127 {{0, 2}, 1128 {4, 4}, 1129 {7, 7}, 1130 {0, 0} 1131 } 1132 }, 1133 {0, 1, 2, 0, /* 0x98 */ 1134 {{3, 4}, 1135 {7, 7}, 1136 {0, 0}, 1137 {0, 0} 1138 } 1139 }, 1140 {1, 1, 3, 0, /* 0x99 */ 1141 {{0, 0}, 1142 {3, 4}, 1143 {7, 7}, 1144 {0, 0} 1145 } 1146 }, 1147 {0, 1, 3, 0, /* 0x9a */ 1148 {{1, 1}, 1149 {3, 4}, 1150 {7, 7}, 1151 {0, 0} 1152 } 1153 }, 1154 {1, 1, 3, 0, /* 0x9b */ 1155 {{0, 1}, 1156 {3, 4}, 1157 {7, 7}, 1158 {0, 0} 1159 } 1160 }, 1161 {0, 1, 2, 0, /* 0x9c */ 1162 {{2, 4}, 1163 {7, 7}, 1164 {0, 0}, 1165 {0, 0} 1166 } 1167 }, 1168 {1, 1, 3, 0, /* 0x9d */ 1169 {{0, 0}, 1170 {2, 4}, 1171 {7, 7}, 1172 {0, 0} 1173 } 1174 }, 1175 {0, 1, 2, 0, /* 0x9e */ 1176 {{1, 4}, 1177 {7, 7}, 1178 {0, 0}, 1179 {0, 0} 1180 } 1181 }, 1182 {1, 1, 2, 0, /* 0x9f */ 1183 {{0, 4}, 1184 {7, 7}, 1185 {0, 0}, 1186 {0, 0} 1187 } 1188 }, 1189 {0, 1, 2, 0, /* 0xa0 */ 1190 {{5, 5}, 1191 {7, 7}, 1192 {0, 0}, 1193 {0, 0} 1194 } 1195 }, 1196 {1, 1, 3, 0, /* 0xa1 */ 1197 {{0, 0}, 1198 {5, 5}, 1199 {7, 7}, 1200 {0, 0} 1201 } 1202 }, 1203 {0, 1, 3, 0, /* 0xa2 */ 1204 {{1, 1}, 1205 {5, 5}, 1206 {7, 7}, 1207 {0, 0} 1208 } 1209 }, 1210 {1, 1, 3, 0, /* 0xa3 */ 1211 {{0, 1}, 1212 {5, 5}, 1213 {7, 7}, 1214 {0, 0} 1215 } 1216 }, 1217 {0, 1, 3, 0, /* 0xa4 */ 1218 {{2, 2}, 1219 {5, 5}, 1220 {7, 7}, 1221 {0, 0} 1222 } 1223 }, 1224 {1, 1, 4, 0, /* 0xa5 */ 1225 {{0, 0}, 1226 {2, 2}, 1227 {5, 5}, 1228 {7, 7} 1229 } 1230 }, 1231 {0, 1, 3, 0, /* 0xa6 */ 1232 {{1, 2}, 1233 {5, 5}, 1234 {7, 7}, 1235 {0, 0} 1236 } 1237 }, 1238 {1, 1, 3, 0, /* 0xa7 */ 1239 {{0, 2}, 1240 {5, 5}, 1241 {7, 7}, 1242 {0, 0} 1243 } 1244 }, 1245 {0, 1, 3, 0, /* 0xa8 */ 1246 {{3, 3}, 1247 {5, 5}, 1248 {7, 7}, 1249 {0, 0} 1250 } 1251 }, 1252 {1, 1, 4, 0, /* 0xa9 */ 1253 {{0, 0}, 1254 {3, 3}, 1255 {5, 5}, 1256 {7, 7} 1257 } 1258 }, 1259 {0, 1, 4, 0, /* 0xaa */ 1260 {{1, 1}, 1261 {3, 3}, 1262 {5, 5}, 1263 {7, 7} 1264 } 1265 }, 1266 {1, 1, 4, 0, /* 0xab */ 1267 {{0, 1}, 1268 {3, 3}, 1269 {5, 5}, 1270 {7, 7} 1271 } 1272 }, 1273 {0, 1, 3, 0, /* 0xac */ 1274 {{2, 3}, 1275 {5, 5}, 1276 {7, 7}, 1277 {0, 0} 1278 } 1279 }, 1280 {1, 1, 4, 0, /* 0xad */ 1281 {{0, 0}, 1282 {2, 3}, 1283 {5, 5}, 1284 {7, 7} 1285 } 1286 }, 1287 {0, 1, 3, 0, /* 0xae */ 1288 {{1, 3}, 1289 {5, 5}, 1290 {7, 7}, 1291 {0, 0} 1292 } 1293 }, 1294 {1, 1, 3, 0, /* 0xaf */ 1295 {{0, 3}, 1296 {5, 5}, 1297 {7, 7}, 1298 {0, 0} 1299 } 1300 }, 1301 {0, 1, 2, 0, /* 0xb0 */ 1302 {{4, 5}, 1303 {7, 7}, 1304 {0, 0}, 1305 {0, 0} 1306 } 1307 }, 1308 {1, 1, 3, 0, /* 0xb1 */ 1309 {{0, 0}, 1310 {4, 5}, 1311 {7, 7}, 1312 {0, 0} 1313 } 1314 }, 1315 {0, 1, 3, 0, /* 0xb2 */ 1316 {{1, 1}, 1317 {4, 5}, 1318 {7, 7}, 1319 {0, 0} 1320 } 1321 }, 1322 {1, 1, 3, 0, /* 0xb3 */ 1323 {{0, 1}, 1324 {4, 5}, 1325 {7, 7}, 1326 {0, 0} 1327 } 1328 }, 1329 {0, 1, 3, 0, /* 0xb4 */ 1330 {{2, 2}, 1331 {4, 5}, 1332 {7, 7}, 1333 {0, 0} 1334 } 1335 }, 1336 {1, 1, 4, 0, /* 0xb5 */ 1337 {{0, 0}, 1338 {2, 2}, 1339 {4, 5}, 1340 {7, 7} 1341 } 1342 }, 1343 {0, 1, 3, 0, /* 0xb6 */ 1344 {{1, 2}, 1345 {4, 5}, 1346 {7, 7}, 1347 {0, 0} 1348 } 1349 }, 1350 {1, 1, 3, 0, /* 0xb7 */ 1351 {{0, 2}, 1352 {4, 5}, 1353 {7, 7}, 1354 {0, 0} 1355 } 1356 }, 1357 {0, 1, 2, 0, /* 0xb8 */ 1358 {{3, 5}, 1359 {7, 7}, 1360 {0, 0}, 1361 {0, 0} 1362 } 1363 }, 1364 {1, 1, 3, 0, /* 0xb9 */ 1365 {{0, 0}, 1366 {3, 5}, 1367 {7, 7}, 1368 {0, 0} 1369 } 1370 }, 1371 {0, 1, 3, 0, /* 0xba */ 1372 {{1, 1}, 1373 {3, 5}, 1374 {7, 7}, 1375 {0, 0} 1376 } 1377 }, 1378 {1, 1, 3, 0, /* 0xbb */ 1379 {{0, 1}, 1380 {3, 5}, 1381 {7, 7}, 1382 {0, 0} 1383 } 1384 }, 1385 {0, 1, 2, 0, /* 0xbc */ 1386 {{2, 5}, 1387 {7, 7}, 1388 {0, 0}, 1389 {0, 0} 1390 } 1391 }, 1392 {1, 1, 3, 0, /* 0xbd */ 1393 {{0, 0}, 1394 {2, 5}, 1395 {7, 7}, 1396 {0, 0} 1397 } 1398 }, 1399 {0, 1, 2, 0, /* 0xbe */ 1400 {{1, 5}, 1401 {7, 7}, 1402 {0, 0}, 1403 {0, 0} 1404 } 1405 }, 1406 {1, 1, 2, 0, /* 0xbf */ 1407 {{0, 5}, 1408 {7, 7}, 1409 {0, 0}, 1410 {0, 0} 1411 } 1412 }, 1413 {0, 1, 1, 0, /* 0xc0 */ 1414 {{6, 7}, 1415 {0, 0}, 1416 {0, 0}, 1417 {0, 0} 1418 } 1419 }, 1420 {1, 1, 2, 0, /* 0xc1 */ 1421 {{0, 0}, 1422 {6, 7}, 1423 {0, 0}, 1424 {0, 0} 1425 } 1426 }, 1427 {0, 1, 2, 0, /* 0xc2 */ 1428 {{1, 1}, 1429 {6, 7}, 1430 {0, 0}, 1431 {0, 0} 1432 } 1433 }, 1434 {1, 1, 2, 0, /* 0xc3 */ 1435 {{0, 1}, 1436 {6, 7}, 1437 {0, 0}, 1438 {0, 0} 1439 } 1440 }, 1441 {0, 1, 2, 0, /* 0xc4 */ 1442 {{2, 2}, 1443 {6, 7}, 1444 {0, 0}, 1445 {0, 0} 1446 } 1447 }, 1448 {1, 1, 3, 0, /* 0xc5 */ 1449 {{0, 0}, 1450 {2, 2}, 1451 {6, 7}, 1452 {0, 0} 1453 } 1454 }, 1455 {0, 1, 2, 0, /* 0xc6 */ 1456 {{1, 2}, 1457 {6, 7}, 1458 {0, 0}, 1459 {0, 0} 1460 } 1461 }, 1462 {1, 1, 2, 0, /* 0xc7 */ 1463 {{0, 2}, 1464 {6, 7}, 1465 {0, 0}, 1466 {0, 0} 1467 } 1468 }, 1469 {0, 1, 2, 0, /* 0xc8 */ 1470 {{3, 3}, 1471 {6, 7}, 1472 {0, 0}, 1473 {0, 0} 1474 } 1475 }, 1476 {1, 1, 3, 0, /* 0xc9 */ 1477 {{0, 0}, 1478 {3, 3}, 1479 {6, 7}, 1480 {0, 0} 1481 } 1482 }, 1483 {0, 1, 3, 0, /* 0xca */ 1484 {{1, 1}, 1485 {3, 3}, 1486 {6, 7}, 1487 {0, 0} 1488 } 1489 }, 1490 {1, 1, 3, 0, /* 0xcb */ 1491 {{0, 1}, 1492 {3, 3}, 1493 {6, 7}, 1494 {0, 0} 1495 } 1496 }, 1497 {0, 1, 2, 0, /* 0xcc */ 1498 {{2, 3}, 1499 {6, 7}, 1500 {0, 0}, 1501 {0, 0} 1502 } 1503 }, 1504 {1, 1, 3, 0, /* 0xcd */ 1505 {{0, 0}, 1506 {2, 3}, 1507 {6, 7}, 1508 {0, 0} 1509 } 1510 }, 1511 {0, 1, 2, 0, /* 0xce */ 1512 {{1, 3}, 1513 {6, 7}, 1514 {0, 0}, 1515 {0, 0} 1516 } 1517 }, 1518 {1, 1, 2, 0, /* 0xcf */ 1519 {{0, 3}, 1520 {6, 7}, 1521 {0, 0}, 1522 {0, 0} 1523 } 1524 }, 1525 {0, 1, 2, 0, /* 0xd0 */ 1526 {{4, 4}, 1527 {6, 7}, 1528 {0, 0}, 1529 {0, 0} 1530 } 1531 }, 1532 {1, 1, 3, 0, /* 0xd1 */ 1533 {{0, 0}, 1534 {4, 4}, 1535 {6, 7}, 1536 {0, 0} 1537 } 1538 }, 1539 {0, 1, 3, 0, /* 0xd2 */ 1540 {{1, 1}, 1541 {4, 4}, 1542 {6, 7}, 1543 {0, 0} 1544 } 1545 }, 1546 {1, 1, 3, 0, /* 0xd3 */ 1547 {{0, 1}, 1548 {4, 4}, 1549 {6, 7}, 1550 {0, 0} 1551 } 1552 }, 1553 {0, 1, 3, 0, /* 0xd4 */ 1554 {{2, 2}, 1555 {4, 4}, 1556 {6, 7}, 1557 {0, 0} 1558 } 1559 }, 1560 {1, 1, 4, 0, /* 0xd5 */ 1561 {{0, 0}, 1562 {2, 2}, 1563 {4, 4}, 1564 {6, 7} 1565 } 1566 }, 1567 {0, 1, 3, 0, /* 0xd6 */ 1568 {{1, 2}, 1569 {4, 4}, 1570 {6, 7}, 1571 {0, 0} 1572 } 1573 }, 1574 {1, 1, 3, 0, /* 0xd7 */ 1575 {{0, 2}, 1576 {4, 4}, 1577 {6, 7}, 1578 {0, 0} 1579 } 1580 }, 1581 {0, 1, 2, 0, /* 0xd8 */ 1582 {{3, 4}, 1583 {6, 7}, 1584 {0, 0}, 1585 {0, 0} 1586 } 1587 }, 1588 {1, 1, 3, 0, /* 0xd9 */ 1589 {{0, 0}, 1590 {3, 4}, 1591 {6, 7}, 1592 {0, 0} 1593 } 1594 }, 1595 {0, 1, 3, 0, /* 0xda */ 1596 {{1, 1}, 1597 {3, 4}, 1598 {6, 7}, 1599 {0, 0} 1600 } 1601 }, 1602 {1, 1, 3, 0, /* 0xdb */ 1603 {{0, 1}, 1604 {3, 4}, 1605 {6, 7}, 1606 {0, 0} 1607 } 1608 }, 1609 {0, 1, 2, 0, /* 0xdc */ 1610 {{2, 4}, 1611 {6, 7}, 1612 {0, 0}, 1613 {0, 0} 1614 } 1615 }, 1616 {1, 1, 3, 0, /* 0xdd */ 1617 {{0, 0}, 1618 {2, 4}, 1619 {6, 7}, 1620 {0, 0} 1621 } 1622 }, 1623 {0, 1, 2, 0, /* 0xde */ 1624 {{1, 4}, 1625 {6, 7}, 1626 {0, 0}, 1627 {0, 0} 1628 } 1629 }, 1630 {1, 1, 2, 0, /* 0xdf */ 1631 {{0, 4}, 1632 {6, 7}, 1633 {0, 0}, 1634 {0, 0} 1635 } 1636 }, 1637 {0, 1, 1, 0, /* 0xe0 */ 1638 {{5, 7}, 1639 {0, 0}, 1640 {0, 0}, 1641 {0, 0} 1642 } 1643 }, 1644 {1, 1, 2, 0, /* 0xe1 */ 1645 {{0, 0}, 1646 {5, 7}, 1647 {0, 0}, 1648 {0, 0} 1649 } 1650 }, 1651 {0, 1, 2, 0, /* 0xe2 */ 1652 {{1, 1}, 1653 {5, 7}, 1654 {0, 0}, 1655 {0, 0} 1656 } 1657 }, 1658 {1, 1, 2, 0, /* 0xe3 */ 1659 {{0, 1}, 1660 {5, 7}, 1661 {0, 0}, 1662 {0, 0} 1663 } 1664 }, 1665 {0, 1, 2, 0, /* 0xe4 */ 1666 {{2, 2}, 1667 {5, 7}, 1668 {0, 0}, 1669 {0, 0} 1670 } 1671 }, 1672 {1, 1, 3, 0, /* 0xe5 */ 1673 {{0, 0}, 1674 {2, 2}, 1675 {5, 7}, 1676 {0, 0} 1677 } 1678 }, 1679 {0, 1, 2, 0, /* 0xe6 */ 1680 {{1, 2}, 1681 {5, 7}, 1682 {0, 0}, 1683 {0, 0} 1684 } 1685 }, 1686 {1, 1, 2, 0, /* 0xe7 */ 1687 {{0, 2}, 1688 {5, 7}, 1689 {0, 0}, 1690 {0, 0} 1691 } 1692 }, 1693 {0, 1, 2, 0, /* 0xe8 */ 1694 {{3, 3}, 1695 {5, 7}, 1696 {0, 0}, 1697 {0, 0} 1698 } 1699 }, 1700 {1, 1, 3, 0, /* 0xe9 */ 1701 {{0, 0}, 1702 {3, 3}, 1703 {5, 7}, 1704 {0, 0} 1705 } 1706 }, 1707 {0, 1, 3, 0, /* 0xea */ 1708 {{1, 1}, 1709 {3, 3}, 1710 {5, 7}, 1711 {0, 0} 1712 } 1713 }, 1714 {1, 1, 3, 0, /* 0xeb */ 1715 {{0, 1}, 1716 {3, 3}, 1717 {5, 7}, 1718 {0, 0} 1719 } 1720 }, 1721 {0, 1, 2, 0, /* 0xec */ 1722 {{2, 3}, 1723 {5, 7}, 1724 {0, 0}, 1725 {0, 0} 1726 } 1727 }, 1728 {1, 1, 3, 0, /* 0xed */ 1729 {{0, 0}, 1730 {2, 3}, 1731 {5, 7}, 1732 {0, 0} 1733 } 1734 }, 1735 {0, 1, 2, 0, /* 0xee */ 1736 {{1, 3}, 1737 {5, 7}, 1738 {0, 0}, 1739 {0, 0} 1740 } 1741 }, 1742 {1, 1, 2, 0, /* 0xef */ 1743 {{0, 3}, 1744 {5, 7}, 1745 {0, 0}, 1746 {0, 0} 1747 } 1748 }, 1749 {0, 1, 1, 0, /* 0xf0 */ 1750 {{4, 7}, 1751 {0, 0}, 1752 {0, 0}, 1753 {0, 0} 1754 } 1755 }, 1756 {1, 1, 2, 0, /* 0xf1 */ 1757 {{0, 0}, 1758 {4, 7}, 1759 {0, 0}, 1760 {0, 0} 1761 } 1762 }, 1763 {0, 1, 2, 0, /* 0xf2 */ 1764 {{1, 1}, 1765 {4, 7}, 1766 {0, 0}, 1767 {0, 0} 1768 } 1769 }, 1770 {1, 1, 2, 0, /* 0xf3 */ 1771 {{0, 1}, 1772 {4, 7}, 1773 {0, 0}, 1774 {0, 0} 1775 } 1776 }, 1777 {0, 1, 2, 0, /* 0xf4 */ 1778 {{2, 2}, 1779 {4, 7}, 1780 {0, 0}, 1781 {0, 0} 1782 } 1783 }, 1784 {1, 1, 3, 0, /* 0xf5 */ 1785 {{0, 0}, 1786 {2, 2}, 1787 {4, 7}, 1788 {0, 0} 1789 } 1790 }, 1791 {0, 1, 2, 0, /* 0xf6 */ 1792 {{1, 2}, 1793 {4, 7}, 1794 {0, 0}, 1795 {0, 0} 1796 } 1797 }, 1798 {1, 1, 2, 0, /* 0xf7 */ 1799 {{0, 2}, 1800 {4, 7}, 1801 {0, 0}, 1802 {0, 0} 1803 } 1804 }, 1805 {0, 1, 1, 0, /* 0xf8 */ 1806 {{3, 7}, 1807 {0, 0}, 1808 {0, 0}, 1809 {0, 0} 1810 } 1811 }, 1812 {1, 1, 2, 0, /* 0xf9 */ 1813 {{0, 0}, 1814 {3, 7}, 1815 {0, 0}, 1816 {0, 0} 1817 } 1818 }, 1819 {0, 1, 2, 0, /* 0xfa */ 1820 {{1, 1}, 1821 {3, 7}, 1822 {0, 0}, 1823 {0, 0} 1824 } 1825 }, 1826 {1, 1, 2, 0, /* 0xfb */ 1827 {{0, 1}, 1828 {3, 7}, 1829 {0, 0}, 1830 {0, 0} 1831 } 1832 }, 1833 {0, 1, 1, 0, /* 0xfc */ 1834 {{2, 7}, 1835 {0, 0}, 1836 {0, 0}, 1837 {0, 0} 1838 } 1839 }, 1840 {1, 1, 2, 0, /* 0xfd */ 1841 {{0, 0}, 1842 {2, 7}, 1843 {0, 0}, 1844 {0, 0} 1845 } 1846 }, 1847 {0, 1, 1, 0, /* 0xfe */ 1848 {{1, 7}, 1849 {0, 0}, 1850 {0, 0}, 1851 {0, 0} 1852 } 1853 }, 1854 {1, 1, 1, 0, /* 0xff */ 1855 {{0, 7}, 1856 {0, 0}, 1857 {0, 0}, 1858 {0, 0} 1859 } 1860 } 1861 }; 1862 1863 1864 int 1865 sctp_is_address_in_scope(struct sctp_ifa *ifa, 1866 int ipv4_addr_legal, 1867 int ipv6_addr_legal, 1868 int loopback_scope, 1869 int ipv4_local_scope, 1870 int local_scope SCTP_UNUSED,/* XXX */ 1871 int site_scope, 1872 int do_update) 1873 { 1874 if ((loopback_scope == 0) && 1875 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { 1876 /* 1877 * skip loopback if not in scope * 1878 */ 1879 return (0); 1880 } 1881 switch (ifa->address.sa.sa_family) { 1882 #ifdef INET 1883 case AF_INET: 1884 if (ipv4_addr_legal) { 1885 struct sockaddr_in *sin; 1886 1887 sin = (struct sockaddr_in *)&ifa->address.sin; 1888 if (sin->sin_addr.s_addr == 0) { 1889 /* not in scope , unspecified */ 1890 return (0); 1891 } 1892 if ((ipv4_local_scope == 0) && 1893 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1894 /* private address not in scope */ 1895 return (0); 1896 } 1897 } else { 1898 return (0); 1899 } 1900 break; 1901 #endif 1902 #ifdef INET6 1903 case AF_INET6: 1904 if (ipv6_addr_legal) { 1905 struct sockaddr_in6 *sin6; 1906 1907 /* 1908 * Must update the flags, bummer, which means any 1909 * IFA locks must now be applied HERE <-> 1910 */ 1911 if (do_update) { 1912 sctp_gather_internal_ifa_flags(ifa); 1913 } 1914 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 1915 return (0); 1916 } 1917 /* ok to use deprecated addresses? */ 1918 sin6 = (struct sockaddr_in6 *)&ifa->address.sin6; 1919 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1920 /* skip unspecifed addresses */ 1921 return (0); 1922 } 1923 if ( /* (local_scope == 0) && */ 1924 (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) { 1925 return (0); 1926 } 1927 if ((site_scope == 0) && 1928 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1929 return (0); 1930 } 1931 } else { 1932 return (0); 1933 } 1934 break; 1935 #endif 1936 default: 1937 return (0); 1938 } 1939 return (1); 1940 } 1941 1942 static struct mbuf * 1943 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa) 1944 { 1945 struct sctp_paramhdr *parmh; 1946 struct mbuf *mret; 1947 int len; 1948 1949 switch (ifa->address.sa.sa_family) { 1950 #ifdef INET 1951 case AF_INET: 1952 len = sizeof(struct sctp_ipv4addr_param); 1953 break; 1954 #endif 1955 #ifdef INET6 1956 case AF_INET6: 1957 len = sizeof(struct sctp_ipv6addr_param); 1958 break; 1959 #endif 1960 default: 1961 return (m); 1962 } 1963 if (M_TRAILINGSPACE(m) >= len) { 1964 /* easy side we just drop it on the end */ 1965 parmh = (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(len, 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 parmh = 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 = (struct sockaddr_in *)&ifa->address.sin; 1990 ipv4p = (struct sctp_ipv4addr_param *)parmh; 1991 parmh->param_type = htons(SCTP_IPV4_ADDRESS); 1992 parmh->param_length = htons(len); 1993 ipv4p->addr = sin->sin_addr.s_addr; 1994 SCTP_BUF_LEN(mret) += len; 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 = (struct sockaddr_in6 *)&ifa->address.sin6; 2005 ipv6p = (struct sctp_ipv6addr_param *)parmh; 2006 parmh->param_type = htons(SCTP_IPV6_ADDRESS); 2007 parmh->param_length = htons(len); 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) += len; 2013 break; 2014 } 2015 #endif 2016 default: 2017 return (m); 2018 } 2019 return (mret); 2020 } 2021 2022 2023 struct mbuf * 2024 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 2025 struct sctp_scoping *scope, 2026 struct mbuf *m_at, int cnt_inits_to) 2027 { 2028 struct sctp_vrf *vrf = NULL; 2029 int cnt, limit_out = 0, total_count; 2030 uint32_t vrf_id; 2031 2032 vrf_id = inp->def_vrf_id; 2033 SCTP_IPI_ADDR_RLOCK(); 2034 vrf = sctp_find_vrf(vrf_id); 2035 if (vrf == NULL) { 2036 SCTP_IPI_ADDR_RUNLOCK(); 2037 return (m_at); 2038 } 2039 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 2040 struct sctp_ifa *sctp_ifap; 2041 struct sctp_ifn *sctp_ifnp; 2042 2043 cnt = cnt_inits_to; 2044 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) { 2045 limit_out = 1; 2046 cnt = SCTP_ADDRESS_LIMIT; 2047 goto skip_count; 2048 } 2049 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2050 if ((scope->loopback_scope == 0) && 2051 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2052 /* 2053 * Skip loopback devices if loopback_scope 2054 * not set 2055 */ 2056 continue; 2057 } 2058 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2059 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2060 continue; 2061 } 2062 if (sctp_is_address_in_scope(sctp_ifap, 2063 scope->ipv4_addr_legal, 2064 scope->ipv6_addr_legal, 2065 scope->loopback_scope, 2066 scope->ipv4_local_scope, 2067 scope->local_scope, 2068 scope->site_scope, 1) == 0) { 2069 continue; 2070 } 2071 cnt++; 2072 if (cnt > SCTP_ADDRESS_LIMIT) { 2073 break; 2074 } 2075 } 2076 if (cnt > SCTP_ADDRESS_LIMIT) { 2077 break; 2078 } 2079 } 2080 skip_count: 2081 if (cnt > 1) { 2082 total_count = 0; 2083 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2084 cnt = 0; 2085 if ((scope->loopback_scope == 0) && 2086 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2087 /* 2088 * Skip loopback devices if 2089 * loopback_scope not set 2090 */ 2091 continue; 2092 } 2093 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2094 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2095 continue; 2096 } 2097 if (sctp_is_address_in_scope(sctp_ifap, 2098 scope->ipv4_addr_legal, 2099 scope->ipv6_addr_legal, 2100 scope->loopback_scope, 2101 scope->ipv4_local_scope, 2102 scope->local_scope, 2103 scope->site_scope, 0) == 0) { 2104 continue; 2105 } 2106 m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap); 2107 if (limit_out) { 2108 cnt++; 2109 total_count++; 2110 if (cnt >= 2) { 2111 /* 2112 * two from each 2113 * address 2114 */ 2115 break; 2116 } 2117 if (total_count > SCTP_ADDRESS_LIMIT) { 2118 /* No more addresses */ 2119 break; 2120 } 2121 } 2122 } 2123 } 2124 } 2125 } else { 2126 struct sctp_laddr *laddr; 2127 2128 cnt = cnt_inits_to; 2129 /* First, how many ? */ 2130 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2131 if (laddr->ifa == NULL) { 2132 continue; 2133 } 2134 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) 2135 /* 2136 * Address being deleted by the system, dont 2137 * list. 2138 */ 2139 continue; 2140 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2141 /* 2142 * Address being deleted on this ep don't 2143 * list. 2144 */ 2145 continue; 2146 } 2147 if (sctp_is_address_in_scope(laddr->ifa, 2148 scope->ipv4_addr_legal, 2149 scope->ipv6_addr_legal, 2150 scope->loopback_scope, 2151 scope->ipv4_local_scope, 2152 scope->local_scope, 2153 scope->site_scope, 1) == 0) { 2154 continue; 2155 } 2156 cnt++; 2157 } 2158 /* 2159 * To get through a NAT we only list addresses if we have 2160 * more than one. That way if you just bind a single address 2161 * we let the source of the init dictate our address. 2162 */ 2163 if (cnt > 1) { 2164 cnt = cnt_inits_to; 2165 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2166 if (laddr->ifa == NULL) { 2167 continue; 2168 } 2169 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) { 2170 continue; 2171 } 2172 if (sctp_is_address_in_scope(laddr->ifa, 2173 scope->ipv4_addr_legal, 2174 scope->ipv6_addr_legal, 2175 scope->loopback_scope, 2176 scope->ipv4_local_scope, 2177 scope->local_scope, 2178 scope->site_scope, 0) == 0) { 2179 continue; 2180 } 2181 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa); 2182 cnt++; 2183 if (cnt >= SCTP_ADDRESS_LIMIT) { 2184 break; 2185 } 2186 } 2187 } 2188 } 2189 SCTP_IPI_ADDR_RUNLOCK(); 2190 return (m_at); 2191 } 2192 2193 static struct sctp_ifa * 2194 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, 2195 uint8_t dest_is_loop, 2196 uint8_t dest_is_priv, 2197 sa_family_t fam) 2198 { 2199 uint8_t dest_is_global = 0; 2200 2201 /* dest_is_priv is true if destination is a private address */ 2202 /* dest_is_loop is true if destination is a loopback addresses */ 2203 2204 /** 2205 * Here we determine if its a preferred address. A preferred address 2206 * means it is the same scope or higher scope then the destination. 2207 * L = loopback, P = private, G = global 2208 * ----------------------------------------- 2209 * src | dest | result 2210 * ---------------------------------------- 2211 * L | L | yes 2212 * ----------------------------------------- 2213 * P | L | yes-v4 no-v6 2214 * ----------------------------------------- 2215 * G | L | yes-v4 no-v6 2216 * ----------------------------------------- 2217 * L | P | no 2218 * ----------------------------------------- 2219 * P | P | yes 2220 * ----------------------------------------- 2221 * G | P | no 2222 * ----------------------------------------- 2223 * L | G | no 2224 * ----------------------------------------- 2225 * P | G | no 2226 * ----------------------------------------- 2227 * G | G | yes 2228 * ----------------------------------------- 2229 */ 2230 2231 if (ifa->address.sa.sa_family != fam) { 2232 /* forget mis-matched family */ 2233 return (NULL); 2234 } 2235 if ((dest_is_priv == 0) && (dest_is_loop == 0)) { 2236 dest_is_global = 1; 2237 } 2238 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:"); 2239 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa); 2240 /* Ok the address may be ok */ 2241 #ifdef INET6 2242 if (fam == AF_INET6) { 2243 /* ok to use deprecated addresses? no lets not! */ 2244 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2245 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n"); 2246 return (NULL); 2247 } 2248 if (ifa->src_is_priv && !ifa->src_is_loop) { 2249 if (dest_is_loop) { 2250 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n"); 2251 return (NULL); 2252 } 2253 } 2254 if (ifa->src_is_glob) { 2255 if (dest_is_loop) { 2256 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n"); 2257 return (NULL); 2258 } 2259 } 2260 } 2261 #endif 2262 /* 2263 * Now that we know what is what, implement or table this could in 2264 * theory be done slicker (it used to be), but this is 2265 * straightforward and easier to validate :-) 2266 */ 2267 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n", 2268 ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob); 2269 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n", 2270 dest_is_loop, dest_is_priv, dest_is_global); 2271 2272 if ((ifa->src_is_loop) && (dest_is_priv)) { 2273 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n"); 2274 return (NULL); 2275 } 2276 if ((ifa->src_is_glob) && (dest_is_priv)) { 2277 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n"); 2278 return (NULL); 2279 } 2280 if ((ifa->src_is_loop) && (dest_is_global)) { 2281 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n"); 2282 return (NULL); 2283 } 2284 if ((ifa->src_is_priv) && (dest_is_global)) { 2285 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n"); 2286 return (NULL); 2287 } 2288 SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n"); 2289 /* its a preferred address */ 2290 return (ifa); 2291 } 2292 2293 static struct sctp_ifa * 2294 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, 2295 uint8_t dest_is_loop, 2296 uint8_t dest_is_priv, 2297 sa_family_t fam) 2298 { 2299 uint8_t dest_is_global = 0; 2300 2301 /** 2302 * Here we determine if its a acceptable address. A acceptable 2303 * address means it is the same scope or higher scope but we can 2304 * allow for NAT which means its ok to have a global dest and a 2305 * private src. 2306 * 2307 * L = loopback, P = private, G = global 2308 * ----------------------------------------- 2309 * src | dest | result 2310 * ----------------------------------------- 2311 * L | L | yes 2312 * ----------------------------------------- 2313 * P | L | yes-v4 no-v6 2314 * ----------------------------------------- 2315 * G | L | yes 2316 * ----------------------------------------- 2317 * L | P | no 2318 * ----------------------------------------- 2319 * P | P | yes 2320 * ----------------------------------------- 2321 * G | P | yes - May not work 2322 * ----------------------------------------- 2323 * L | G | no 2324 * ----------------------------------------- 2325 * P | G | yes - May not work 2326 * ----------------------------------------- 2327 * G | G | yes 2328 * ----------------------------------------- 2329 */ 2330 2331 if (ifa->address.sa.sa_family != fam) { 2332 /* forget non matching family */ 2333 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n", 2334 ifa->address.sa.sa_family, fam); 2335 return (NULL); 2336 } 2337 /* Ok the address may be ok */ 2338 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa); 2339 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n", 2340 dest_is_loop, dest_is_priv); 2341 if ((dest_is_loop == 0) && (dest_is_priv == 0)) { 2342 dest_is_global = 1; 2343 } 2344 #ifdef INET6 2345 if (fam == AF_INET6) { 2346 /* ok to use deprecated addresses? */ 2347 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2348 return (NULL); 2349 } 2350 if (ifa->src_is_priv) { 2351 /* Special case, linklocal to loop */ 2352 if (dest_is_loop) 2353 return (NULL); 2354 } 2355 } 2356 #endif 2357 /* 2358 * Now that we know what is what, implement our table. This could in 2359 * theory be done slicker (it used to be), but this is 2360 * straightforward and easier to validate :-) 2361 */ 2362 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n", 2363 ifa->src_is_loop, 2364 dest_is_priv); 2365 if ((ifa->src_is_loop == 1) && (dest_is_priv)) { 2366 return (NULL); 2367 } 2368 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n", 2369 ifa->src_is_loop, 2370 dest_is_global); 2371 if ((ifa->src_is_loop == 1) && (dest_is_global)) { 2372 return (NULL); 2373 } 2374 SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n"); 2375 /* its an acceptable address */ 2376 return (ifa); 2377 } 2378 2379 int 2380 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa) 2381 { 2382 struct sctp_laddr *laddr; 2383 2384 if (stcb == NULL) { 2385 /* There are no restrictions, no TCB :-) */ 2386 return (0); 2387 } 2388 LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) { 2389 if (laddr->ifa == NULL) { 2390 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2391 __FUNCTION__); 2392 continue; 2393 } 2394 if (laddr->ifa == ifa) { 2395 /* Yes it is on the list */ 2396 return (1); 2397 } 2398 } 2399 return (0); 2400 } 2401 2402 2403 int 2404 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa) 2405 { 2406 struct sctp_laddr *laddr; 2407 2408 if (ifa == NULL) 2409 return (0); 2410 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2411 if (laddr->ifa == NULL) { 2412 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2413 __FUNCTION__); 2414 continue; 2415 } 2416 if ((laddr->ifa == ifa) && laddr->action == 0) 2417 /* same pointer */ 2418 return (1); 2419 } 2420 return (0); 2421 } 2422 2423 2424 2425 static struct sctp_ifa * 2426 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp, 2427 sctp_route_t * ro, 2428 uint32_t vrf_id, 2429 int non_asoc_addr_ok, 2430 uint8_t dest_is_priv, 2431 uint8_t dest_is_loop, 2432 sa_family_t fam) 2433 { 2434 struct sctp_laddr *laddr, *starting_point; 2435 void *ifn; 2436 int resettotop = 0; 2437 struct sctp_ifn *sctp_ifn; 2438 struct sctp_ifa *sctp_ifa, *sifa; 2439 struct sctp_vrf *vrf; 2440 uint32_t ifn_index; 2441 2442 vrf = sctp_find_vrf(vrf_id); 2443 if (vrf == NULL) 2444 return (NULL); 2445 2446 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2447 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2448 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2449 /* 2450 * first question, is the ifn we will emit on in our list, if so, we 2451 * want such an address. Note that we first looked for a preferred 2452 * address. 2453 */ 2454 if (sctp_ifn) { 2455 /* is a preferred one on the interface we route out? */ 2456 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2457 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2458 (non_asoc_addr_ok == 0)) 2459 continue; 2460 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, 2461 dest_is_loop, 2462 dest_is_priv, fam); 2463 if (sifa == NULL) 2464 continue; 2465 if (sctp_is_addr_in_ep(inp, sifa)) { 2466 atomic_add_int(&sifa->refcount, 1); 2467 return (sifa); 2468 } 2469 } 2470 } 2471 /* 2472 * ok, now we now need to find one on the list of the addresses. We 2473 * can't get one on the emitting interface so let's find first a 2474 * preferred one. If not that an acceptable one otherwise... we 2475 * return NULL. 2476 */ 2477 starting_point = inp->next_addr_touse; 2478 once_again: 2479 if (inp->next_addr_touse == NULL) { 2480 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2481 resettotop = 1; 2482 } 2483 for (laddr = inp->next_addr_touse; laddr; 2484 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2485 if (laddr->ifa == NULL) { 2486 /* address has been removed */ 2487 continue; 2488 } 2489 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2490 /* address is being deleted */ 2491 continue; 2492 } 2493 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, 2494 dest_is_priv, fam); 2495 if (sifa == NULL) 2496 continue; 2497 atomic_add_int(&sifa->refcount, 1); 2498 return (sifa); 2499 } 2500 if (resettotop == 0) { 2501 inp->next_addr_touse = NULL; 2502 goto once_again; 2503 } 2504 inp->next_addr_touse = starting_point; 2505 resettotop = 0; 2506 once_again_too: 2507 if (inp->next_addr_touse == NULL) { 2508 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2509 resettotop = 1; 2510 } 2511 /* ok, what about an acceptable address in the inp */ 2512 for (laddr = inp->next_addr_touse; laddr; 2513 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2514 if (laddr->ifa == NULL) { 2515 /* address has been removed */ 2516 continue; 2517 } 2518 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2519 /* address is being deleted */ 2520 continue; 2521 } 2522 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2523 dest_is_priv, fam); 2524 if (sifa == NULL) 2525 continue; 2526 atomic_add_int(&sifa->refcount, 1); 2527 return (sifa); 2528 } 2529 if (resettotop == 0) { 2530 inp->next_addr_touse = NULL; 2531 goto once_again_too; 2532 } 2533 /* 2534 * no address bound can be a source for the destination we are in 2535 * trouble 2536 */ 2537 return (NULL); 2538 } 2539 2540 2541 2542 static struct sctp_ifa * 2543 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp, 2544 struct sctp_tcb *stcb, 2545 sctp_route_t * ro, 2546 uint32_t vrf_id, 2547 uint8_t dest_is_priv, 2548 uint8_t dest_is_loop, 2549 int non_asoc_addr_ok, 2550 sa_family_t fam) 2551 { 2552 struct sctp_laddr *laddr, *starting_point; 2553 void *ifn; 2554 struct sctp_ifn *sctp_ifn; 2555 struct sctp_ifa *sctp_ifa, *sifa; 2556 uint8_t start_at_beginning = 0; 2557 struct sctp_vrf *vrf; 2558 uint32_t ifn_index; 2559 2560 /* 2561 * first question, is the ifn we will emit on in our list, if so, we 2562 * want that one. 2563 */ 2564 vrf = sctp_find_vrf(vrf_id); 2565 if (vrf == NULL) 2566 return (NULL); 2567 2568 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2569 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2570 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2571 2572 /* 2573 * first question, is the ifn we will emit on in our list? If so, 2574 * we want that one. First we look for a preferred. Second, we go 2575 * for an acceptable. 2576 */ 2577 if (sctp_ifn) { 2578 /* first try for a preferred address on the ep */ 2579 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2580 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2581 continue; 2582 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2583 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2584 if (sifa == NULL) 2585 continue; 2586 if (((non_asoc_addr_ok == 0) && 2587 (sctp_is_addr_restricted(stcb, sifa))) || 2588 (non_asoc_addr_ok && 2589 (sctp_is_addr_restricted(stcb, sifa)) && 2590 (!sctp_is_addr_pending(stcb, sifa)))) { 2591 /* on the no-no list */ 2592 continue; 2593 } 2594 atomic_add_int(&sifa->refcount, 1); 2595 return (sifa); 2596 } 2597 } 2598 /* next try for an acceptable address on the ep */ 2599 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2600 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2601 continue; 2602 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2603 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2604 if (sifa == NULL) 2605 continue; 2606 if (((non_asoc_addr_ok == 0) && 2607 (sctp_is_addr_restricted(stcb, sifa))) || 2608 (non_asoc_addr_ok && 2609 (sctp_is_addr_restricted(stcb, sifa)) && 2610 (!sctp_is_addr_pending(stcb, sifa)))) { 2611 /* on the no-no list */ 2612 continue; 2613 } 2614 atomic_add_int(&sifa->refcount, 1); 2615 return (sifa); 2616 } 2617 } 2618 2619 } 2620 /* 2621 * if we can't find one like that then we must look at all addresses 2622 * bound to pick one at first preferable then secondly acceptable. 2623 */ 2624 starting_point = stcb->asoc.last_used_address; 2625 sctp_from_the_top: 2626 if (stcb->asoc.last_used_address == NULL) { 2627 start_at_beginning = 1; 2628 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2629 } 2630 /* search beginning with the last used address */ 2631 for (laddr = stcb->asoc.last_used_address; laddr; 2632 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2633 if (laddr->ifa == NULL) { 2634 /* address has been removed */ 2635 continue; 2636 } 2637 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2638 /* address is being deleted */ 2639 continue; 2640 } 2641 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam); 2642 if (sifa == NULL) 2643 continue; 2644 if (((non_asoc_addr_ok == 0) && 2645 (sctp_is_addr_restricted(stcb, sifa))) || 2646 (non_asoc_addr_ok && 2647 (sctp_is_addr_restricted(stcb, sifa)) && 2648 (!sctp_is_addr_pending(stcb, sifa)))) { 2649 /* on the no-no list */ 2650 continue; 2651 } 2652 stcb->asoc.last_used_address = laddr; 2653 atomic_add_int(&sifa->refcount, 1); 2654 return (sifa); 2655 } 2656 if (start_at_beginning == 0) { 2657 stcb->asoc.last_used_address = NULL; 2658 goto sctp_from_the_top; 2659 } 2660 /* now try for any higher scope than the destination */ 2661 stcb->asoc.last_used_address = starting_point; 2662 start_at_beginning = 0; 2663 sctp_from_the_top2: 2664 if (stcb->asoc.last_used_address == NULL) { 2665 start_at_beginning = 1; 2666 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2667 } 2668 /* search beginning with the last used address */ 2669 for (laddr = stcb->asoc.last_used_address; laddr; 2670 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2671 if (laddr->ifa == NULL) { 2672 /* address has been removed */ 2673 continue; 2674 } 2675 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2676 /* address is being deleted */ 2677 continue; 2678 } 2679 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2680 dest_is_priv, fam); 2681 if (sifa == NULL) 2682 continue; 2683 if (((non_asoc_addr_ok == 0) && 2684 (sctp_is_addr_restricted(stcb, sifa))) || 2685 (non_asoc_addr_ok && 2686 (sctp_is_addr_restricted(stcb, sifa)) && 2687 (!sctp_is_addr_pending(stcb, sifa)))) { 2688 /* on the no-no list */ 2689 continue; 2690 } 2691 stcb->asoc.last_used_address = laddr; 2692 atomic_add_int(&sifa->refcount, 1); 2693 return (sifa); 2694 } 2695 if (start_at_beginning == 0) { 2696 stcb->asoc.last_used_address = NULL; 2697 goto sctp_from_the_top2; 2698 } 2699 return (NULL); 2700 } 2701 2702 static struct sctp_ifa * 2703 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn, 2704 struct sctp_tcb *stcb, 2705 int non_asoc_addr_ok, 2706 uint8_t dest_is_loop, 2707 uint8_t dest_is_priv, 2708 int addr_wanted, 2709 sa_family_t fam, 2710 sctp_route_t * ro 2711 ) 2712 { 2713 struct sctp_ifa *ifa, *sifa; 2714 int num_eligible_addr = 0; 2715 2716 #ifdef INET6 2717 struct sockaddr_in6 sin6, lsa6; 2718 2719 if (fam == AF_INET6) { 2720 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6)); 2721 (void)sa6_recoverscope(&sin6); 2722 } 2723 #endif /* INET6 */ 2724 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2725 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2726 (non_asoc_addr_ok == 0)) 2727 continue; 2728 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2729 dest_is_priv, fam); 2730 if (sifa == NULL) 2731 continue; 2732 #ifdef INET6 2733 if (fam == AF_INET6 && 2734 dest_is_loop && 2735 sifa->src_is_loop && sifa->src_is_priv) { 2736 /* 2737 * don't allow fe80::1 to be a src on loop ::1, we 2738 * don't list it to the peer so we will get an 2739 * abort. 2740 */ 2741 continue; 2742 } 2743 if (fam == AF_INET6 && 2744 IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) && 2745 IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) { 2746 /* 2747 * link-local <-> link-local must belong to the same 2748 * scope. 2749 */ 2750 memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6)); 2751 (void)sa6_recoverscope(&lsa6); 2752 if (sin6.sin6_scope_id != lsa6.sin6_scope_id) { 2753 continue; 2754 } 2755 } 2756 #endif /* INET6 */ 2757 2758 /* 2759 * Check if the IPv6 address matches to next-hop. In the 2760 * mobile case, old IPv6 address may be not deleted from the 2761 * interface. Then, the interface has previous and new 2762 * addresses. We should use one corresponding to the 2763 * next-hop. (by micchie) 2764 */ 2765 #ifdef INET6 2766 if (stcb && fam == AF_INET6 && 2767 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2768 if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) 2769 == 0) { 2770 continue; 2771 } 2772 } 2773 #endif 2774 #ifdef INET 2775 /* Avoid topologically incorrect IPv4 address */ 2776 if (stcb && fam == AF_INET && 2777 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2778 if (sctp_v4src_match_nexthop(sifa, ro) == 0) { 2779 continue; 2780 } 2781 } 2782 #endif 2783 if (stcb) { 2784 if (sctp_is_address_in_scope(ifa, 2785 stcb->asoc.ipv4_addr_legal, 2786 stcb->asoc.ipv6_addr_legal, 2787 stcb->asoc.loopback_scope, 2788 stcb->asoc.ipv4_local_scope, 2789 stcb->asoc.local_scope, 2790 stcb->asoc.site_scope, 0) == 0) { 2791 continue; 2792 } 2793 if (((non_asoc_addr_ok == 0) && 2794 (sctp_is_addr_restricted(stcb, sifa))) || 2795 (non_asoc_addr_ok && 2796 (sctp_is_addr_restricted(stcb, sifa)) && 2797 (!sctp_is_addr_pending(stcb, sifa)))) { 2798 /* 2799 * It is restricted for some reason.. 2800 * probably not yet added. 2801 */ 2802 continue; 2803 } 2804 } 2805 if (num_eligible_addr >= addr_wanted) { 2806 return (sifa); 2807 } 2808 num_eligible_addr++; 2809 } 2810 return (NULL); 2811 } 2812 2813 2814 static int 2815 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn, 2816 struct sctp_tcb *stcb, 2817 int non_asoc_addr_ok, 2818 uint8_t dest_is_loop, 2819 uint8_t dest_is_priv, 2820 sa_family_t fam) 2821 { 2822 struct sctp_ifa *ifa, *sifa; 2823 int num_eligible_addr = 0; 2824 2825 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2826 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2827 (non_asoc_addr_ok == 0)) { 2828 continue; 2829 } 2830 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2831 dest_is_priv, fam); 2832 if (sifa == NULL) { 2833 continue; 2834 } 2835 if (stcb) { 2836 if (sctp_is_address_in_scope(ifa, 2837 stcb->asoc.ipv4_addr_legal, 2838 stcb->asoc.ipv6_addr_legal, 2839 stcb->asoc.loopback_scope, 2840 stcb->asoc.ipv4_local_scope, 2841 stcb->asoc.local_scope, 2842 stcb->asoc.site_scope, 0) == 0) { 2843 continue; 2844 } 2845 if (((non_asoc_addr_ok == 0) && 2846 (sctp_is_addr_restricted(stcb, sifa))) || 2847 (non_asoc_addr_ok && 2848 (sctp_is_addr_restricted(stcb, sifa)) && 2849 (!sctp_is_addr_pending(stcb, sifa)))) { 2850 /* 2851 * It is restricted for some reason.. 2852 * probably not yet added. 2853 */ 2854 continue; 2855 } 2856 } 2857 num_eligible_addr++; 2858 } 2859 return (num_eligible_addr); 2860 } 2861 2862 static struct sctp_ifa * 2863 sctp_choose_boundall(struct sctp_tcb *stcb, 2864 struct sctp_nets *net, 2865 sctp_route_t * ro, 2866 uint32_t vrf_id, 2867 uint8_t dest_is_priv, 2868 uint8_t dest_is_loop, 2869 int non_asoc_addr_ok, 2870 sa_family_t fam) 2871 { 2872 int cur_addr_num = 0, num_preferred = 0; 2873 void *ifn; 2874 struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn; 2875 struct sctp_ifa *sctp_ifa, *sifa; 2876 uint32_t ifn_index; 2877 struct sctp_vrf *vrf; 2878 2879 #ifdef INET 2880 int retried = 0; 2881 2882 #endif 2883 2884 /*- 2885 * For boundall we can use any address in the association. 2886 * If non_asoc_addr_ok is set we can use any address (at least in 2887 * theory). So we look for preferred addresses first. If we find one, 2888 * we use it. Otherwise we next try to get an address on the 2889 * interface, which we should be able to do (unless non_asoc_addr_ok 2890 * is false and we are routed out that way). In these cases where we 2891 * can't use the address of the interface we go through all the 2892 * ifn's looking for an address we can use and fill that in. Punting 2893 * means we send back address 0, which will probably cause problems 2894 * actually since then IP will fill in the address of the route ifn, 2895 * which means we probably already rejected it.. i.e. here comes an 2896 * abort :-<. 2897 */ 2898 vrf = sctp_find_vrf(vrf_id); 2899 if (vrf == NULL) 2900 return (NULL); 2901 2902 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2903 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2904 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index); 2905 emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2906 if (sctp_ifn == NULL) { 2907 /* ?? We don't have this guy ?? */ 2908 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n"); 2909 goto bound_all_plan_b; 2910 } 2911 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n", 2912 ifn_index, sctp_ifn->ifn_name); 2913 2914 if (net) { 2915 cur_addr_num = net->indx_of_eligible_next_to_use; 2916 } 2917 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, 2918 stcb, 2919 non_asoc_addr_ok, 2920 dest_is_loop, 2921 dest_is_priv, fam); 2922 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n", 2923 num_preferred, sctp_ifn->ifn_name); 2924 if (num_preferred == 0) { 2925 /* 2926 * no eligible addresses, we must use some other interface 2927 * address if we can find one. 2928 */ 2929 goto bound_all_plan_b; 2930 } 2931 /* 2932 * Ok we have num_eligible_addr set with how many we can use, this 2933 * may vary from call to call due to addresses being deprecated 2934 * etc.. 2935 */ 2936 if (cur_addr_num >= num_preferred) { 2937 cur_addr_num = 0; 2938 } 2939 /* 2940 * select the nth address from the list (where cur_addr_num is the 2941 * nth) and 0 is the first one, 1 is the second one etc... 2942 */ 2943 SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num); 2944 2945 sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop, 2946 dest_is_priv, cur_addr_num, fam, ro); 2947 2948 /* if sctp_ifa is NULL something changed??, fall to plan b. */ 2949 if (sctp_ifa) { 2950 atomic_add_int(&sctp_ifa->refcount, 1); 2951 if (net) { 2952 /* save off where the next one we will want */ 2953 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 2954 } 2955 return (sctp_ifa); 2956 } 2957 /* 2958 * plan_b: Look at all interfaces and find a preferred address. If 2959 * no preferred fall through to plan_c. 2960 */ 2961 bound_all_plan_b: 2962 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n"); 2963 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 2964 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n", 2965 sctp_ifn->ifn_name); 2966 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 2967 /* wrong base scope */ 2968 SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n"); 2969 continue; 2970 } 2971 if ((sctp_ifn == looked_at) && looked_at) { 2972 /* already looked at this guy */ 2973 SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n"); 2974 continue; 2975 } 2976 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok, 2977 dest_is_loop, dest_is_priv, fam); 2978 SCTPDBG(SCTP_DEBUG_OUTPUT2, 2979 "Found ifn:%p %d preferred source addresses\n", 2980 ifn, num_preferred); 2981 if (num_preferred == 0) { 2982 /* None on this interface. */ 2983 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n"); 2984 continue; 2985 } 2986 SCTPDBG(SCTP_DEBUG_OUTPUT2, 2987 "num preferred:%d on interface:%p cur_addr_num:%d\n", 2988 num_preferred, (void *)sctp_ifn, cur_addr_num); 2989 2990 /* 2991 * Ok we have num_eligible_addr set with how many we can 2992 * use, this may vary from call to call due to addresses 2993 * being deprecated etc.. 2994 */ 2995 if (cur_addr_num >= num_preferred) { 2996 cur_addr_num = 0; 2997 } 2998 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop, 2999 dest_is_priv, cur_addr_num, fam, ro); 3000 if (sifa == NULL) 3001 continue; 3002 if (net) { 3003 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3004 SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n", 3005 cur_addr_num); 3006 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:"); 3007 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 3008 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:"); 3009 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); 3010 } 3011 atomic_add_int(&sifa->refcount, 1); 3012 return (sifa); 3013 } 3014 #ifdef INET 3015 again_with_private_addresses_allowed: 3016 #endif 3017 /* plan_c: do we have an acceptable address on the emit interface */ 3018 sifa = NULL; 3019 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n"); 3020 if (emit_ifn == NULL) { 3021 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n"); 3022 goto plan_d; 3023 } 3024 LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) { 3025 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa); 3026 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3027 (non_asoc_addr_ok == 0)) { 3028 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n"); 3029 continue; 3030 } 3031 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, 3032 dest_is_priv, fam); 3033 if (sifa == NULL) { 3034 SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n"); 3035 continue; 3036 } 3037 if (stcb) { 3038 if (sctp_is_address_in_scope(sifa, 3039 stcb->asoc.ipv4_addr_legal, 3040 stcb->asoc.ipv6_addr_legal, 3041 stcb->asoc.loopback_scope, 3042 stcb->asoc.ipv4_local_scope, 3043 stcb->asoc.local_scope, 3044 stcb->asoc.site_scope, 0) == 0) { 3045 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n"); 3046 sifa = NULL; 3047 continue; 3048 } 3049 if (((non_asoc_addr_ok == 0) && 3050 (sctp_is_addr_restricted(stcb, sifa))) || 3051 (non_asoc_addr_ok && 3052 (sctp_is_addr_restricted(stcb, sifa)) && 3053 (!sctp_is_addr_pending(stcb, sifa)))) { 3054 /* 3055 * It is restricted for some reason.. 3056 * probably not yet added. 3057 */ 3058 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n"); 3059 sifa = NULL; 3060 continue; 3061 } 3062 } else { 3063 SCTP_PRINTF("Stcb is null - no print\n"); 3064 } 3065 atomic_add_int(&sifa->refcount, 1); 3066 goto out; 3067 } 3068 plan_d: 3069 /* 3070 * plan_d: We are in trouble. No preferred address on the emit 3071 * interface. And not even a preferred address on all interfaces. Go 3072 * out and see if we can find an acceptable address somewhere 3073 * amongst all interfaces. 3074 */ 3075 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at); 3076 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3077 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3078 /* wrong base scope */ 3079 continue; 3080 } 3081 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3082 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3083 (non_asoc_addr_ok == 0)) 3084 continue; 3085 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3086 dest_is_loop, 3087 dest_is_priv, fam); 3088 if (sifa == NULL) 3089 continue; 3090 if (stcb) { 3091 if (sctp_is_address_in_scope(sifa, 3092 stcb->asoc.ipv4_addr_legal, 3093 stcb->asoc.ipv6_addr_legal, 3094 stcb->asoc.loopback_scope, 3095 stcb->asoc.ipv4_local_scope, 3096 stcb->asoc.local_scope, 3097 stcb->asoc.site_scope, 0) == 0) { 3098 sifa = NULL; 3099 continue; 3100 } 3101 if (((non_asoc_addr_ok == 0) && 3102 (sctp_is_addr_restricted(stcb, sifa))) || 3103 (non_asoc_addr_ok && 3104 (sctp_is_addr_restricted(stcb, sifa)) && 3105 (!sctp_is_addr_pending(stcb, sifa)))) { 3106 /* 3107 * It is restricted for some 3108 * reason.. probably not yet added. 3109 */ 3110 sifa = NULL; 3111 continue; 3112 } 3113 } 3114 goto out; 3115 } 3116 } 3117 #ifdef INET 3118 if ((retried == 0) && (stcb->asoc.ipv4_local_scope == 0)) { 3119 stcb->asoc.ipv4_local_scope = 1; 3120 retried = 1; 3121 goto again_with_private_addresses_allowed; 3122 } else if (retried == 1) { 3123 stcb->asoc.ipv4_local_scope = 0; 3124 } 3125 #endif 3126 out: 3127 #ifdef INET 3128 if (sifa) { 3129 if (retried == 1) { 3130 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3131 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3132 /* wrong base scope */ 3133 continue; 3134 } 3135 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3136 struct sctp_ifa *tmp_sifa; 3137 3138 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3139 (non_asoc_addr_ok == 0)) 3140 continue; 3141 tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3142 dest_is_loop, 3143 dest_is_priv, fam); 3144 if (tmp_sifa == NULL) { 3145 continue; 3146 } 3147 if (tmp_sifa == sifa) { 3148 continue; 3149 } 3150 if (stcb) { 3151 if (sctp_is_address_in_scope(tmp_sifa, 3152 stcb->asoc.ipv4_addr_legal, 3153 stcb->asoc.ipv6_addr_legal, 3154 stcb->asoc.loopback_scope, 3155 stcb->asoc.ipv4_local_scope, 3156 stcb->asoc.local_scope, 3157 stcb->asoc.site_scope, 0) == 0) { 3158 continue; 3159 } 3160 if (((non_asoc_addr_ok == 0) && 3161 (sctp_is_addr_restricted(stcb, tmp_sifa))) || 3162 (non_asoc_addr_ok && 3163 (sctp_is_addr_restricted(stcb, tmp_sifa)) && 3164 (!sctp_is_addr_pending(stcb, tmp_sifa)))) { 3165 /* 3166 * It is restricted 3167 * for some reason.. 3168 * probably not yet 3169 * added. 3170 */ 3171 continue; 3172 } 3173 } 3174 if ((tmp_sifa->address.sin.sin_family == AF_INET) && 3175 (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) { 3176 sctp_add_local_addr_restricted(stcb, tmp_sifa); 3177 } 3178 } 3179 } 3180 } 3181 atomic_add_int(&sifa->refcount, 1); 3182 } 3183 #endif 3184 return (sifa); 3185 } 3186 3187 3188 3189 /* tcb may be NULL */ 3190 struct sctp_ifa * 3191 sctp_source_address_selection(struct sctp_inpcb *inp, 3192 struct sctp_tcb *stcb, 3193 sctp_route_t * ro, 3194 struct sctp_nets *net, 3195 int non_asoc_addr_ok, uint32_t vrf_id) 3196 { 3197 struct sctp_ifa *answer; 3198 uint8_t dest_is_priv, dest_is_loop; 3199 sa_family_t fam; 3200 3201 #ifdef INET 3202 struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst; 3203 3204 #endif 3205 #ifdef INET6 3206 struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst; 3207 3208 #endif 3209 3210 /** 3211 * Rules: - Find the route if needed, cache if I can. - Look at 3212 * interface address in route, Is it in the bound list. If so we 3213 * have the best source. - If not we must rotate amongst the 3214 * addresses. 3215 * 3216 * Cavets and issues 3217 * 3218 * Do we need to pay attention to scope. We can have a private address 3219 * or a global address we are sourcing or sending to. So if we draw 3220 * it out 3221 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3222 * For V4 3223 * ------------------------------------------ 3224 * source * dest * result 3225 * ----------------------------------------- 3226 * <a> Private * Global * NAT 3227 * ----------------------------------------- 3228 * <b> Private * Private * No problem 3229 * ----------------------------------------- 3230 * <c> Global * Private * Huh, How will this work? 3231 * ----------------------------------------- 3232 * <d> Global * Global * No Problem 3233 *------------------------------------------ 3234 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3235 * For V6 3236 *------------------------------------------ 3237 * source * dest * result 3238 * ----------------------------------------- 3239 * <a> Linklocal * Global * 3240 * ----------------------------------------- 3241 * <b> Linklocal * Linklocal * No problem 3242 * ----------------------------------------- 3243 * <c> Global * Linklocal * Huh, How will this work? 3244 * ----------------------------------------- 3245 * <d> Global * Global * No Problem 3246 *------------------------------------------ 3247 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3248 * 3249 * And then we add to that what happens if there are multiple addresses 3250 * assigned to an interface. Remember the ifa on a ifn is a linked 3251 * list of addresses. So one interface can have more than one IP 3252 * address. What happens if we have both a private and a global 3253 * address? Do we then use context of destination to sort out which 3254 * one is best? And what about NAT's sending P->G may get you a NAT 3255 * translation, or should you select the G thats on the interface in 3256 * preference. 3257 * 3258 * Decisions: 3259 * 3260 * - count the number of addresses on the interface. 3261 * - if it is one, no problem except case <c>. 3262 * For <a> we will assume a NAT out there. 3263 * - if there are more than one, then we need to worry about scope P 3264 * or G. We should prefer G -> G and P -> P if possible. 3265 * Then as a secondary fall back to mixed types G->P being a last 3266 * ditch one. 3267 * - The above all works for bound all, but bound specific we need to 3268 * use the same concept but instead only consider the bound 3269 * addresses. If the bound set is NOT assigned to the interface then 3270 * we must use rotation amongst the bound addresses.. 3271 */ 3272 if (ro->ro_rt == NULL) { 3273 /* 3274 * Need a route to cache. 3275 */ 3276 SCTP_RTALLOC(ro, vrf_id); 3277 } 3278 if (ro->ro_rt == NULL) { 3279 return (NULL); 3280 } 3281 fam = ro->ro_dst.sa_family; 3282 dest_is_priv = dest_is_loop = 0; 3283 /* Setup our scopes for the destination */ 3284 switch (fam) { 3285 #ifdef INET 3286 case AF_INET: 3287 /* Scope based on outbound address */ 3288 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) { 3289 dest_is_loop = 1; 3290 if (net != NULL) { 3291 /* mark it as local */ 3292 net->addr_is_local = 1; 3293 } 3294 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) { 3295 dest_is_priv = 1; 3296 } 3297 break; 3298 #endif 3299 #ifdef INET6 3300 case AF_INET6: 3301 /* Scope based on outbound address */ 3302 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) || 3303 SCTP_ROUTE_IS_REAL_LOOP(ro)) { 3304 /* 3305 * If the address is a loopback address, which 3306 * consists of "::1" OR "fe80::1%lo0", we are 3307 * loopback scope. But we don't use dest_is_priv 3308 * (link local addresses). 3309 */ 3310 dest_is_loop = 1; 3311 if (net != NULL) { 3312 /* mark it as local */ 3313 net->addr_is_local = 1; 3314 } 3315 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) { 3316 dest_is_priv = 1; 3317 } 3318 break; 3319 #endif 3320 } 3321 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:"); 3322 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst); 3323 SCTP_IPI_ADDR_RLOCK(); 3324 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3325 /* 3326 * Bound all case 3327 */ 3328 answer = sctp_choose_boundall(stcb, net, ro, vrf_id, 3329 dest_is_priv, dest_is_loop, 3330 non_asoc_addr_ok, fam); 3331 SCTP_IPI_ADDR_RUNLOCK(); 3332 return (answer); 3333 } 3334 /* 3335 * Subset bound case 3336 */ 3337 if (stcb) { 3338 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro, 3339 vrf_id, dest_is_priv, 3340 dest_is_loop, 3341 non_asoc_addr_ok, fam); 3342 } else { 3343 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id, 3344 non_asoc_addr_ok, 3345 dest_is_priv, 3346 dest_is_loop, fam); 3347 } 3348 SCTP_IPI_ADDR_RUNLOCK(); 3349 return (answer); 3350 } 3351 3352 static int 3353 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize) 3354 { 3355 struct cmsghdr cmh; 3356 int tlen, at, found; 3357 struct sctp_sndinfo sndinfo; 3358 struct sctp_prinfo prinfo; 3359 struct sctp_authinfo authinfo; 3360 3361 tlen = SCTP_BUF_LEN(control); 3362 at = 0; 3363 found = 0; 3364 /* 3365 * Independent of how many mbufs, find the c_type inside the control 3366 * structure and copy out the data. 3367 */ 3368 while (at < tlen) { 3369 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3370 /* There is not enough room for one more. */ 3371 return (found); 3372 } 3373 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3374 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3375 /* We dont't have a complete CMSG header. */ 3376 return (found); 3377 } 3378 if (((int)cmh.cmsg_len + at) > tlen) { 3379 /* We don't have the complete CMSG. */ 3380 return (found); 3381 } 3382 if ((cmh.cmsg_level == IPPROTO_SCTP) && 3383 ((c_type == cmh.cmsg_type) || 3384 ((c_type == SCTP_SNDRCV) && 3385 ((cmh.cmsg_type == SCTP_SNDINFO) || 3386 (cmh.cmsg_type == SCTP_PRINFO) || 3387 (cmh.cmsg_type == SCTP_AUTHINFO))))) { 3388 if (c_type == cmh.cmsg_type) { 3389 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) { 3390 return (found); 3391 } 3392 /* It is exactly what we want. Copy it out. */ 3393 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data); 3394 return (1); 3395 } else { 3396 struct sctp_sndrcvinfo *sndrcvinfo; 3397 3398 sndrcvinfo = (struct sctp_sndrcvinfo *)data; 3399 if (found == 0) { 3400 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { 3401 return (found); 3402 } 3403 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); 3404 } 3405 switch (cmh.cmsg_type) { 3406 case SCTP_SNDINFO: 3407 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) { 3408 return (found); 3409 } 3410 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); 3411 sndrcvinfo->sinfo_stream = sndinfo.snd_sid; 3412 sndrcvinfo->sinfo_flags = sndinfo.snd_flags; 3413 sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid; 3414 sndrcvinfo->sinfo_context = sndinfo.snd_context; 3415 sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id; 3416 break; 3417 case SCTP_PRINFO: 3418 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) { 3419 return (found); 3420 } 3421 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo); 3422 sndrcvinfo->sinfo_timetolive = prinfo.pr_value; 3423 sndrcvinfo->sinfo_flags |= prinfo.pr_policy; 3424 break; 3425 case SCTP_AUTHINFO: 3426 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) { 3427 return (found); 3428 } 3429 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo); 3430 sndrcvinfo->sinfo_keynumber_valid = 1; 3431 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber; 3432 break; 3433 default: 3434 return (found); 3435 } 3436 found = 1; 3437 } 3438 } 3439 at += CMSG_ALIGN(cmh.cmsg_len); 3440 } 3441 return (found); 3442 } 3443 3444 static int 3445 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error) 3446 { 3447 struct cmsghdr cmh; 3448 int tlen, at; 3449 struct sctp_initmsg initmsg; 3450 3451 #ifdef INET 3452 struct sockaddr_in sin; 3453 3454 #endif 3455 #ifdef INET6 3456 struct sockaddr_in6 sin6; 3457 3458 #endif 3459 3460 tlen = SCTP_BUF_LEN(control); 3461 at = 0; 3462 while (at < tlen) { 3463 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3464 /* There is not enough room for one more. */ 3465 *error = EINVAL; 3466 return (1); 3467 } 3468 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3469 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3470 /* We dont't have a complete CMSG header. */ 3471 *error = EINVAL; 3472 return (1); 3473 } 3474 if (((int)cmh.cmsg_len + at) > tlen) { 3475 /* We don't have the complete CMSG. */ 3476 *error = EINVAL; 3477 return (1); 3478 } 3479 if (cmh.cmsg_level == IPPROTO_SCTP) { 3480 switch (cmh.cmsg_type) { 3481 case SCTP_INIT: 3482 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) { 3483 *error = EINVAL; 3484 return (1); 3485 } 3486 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg); 3487 if (initmsg.sinit_max_attempts) 3488 stcb->asoc.max_init_times = initmsg.sinit_max_attempts; 3489 if (initmsg.sinit_num_ostreams) 3490 stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams; 3491 if (initmsg.sinit_max_instreams) 3492 stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams; 3493 if (initmsg.sinit_max_init_timeo) 3494 stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo; 3495 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) { 3496 struct sctp_stream_out *tmp_str; 3497 unsigned int i; 3498 3499 /* Default is NOT correct */ 3500 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n", 3501 stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams); 3502 SCTP_TCB_UNLOCK(stcb); 3503 SCTP_MALLOC(tmp_str, 3504 struct sctp_stream_out *, 3505 (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)), 3506 SCTP_M_STRMO); 3507 SCTP_TCB_LOCK(stcb); 3508 if (tmp_str != NULL) { 3509 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO); 3510 stcb->asoc.strmout = tmp_str; 3511 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams; 3512 } else { 3513 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt; 3514 } 3515 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3516 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 3517 stcb->asoc.strmout[i].chunks_on_queues = 0; 3518 stcb->asoc.strmout[i].next_sequence_send = 0; 3519 stcb->asoc.strmout[i].stream_no = i; 3520 stcb->asoc.strmout[i].last_msg_incomplete = 0; 3521 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL); 3522 } 3523 } 3524 break; 3525 #ifdef INET 3526 case SCTP_DSTADDRV4: 3527 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3528 *error = EINVAL; 3529 return (1); 3530 } 3531 memset(&sin, 0, sizeof(struct sockaddr_in)); 3532 sin.sin_family = AF_INET; 3533 sin.sin_len = sizeof(struct sockaddr_in); 3534 sin.sin_port = stcb->rport; 3535 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3536 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3537 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3538 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3539 *error = EINVAL; 3540 return (1); 3541 } 3542 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, 3543 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3544 *error = ENOBUFS; 3545 return (1); 3546 } 3547 break; 3548 #endif 3549 #ifdef INET6 3550 case SCTP_DSTADDRV6: 3551 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3552 *error = EINVAL; 3553 return (1); 3554 } 3555 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3556 sin6.sin6_family = AF_INET6; 3557 sin6.sin6_len = sizeof(struct sockaddr_in6); 3558 sin6.sin6_port = stcb->rport; 3559 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3560 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) || 3561 IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) { 3562 *error = EINVAL; 3563 return (1); 3564 } 3565 #ifdef INET 3566 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3567 in6_sin6_2_sin(&sin, &sin6); 3568 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3569 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3570 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3571 *error = EINVAL; 3572 return (1); 3573 } 3574 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, 3575 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3576 *error = ENOBUFS; 3577 return (1); 3578 } 3579 } else 3580 #endif 3581 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, 3582 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3583 *error = ENOBUFS; 3584 return (1); 3585 } 3586 break; 3587 #endif 3588 default: 3589 break; 3590 } 3591 } 3592 at += CMSG_ALIGN(cmh.cmsg_len); 3593 } 3594 return (0); 3595 } 3596 3597 static struct sctp_tcb * 3598 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p, 3599 in_port_t port, 3600 struct mbuf *control, 3601 struct sctp_nets **net_p, 3602 int *error) 3603 { 3604 struct cmsghdr cmh; 3605 int tlen, at; 3606 struct sctp_tcb *stcb; 3607 struct sockaddr *addr; 3608 3609 #ifdef INET 3610 struct sockaddr_in sin; 3611 3612 #endif 3613 #ifdef INET6 3614 struct sockaddr_in6 sin6; 3615 3616 #endif 3617 3618 tlen = SCTP_BUF_LEN(control); 3619 at = 0; 3620 while (at < tlen) { 3621 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3622 /* There is not enough room for one more. */ 3623 *error = EINVAL; 3624 return (NULL); 3625 } 3626 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3627 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3628 /* We dont't have a complete CMSG header. */ 3629 *error = EINVAL; 3630 return (NULL); 3631 } 3632 if (((int)cmh.cmsg_len + at) > tlen) { 3633 /* We don't have the complete CMSG. */ 3634 *error = EINVAL; 3635 return (NULL); 3636 } 3637 if (cmh.cmsg_level == IPPROTO_SCTP) { 3638 switch (cmh.cmsg_type) { 3639 #ifdef INET 3640 case SCTP_DSTADDRV4: 3641 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3642 *error = EINVAL; 3643 return (NULL); 3644 } 3645 memset(&sin, 0, sizeof(struct sockaddr_in)); 3646 sin.sin_family = AF_INET; 3647 sin.sin_len = sizeof(struct sockaddr_in); 3648 sin.sin_port = port; 3649 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3650 addr = (struct sockaddr *)&sin; 3651 break; 3652 #endif 3653 #ifdef INET6 3654 case SCTP_DSTADDRV6: 3655 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3656 *error = EINVAL; 3657 return (NULL); 3658 } 3659 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3660 sin6.sin6_family = AF_INET6; 3661 sin6.sin6_len = sizeof(struct sockaddr_in6); 3662 sin6.sin6_port = port; 3663 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3664 #ifdef INET 3665 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3666 in6_sin6_2_sin(&sin, &sin6); 3667 addr = (struct sockaddr *)&sin; 3668 } else 3669 #endif 3670 addr = (struct sockaddr *)&sin6; 3671 break; 3672 #endif 3673 default: 3674 addr = NULL; 3675 break; 3676 } 3677 if (addr) { 3678 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL); 3679 if (stcb != NULL) { 3680 return (stcb); 3681 } 3682 } 3683 } 3684 at += CMSG_ALIGN(cmh.cmsg_len); 3685 } 3686 return (NULL); 3687 } 3688 3689 static struct mbuf * 3690 sctp_add_cookie(struct mbuf *init, int init_offset, 3691 struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature) 3692 { 3693 struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret; 3694 struct sctp_state_cookie *stc; 3695 struct sctp_paramhdr *ph; 3696 uint8_t *foo; 3697 int sig_offset; 3698 uint16_t cookie_sz; 3699 3700 mret = NULL; 3701 mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) + 3702 sizeof(struct sctp_paramhdr)), 0, 3703 M_NOWAIT, 1, MT_DATA); 3704 if (mret == NULL) { 3705 return (NULL); 3706 } 3707 copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT); 3708 if (copy_init == NULL) { 3709 sctp_m_freem(mret); 3710 return (NULL); 3711 } 3712 #ifdef SCTP_MBUF_LOGGING 3713 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3714 struct mbuf *mat; 3715 3716 for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) { 3717 if (SCTP_BUF_IS_EXTENDED(mat)) { 3718 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 3719 } 3720 } 3721 } 3722 #endif 3723 copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL, 3724 M_NOWAIT); 3725 if (copy_initack == NULL) { 3726 sctp_m_freem(mret); 3727 sctp_m_freem(copy_init); 3728 return (NULL); 3729 } 3730 #ifdef SCTP_MBUF_LOGGING 3731 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3732 struct mbuf *mat; 3733 3734 for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) { 3735 if (SCTP_BUF_IS_EXTENDED(mat)) { 3736 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 3737 } 3738 } 3739 } 3740 #endif 3741 /* easy side we just drop it on the end */ 3742 ph = mtod(mret, struct sctp_paramhdr *); 3743 SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) + 3744 sizeof(struct sctp_paramhdr); 3745 stc = (struct sctp_state_cookie *)((caddr_t)ph + 3746 sizeof(struct sctp_paramhdr)); 3747 ph->param_type = htons(SCTP_STATE_COOKIE); 3748 ph->param_length = 0; /* fill in at the end */ 3749 /* Fill in the stc cookie data */ 3750 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); 3751 3752 /* tack the INIT and then the INIT-ACK onto the chain */ 3753 cookie_sz = 0; 3754 for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3755 cookie_sz += SCTP_BUF_LEN(m_at); 3756 if (SCTP_BUF_NEXT(m_at) == NULL) { 3757 SCTP_BUF_NEXT(m_at) = copy_init; 3758 break; 3759 } 3760 } 3761 for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3762 cookie_sz += SCTP_BUF_LEN(m_at); 3763 if (SCTP_BUF_NEXT(m_at) == NULL) { 3764 SCTP_BUF_NEXT(m_at) = copy_initack; 3765 break; 3766 } 3767 } 3768 for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3769 cookie_sz += SCTP_BUF_LEN(m_at); 3770 if (SCTP_BUF_NEXT(m_at) == NULL) { 3771 break; 3772 } 3773 } 3774 sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA); 3775 if (sig == NULL) { 3776 /* no space, so free the entire chain */ 3777 sctp_m_freem(mret); 3778 return (NULL); 3779 } 3780 SCTP_BUF_LEN(sig) = 0; 3781 SCTP_BUF_NEXT(m_at) = sig; 3782 sig_offset = 0; 3783 foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset); 3784 memset(foo, 0, SCTP_SIGNATURE_SIZE); 3785 *signature = foo; 3786 SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE; 3787 cookie_sz += SCTP_SIGNATURE_SIZE; 3788 ph->param_length = htons(cookie_sz); 3789 return (mret); 3790 } 3791 3792 3793 static uint8_t 3794 sctp_get_ect(struct sctp_tcb *stcb) 3795 { 3796 if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) { 3797 return (SCTP_ECT0_BIT); 3798 } else { 3799 return (0); 3800 } 3801 } 3802 3803 #if defined(INET) || defined(INET6) 3804 static void 3805 sctp_handle_no_route(struct sctp_tcb *stcb, 3806 struct sctp_nets *net, 3807 int so_locked) 3808 { 3809 SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n"); 3810 3811 if (net) { 3812 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was "); 3813 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa); 3814 if (net->dest_state & SCTP_ADDR_CONFIRMED) { 3815 if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) { 3816 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net); 3817 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 3818 stcb, 0, 3819 (void *)net, 3820 so_locked); 3821 net->dest_state &= ~SCTP_ADDR_REACHABLE; 3822 net->dest_state &= ~SCTP_ADDR_PF; 3823 } 3824 } 3825 if (stcb) { 3826 if (net == stcb->asoc.primary_destination) { 3827 /* need a new primary */ 3828 struct sctp_nets *alt; 3829 3830 alt = sctp_find_alternate_net(stcb, net, 0); 3831 if (alt != net) { 3832 if (stcb->asoc.alternate) { 3833 sctp_free_remote_addr(stcb->asoc.alternate); 3834 } 3835 stcb->asoc.alternate = alt; 3836 atomic_add_int(&stcb->asoc.alternate->ref_count, 1); 3837 if (net->ro._s_addr) { 3838 sctp_free_ifa(net->ro._s_addr); 3839 net->ro._s_addr = NULL; 3840 } 3841 net->src_addr_selected = 0; 3842 } 3843 } 3844 } 3845 } 3846 } 3847 3848 #endif 3849 3850 static int 3851 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, 3852 struct sctp_tcb *stcb, /* may be NULL */ 3853 struct sctp_nets *net, 3854 struct sockaddr *to, 3855 struct mbuf *m, 3856 uint32_t auth_offset, 3857 struct sctp_auth_chunk *auth, 3858 uint16_t auth_keyid, 3859 int nofragment_flag, 3860 int ecn_ok, 3861 int out_of_asoc_ok, 3862 uint16_t src_port, 3863 uint16_t dest_port, 3864 uint32_t v_tag, 3865 uint16_t port, 3866 union sctp_sockstore *over_addr, 3867 uint8_t use_mflowid, uint32_t mflowid, 3868 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 3869 int so_locked SCTP_UNUSED 3870 #else 3871 int so_locked 3872 #endif 3873 ) 3874 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */ 3875 { 3876 /** 3877 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header 3878 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure: 3879 * - fill in the HMAC digest of any AUTH chunk in the packet. 3880 * - calculate and fill in the SCTP checksum. 3881 * - prepend an IP address header. 3882 * - if boundall use INADDR_ANY. 3883 * - if boundspecific do source address selection. 3884 * - set fragmentation option for ipV4. 3885 * - On return from IP output, check/adjust mtu size of output 3886 * interface and smallest_mtu size as well. 3887 */ 3888 /* Will need ifdefs around this */ 3889 struct mbuf *newm; 3890 struct sctphdr *sctphdr; 3891 int packet_length; 3892 int ret; 3893 uint32_t vrf_id; 3894 3895 #if defined(INET) || defined(INET6) 3896 struct mbuf *o_pak; 3897 sctp_route_t *ro = NULL; 3898 struct udphdr *udp = NULL; 3899 3900 #endif 3901 uint8_t tos_value; 3902 3903 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3904 struct socket *so = NULL; 3905 3906 #endif 3907 3908 if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) { 3909 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 3910 sctp_m_freem(m); 3911 return (EFAULT); 3912 } 3913 if (stcb) { 3914 vrf_id = stcb->asoc.vrf_id; 3915 } else { 3916 vrf_id = inp->def_vrf_id; 3917 } 3918 3919 /* fill in the HMAC digest for any AUTH chunk in the packet */ 3920 if ((auth != NULL) && (stcb != NULL)) { 3921 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid); 3922 } 3923 if (net) { 3924 tos_value = net->dscp; 3925 } else if (stcb) { 3926 tos_value = stcb->asoc.default_dscp; 3927 } else { 3928 tos_value = inp->sctp_ep.default_dscp; 3929 } 3930 3931 switch (to->sa_family) { 3932 #ifdef INET 3933 case AF_INET: 3934 { 3935 struct ip *ip = NULL; 3936 sctp_route_t iproute; 3937 int len; 3938 3939 len = sizeof(struct ip) + sizeof(struct sctphdr); 3940 if (port) { 3941 len += sizeof(struct udphdr); 3942 } 3943 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 3944 if (newm == NULL) { 3945 sctp_m_freem(m); 3946 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 3947 return (ENOMEM); 3948 } 3949 SCTP_ALIGN_TO_END(newm, len); 3950 SCTP_BUF_LEN(newm) = len; 3951 SCTP_BUF_NEXT(newm) = m; 3952 m = newm; 3953 if (net != NULL) { 3954 #ifdef INVARIANTS 3955 if (net->flowidset == 0) { 3956 panic("Flow ID not set"); 3957 } 3958 #endif 3959 m->m_pkthdr.flowid = net->flowid; 3960 m->m_flags |= M_FLOWID; 3961 } else { 3962 if (use_mflowid != 0) { 3963 m->m_pkthdr.flowid = mflowid; 3964 m->m_flags |= M_FLOWID; 3965 } 3966 } 3967 packet_length = sctp_calculate_len(m); 3968 ip = mtod(m, struct ip *); 3969 ip->ip_v = IPVERSION; 3970 ip->ip_hl = (sizeof(struct ip) >> 2); 3971 if (tos_value == 0) { 3972 /* 3973 * This means especially, that it is not set 3974 * at the SCTP layer. So use the value from 3975 * the IP layer. 3976 */ 3977 tos_value = inp->ip_inp.inp.inp_ip_tos; 3978 } 3979 tos_value &= 0xfc; 3980 if (ecn_ok) { 3981 tos_value |= sctp_get_ect(stcb); 3982 } 3983 if ((nofragment_flag) && (port == 0)) { 3984 ip->ip_off = htons(IP_DF); 3985 } else { 3986 ip->ip_off = htons(0); 3987 } 3988 /* FreeBSD has a function for ip_id's */ 3989 ip->ip_id = ip_newid(); 3990 3991 ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl; 3992 ip->ip_len = htons(packet_length); 3993 ip->ip_tos = tos_value; 3994 if (port) { 3995 ip->ip_p = IPPROTO_UDP; 3996 } else { 3997 ip->ip_p = IPPROTO_SCTP; 3998 } 3999 ip->ip_sum = 0; 4000 if (net == NULL) { 4001 ro = &iproute; 4002 memset(&iproute, 0, sizeof(iproute)); 4003 memcpy(&ro->ro_dst, to, to->sa_len); 4004 } else { 4005 ro = (sctp_route_t *) & net->ro; 4006 } 4007 /* Now the address selection part */ 4008 ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr; 4009 4010 /* call the routine to select the src address */ 4011 if (net && out_of_asoc_ok == 0) { 4012 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4013 sctp_free_ifa(net->ro._s_addr); 4014 net->ro._s_addr = NULL; 4015 net->src_addr_selected = 0; 4016 if (ro->ro_rt) { 4017 RTFREE(ro->ro_rt); 4018 ro->ro_rt = NULL; 4019 } 4020 } 4021 if (net->src_addr_selected == 0) { 4022 /* Cache the source address */ 4023 net->ro._s_addr = sctp_source_address_selection(inp, stcb, 4024 ro, net, 0, 4025 vrf_id); 4026 net->src_addr_selected = 1; 4027 } 4028 if (net->ro._s_addr == NULL) { 4029 /* No route to host */ 4030 net->src_addr_selected = 0; 4031 sctp_handle_no_route(stcb, net, so_locked); 4032 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4033 sctp_m_freem(m); 4034 return (EHOSTUNREACH); 4035 } 4036 ip->ip_src = net->ro._s_addr->address.sin.sin_addr; 4037 } else { 4038 if (over_addr == NULL) { 4039 struct sctp_ifa *_lsrc; 4040 4041 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4042 net, 4043 out_of_asoc_ok, 4044 vrf_id); 4045 if (_lsrc == NULL) { 4046 sctp_handle_no_route(stcb, net, so_locked); 4047 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4048 sctp_m_freem(m); 4049 return (EHOSTUNREACH); 4050 } 4051 ip->ip_src = _lsrc->address.sin.sin_addr; 4052 sctp_free_ifa(_lsrc); 4053 } else { 4054 ip->ip_src = over_addr->sin.sin_addr; 4055 SCTP_RTALLOC(ro, vrf_id); 4056 } 4057 } 4058 if (port) { 4059 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4060 sctp_handle_no_route(stcb, net, so_locked); 4061 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4062 sctp_m_freem(m); 4063 return (EHOSTUNREACH); 4064 } 4065 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 4066 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4067 udp->uh_dport = port; 4068 udp->uh_ulen = htons(packet_length - sizeof(struct ip)); 4069 if (V_udp_cksum) { 4070 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 4071 } else { 4072 udp->uh_sum = 0; 4073 } 4074 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4075 } else { 4076 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip)); 4077 } 4078 4079 sctphdr->src_port = src_port; 4080 sctphdr->dest_port = dest_port; 4081 sctphdr->v_tag = v_tag; 4082 sctphdr->checksum = 0; 4083 4084 /* 4085 * If source address selection fails and we find no 4086 * route then the ip_output should fail as well with 4087 * a NO_ROUTE_TO_HOST type error. We probably should 4088 * catch that somewhere and abort the association 4089 * right away (assuming this is an INIT being sent). 4090 */ 4091 if (ro->ro_rt == NULL) { 4092 /* 4093 * src addr selection failed to find a route 4094 * (or valid source addr), so we can't get 4095 * there from here (yet)! 4096 */ 4097 sctp_handle_no_route(stcb, net, so_locked); 4098 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4099 sctp_m_freem(m); 4100 return (EHOSTUNREACH); 4101 } 4102 if (ro != &iproute) { 4103 memcpy(&iproute, ro, sizeof(*ro)); 4104 } 4105 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n", 4106 (uint32_t) (ntohl(ip->ip_src.s_addr))); 4107 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n", 4108 (uint32_t) (ntohl(ip->ip_dst.s_addr))); 4109 SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n", 4110 (void *)ro->ro_rt); 4111 4112 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4113 /* failed to prepend data, give up */ 4114 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4115 sctp_m_freem(m); 4116 return (ENOMEM); 4117 } 4118 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4119 if (port) { 4120 #if defined(SCTP_WITH_NO_CSUM) 4121 SCTP_STAT_INCR(sctps_sendnocrc); 4122 #else 4123 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr)); 4124 SCTP_STAT_INCR(sctps_sendswcrc); 4125 #endif 4126 if (V_udp_cksum) { 4127 SCTP_ENABLE_UDP_CSUM(o_pak); 4128 } 4129 } else { 4130 #if defined(SCTP_WITH_NO_CSUM) 4131 SCTP_STAT_INCR(sctps_sendnocrc); 4132 #else 4133 m->m_pkthdr.csum_flags = CSUM_SCTP; 4134 m->m_pkthdr.csum_data = 0; 4135 SCTP_STAT_INCR(sctps_sendhwcrc); 4136 #endif 4137 } 4138 #ifdef SCTP_PACKET_LOGGING 4139 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4140 sctp_packet_log(o_pak); 4141 #endif 4142 /* send it out. table id is taken from stcb */ 4143 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4144 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4145 so = SCTP_INP_SO(inp); 4146 SCTP_SOCKET_UNLOCK(so, 0); 4147 } 4148 #endif 4149 SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id); 4150 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4151 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4152 atomic_add_int(&stcb->asoc.refcnt, 1); 4153 SCTP_TCB_UNLOCK(stcb); 4154 SCTP_SOCKET_LOCK(so, 0); 4155 SCTP_TCB_LOCK(stcb); 4156 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4157 } 4158 #endif 4159 SCTP_STAT_INCR(sctps_sendpackets); 4160 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4161 if (ret) 4162 SCTP_STAT_INCR(sctps_senderrors); 4163 4164 SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret); 4165 if (net == NULL) { 4166 /* free tempy routes */ 4167 RO_RTFREE(ro); 4168 } else { 4169 /* 4170 * PMTU check versus smallest asoc MTU goes 4171 * here 4172 */ 4173 if ((ro->ro_rt != NULL) && 4174 (net->ro._s_addr)) { 4175 uint32_t mtu; 4176 4177 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4178 if (net->port) { 4179 mtu -= sizeof(struct udphdr); 4180 } 4181 if (mtu && (stcb->asoc.smallest_mtu > mtu)) { 4182 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4183 net->mtu = mtu; 4184 } 4185 } else if (ro->ro_rt == NULL) { 4186 /* route was freed */ 4187 if (net->ro._s_addr && 4188 net->src_addr_selected) { 4189 sctp_free_ifa(net->ro._s_addr); 4190 net->ro._s_addr = NULL; 4191 } 4192 net->src_addr_selected = 0; 4193 } 4194 } 4195 return (ret); 4196 } 4197 #endif 4198 #ifdef INET6 4199 case AF_INET6: 4200 { 4201 uint32_t flowlabel, flowinfo; 4202 struct ip6_hdr *ip6h; 4203 struct route_in6 ip6route; 4204 struct ifnet *ifp; 4205 struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp; 4206 int prev_scope = 0; 4207 struct sockaddr_in6 lsa6_storage; 4208 int error; 4209 u_short prev_port = 0; 4210 int len; 4211 4212 if (net) { 4213 flowlabel = net->flowlabel; 4214 } else if (stcb) { 4215 flowlabel = stcb->asoc.default_flowlabel; 4216 } else { 4217 flowlabel = inp->sctp_ep.default_flowlabel; 4218 } 4219 if (flowlabel == 0) { 4220 /* 4221 * This means especially, that it is not set 4222 * at the SCTP layer. So use the value from 4223 * the IP layer. 4224 */ 4225 flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo); 4226 } 4227 flowlabel &= 0x000fffff; 4228 len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr); 4229 if (port) { 4230 len += sizeof(struct udphdr); 4231 } 4232 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4233 if (newm == NULL) { 4234 sctp_m_freem(m); 4235 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4236 return (ENOMEM); 4237 } 4238 SCTP_ALIGN_TO_END(newm, len); 4239 SCTP_BUF_LEN(newm) = len; 4240 SCTP_BUF_NEXT(newm) = m; 4241 m = newm; 4242 if (net != NULL) { 4243 #ifdef INVARIANTS 4244 if (net->flowidset == 0) { 4245 panic("Flow ID not set"); 4246 } 4247 #endif 4248 m->m_pkthdr.flowid = net->flowid; 4249 m->m_flags |= M_FLOWID; 4250 } else { 4251 if (use_mflowid != 0) { 4252 m->m_pkthdr.flowid = mflowid; 4253 m->m_flags |= M_FLOWID; 4254 } 4255 } 4256 packet_length = sctp_calculate_len(m); 4257 4258 ip6h = mtod(m, struct ip6_hdr *); 4259 /* protect *sin6 from overwrite */ 4260 sin6 = (struct sockaddr_in6 *)to; 4261 tmp = *sin6; 4262 sin6 = &tmp; 4263 4264 /* KAME hack: embed scopeid */ 4265 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4266 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4267 return (EINVAL); 4268 } 4269 if (net == NULL) { 4270 memset(&ip6route, 0, sizeof(ip6route)); 4271 ro = (sctp_route_t *) & ip6route; 4272 memcpy(&ro->ro_dst, sin6, sin6->sin6_len); 4273 } else { 4274 ro = (sctp_route_t *) & net->ro; 4275 } 4276 /* 4277 * We assume here that inp_flow is in host byte 4278 * order within the TCB! 4279 */ 4280 if (tos_value == 0) { 4281 /* 4282 * This means especially, that it is not set 4283 * at the SCTP layer. So use the value from 4284 * the IP layer. 4285 */ 4286 tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff; 4287 } 4288 tos_value &= 0xfc; 4289 if (ecn_ok) { 4290 tos_value |= sctp_get_ect(stcb); 4291 } 4292 flowinfo = 0x06; 4293 flowinfo <<= 8; 4294 flowinfo |= tos_value; 4295 flowinfo <<= 20; 4296 flowinfo |= flowlabel; 4297 ip6h->ip6_flow = htonl(flowinfo); 4298 if (port) { 4299 ip6h->ip6_nxt = IPPROTO_UDP; 4300 } else { 4301 ip6h->ip6_nxt = IPPROTO_SCTP; 4302 } 4303 ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr)); 4304 ip6h->ip6_dst = sin6->sin6_addr; 4305 4306 /* 4307 * Add SRC address selection here: we can only reuse 4308 * to a limited degree the kame src-addr-sel, since 4309 * we can try their selection but it may not be 4310 * bound. 4311 */ 4312 bzero(&lsa6_tmp, sizeof(lsa6_tmp)); 4313 lsa6_tmp.sin6_family = AF_INET6; 4314 lsa6_tmp.sin6_len = sizeof(lsa6_tmp); 4315 lsa6 = &lsa6_tmp; 4316 if (net && out_of_asoc_ok == 0) { 4317 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4318 sctp_free_ifa(net->ro._s_addr); 4319 net->ro._s_addr = NULL; 4320 net->src_addr_selected = 0; 4321 if (ro->ro_rt) { 4322 RTFREE(ro->ro_rt); 4323 ro->ro_rt = NULL; 4324 } 4325 } 4326 if (net->src_addr_selected == 0) { 4327 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4328 /* KAME hack: embed scopeid */ 4329 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4330 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4331 return (EINVAL); 4332 } 4333 /* Cache the source address */ 4334 net->ro._s_addr = sctp_source_address_selection(inp, 4335 stcb, 4336 ro, 4337 net, 4338 0, 4339 vrf_id); 4340 (void)sa6_recoverscope(sin6); 4341 net->src_addr_selected = 1; 4342 } 4343 if (net->ro._s_addr == NULL) { 4344 SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n"); 4345 net->src_addr_selected = 0; 4346 sctp_handle_no_route(stcb, net, so_locked); 4347 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4348 sctp_m_freem(m); 4349 return (EHOSTUNREACH); 4350 } 4351 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr; 4352 } else { 4353 sin6 = (struct sockaddr_in6 *)&ro->ro_dst; 4354 /* KAME hack: embed scopeid */ 4355 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4356 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4357 return (EINVAL); 4358 } 4359 if (over_addr == NULL) { 4360 struct sctp_ifa *_lsrc; 4361 4362 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4363 net, 4364 out_of_asoc_ok, 4365 vrf_id); 4366 if (_lsrc == NULL) { 4367 sctp_handle_no_route(stcb, net, so_locked); 4368 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4369 sctp_m_freem(m); 4370 return (EHOSTUNREACH); 4371 } 4372 lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr; 4373 sctp_free_ifa(_lsrc); 4374 } else { 4375 lsa6->sin6_addr = over_addr->sin6.sin6_addr; 4376 SCTP_RTALLOC(ro, vrf_id); 4377 } 4378 (void)sa6_recoverscope(sin6); 4379 } 4380 lsa6->sin6_port = inp->sctp_lport; 4381 4382 if (ro->ro_rt == NULL) { 4383 /* 4384 * src addr selection failed to find a route 4385 * (or valid source addr), so we can't get 4386 * there from here! 4387 */ 4388 sctp_handle_no_route(stcb, net, so_locked); 4389 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4390 sctp_m_freem(m); 4391 return (EHOSTUNREACH); 4392 } 4393 /* 4394 * XXX: sa6 may not have a valid sin6_scope_id in 4395 * the non-SCOPEDROUTING case. 4396 */ 4397 bzero(&lsa6_storage, sizeof(lsa6_storage)); 4398 lsa6_storage.sin6_family = AF_INET6; 4399 lsa6_storage.sin6_len = sizeof(lsa6_storage); 4400 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4401 if ((error = sa6_recoverscope(&lsa6_storage)) != 0) { 4402 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error); 4403 sctp_m_freem(m); 4404 return (error); 4405 } 4406 /* XXX */ 4407 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4408 lsa6_storage.sin6_port = inp->sctp_lport; 4409 lsa6 = &lsa6_storage; 4410 ip6h->ip6_src = lsa6->sin6_addr; 4411 4412 if (port) { 4413 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 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 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4420 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4421 udp->uh_dport = port; 4422 udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr)); 4423 udp->uh_sum = 0; 4424 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4425 } else { 4426 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4427 } 4428 4429 sctphdr->src_port = src_port; 4430 sctphdr->dest_port = dest_port; 4431 sctphdr->v_tag = v_tag; 4432 sctphdr->checksum = 0; 4433 4434 /* 4435 * We set the hop limit now since there is a good 4436 * chance that our ro pointer is now filled 4437 */ 4438 ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro); 4439 ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 4440 4441 #ifdef SCTP_DEBUG 4442 /* Copy to be sure something bad is not happening */ 4443 sin6->sin6_addr = ip6h->ip6_dst; 4444 lsa6->sin6_addr = ip6h->ip6_src; 4445 #endif 4446 4447 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n"); 4448 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: "); 4449 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6); 4450 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: "); 4451 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6); 4452 if (net) { 4453 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4454 /* 4455 * preserve the port and scope for link 4456 * local send 4457 */ 4458 prev_scope = sin6->sin6_scope_id; 4459 prev_port = sin6->sin6_port; 4460 } 4461 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4462 /* failed to prepend data, give up */ 4463 sctp_m_freem(m); 4464 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4465 return (ENOMEM); 4466 } 4467 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4468 if (port) { 4469 #if defined(SCTP_WITH_NO_CSUM) 4470 SCTP_STAT_INCR(sctps_sendnocrc); 4471 #else 4472 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 4473 SCTP_STAT_INCR(sctps_sendswcrc); 4474 #endif 4475 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) { 4476 udp->uh_sum = 0xffff; 4477 } 4478 } else { 4479 #if defined(SCTP_WITH_NO_CSUM) 4480 SCTP_STAT_INCR(sctps_sendnocrc); 4481 #else 4482 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 4483 m->m_pkthdr.csum_data = 0; 4484 SCTP_STAT_INCR(sctps_sendhwcrc); 4485 #endif 4486 } 4487 /* send it out. table id is taken from stcb */ 4488 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4489 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4490 so = SCTP_INP_SO(inp); 4491 SCTP_SOCKET_UNLOCK(so, 0); 4492 } 4493 #endif 4494 #ifdef SCTP_PACKET_LOGGING 4495 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4496 sctp_packet_log(o_pak); 4497 #endif 4498 SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id); 4499 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4500 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4501 atomic_add_int(&stcb->asoc.refcnt, 1); 4502 SCTP_TCB_UNLOCK(stcb); 4503 SCTP_SOCKET_LOCK(so, 0); 4504 SCTP_TCB_LOCK(stcb); 4505 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4506 } 4507 #endif 4508 if (net) { 4509 /* for link local this must be done */ 4510 sin6->sin6_scope_id = prev_scope; 4511 sin6->sin6_port = prev_port; 4512 } 4513 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 4514 SCTP_STAT_INCR(sctps_sendpackets); 4515 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4516 if (ret) { 4517 SCTP_STAT_INCR(sctps_senderrors); 4518 } 4519 if (net == NULL) { 4520 /* Now if we had a temp route free it */ 4521 RO_RTFREE(ro); 4522 } else { 4523 /* 4524 * PMTU check versus smallest asoc MTU goes 4525 * here 4526 */ 4527 if (ro->ro_rt == NULL) { 4528 /* Route was freed */ 4529 if (net->ro._s_addr && 4530 net->src_addr_selected) { 4531 sctp_free_ifa(net->ro._s_addr); 4532 net->ro._s_addr = NULL; 4533 } 4534 net->src_addr_selected = 0; 4535 } 4536 if ((ro->ro_rt != NULL) && 4537 (net->ro._s_addr)) { 4538 uint32_t mtu; 4539 4540 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4541 if (mtu && 4542 (stcb->asoc.smallest_mtu > mtu)) { 4543 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4544 net->mtu = mtu; 4545 if (net->port) { 4546 net->mtu -= sizeof(struct udphdr); 4547 } 4548 } 4549 } else if (ifp) { 4550 if (ND_IFINFO(ifp)->linkmtu && 4551 (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) { 4552 sctp_mtu_size_reset(inp, 4553 &stcb->asoc, 4554 ND_IFINFO(ifp)->linkmtu); 4555 } 4556 } 4557 } 4558 return (ret); 4559 } 4560 #endif 4561 default: 4562 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 4563 ((struct sockaddr *)to)->sa_family); 4564 sctp_m_freem(m); 4565 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4566 return (EFAULT); 4567 } 4568 } 4569 4570 4571 void 4572 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked 4573 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 4574 SCTP_UNUSED 4575 #endif 4576 ) 4577 { 4578 struct mbuf *m, *m_at, *mp_last; 4579 struct sctp_nets *net; 4580 struct sctp_init_chunk *init; 4581 struct sctp_supported_addr_param *sup_addr; 4582 struct sctp_adaptation_layer_indication *ali; 4583 struct sctp_ecn_supported_param *ecn; 4584 struct sctp_prsctp_supported_param *prsctp; 4585 struct sctp_supported_chunk_types_param *pr_supported; 4586 int cnt_inits_to = 0; 4587 int padval, ret; 4588 int num_ext; 4589 int p_len; 4590 4591 /* INIT's always go to the primary (and usually ONLY address) */ 4592 mp_last = NULL; 4593 net = stcb->asoc.primary_destination; 4594 if (net == NULL) { 4595 net = TAILQ_FIRST(&stcb->asoc.nets); 4596 if (net == NULL) { 4597 /* TSNH */ 4598 return; 4599 } 4600 /* we confirm any address we send an INIT to */ 4601 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4602 (void)sctp_set_primary_addr(stcb, NULL, net); 4603 } else { 4604 /* we confirm any address we send an INIT to */ 4605 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4606 } 4607 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n"); 4608 #ifdef INET6 4609 if (((struct sockaddr *)&(net->ro._l_addr))->sa_family == AF_INET6) { 4610 /* 4611 * special hook, if we are sending to link local it will not 4612 * show up in our private address count. 4613 */ 4614 struct sockaddr_in6 *sin6l; 4615 4616 sin6l = &net->ro._l_addr.sin6; 4617 if (IN6_IS_ADDR_LINKLOCAL(&sin6l->sin6_addr)) 4618 cnt_inits_to = 1; 4619 } 4620 #endif 4621 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 4622 /* This case should not happen */ 4623 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n"); 4624 return; 4625 } 4626 /* start the INIT timer */ 4627 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net); 4628 4629 m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA); 4630 if (m == NULL) { 4631 /* No memory, INIT timer will re-attempt. */ 4632 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n"); 4633 return; 4634 } 4635 SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk); 4636 /* 4637 * assume peer supports asconf in order to be able to queue local 4638 * address changes while an INIT is in flight and before the assoc 4639 * is established. 4640 */ 4641 stcb->asoc.peer_supports_asconf = 1; 4642 /* Now lets put the SCTP header in place */ 4643 init = mtod(m, struct sctp_init_chunk *); 4644 /* now the chunk header */ 4645 init->ch.chunk_type = SCTP_INITIATION; 4646 init->ch.chunk_flags = 0; 4647 /* fill in later from mbuf we build */ 4648 init->ch.chunk_length = 0; 4649 /* place in my tag */ 4650 init->init.initiate_tag = htonl(stcb->asoc.my_vtag); 4651 /* set up some of the credits. */ 4652 init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0, 4653 SCTP_MINIMAL_RWND)); 4654 4655 init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams); 4656 init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams); 4657 init->init.initial_tsn = htonl(stcb->asoc.init_seq_number); 4658 /* now the address restriction */ 4659 /* XXX Should we take the address family of the socket into account? */ 4660 sup_addr = (struct sctp_supported_addr_param *)((caddr_t)init + 4661 sizeof(*init)); 4662 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE); 4663 #ifdef INET6 4664 #ifdef INET 4665 /* we support 2 types: IPv4/IPv6 */ 4666 sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + 2 * sizeof(uint16_t)); 4667 sup_addr->addr_type[0] = htons(SCTP_IPV4_ADDRESS); 4668 sup_addr->addr_type[1] = htons(SCTP_IPV6_ADDRESS); 4669 #else 4670 /* we support 1 type: IPv6 */ 4671 sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + sizeof(uint16_t)); 4672 sup_addr->addr_type[0] = htons(SCTP_IPV6_ADDRESS); 4673 sup_addr->addr_type[1] = htons(0); /* this is the padding */ 4674 #endif 4675 #else 4676 /* we support 1 type: IPv4 */ 4677 sup_addr->ph.param_length = htons(sizeof(struct sctp_paramhdr) + sizeof(uint16_t)); 4678 sup_addr->addr_type[0] = htons(SCTP_IPV4_ADDRESS); 4679 sup_addr->addr_type[1] = htons(0); /* this is the padding */ 4680 #endif 4681 SCTP_BUF_LEN(m) += sizeof(struct sctp_supported_addr_param); 4682 /* adaptation layer indication parameter */ 4683 ali = (struct sctp_adaptation_layer_indication *)((caddr_t)sup_addr + sizeof(struct sctp_supported_addr_param)); 4684 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 4685 ali->ph.param_length = htons(sizeof(*ali)); 4686 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator); 4687 SCTP_BUF_LEN(m) += sizeof(*ali); 4688 ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali)); 4689 4690 if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) { 4691 /* Add NAT friendly parameter */ 4692 struct sctp_paramhdr *ph; 4693 4694 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 4695 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 4696 ph->param_length = htons(sizeof(struct sctp_paramhdr)); 4697 SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr); 4698 ecn = (struct sctp_ecn_supported_param *)((caddr_t)ph + sizeof(*ph)); 4699 } 4700 /* now any cookie time extensions */ 4701 if (stcb->asoc.cookie_preserve_req) { 4702 struct sctp_cookie_perserve_param *cookie_preserve; 4703 4704 cookie_preserve = (struct sctp_cookie_perserve_param *)(ecn); 4705 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE); 4706 cookie_preserve->ph.param_length = htons( 4707 sizeof(*cookie_preserve)); 4708 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req); 4709 SCTP_BUF_LEN(m) += sizeof(*cookie_preserve); 4710 ecn = (struct sctp_ecn_supported_param *)( 4711 (caddr_t)cookie_preserve + sizeof(*cookie_preserve)); 4712 stcb->asoc.cookie_preserve_req = 0; 4713 } 4714 /* ECN parameter */ 4715 if (stcb->asoc.ecn_allowed == 1) { 4716 ecn->ph.param_type = htons(SCTP_ECN_CAPABLE); 4717 ecn->ph.param_length = htons(sizeof(*ecn)); 4718 SCTP_BUF_LEN(m) += sizeof(*ecn); 4719 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn + 4720 sizeof(*ecn)); 4721 } else { 4722 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn); 4723 } 4724 /* And now tell the peer we do pr-sctp */ 4725 prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED); 4726 prsctp->ph.param_length = htons(sizeof(*prsctp)); 4727 SCTP_BUF_LEN(m) += sizeof(*prsctp); 4728 4729 /* And now tell the peer we do all the extensions */ 4730 pr_supported = (struct sctp_supported_chunk_types_param *) 4731 ((caddr_t)prsctp + sizeof(*prsctp)); 4732 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 4733 num_ext = 0; 4734 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 4735 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 4736 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 4737 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 4738 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 4739 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 4740 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 4741 } 4742 if (stcb->asoc.sctp_nr_sack_on_off == 1) { 4743 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 4744 } 4745 p_len = sizeof(*pr_supported) + num_ext; 4746 pr_supported->ph.param_length = htons(p_len); 4747 bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len); 4748 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 4749 4750 4751 /* add authentication parameters */ 4752 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 4753 struct sctp_auth_random *randp; 4754 struct sctp_auth_hmac_algo *hmacs; 4755 struct sctp_auth_chunk_list *chunks; 4756 4757 /* attach RANDOM parameter, if available */ 4758 if (stcb->asoc.authinfo.random != NULL) { 4759 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 4760 p_len = sizeof(*randp) + stcb->asoc.authinfo.random_len; 4761 /* random key already contains the header */ 4762 bcopy(stcb->asoc.authinfo.random->key, randp, p_len); 4763 /* zero out any padding required */ 4764 bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len); 4765 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 4766 } 4767 /* add HMAC_ALGO parameter */ 4768 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 4769 p_len = sctp_serialize_hmaclist(stcb->asoc.local_hmacs, 4770 (uint8_t *) hmacs->hmac_ids); 4771 if (p_len > 0) { 4772 p_len += sizeof(*hmacs); 4773 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 4774 hmacs->ph.param_length = htons(p_len); 4775 /* zero out any padding required */ 4776 bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len); 4777 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 4778 } 4779 /* add CHUNKS parameter */ 4780 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 4781 p_len = sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, 4782 chunks->chunk_types); 4783 if (p_len > 0) { 4784 p_len += sizeof(*chunks); 4785 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 4786 chunks->ph.param_length = htons(p_len); 4787 /* zero out any padding required */ 4788 bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len); 4789 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 4790 } 4791 } 4792 /* now the addresses */ 4793 { 4794 struct sctp_scoping scp; 4795 4796 /* 4797 * To optimize this we could put the scoping stuff into a 4798 * structure and remove the individual uint8's from the 4799 * assoc structure. Then we could just sifa in the address 4800 * within the stcb. But for now this is a quick hack to get 4801 * the address stuff teased apart. 4802 */ 4803 4804 scp.ipv4_addr_legal = stcb->asoc.ipv4_addr_legal; 4805 scp.ipv6_addr_legal = stcb->asoc.ipv6_addr_legal; 4806 scp.loopback_scope = stcb->asoc.loopback_scope; 4807 scp.ipv4_local_scope = stcb->asoc.ipv4_local_scope; 4808 scp.local_scope = stcb->asoc.local_scope; 4809 scp.site_scope = stcb->asoc.site_scope; 4810 4811 sctp_add_addresses_to_i_ia(inp, stcb, &scp, m, cnt_inits_to); 4812 } 4813 4814 /* calulate the size and update pkt header and chunk header */ 4815 p_len = 0; 4816 for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 4817 if (SCTP_BUF_NEXT(m_at) == NULL) 4818 mp_last = m_at; 4819 p_len += SCTP_BUF_LEN(m_at); 4820 } 4821 init->ch.chunk_length = htons(p_len); 4822 /* 4823 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 4824 * here since the timer will drive a retranmission. 4825 */ 4826 4827 /* I don't expect this to execute but we will be safe here */ 4828 padval = p_len % 4; 4829 if ((padval) && (mp_last)) { 4830 /* 4831 * The compiler worries that mp_last may not be set even 4832 * though I think it is impossible :-> however we add 4833 * mp_last here just in case. 4834 */ 4835 ret = sctp_add_pad_tombuf(mp_last, (4 - padval)); 4836 if (ret) { 4837 /* Houston we have a problem, no space */ 4838 sctp_m_freem(m); 4839 return; 4840 } 4841 } 4842 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n"); 4843 ret = sctp_lowlevel_chunk_output(inp, stcb, net, 4844 (struct sockaddr *)&net->ro._l_addr, 4845 m, 0, NULL, 0, 0, 0, 0, 4846 inp->sctp_lport, stcb->rport, htonl(0), 4847 net->port, NULL, 4848 0, 0, 4849 so_locked); 4850 SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret); 4851 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 4852 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 4853 } 4854 4855 struct mbuf * 4856 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt, 4857 int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly) 4858 { 4859 /* 4860 * Given a mbuf containing an INIT or INIT-ACK with the param_offset 4861 * being equal to the beginning of the params i.e. (iphlen + 4862 * sizeof(struct sctp_init_msg) parse through the parameters to the 4863 * end of the mbuf verifying that all parameters are known. 4864 * 4865 * For unknown parameters build and return a mbuf with 4866 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop 4867 * processing this chunk stop, and set *abort_processing to 1. 4868 * 4869 * By having param_offset be pre-set to where parameters begin it is 4870 * hoped that this routine may be reused in the future by new 4871 * features. 4872 */ 4873 struct sctp_paramhdr *phdr, params; 4874 4875 struct mbuf *mat, *op_err; 4876 char tempbuf[SCTP_PARAM_BUFFER_SIZE]; 4877 int at, limit, pad_needed; 4878 uint16_t ptype, plen, padded_size; 4879 int err_at; 4880 4881 *abort_processing = 0; 4882 mat = in_initpkt; 4883 err_at = 0; 4884 limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk); 4885 at = param_offset; 4886 op_err = NULL; 4887 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n"); 4888 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 4889 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) { 4890 ptype = ntohs(phdr->param_type); 4891 plen = ntohs(phdr->param_length); 4892 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) { 4893 /* wacked parameter */ 4894 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen); 4895 goto invalid_size; 4896 } 4897 limit -= SCTP_SIZE32(plen); 4898 /*- 4899 * All parameters for all chunks that we know/understand are 4900 * listed here. We process them other places and make 4901 * appropriate stop actions per the upper bits. However this 4902 * is the generic routine processor's can call to get back 4903 * an operr.. to either incorporate (init-ack) or send. 4904 */ 4905 padded_size = SCTP_SIZE32(plen); 4906 switch (ptype) { 4907 /* Param's with variable size */ 4908 case SCTP_HEARTBEAT_INFO: 4909 case SCTP_STATE_COOKIE: 4910 case SCTP_UNRECOG_PARAM: 4911 case SCTP_ERROR_CAUSE_IND: 4912 /* ok skip fwd */ 4913 at += padded_size; 4914 break; 4915 /* Param's with variable size within a range */ 4916 case SCTP_CHUNK_LIST: 4917 case SCTP_SUPPORTED_CHUNK_EXT: 4918 if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) { 4919 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen); 4920 goto invalid_size; 4921 } 4922 at += padded_size; 4923 break; 4924 case SCTP_SUPPORTED_ADDRTYPE: 4925 if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) { 4926 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen); 4927 goto invalid_size; 4928 } 4929 at += padded_size; 4930 break; 4931 case SCTP_RANDOM: 4932 if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) { 4933 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen); 4934 goto invalid_size; 4935 } 4936 at += padded_size; 4937 break; 4938 case SCTP_SET_PRIM_ADDR: 4939 case SCTP_DEL_IP_ADDRESS: 4940 case SCTP_ADD_IP_ADDRESS: 4941 if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) && 4942 (padded_size != sizeof(struct sctp_asconf_addr_param))) { 4943 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen); 4944 goto invalid_size; 4945 } 4946 at += padded_size; 4947 break; 4948 /* Param's with a fixed size */ 4949 case SCTP_IPV4_ADDRESS: 4950 if (padded_size != sizeof(struct sctp_ipv4addr_param)) { 4951 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen); 4952 goto invalid_size; 4953 } 4954 at += padded_size; 4955 break; 4956 case SCTP_IPV6_ADDRESS: 4957 if (padded_size != sizeof(struct sctp_ipv6addr_param)) { 4958 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen); 4959 goto invalid_size; 4960 } 4961 at += padded_size; 4962 break; 4963 case SCTP_COOKIE_PRESERVE: 4964 if (padded_size != sizeof(struct sctp_cookie_perserve_param)) { 4965 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen); 4966 goto invalid_size; 4967 } 4968 at += padded_size; 4969 break; 4970 case SCTP_HAS_NAT_SUPPORT: 4971 *nat_friendly = 1; 4972 /* fall through */ 4973 case SCTP_PRSCTP_SUPPORTED: 4974 4975 if (padded_size != sizeof(struct sctp_paramhdr)) { 4976 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen); 4977 goto invalid_size; 4978 } 4979 at += padded_size; 4980 break; 4981 case SCTP_ECN_CAPABLE: 4982 if (padded_size != sizeof(struct sctp_ecn_supported_param)) { 4983 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen); 4984 goto invalid_size; 4985 } 4986 at += padded_size; 4987 break; 4988 case SCTP_ULP_ADAPTATION: 4989 if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) { 4990 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen); 4991 goto invalid_size; 4992 } 4993 at += padded_size; 4994 break; 4995 case SCTP_SUCCESS_REPORT: 4996 if (padded_size != sizeof(struct sctp_asconf_paramhdr)) { 4997 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen); 4998 goto invalid_size; 4999 } 5000 at += padded_size; 5001 break; 5002 case SCTP_HOSTNAME_ADDRESS: 5003 { 5004 /* We can NOT handle HOST NAME addresses!! */ 5005 int l_len; 5006 5007 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n"); 5008 *abort_processing = 1; 5009 if (op_err == NULL) { 5010 /* Ok need to try to get a mbuf */ 5011 #ifdef INET6 5012 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5013 #else 5014 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5015 #endif 5016 l_len += plen; 5017 l_len += sizeof(struct sctp_paramhdr); 5018 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5019 if (op_err) { 5020 SCTP_BUF_LEN(op_err) = 0; 5021 /* 5022 * pre-reserve space for ip 5023 * and sctp header and 5024 * chunk hdr 5025 */ 5026 #ifdef INET6 5027 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5028 #else 5029 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5030 #endif 5031 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5032 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5033 } 5034 } 5035 if (op_err) { 5036 /* If we have space */ 5037 struct sctp_paramhdr s; 5038 5039 if (err_at % 4) { 5040 uint32_t cpthis = 0; 5041 5042 pad_needed = 4 - (err_at % 4); 5043 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5044 err_at += pad_needed; 5045 } 5046 s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR); 5047 s.param_length = htons(sizeof(s) + plen); 5048 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5049 err_at += sizeof(s); 5050 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen)); 5051 if (phdr == NULL) { 5052 sctp_m_freem(op_err); 5053 /* 5054 * we are out of memory but 5055 * we still need to have a 5056 * look at what to do (the 5057 * system is in trouble 5058 * though). 5059 */ 5060 return (NULL); 5061 } 5062 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5063 } 5064 return (op_err); 5065 break; 5066 } 5067 default: 5068 /* 5069 * we do not recognize the parameter figure out what 5070 * we do. 5071 */ 5072 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype); 5073 if ((ptype & 0x4000) == 0x4000) { 5074 /* Report bit is set?? */ 5075 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n"); 5076 if (op_err == NULL) { 5077 int l_len; 5078 5079 /* Ok need to try to get an mbuf */ 5080 #ifdef INET6 5081 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5082 #else 5083 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5084 #endif 5085 l_len += plen; 5086 l_len += sizeof(struct sctp_paramhdr); 5087 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5088 if (op_err) { 5089 SCTP_BUF_LEN(op_err) = 0; 5090 #ifdef INET6 5091 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5092 #else 5093 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5094 #endif 5095 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5096 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5097 } 5098 } 5099 if (op_err) { 5100 /* If we have space */ 5101 struct sctp_paramhdr s; 5102 5103 if (err_at % 4) { 5104 uint32_t cpthis = 0; 5105 5106 pad_needed = 4 - (err_at % 4); 5107 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5108 err_at += pad_needed; 5109 } 5110 s.param_type = htons(SCTP_UNRECOG_PARAM); 5111 s.param_length = htons(sizeof(s) + plen); 5112 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5113 err_at += sizeof(s); 5114 if (plen > sizeof(tempbuf)) { 5115 plen = sizeof(tempbuf); 5116 } 5117 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen)); 5118 if (phdr == NULL) { 5119 sctp_m_freem(op_err); 5120 /* 5121 * we are out of memory but 5122 * we still need to have a 5123 * look at what to do (the 5124 * system is in trouble 5125 * though). 5126 */ 5127 op_err = NULL; 5128 goto more_processing; 5129 } 5130 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5131 err_at += plen; 5132 } 5133 } 5134 more_processing: 5135 if ((ptype & 0x8000) == 0x0000) { 5136 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n"); 5137 return (op_err); 5138 } else { 5139 /* skip this chunk and continue processing */ 5140 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n"); 5141 at += SCTP_SIZE32(plen); 5142 } 5143 break; 5144 5145 } 5146 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5147 } 5148 return (op_err); 5149 invalid_size: 5150 SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n"); 5151 *abort_processing = 1; 5152 if ((op_err == NULL) && phdr) { 5153 int l_len; 5154 5155 #ifdef INET6 5156 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5157 #else 5158 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5159 #endif 5160 l_len += (2 * sizeof(struct sctp_paramhdr)); 5161 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5162 if (op_err) { 5163 SCTP_BUF_LEN(op_err) = 0; 5164 #ifdef INET6 5165 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5166 #else 5167 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5168 #endif 5169 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5170 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5171 } 5172 } 5173 if ((op_err) && phdr) { 5174 struct sctp_paramhdr s; 5175 5176 if (err_at % 4) { 5177 uint32_t cpthis = 0; 5178 5179 pad_needed = 4 - (err_at % 4); 5180 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5181 err_at += pad_needed; 5182 } 5183 s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 5184 s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr)); 5185 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5186 err_at += sizeof(s); 5187 /* Only copy back the p-hdr that caused the issue */ 5188 m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr); 5189 } 5190 return (op_err); 5191 } 5192 5193 static int 5194 sctp_are_there_new_addresses(struct sctp_association *asoc, 5195 struct mbuf *in_initpkt, int offset, struct sockaddr *src) 5196 { 5197 /* 5198 * Given a INIT packet, look through the packet to verify that there 5199 * are NO new addresses. As we go through the parameters add reports 5200 * of any un-understood parameters that require an error. Also we 5201 * must return (1) to drop the packet if we see a un-understood 5202 * parameter that tells us to drop the chunk. 5203 */ 5204 struct sockaddr *sa_touse; 5205 struct sockaddr *sa; 5206 struct sctp_paramhdr *phdr, params; 5207 uint16_t ptype, plen; 5208 uint8_t fnd; 5209 struct sctp_nets *net; 5210 5211 #ifdef INET 5212 struct sockaddr_in sin4, *sa4; 5213 5214 #endif 5215 #ifdef INET6 5216 struct sockaddr_in6 sin6, *sa6; 5217 5218 #endif 5219 5220 #ifdef INET 5221 memset(&sin4, 0, sizeof(sin4)); 5222 sin4.sin_family = AF_INET; 5223 sin4.sin_len = sizeof(sin4); 5224 #endif 5225 #ifdef INET6 5226 memset(&sin6, 0, sizeof(sin6)); 5227 sin6.sin6_family = AF_INET6; 5228 sin6.sin6_len = sizeof(sin6); 5229 #endif 5230 /* First what about the src address of the pkt ? */ 5231 fnd = 0; 5232 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5233 sa = (struct sockaddr *)&net->ro._l_addr; 5234 if (sa->sa_family == src->sa_family) { 5235 #ifdef INET 5236 if (sa->sa_family == AF_INET) { 5237 struct sockaddr_in *src4; 5238 5239 sa4 = (struct sockaddr_in *)sa; 5240 src4 = (struct sockaddr_in *)src; 5241 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) { 5242 fnd = 1; 5243 break; 5244 } 5245 } 5246 #endif 5247 #ifdef INET6 5248 if (sa->sa_family == AF_INET6) { 5249 struct sockaddr_in6 *src6; 5250 5251 sa6 = (struct sockaddr_in6 *)sa; 5252 src6 = (struct sockaddr_in6 *)src; 5253 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) { 5254 fnd = 1; 5255 break; 5256 } 5257 } 5258 #endif 5259 } 5260 } 5261 if (fnd == 0) { 5262 /* New address added! no need to look futher. */ 5263 return (1); 5264 } 5265 /* Ok so far lets munge through the rest of the packet */ 5266 offset += sizeof(struct sctp_init_chunk); 5267 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5268 while (phdr) { 5269 sa_touse = NULL; 5270 ptype = ntohs(phdr->param_type); 5271 plen = ntohs(phdr->param_length); 5272 switch (ptype) { 5273 #ifdef INET 5274 case SCTP_IPV4_ADDRESS: 5275 { 5276 struct sctp_ipv4addr_param *p4, p4_buf; 5277 5278 phdr = sctp_get_next_param(in_initpkt, offset, 5279 (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf)); 5280 if (plen != sizeof(struct sctp_ipv4addr_param) || 5281 phdr == NULL) { 5282 return (1); 5283 } 5284 p4 = (struct sctp_ipv4addr_param *)phdr; 5285 sin4.sin_addr.s_addr = p4->addr; 5286 sa_touse = (struct sockaddr *)&sin4; 5287 break; 5288 } 5289 #endif 5290 #ifdef INET6 5291 case SCTP_IPV6_ADDRESS: 5292 { 5293 struct sctp_ipv6addr_param *p6, p6_buf; 5294 5295 phdr = sctp_get_next_param(in_initpkt, offset, 5296 (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf)); 5297 if (plen != sizeof(struct sctp_ipv6addr_param) || 5298 phdr == NULL) { 5299 return (1); 5300 } 5301 p6 = (struct sctp_ipv6addr_param *)phdr; 5302 memcpy((caddr_t)&sin6.sin6_addr, p6->addr, 5303 sizeof(p6->addr)); 5304 sa_touse = (struct sockaddr *)&sin6; 5305 break; 5306 } 5307 #endif 5308 default: 5309 sa_touse = NULL; 5310 break; 5311 } 5312 if (sa_touse) { 5313 /* ok, sa_touse points to one to check */ 5314 fnd = 0; 5315 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5316 sa = (struct sockaddr *)&net->ro._l_addr; 5317 if (sa->sa_family != sa_touse->sa_family) { 5318 continue; 5319 } 5320 #ifdef INET 5321 if (sa->sa_family == AF_INET) { 5322 sa4 = (struct sockaddr_in *)sa; 5323 if (sa4->sin_addr.s_addr == 5324 sin4.sin_addr.s_addr) { 5325 fnd = 1; 5326 break; 5327 } 5328 } 5329 #endif 5330 #ifdef INET6 5331 if (sa->sa_family == AF_INET6) { 5332 sa6 = (struct sockaddr_in6 *)sa; 5333 if (SCTP6_ARE_ADDR_EQUAL( 5334 sa6, &sin6)) { 5335 fnd = 1; 5336 break; 5337 } 5338 } 5339 #endif 5340 } 5341 if (!fnd) { 5342 /* New addr added! no need to look further */ 5343 return (1); 5344 } 5345 } 5346 offset += SCTP_SIZE32(plen); 5347 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5348 } 5349 return (0); 5350 } 5351 5352 /* 5353 * Given a MBUF chain that was sent into us containing an INIT. Build a 5354 * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done 5355 * a pullup to include IPv6/4header, SCTP header and initial part of INIT 5356 * message (i.e. the struct sctp_init_msg). 5357 */ 5358 void 5359 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 5360 struct mbuf *init_pkt, int iphlen, int offset, 5361 struct sockaddr *src, struct sockaddr *dst, 5362 struct sctphdr *sh, struct sctp_init_chunk *init_chk, 5363 uint8_t use_mflowid, uint32_t mflowid, 5364 uint32_t vrf_id, uint16_t port, int hold_inp_lock) 5365 { 5366 struct sctp_association *asoc; 5367 struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last; 5368 struct sctp_init_ack_chunk *initack; 5369 struct sctp_adaptation_layer_indication *ali; 5370 struct sctp_ecn_supported_param *ecn; 5371 struct sctp_prsctp_supported_param *prsctp; 5372 struct sctp_supported_chunk_types_param *pr_supported; 5373 union sctp_sockstore *over_addr; 5374 5375 #ifdef INET 5376 struct sockaddr_in *dst4 = (struct sockaddr_in *)dst; 5377 struct sockaddr_in *src4 = (struct sockaddr_in *)src; 5378 struct sockaddr_in *sin; 5379 5380 #endif 5381 #ifdef INET6 5382 struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst; 5383 struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src; 5384 struct sockaddr_in6 *sin6; 5385 5386 #endif 5387 struct sockaddr *to; 5388 struct sctp_state_cookie stc; 5389 struct sctp_nets *net = NULL; 5390 uint8_t *signature = NULL; 5391 int cnt_inits_to = 0; 5392 uint16_t his_limit, i_want; 5393 int abort_flag, padval; 5394 int num_ext; 5395 int p_len; 5396 int nat_friendly = 0; 5397 struct socket *so; 5398 5399 if (stcb) { 5400 asoc = &stcb->asoc; 5401 } else { 5402 asoc = NULL; 5403 } 5404 mp_last = NULL; 5405 if ((asoc != NULL) && 5406 (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) && 5407 (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) { 5408 /* new addresses, out of here in non-cookie-wait states */ 5409 /* 5410 * Send a ABORT, we don't add the new address error clause 5411 * though we even set the T bit and copy in the 0 tag.. this 5412 * looks no different than if no listener was present. 5413 */ 5414 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, NULL, 5415 use_mflowid, mflowid, 5416 vrf_id, port); 5417 return; 5418 } 5419 abort_flag = 0; 5420 op_err = sctp_arethere_unrecognized_parameters(init_pkt, 5421 (offset + sizeof(struct sctp_init_chunk)), 5422 &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly); 5423 if (abort_flag) { 5424 do_a_abort: 5425 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 5426 init_chk->init.initiate_tag, op_err, 5427 use_mflowid, mflowid, 5428 vrf_id, port); 5429 return; 5430 } 5431 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 5432 if (m == NULL) { 5433 /* No memory, INIT timer will re-attempt. */ 5434 if (op_err) 5435 sctp_m_freem(op_err); 5436 return; 5437 } 5438 SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk); 5439 5440 /* the time I built cookie */ 5441 (void)SCTP_GETTIME_TIMEVAL(&stc.time_entered); 5442 5443 /* populate any tie tags */ 5444 if (asoc != NULL) { 5445 /* unlock before tag selections */ 5446 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; 5447 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce; 5448 stc.cookie_life = asoc->cookie_life; 5449 net = asoc->primary_destination; 5450 } else { 5451 stc.tie_tag_my_vtag = 0; 5452 stc.tie_tag_peer_vtag = 0; 5453 /* life I will award this cookie */ 5454 stc.cookie_life = inp->sctp_ep.def_cookie_life; 5455 } 5456 5457 /* copy in the ports for later check */ 5458 stc.myport = sh->dest_port; 5459 stc.peerport = sh->src_port; 5460 5461 /* 5462 * If we wanted to honor cookie life extentions, we would add to 5463 * stc.cookie_life. For now we should NOT honor any extension 5464 */ 5465 stc.site_scope = stc.local_scope = stc.loopback_scope = 0; 5466 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5467 struct inpcb *in_inp; 5468 5469 /* Its a V6 socket */ 5470 in_inp = (struct inpcb *)inp; 5471 stc.ipv6_addr_legal = 1; 5472 /* Now look at the binding flag to see if V4 will be legal */ 5473 if (SCTP_IPV6_V6ONLY(in_inp) == 0) { 5474 stc.ipv4_addr_legal = 1; 5475 } else { 5476 /* V4 addresses are NOT legal on the association */ 5477 stc.ipv4_addr_legal = 0; 5478 } 5479 } else { 5480 /* Its a V4 socket, no - V6 */ 5481 stc.ipv4_addr_legal = 1; 5482 stc.ipv6_addr_legal = 0; 5483 } 5484 5485 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE 5486 stc.ipv4_scope = 1; 5487 #else 5488 stc.ipv4_scope = 0; 5489 #endif 5490 if (net == NULL) { 5491 to = src; 5492 switch (dst->sa_family) { 5493 #ifdef INET 5494 case AF_INET: 5495 { 5496 /* lookup address */ 5497 stc.address[0] = src4->sin_addr.s_addr; 5498 stc.address[1] = 0; 5499 stc.address[2] = 0; 5500 stc.address[3] = 0; 5501 stc.addr_type = SCTP_IPV4_ADDRESS; 5502 /* local from address */ 5503 stc.laddress[0] = dst4->sin_addr.s_addr; 5504 stc.laddress[1] = 0; 5505 stc.laddress[2] = 0; 5506 stc.laddress[3] = 0; 5507 stc.laddr_type = SCTP_IPV4_ADDRESS; 5508 /* scope_id is only for v6 */ 5509 stc.scope_id = 0; 5510 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE 5511 if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) { 5512 stc.ipv4_scope = 1; 5513 } 5514 #else 5515 stc.ipv4_scope = 1; 5516 #endif /* SCTP_DONT_DO_PRIVADDR_SCOPE */ 5517 /* Must use the address in this case */ 5518 if (sctp_is_address_on_local_host(src, vrf_id)) { 5519 stc.loopback_scope = 1; 5520 stc.ipv4_scope = 1; 5521 stc.site_scope = 1; 5522 stc.local_scope = 0; 5523 } 5524 break; 5525 } 5526 #endif 5527 #ifdef INET6 5528 case AF_INET6: 5529 { 5530 stc.addr_type = SCTP_IPV6_ADDRESS; 5531 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr)); 5532 stc.scope_id = in6_getscope(&src6->sin6_addr); 5533 if (sctp_is_address_on_local_host(src, vrf_id)) { 5534 stc.loopback_scope = 1; 5535 stc.local_scope = 0; 5536 stc.site_scope = 1; 5537 stc.ipv4_scope = 1; 5538 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) { 5539 /* 5540 * If the new destination is a 5541 * LINK_LOCAL we must have common 5542 * both site and local scope. Don't 5543 * set local scope though since we 5544 * must depend on the source to be 5545 * added implicitly. We cannot 5546 * assure just because we share one 5547 * link that all links are common. 5548 */ 5549 stc.local_scope = 0; 5550 stc.site_scope = 1; 5551 stc.ipv4_scope = 1; 5552 /* 5553 * we start counting for the private 5554 * address stuff at 1. since the 5555 * link local we source from won't 5556 * show up in our scoped count. 5557 */ 5558 cnt_inits_to = 1; 5559 /* 5560 * pull out the scope_id from 5561 * incoming pkt 5562 */ 5563 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) { 5564 /* 5565 * If the new destination is 5566 * SITE_LOCAL then we must have site 5567 * scope in common. 5568 */ 5569 stc.site_scope = 1; 5570 } 5571 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr)); 5572 stc.laddr_type = SCTP_IPV6_ADDRESS; 5573 break; 5574 } 5575 #endif 5576 default: 5577 /* TSNH */ 5578 goto do_a_abort; 5579 break; 5580 } 5581 } else { 5582 /* set the scope per the existing tcb */ 5583 5584 #ifdef INET6 5585 struct sctp_nets *lnet; 5586 5587 #endif 5588 5589 stc.loopback_scope = asoc->loopback_scope; 5590 stc.ipv4_scope = asoc->ipv4_local_scope; 5591 stc.site_scope = asoc->site_scope; 5592 stc.local_scope = asoc->local_scope; 5593 #ifdef INET6 5594 /* Why do we not consider IPv4 LL addresses? */ 5595 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 5596 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) { 5597 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) { 5598 /* 5599 * if we have a LL address, start 5600 * counting at 1. 5601 */ 5602 cnt_inits_to = 1; 5603 } 5604 } 5605 } 5606 #endif 5607 /* use the net pointer */ 5608 to = (struct sockaddr *)&net->ro._l_addr; 5609 switch (to->sa_family) { 5610 #ifdef INET 5611 case AF_INET: 5612 sin = (struct sockaddr_in *)to; 5613 stc.address[0] = sin->sin_addr.s_addr; 5614 stc.address[1] = 0; 5615 stc.address[2] = 0; 5616 stc.address[3] = 0; 5617 stc.addr_type = SCTP_IPV4_ADDRESS; 5618 if (net->src_addr_selected == 0) { 5619 /* 5620 * strange case here, the INIT should have 5621 * did the selection. 5622 */ 5623 net->ro._s_addr = sctp_source_address_selection(inp, 5624 stcb, (sctp_route_t *) & net->ro, 5625 net, 0, vrf_id); 5626 if (net->ro._s_addr == NULL) 5627 return; 5628 5629 net->src_addr_selected = 1; 5630 5631 } 5632 stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr; 5633 stc.laddress[1] = 0; 5634 stc.laddress[2] = 0; 5635 stc.laddress[3] = 0; 5636 stc.laddr_type = SCTP_IPV4_ADDRESS; 5637 /* scope_id is only for v6 */ 5638 stc.scope_id = 0; 5639 break; 5640 #endif 5641 #ifdef INET6 5642 case AF_INET6: 5643 sin6 = (struct sockaddr_in6 *)to; 5644 memcpy(&stc.address, &sin6->sin6_addr, 5645 sizeof(struct in6_addr)); 5646 stc.addr_type = SCTP_IPV6_ADDRESS; 5647 stc.scope_id = sin6->sin6_scope_id; 5648 if (net->src_addr_selected == 0) { 5649 /* 5650 * strange case here, the INIT should have 5651 * done the selection. 5652 */ 5653 net->ro._s_addr = sctp_source_address_selection(inp, 5654 stcb, (sctp_route_t *) & net->ro, 5655 net, 0, vrf_id); 5656 if (net->ro._s_addr == NULL) 5657 return; 5658 5659 net->src_addr_selected = 1; 5660 } 5661 memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr, 5662 sizeof(struct in6_addr)); 5663 stc.laddr_type = SCTP_IPV6_ADDRESS; 5664 break; 5665 #endif 5666 } 5667 } 5668 /* Now lets put the SCTP header in place */ 5669 initack = mtod(m, struct sctp_init_ack_chunk *); 5670 /* Save it off for quick ref */ 5671 stc.peers_vtag = init_chk->init.initiate_tag; 5672 /* who are we */ 5673 memcpy(stc.identification, SCTP_VERSION_STRING, 5674 min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification))); 5675 memset(stc.reserved, 0, SCTP_RESERVE_SPACE); 5676 /* now the chunk header */ 5677 initack->ch.chunk_type = SCTP_INITIATION_ACK; 5678 initack->ch.chunk_flags = 0; 5679 /* fill in later from mbuf we build */ 5680 initack->ch.chunk_length = 0; 5681 /* place in my tag */ 5682 if ((asoc != NULL) && 5683 ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 5684 (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) || 5685 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) { 5686 /* re-use the v-tags and init-seq here */ 5687 initack->init.initiate_tag = htonl(asoc->my_vtag); 5688 initack->init.initial_tsn = htonl(asoc->init_seq_number); 5689 } else { 5690 uint32_t vtag, itsn; 5691 5692 if (hold_inp_lock) { 5693 SCTP_INP_INCR_REF(inp); 5694 SCTP_INP_RUNLOCK(inp); 5695 } 5696 if (asoc) { 5697 atomic_add_int(&asoc->refcnt, 1); 5698 SCTP_TCB_UNLOCK(stcb); 5699 new_tag: 5700 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5701 if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) { 5702 /* 5703 * Got a duplicate vtag on some guy behind a 5704 * nat make sure we don't use it. 5705 */ 5706 goto new_tag; 5707 } 5708 initack->init.initiate_tag = htonl(vtag); 5709 /* get a TSN to use too */ 5710 itsn = sctp_select_initial_TSN(&inp->sctp_ep); 5711 initack->init.initial_tsn = htonl(itsn); 5712 SCTP_TCB_LOCK(stcb); 5713 atomic_add_int(&asoc->refcnt, -1); 5714 } else { 5715 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5716 initack->init.initiate_tag = htonl(vtag); 5717 /* get a TSN to use too */ 5718 initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep)); 5719 } 5720 if (hold_inp_lock) { 5721 SCTP_INP_RLOCK(inp); 5722 SCTP_INP_DECR_REF(inp); 5723 } 5724 } 5725 /* save away my tag to */ 5726 stc.my_vtag = initack->init.initiate_tag; 5727 5728 /* set up some of the credits. */ 5729 so = inp->sctp_socket; 5730 if (so == NULL) { 5731 /* memory problem */ 5732 sctp_m_freem(m); 5733 return; 5734 } else { 5735 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND)); 5736 } 5737 /* set what I want */ 5738 his_limit = ntohs(init_chk->init.num_inbound_streams); 5739 /* choose what I want */ 5740 if (asoc != NULL) { 5741 if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) { 5742 i_want = asoc->streamoutcnt; 5743 } else { 5744 i_want = inp->sctp_ep.pre_open_stream_count; 5745 } 5746 } else { 5747 i_want = inp->sctp_ep.pre_open_stream_count; 5748 } 5749 if (his_limit < i_want) { 5750 /* I Want more :< */ 5751 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams; 5752 } else { 5753 /* I can have what I want :> */ 5754 initack->init.num_outbound_streams = htons(i_want); 5755 } 5756 /* tell him his limt. */ 5757 initack->init.num_inbound_streams = 5758 htons(inp->sctp_ep.max_open_streams_intome); 5759 5760 /* adaptation layer indication parameter */ 5761 ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack)); 5762 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 5763 ali->ph.param_length = htons(sizeof(*ali)); 5764 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator); 5765 SCTP_BUF_LEN(m) += sizeof(*ali); 5766 ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali)); 5767 5768 /* ECN parameter */ 5769 if (((asoc != NULL) && (asoc->ecn_allowed == 1)) || 5770 (inp->sctp_ecn_enable == 1)) { 5771 ecn->ph.param_type = htons(SCTP_ECN_CAPABLE); 5772 ecn->ph.param_length = htons(sizeof(*ecn)); 5773 SCTP_BUF_LEN(m) += sizeof(*ecn); 5774 5775 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn + 5776 sizeof(*ecn)); 5777 } else { 5778 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn); 5779 } 5780 /* And now tell the peer we do pr-sctp */ 5781 prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED); 5782 prsctp->ph.param_length = htons(sizeof(*prsctp)); 5783 SCTP_BUF_LEN(m) += sizeof(*prsctp); 5784 if (nat_friendly) { 5785 /* Add NAT friendly parameter */ 5786 struct sctp_paramhdr *ph; 5787 5788 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5789 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 5790 ph->param_length = htons(sizeof(struct sctp_paramhdr)); 5791 SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr); 5792 } 5793 /* And now tell the peer we do all the extensions */ 5794 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5795 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 5796 num_ext = 0; 5797 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 5798 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 5799 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 5800 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 5801 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 5802 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) 5803 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 5804 if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off)) 5805 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 5806 p_len = sizeof(*pr_supported) + num_ext; 5807 pr_supported->ph.param_length = htons(p_len); 5808 bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len); 5809 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5810 5811 /* add authentication parameters */ 5812 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 5813 struct sctp_auth_random *randp; 5814 struct sctp_auth_hmac_algo *hmacs; 5815 struct sctp_auth_chunk_list *chunks; 5816 uint16_t random_len; 5817 5818 /* generate and add RANDOM parameter */ 5819 random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT; 5820 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5821 randp->ph.param_type = htons(SCTP_RANDOM); 5822 p_len = sizeof(*randp) + random_len; 5823 randp->ph.param_length = htons(p_len); 5824 SCTP_READ_RANDOM(randp->random_data, random_len); 5825 /* zero out any padding required */ 5826 bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len); 5827 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5828 5829 /* add HMAC_ALGO parameter */ 5830 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5831 p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs, 5832 (uint8_t *) hmacs->hmac_ids); 5833 if (p_len > 0) { 5834 p_len += sizeof(*hmacs); 5835 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 5836 hmacs->ph.param_length = htons(p_len); 5837 /* zero out any padding required */ 5838 bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len); 5839 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5840 } 5841 /* add CHUNKS parameter */ 5842 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5843 p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks, 5844 chunks->chunk_types); 5845 if (p_len > 0) { 5846 p_len += sizeof(*chunks); 5847 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 5848 chunks->ph.param_length = htons(p_len); 5849 /* zero out any padding required */ 5850 bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len); 5851 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5852 } 5853 } 5854 m_at = m; 5855 /* now the addresses */ 5856 { 5857 struct sctp_scoping scp; 5858 5859 /* 5860 * To optimize this we could put the scoping stuff into a 5861 * structure and remove the individual uint8's from the stc 5862 * structure. Then we could just sifa in the address within 5863 * the stc.. but for now this is a quick hack to get the 5864 * address stuff teased apart. 5865 */ 5866 scp.ipv4_addr_legal = stc.ipv4_addr_legal; 5867 scp.ipv6_addr_legal = stc.ipv6_addr_legal; 5868 scp.loopback_scope = stc.loopback_scope; 5869 scp.ipv4_local_scope = stc.ipv4_scope; 5870 scp.local_scope = stc.local_scope; 5871 scp.site_scope = stc.site_scope; 5872 m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to); 5873 } 5874 5875 /* tack on the operational error if present */ 5876 if (op_err) { 5877 struct mbuf *ol; 5878 int llen; 5879 5880 llen = 0; 5881 ol = op_err; 5882 5883 while (ol) { 5884 llen += SCTP_BUF_LEN(ol); 5885 ol = SCTP_BUF_NEXT(ol); 5886 } 5887 if (llen % 4) { 5888 /* must add a pad to the param */ 5889 uint32_t cpthis = 0; 5890 int padlen; 5891 5892 padlen = 4 - (llen % 4); 5893 m_copyback(op_err, llen, padlen, (caddr_t)&cpthis); 5894 } 5895 while (SCTP_BUF_NEXT(m_at) != NULL) { 5896 m_at = SCTP_BUF_NEXT(m_at); 5897 } 5898 SCTP_BUF_NEXT(m_at) = op_err; 5899 while (SCTP_BUF_NEXT(m_at) != NULL) { 5900 m_at = SCTP_BUF_NEXT(m_at); 5901 } 5902 } 5903 /* pre-calulate the size and update pkt header and chunk header */ 5904 p_len = 0; 5905 for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 5906 p_len += SCTP_BUF_LEN(m_tmp); 5907 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 5908 /* m_tmp should now point to last one */ 5909 break; 5910 } 5911 } 5912 5913 /* Now we must build a cookie */ 5914 m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature); 5915 if (m_cookie == NULL) { 5916 /* memory problem */ 5917 sctp_m_freem(m); 5918 return; 5919 } 5920 /* Now append the cookie to the end and update the space/size */ 5921 SCTP_BUF_NEXT(m_tmp) = m_cookie; 5922 5923 for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 5924 p_len += SCTP_BUF_LEN(m_tmp); 5925 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 5926 /* m_tmp should now point to last one */ 5927 mp_last = m_tmp; 5928 break; 5929 } 5930 } 5931 /* 5932 * Place in the size, but we don't include the last pad (if any) in 5933 * the INIT-ACK. 5934 */ 5935 initack->ch.chunk_length = htons(p_len); 5936 5937 /* 5938 * Time to sign the cookie, we don't sign over the cookie signature 5939 * though thus we set trailer. 5940 */ 5941 (void)sctp_hmac_m(SCTP_HMAC, 5942 (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], 5943 SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), 5944 (uint8_t *) signature, SCTP_SIGNATURE_SIZE); 5945 /* 5946 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 5947 * here since the timer will drive a retranmission. 5948 */ 5949 padval = p_len % 4; 5950 if ((padval) && (mp_last)) { 5951 /* see my previous comments on mp_last */ 5952 if (sctp_add_pad_tombuf(mp_last, (4 - padval))) { 5953 /* Houston we have a problem, no space */ 5954 sctp_m_freem(m); 5955 return; 5956 } 5957 } 5958 if (stc.loopback_scope) { 5959 over_addr = (union sctp_sockstore *)dst; 5960 } else { 5961 over_addr = NULL; 5962 } 5963 5964 (void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0, 5965 0, 0, 5966 inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag, 5967 port, over_addr, 5968 use_mflowid, mflowid, 5969 SCTP_SO_NOT_LOCKED); 5970 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 5971 } 5972 5973 5974 static void 5975 sctp_prune_prsctp(struct sctp_tcb *stcb, 5976 struct sctp_association *asoc, 5977 struct sctp_sndrcvinfo *srcv, 5978 int dataout) 5979 { 5980 int freed_spc = 0; 5981 struct sctp_tmit_chunk *chk, *nchk; 5982 5983 SCTP_TCB_LOCK_ASSERT(stcb); 5984 if ((asoc->peer_supports_prsctp) && 5985 (asoc->sent_queue_cnt_removeable > 0)) { 5986 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 5987 /* 5988 * Look for chunks marked with the PR_SCTP flag AND 5989 * the buffer space flag. If the one being sent is 5990 * equal or greater priority then purge the old one 5991 * and free some space. 5992 */ 5993 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 5994 /* 5995 * This one is PR-SCTP AND buffer space 5996 * limited type 5997 */ 5998 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 5999 /* 6000 * Lower numbers equates to higher 6001 * priority so if the one we are 6002 * looking at has a larger or equal 6003 * priority we want to drop the data 6004 * and NOT retransmit it. 6005 */ 6006 if (chk->data) { 6007 /* 6008 * We release the book_size 6009 * if the mbuf is here 6010 */ 6011 int ret_spc; 6012 uint8_t sent; 6013 6014 if (chk->sent > SCTP_DATAGRAM_UNSENT) 6015 sent = 1; 6016 else 6017 sent = 0; 6018 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6019 sent, 6020 SCTP_SO_LOCKED); 6021 freed_spc += ret_spc; 6022 if (freed_spc >= dataout) { 6023 return; 6024 } 6025 } /* if chunk was present */ 6026 } /* if of sufficent priority */ 6027 } /* if chunk has enabled */ 6028 } /* tailqforeach */ 6029 6030 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 6031 /* Here we must move to the sent queue and mark */ 6032 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6033 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6034 if (chk->data) { 6035 /* 6036 * We release the book_size 6037 * if the mbuf is here 6038 */ 6039 int ret_spc; 6040 6041 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6042 0, SCTP_SO_LOCKED); 6043 6044 freed_spc += ret_spc; 6045 if (freed_spc >= dataout) { 6046 return; 6047 } 6048 } /* end if chk->data */ 6049 } /* end if right class */ 6050 } /* end if chk pr-sctp */ 6051 } /* tailqforeachsafe (chk) */ 6052 } /* if enabled in asoc */ 6053 } 6054 6055 int 6056 sctp_get_frag_point(struct sctp_tcb *stcb, 6057 struct sctp_association *asoc) 6058 { 6059 int siz, ovh; 6060 6061 /* 6062 * For endpoints that have both v6 and v4 addresses we must reserve 6063 * room for the ipv6 header, for those that are only dealing with V4 6064 * we use a larger frag point. 6065 */ 6066 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6067 ovh = SCTP_MED_OVERHEAD; 6068 } else { 6069 ovh = SCTP_MED_V4_OVERHEAD; 6070 } 6071 6072 if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu) 6073 siz = asoc->smallest_mtu - ovh; 6074 else 6075 siz = (stcb->asoc.sctp_frag_point - ovh); 6076 /* 6077 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) { 6078 */ 6079 /* A data chunk MUST fit in a cluster */ 6080 /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */ 6081 /* } */ 6082 6083 /* adjust for an AUTH chunk if DATA requires auth */ 6084 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) 6085 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 6086 6087 if (siz % 4) { 6088 /* make it an even word boundary please */ 6089 siz -= (siz % 4); 6090 } 6091 return (siz); 6092 } 6093 6094 static void 6095 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp) 6096 { 6097 sp->pr_sctp_on = 0; 6098 /* 6099 * We assume that the user wants PR_SCTP_TTL if the user provides a 6100 * positive lifetime but does not specify any PR_SCTP policy. This 6101 * is a BAD assumption and causes problems at least with the 6102 * U-Vancovers MPI folks. I will change this to be no policy means 6103 * NO PR-SCTP. 6104 */ 6105 if (PR_SCTP_ENABLED(sp->sinfo_flags)) { 6106 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6107 sp->pr_sctp_on = 1; 6108 } else { 6109 return; 6110 } 6111 switch (PR_SCTP_POLICY(sp->sinfo_flags)) { 6112 case CHUNK_FLAGS_PR_SCTP_BUF: 6113 /* 6114 * Time to live is a priority stored in tv_sec when doing 6115 * the buffer drop thing. 6116 */ 6117 sp->ts.tv_sec = sp->timetolive; 6118 sp->ts.tv_usec = 0; 6119 break; 6120 case CHUNK_FLAGS_PR_SCTP_TTL: 6121 { 6122 struct timeval tv; 6123 6124 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6125 tv.tv_sec = sp->timetolive / 1000; 6126 tv.tv_usec = (sp->timetolive * 1000) % 1000000; 6127 /* 6128 * TODO sctp_constants.h needs alternative time 6129 * macros when _KERNEL is undefined. 6130 */ 6131 timevaladd(&sp->ts, &tv); 6132 } 6133 break; 6134 case CHUNK_FLAGS_PR_SCTP_RTX: 6135 /* 6136 * Time to live is a the number or retransmissions stored in 6137 * tv_sec. 6138 */ 6139 sp->ts.tv_sec = sp->timetolive; 6140 sp->ts.tv_usec = 0; 6141 break; 6142 default: 6143 SCTPDBG(SCTP_DEBUG_USRREQ1, 6144 "Unknown PR_SCTP policy %u.\n", 6145 PR_SCTP_POLICY(sp->sinfo_flags)); 6146 break; 6147 } 6148 } 6149 6150 static int 6151 sctp_msg_append(struct sctp_tcb *stcb, 6152 struct sctp_nets *net, 6153 struct mbuf *m, 6154 struct sctp_sndrcvinfo *srcv, int hold_stcb_lock) 6155 { 6156 int error = 0; 6157 struct mbuf *at; 6158 struct sctp_stream_queue_pending *sp = NULL; 6159 struct sctp_stream_out *strm; 6160 6161 /* 6162 * Given an mbuf chain, put it into the association send queue and 6163 * place it on the wheel 6164 */ 6165 if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) { 6166 /* Invalid stream number */ 6167 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6168 error = EINVAL; 6169 goto out_now; 6170 } 6171 if ((stcb->asoc.stream_locked) && 6172 (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) { 6173 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6174 error = EINVAL; 6175 goto out_now; 6176 } 6177 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 6178 /* Now can we send this? */ 6179 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) || 6180 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 6181 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 6182 (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) { 6183 /* got data while shutting down */ 6184 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 6185 error = ECONNRESET; 6186 goto out_now; 6187 } 6188 sctp_alloc_a_strmoq(stcb, sp); 6189 if (sp == NULL) { 6190 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6191 error = ENOMEM; 6192 goto out_now; 6193 } 6194 sp->sinfo_flags = srcv->sinfo_flags; 6195 sp->timetolive = srcv->sinfo_timetolive; 6196 sp->ppid = srcv->sinfo_ppid; 6197 sp->context = srcv->sinfo_context; 6198 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 6199 sp->net = net; 6200 atomic_add_int(&sp->net->ref_count, 1); 6201 } else { 6202 sp->net = NULL; 6203 } 6204 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6205 sp->stream = srcv->sinfo_stream; 6206 sp->msg_is_complete = 1; 6207 sp->sender_all_done = 1; 6208 sp->some_taken = 0; 6209 sp->data = m; 6210 sp->tail_mbuf = NULL; 6211 sctp_set_prsctp_policy(sp); 6212 /* 6213 * We could in theory (for sendall) sifa the length in, but we would 6214 * still have to hunt through the chain since we need to setup the 6215 * tail_mbuf 6216 */ 6217 sp->length = 0; 6218 for (at = m; at; at = SCTP_BUF_NEXT(at)) { 6219 if (SCTP_BUF_NEXT(at) == NULL) 6220 sp->tail_mbuf = at; 6221 sp->length += SCTP_BUF_LEN(at); 6222 } 6223 if (srcv->sinfo_keynumber_valid) { 6224 sp->auth_keyid = srcv->sinfo_keynumber; 6225 } else { 6226 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 6227 } 6228 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 6229 sctp_auth_key_acquire(stcb, sp->auth_keyid); 6230 sp->holds_key_ref = 1; 6231 } 6232 if (hold_stcb_lock == 0) { 6233 SCTP_TCB_SEND_LOCK(stcb); 6234 } 6235 sctp_snd_sb_alloc(stcb, sp->length); 6236 atomic_add_int(&stcb->asoc.stream_queue_cnt, 1); 6237 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 6238 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1); 6239 m = NULL; 6240 if (hold_stcb_lock == 0) { 6241 SCTP_TCB_SEND_UNLOCK(stcb); 6242 } 6243 out_now: 6244 if (m) { 6245 sctp_m_freem(m); 6246 } 6247 return (error); 6248 } 6249 6250 6251 static struct mbuf * 6252 sctp_copy_mbufchain(struct mbuf *clonechain, 6253 struct mbuf *outchain, 6254 struct mbuf **endofchain, 6255 int can_take_mbuf, 6256 int sizeofcpy, 6257 uint8_t copy_by_ref) 6258 { 6259 struct mbuf *m; 6260 struct mbuf *appendchain; 6261 caddr_t cp; 6262 int len; 6263 6264 if (endofchain == NULL) { 6265 /* error */ 6266 error_out: 6267 if (outchain) 6268 sctp_m_freem(outchain); 6269 return (NULL); 6270 } 6271 if (can_take_mbuf) { 6272 appendchain = clonechain; 6273 } else { 6274 if (!copy_by_ref && 6275 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN))) 6276 ) { 6277 /* Its not in a cluster */ 6278 if (*endofchain == NULL) { 6279 /* lets get a mbuf cluster */ 6280 if (outchain == NULL) { 6281 /* This is the general case */ 6282 new_mbuf: 6283 outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6284 if (outchain == NULL) { 6285 goto error_out; 6286 } 6287 SCTP_BUF_LEN(outchain) = 0; 6288 *endofchain = outchain; 6289 /* get the prepend space */ 6290 SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4)); 6291 } else { 6292 /* 6293 * We really should not get a NULL 6294 * in endofchain 6295 */ 6296 /* find end */ 6297 m = outchain; 6298 while (m) { 6299 if (SCTP_BUF_NEXT(m) == NULL) { 6300 *endofchain = m; 6301 break; 6302 } 6303 m = SCTP_BUF_NEXT(m); 6304 } 6305 /* sanity */ 6306 if (*endofchain == NULL) { 6307 /* 6308 * huh, TSNH XXX maybe we 6309 * should panic 6310 */ 6311 sctp_m_freem(outchain); 6312 goto new_mbuf; 6313 } 6314 } 6315 /* get the new end of length */ 6316 len = M_TRAILINGSPACE(*endofchain); 6317 } else { 6318 /* how much is left at the end? */ 6319 len = M_TRAILINGSPACE(*endofchain); 6320 } 6321 /* Find the end of the data, for appending */ 6322 cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain))); 6323 6324 /* Now lets copy it out */ 6325 if (len >= sizeofcpy) { 6326 /* It all fits, copy it in */ 6327 m_copydata(clonechain, 0, sizeofcpy, cp); 6328 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6329 } else { 6330 /* fill up the end of the chain */ 6331 if (len > 0) { 6332 m_copydata(clonechain, 0, len, cp); 6333 SCTP_BUF_LEN((*endofchain)) += len; 6334 /* now we need another one */ 6335 sizeofcpy -= len; 6336 } 6337 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6338 if (m == NULL) { 6339 /* We failed */ 6340 goto error_out; 6341 } 6342 SCTP_BUF_NEXT((*endofchain)) = m; 6343 *endofchain = m; 6344 cp = mtod((*endofchain), caddr_t); 6345 m_copydata(clonechain, len, sizeofcpy, cp); 6346 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6347 } 6348 return (outchain); 6349 } else { 6350 /* copy the old fashion way */ 6351 appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT); 6352 #ifdef SCTP_MBUF_LOGGING 6353 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6354 struct mbuf *mat; 6355 6356 for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) { 6357 if (SCTP_BUF_IS_EXTENDED(mat)) { 6358 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 6359 } 6360 } 6361 } 6362 #endif 6363 } 6364 } 6365 if (appendchain == NULL) { 6366 /* error */ 6367 if (outchain) 6368 sctp_m_freem(outchain); 6369 return (NULL); 6370 } 6371 if (outchain) { 6372 /* tack on to the end */ 6373 if (*endofchain != NULL) { 6374 SCTP_BUF_NEXT(((*endofchain))) = appendchain; 6375 } else { 6376 m = outchain; 6377 while (m) { 6378 if (SCTP_BUF_NEXT(m) == NULL) { 6379 SCTP_BUF_NEXT(m) = appendchain; 6380 break; 6381 } 6382 m = SCTP_BUF_NEXT(m); 6383 } 6384 } 6385 /* 6386 * save off the end and update the end-chain postion 6387 */ 6388 m = appendchain; 6389 while (m) { 6390 if (SCTP_BUF_NEXT(m) == NULL) { 6391 *endofchain = m; 6392 break; 6393 } 6394 m = SCTP_BUF_NEXT(m); 6395 } 6396 return (outchain); 6397 } else { 6398 /* save off the end and update the end-chain postion */ 6399 m = appendchain; 6400 while (m) { 6401 if (SCTP_BUF_NEXT(m) == NULL) { 6402 *endofchain = m; 6403 break; 6404 } 6405 m = SCTP_BUF_NEXT(m); 6406 } 6407 return (appendchain); 6408 } 6409 } 6410 6411 static int 6412 sctp_med_chunk_output(struct sctp_inpcb *inp, 6413 struct sctp_tcb *stcb, 6414 struct sctp_association *asoc, 6415 int *num_out, 6416 int *reason_code, 6417 int control_only, int from_where, 6418 struct timeval *now, int *now_filled, int frag_point, int so_locked 6419 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6420 SCTP_UNUSED 6421 #endif 6422 ); 6423 6424 static void 6425 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, 6426 uint32_t val SCTP_UNUSED) 6427 { 6428 struct sctp_copy_all *ca; 6429 struct mbuf *m; 6430 int ret = 0; 6431 int added_control = 0; 6432 int un_sent, do_chunk_output = 1; 6433 struct sctp_association *asoc; 6434 struct sctp_nets *net; 6435 6436 ca = (struct sctp_copy_all *)ptr; 6437 if (ca->m == NULL) { 6438 return; 6439 } 6440 if (ca->inp != inp) { 6441 /* TSNH */ 6442 return; 6443 } 6444 if ((ca->m) && ca->sndlen) { 6445 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT); 6446 if (m == NULL) { 6447 /* can't copy so we are done */ 6448 ca->cnt_failed++; 6449 return; 6450 } 6451 #ifdef SCTP_MBUF_LOGGING 6452 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6453 struct mbuf *mat; 6454 6455 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6456 if (SCTP_BUF_IS_EXTENDED(mat)) { 6457 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 6458 } 6459 } 6460 } 6461 #endif 6462 } else { 6463 m = NULL; 6464 } 6465 SCTP_TCB_LOCK_ASSERT(stcb); 6466 if (stcb->asoc.alternate) { 6467 net = stcb->asoc.alternate; 6468 } else { 6469 net = stcb->asoc.primary_destination; 6470 } 6471 if (ca->sndrcv.sinfo_flags & SCTP_ABORT) { 6472 /* Abort this assoc with m as the user defined reason */ 6473 if (m) { 6474 struct sctp_paramhdr *ph; 6475 6476 SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT); 6477 if (m) { 6478 ph = mtod(m, struct sctp_paramhdr *); 6479 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 6480 ph->param_length = htons(ca->sndlen); 6481 } 6482 /* 6483 * We add one here to keep the assoc from 6484 * dis-appearing on us. 6485 */ 6486 atomic_add_int(&stcb->asoc.refcnt, 1); 6487 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED); 6488 /* 6489 * sctp_abort_an_association calls sctp_free_asoc() 6490 * free association will NOT free it since we 6491 * incremented the refcnt .. we do this to prevent 6492 * it being freed and things getting tricky since we 6493 * could end up (from free_asoc) calling inpcb_free 6494 * which would get a recursive lock call to the 6495 * iterator lock.. But as a consequence of that the 6496 * stcb will return to us un-locked.. since 6497 * free_asoc returns with either no TCB or the TCB 6498 * unlocked, we must relock.. to unlock in the 6499 * iterator timer :-0 6500 */ 6501 SCTP_TCB_LOCK(stcb); 6502 atomic_add_int(&stcb->asoc.refcnt, -1); 6503 goto no_chunk_output; 6504 } 6505 } else { 6506 if (m) { 6507 ret = sctp_msg_append(stcb, net, m, 6508 &ca->sndrcv, 1); 6509 } 6510 asoc = &stcb->asoc; 6511 if (ca->sndrcv.sinfo_flags & SCTP_EOF) { 6512 /* shutdown this assoc */ 6513 int cnt; 6514 6515 cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED); 6516 6517 if (TAILQ_EMPTY(&asoc->send_queue) && 6518 TAILQ_EMPTY(&asoc->sent_queue) && 6519 (cnt == 0)) { 6520 if (asoc->locked_on_sending) { 6521 goto abort_anyway; 6522 } 6523 /* 6524 * there is nothing queued to send, so I'm 6525 * done... 6526 */ 6527 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6528 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6529 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6530 /* 6531 * only send SHUTDOWN the first time 6532 * through 6533 */ 6534 sctp_send_shutdown(stcb, net); 6535 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 6536 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 6537 } 6538 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 6539 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 6540 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 6541 net); 6542 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6543 asoc->primary_destination); 6544 added_control = 1; 6545 do_chunk_output = 0; 6546 } 6547 } else { 6548 /* 6549 * we still got (or just got) data to send, 6550 * so set SHUTDOWN_PENDING 6551 */ 6552 /* 6553 * XXX sockets draft says that SCTP_EOF 6554 * should be sent with no data. currently, 6555 * we will allow user data to be sent first 6556 * and move to SHUTDOWN-PENDING 6557 */ 6558 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6559 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6560 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6561 if (asoc->locked_on_sending) { 6562 /* 6563 * Locked to send out the 6564 * data 6565 */ 6566 struct sctp_stream_queue_pending *sp; 6567 6568 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 6569 if (sp) { 6570 if ((sp->length == 0) && (sp->msg_is_complete == 0)) 6571 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 6572 } 6573 } 6574 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 6575 if (TAILQ_EMPTY(&asoc->send_queue) && 6576 TAILQ_EMPTY(&asoc->sent_queue) && 6577 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 6578 abort_anyway: 6579 atomic_add_int(&stcb->asoc.refcnt, 1); 6580 sctp_abort_an_association(stcb->sctp_ep, stcb, 6581 NULL, SCTP_SO_NOT_LOCKED); 6582 atomic_add_int(&stcb->asoc.refcnt, -1); 6583 goto no_chunk_output; 6584 } 6585 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6586 asoc->primary_destination); 6587 } 6588 } 6589 6590 } 6591 } 6592 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 6593 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 6594 6595 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 6596 (stcb->asoc.total_flight > 0) && 6597 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) 6598 ) { 6599 do_chunk_output = 0; 6600 } 6601 if (do_chunk_output) 6602 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED); 6603 else if (added_control) { 6604 int num_out = 0, reason = 0, now_filled = 0; 6605 struct timeval now; 6606 int frag_point; 6607 6608 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 6609 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 6610 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED); 6611 } 6612 no_chunk_output: 6613 if (ret) { 6614 ca->cnt_failed++; 6615 } else { 6616 ca->cnt_sent++; 6617 } 6618 } 6619 6620 static void 6621 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED) 6622 { 6623 struct sctp_copy_all *ca; 6624 6625 ca = (struct sctp_copy_all *)ptr; 6626 /* 6627 * Do a notify here? Kacheong suggests that the notify be done at 6628 * the send time.. so you would push up a notification if any send 6629 * failed. Don't know if this is feasable since the only failures we 6630 * have is "memory" related and if you cannot get an mbuf to send 6631 * the data you surely can't get an mbuf to send up to notify the 6632 * user you can't send the data :-> 6633 */ 6634 6635 /* now free everything */ 6636 sctp_m_freem(ca->m); 6637 SCTP_FREE(ca, SCTP_M_COPYAL); 6638 } 6639 6640 6641 #define MC_ALIGN(m, len) do { \ 6642 SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1)); \ 6643 } while (0) 6644 6645 6646 6647 static struct mbuf * 6648 sctp_copy_out_all(struct uio *uio, int len) 6649 { 6650 struct mbuf *ret, *at; 6651 int left, willcpy, cancpy, error; 6652 6653 ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA); 6654 if (ret == NULL) { 6655 /* TSNH */ 6656 return (NULL); 6657 } 6658 left = len; 6659 SCTP_BUF_LEN(ret) = 0; 6660 /* save space for the data chunk header */ 6661 cancpy = M_TRAILINGSPACE(ret); 6662 willcpy = min(cancpy, left); 6663 at = ret; 6664 while (left > 0) { 6665 /* Align data to the end */ 6666 error = uiomove(mtod(at, caddr_t), willcpy, uio); 6667 if (error) { 6668 err_out_now: 6669 sctp_m_freem(at); 6670 return (NULL); 6671 } 6672 SCTP_BUF_LEN(at) = willcpy; 6673 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0; 6674 left -= willcpy; 6675 if (left > 0) { 6676 SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA); 6677 if (SCTP_BUF_NEXT(at) == NULL) { 6678 goto err_out_now; 6679 } 6680 at = SCTP_BUF_NEXT(at); 6681 SCTP_BUF_LEN(at) = 0; 6682 cancpy = M_TRAILINGSPACE(at); 6683 willcpy = min(cancpy, left); 6684 } 6685 } 6686 return (ret); 6687 } 6688 6689 static int 6690 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m, 6691 struct sctp_sndrcvinfo *srcv) 6692 { 6693 int ret; 6694 struct sctp_copy_all *ca; 6695 6696 SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all), 6697 SCTP_M_COPYAL); 6698 if (ca == NULL) { 6699 sctp_m_freem(m); 6700 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6701 return (ENOMEM); 6702 } 6703 memset(ca, 0, sizeof(struct sctp_copy_all)); 6704 6705 ca->inp = inp; 6706 if (srcv) { 6707 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo)); 6708 } 6709 /* 6710 * take off the sendall flag, it would be bad if we failed to do 6711 * this :-0 6712 */ 6713 ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL; 6714 /* get length and mbuf chain */ 6715 if (uio) { 6716 ca->sndlen = uio->uio_resid; 6717 ca->m = sctp_copy_out_all(uio, ca->sndlen); 6718 if (ca->m == NULL) { 6719 SCTP_FREE(ca, SCTP_M_COPYAL); 6720 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6721 return (ENOMEM); 6722 } 6723 } else { 6724 /* Gather the length of the send */ 6725 struct mbuf *mat; 6726 6727 mat = m; 6728 ca->sndlen = 0; 6729 while (m) { 6730 ca->sndlen += SCTP_BUF_LEN(m); 6731 m = SCTP_BUF_NEXT(m); 6732 } 6733 ca->m = mat; 6734 } 6735 ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL, 6736 SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES, 6737 SCTP_ASOC_ANY_STATE, 6738 (void *)ca, 0, 6739 sctp_sendall_completes, inp, 1); 6740 if (ret) { 6741 SCTP_PRINTF("Failed to initiate iterator for sendall\n"); 6742 SCTP_FREE(ca, SCTP_M_COPYAL); 6743 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 6744 return (EFAULT); 6745 } 6746 return (0); 6747 } 6748 6749 6750 void 6751 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc) 6752 { 6753 struct sctp_tmit_chunk *chk, *nchk; 6754 6755 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6756 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 6757 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6758 if (chk->data) { 6759 sctp_m_freem(chk->data); 6760 chk->data = NULL; 6761 } 6762 asoc->ctrl_queue_cnt--; 6763 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6764 } 6765 } 6766 } 6767 6768 void 6769 sctp_toss_old_asconf(struct sctp_tcb *stcb) 6770 { 6771 struct sctp_association *asoc; 6772 struct sctp_tmit_chunk *chk, *nchk; 6773 struct sctp_asconf_chunk *acp; 6774 6775 asoc = &stcb->asoc; 6776 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 6777 /* find SCTP_ASCONF chunk in queue */ 6778 if (chk->rec.chunk_id.id == SCTP_ASCONF) { 6779 if (chk->data) { 6780 acp = mtod(chk->data, struct sctp_asconf_chunk *); 6781 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { 6782 /* Not Acked yet */ 6783 break; 6784 } 6785 } 6786 TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next); 6787 if (chk->data) { 6788 sctp_m_freem(chk->data); 6789 chk->data = NULL; 6790 } 6791 asoc->ctrl_queue_cnt--; 6792 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6793 } 6794 } 6795 } 6796 6797 6798 static void 6799 sctp_clean_up_datalist(struct sctp_tcb *stcb, 6800 struct sctp_association *asoc, 6801 struct sctp_tmit_chunk **data_list, 6802 int bundle_at, 6803 struct sctp_nets *net) 6804 { 6805 int i; 6806 struct sctp_tmit_chunk *tp1; 6807 6808 for (i = 0; i < bundle_at; i++) { 6809 /* off of the send queue */ 6810 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next); 6811 asoc->send_queue_cnt--; 6812 if (i > 0) { 6813 /* 6814 * Any chunk NOT 0 you zap the time chunk 0 gets 6815 * zapped or set based on if a RTO measurment is 6816 * needed. 6817 */ 6818 data_list[i]->do_rtt = 0; 6819 } 6820 /* record time */ 6821 data_list[i]->sent_rcv_time = net->last_sent_time; 6822 data_list[i]->rec.data.cwnd_at_send = net->cwnd; 6823 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq; 6824 if (data_list[i]->whoTo == NULL) { 6825 data_list[i]->whoTo = net; 6826 atomic_add_int(&net->ref_count, 1); 6827 } 6828 /* on to the sent queue */ 6829 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead); 6830 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) { 6831 struct sctp_tmit_chunk *tpp; 6832 6833 /* need to move back */ 6834 back_up_more: 6835 tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next); 6836 if (tpp == NULL) { 6837 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next); 6838 goto all_done; 6839 } 6840 tp1 = tpp; 6841 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) { 6842 goto back_up_more; 6843 } 6844 TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next); 6845 } else { 6846 TAILQ_INSERT_TAIL(&asoc->sent_queue, 6847 data_list[i], 6848 sctp_next); 6849 } 6850 all_done: 6851 /* This does not lower until the cum-ack passes it */ 6852 asoc->sent_queue_cnt++; 6853 if ((asoc->peers_rwnd <= 0) && 6854 (asoc->total_flight == 0) && 6855 (bundle_at == 1)) { 6856 /* Mark the chunk as being a window probe */ 6857 SCTP_STAT_INCR(sctps_windowprobed); 6858 } 6859 #ifdef SCTP_AUDITING_ENABLED 6860 sctp_audit_log(0xC2, 3); 6861 #endif 6862 data_list[i]->sent = SCTP_DATAGRAM_SENT; 6863 data_list[i]->snd_count = 1; 6864 data_list[i]->rec.data.chunk_was_revoked = 0; 6865 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 6866 sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 6867 data_list[i]->whoTo->flight_size, 6868 data_list[i]->book_size, 6869 (uintptr_t) data_list[i]->whoTo, 6870 data_list[i]->rec.data.TSN_seq); 6871 } 6872 sctp_flight_size_increase(data_list[i]); 6873 sctp_total_flight_increase(stcb, data_list[i]); 6874 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 6875 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 6876 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 6877 } 6878 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 6879 (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 6880 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 6881 /* SWS sender side engages */ 6882 asoc->peers_rwnd = 0; 6883 } 6884 } 6885 if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) { 6886 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net); 6887 } 6888 } 6889 6890 static void 6891 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked 6892 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6893 SCTP_UNUSED 6894 #endif 6895 ) 6896 { 6897 struct sctp_tmit_chunk *chk, *nchk; 6898 6899 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6900 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 6901 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 6902 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 6903 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 6904 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) || 6905 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 6906 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 6907 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 6908 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 6909 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 6910 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 6911 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 6912 /* Stray chunks must be cleaned up */ 6913 clean_up_anyway: 6914 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6915 if (chk->data) { 6916 sctp_m_freem(chk->data); 6917 chk->data = NULL; 6918 } 6919 asoc->ctrl_queue_cnt--; 6920 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) 6921 asoc->fwd_tsn_cnt--; 6922 sctp_free_a_chunk(stcb, chk, so_locked); 6923 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 6924 /* special handling, we must look into the param */ 6925 if (chk != asoc->str_reset) { 6926 goto clean_up_anyway; 6927 } 6928 } 6929 } 6930 } 6931 6932 6933 static int 6934 sctp_can_we_split_this(struct sctp_tcb *stcb, 6935 uint32_t length, 6936 uint32_t goal_mtu, uint32_t frag_point, int eeor_on) 6937 { 6938 /* 6939 * Make a decision on if I should split a msg into multiple parts. 6940 * This is only asked of incomplete messages. 6941 */ 6942 if (eeor_on) { 6943 /* 6944 * If we are doing EEOR we need to always send it if its the 6945 * entire thing, since it might be all the guy is putting in 6946 * the hopper. 6947 */ 6948 if (goal_mtu >= length) { 6949 /*- 6950 * If we have data outstanding, 6951 * we get another chance when the sack 6952 * arrives to transmit - wait for more data 6953 */ 6954 if (stcb->asoc.total_flight == 0) { 6955 /* 6956 * If nothing is in flight, we zero the 6957 * packet counter. 6958 */ 6959 return (length); 6960 } 6961 return (0); 6962 6963 } else { 6964 /* You can fill the rest */ 6965 return (goal_mtu); 6966 } 6967 } 6968 /*- 6969 * For those strange folk that make the send buffer 6970 * smaller than our fragmentation point, we can't 6971 * get a full msg in so we have to allow splitting. 6972 */ 6973 if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) { 6974 return (length); 6975 } 6976 if ((length <= goal_mtu) || 6977 ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) { 6978 /* Sub-optimial residual don't split in non-eeor mode. */ 6979 return (0); 6980 } 6981 /* 6982 * If we reach here length is larger than the goal_mtu. Do we wish 6983 * to split it for the sake of packet putting together? 6984 */ 6985 if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) { 6986 /* Its ok to split it */ 6987 return (min(goal_mtu, frag_point)); 6988 } 6989 /* Nope, can't split */ 6990 return (0); 6991 6992 } 6993 6994 static uint32_t 6995 sctp_move_to_outqueue(struct sctp_tcb *stcb, 6996 struct sctp_stream_out *strq, 6997 uint32_t goal_mtu, 6998 uint32_t frag_point, 6999 int *locked, 7000 int *giveup, 7001 int eeor_mode, 7002 int *bail, 7003 int so_locked 7004 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7005 SCTP_UNUSED 7006 #endif 7007 ) 7008 { 7009 /* Move from the stream to the send_queue keeping track of the total */ 7010 struct sctp_association *asoc; 7011 struct sctp_stream_queue_pending *sp; 7012 struct sctp_tmit_chunk *chk; 7013 struct sctp_data_chunk *dchkh; 7014 uint32_t to_move, length; 7015 uint8_t rcv_flags = 0; 7016 uint8_t some_taken; 7017 uint8_t send_lock_up = 0; 7018 7019 SCTP_TCB_LOCK_ASSERT(stcb); 7020 asoc = &stcb->asoc; 7021 one_more_time: 7022 /* sa_ignore FREED_MEMORY */ 7023 sp = TAILQ_FIRST(&strq->outqueue); 7024 if (sp == NULL) { 7025 *locked = 0; 7026 if (send_lock_up == 0) { 7027 SCTP_TCB_SEND_LOCK(stcb); 7028 send_lock_up = 1; 7029 } 7030 sp = TAILQ_FIRST(&strq->outqueue); 7031 if (sp) { 7032 goto one_more_time; 7033 } 7034 if (strq->last_msg_incomplete) { 7035 SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n", 7036 strq->stream_no, 7037 strq->last_msg_incomplete); 7038 strq->last_msg_incomplete = 0; 7039 } 7040 to_move = 0; 7041 if (send_lock_up) { 7042 SCTP_TCB_SEND_UNLOCK(stcb); 7043 send_lock_up = 0; 7044 } 7045 goto out_of; 7046 } 7047 if ((sp->msg_is_complete) && (sp->length == 0)) { 7048 if (sp->sender_all_done) { 7049 /* 7050 * We are doing differed cleanup. Last time through 7051 * when we took all the data the sender_all_done was 7052 * not set. 7053 */ 7054 if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) { 7055 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 7056 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7057 sp->sender_all_done, 7058 sp->length, 7059 sp->msg_is_complete, 7060 sp->put_last_out, 7061 send_lock_up); 7062 } 7063 if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) { 7064 SCTP_TCB_SEND_LOCK(stcb); 7065 send_lock_up = 1; 7066 } 7067 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7068 TAILQ_REMOVE(&strq->outqueue, sp, next); 7069 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7070 if (sp->net) { 7071 sctp_free_remote_addr(sp->net); 7072 sp->net = NULL; 7073 } 7074 if (sp->data) { 7075 sctp_m_freem(sp->data); 7076 sp->data = NULL; 7077 } 7078 sctp_free_a_strmoq(stcb, sp, so_locked); 7079 /* we can't be locked to it */ 7080 *locked = 0; 7081 stcb->asoc.locked_on_sending = NULL; 7082 if (send_lock_up) { 7083 SCTP_TCB_SEND_UNLOCK(stcb); 7084 send_lock_up = 0; 7085 } 7086 /* back to get the next msg */ 7087 goto one_more_time; 7088 } else { 7089 /* 7090 * sender just finished this but still holds a 7091 * reference 7092 */ 7093 *locked = 1; 7094 *giveup = 1; 7095 to_move = 0; 7096 goto out_of; 7097 } 7098 } else { 7099 /* is there some to get */ 7100 if (sp->length == 0) { 7101 /* no */ 7102 *locked = 1; 7103 *giveup = 1; 7104 to_move = 0; 7105 goto out_of; 7106 } else if (sp->discard_rest) { 7107 if (send_lock_up == 0) { 7108 SCTP_TCB_SEND_LOCK(stcb); 7109 send_lock_up = 1; 7110 } 7111 /* Whack down the size */ 7112 atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length); 7113 if ((stcb->sctp_socket != NULL) && \ 7114 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 7115 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 7116 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length); 7117 } 7118 if (sp->data) { 7119 sctp_m_freem(sp->data); 7120 sp->data = NULL; 7121 sp->tail_mbuf = NULL; 7122 } 7123 sp->length = 0; 7124 sp->some_taken = 1; 7125 *locked = 1; 7126 *giveup = 1; 7127 to_move = 0; 7128 goto out_of; 7129 } 7130 } 7131 some_taken = sp->some_taken; 7132 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 7133 sp->msg_is_complete = 1; 7134 } 7135 re_look: 7136 length = sp->length; 7137 if (sp->msg_is_complete) { 7138 /* The message is complete */ 7139 to_move = min(length, frag_point); 7140 if (to_move == length) { 7141 /* All of it fits in the MTU */ 7142 if (sp->some_taken) { 7143 rcv_flags |= SCTP_DATA_LAST_FRAG; 7144 sp->put_last_out = 1; 7145 } else { 7146 rcv_flags |= SCTP_DATA_NOT_FRAG; 7147 sp->put_last_out = 1; 7148 } 7149 } else { 7150 /* Not all of it fits, we fragment */ 7151 if (sp->some_taken == 0) { 7152 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7153 } 7154 sp->some_taken = 1; 7155 } 7156 } else { 7157 to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode); 7158 if (to_move) { 7159 /*- 7160 * We use a snapshot of length in case it 7161 * is expanding during the compare. 7162 */ 7163 uint32_t llen; 7164 7165 llen = length; 7166 if (to_move >= llen) { 7167 to_move = llen; 7168 if (send_lock_up == 0) { 7169 /*- 7170 * We are taking all of an incomplete msg 7171 * thus we need a send lock. 7172 */ 7173 SCTP_TCB_SEND_LOCK(stcb); 7174 send_lock_up = 1; 7175 if (sp->msg_is_complete) { 7176 /* 7177 * the sender finished the 7178 * msg 7179 */ 7180 goto re_look; 7181 } 7182 } 7183 } 7184 if (sp->some_taken == 0) { 7185 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7186 sp->some_taken = 1; 7187 } 7188 } else { 7189 /* Nothing to take. */ 7190 if (sp->some_taken) { 7191 *locked = 1; 7192 } 7193 *giveup = 1; 7194 to_move = 0; 7195 goto out_of; 7196 } 7197 } 7198 7199 /* If we reach here, we can copy out a chunk */ 7200 sctp_alloc_a_chunk(stcb, chk); 7201 if (chk == NULL) { 7202 /* No chunk memory */ 7203 *giveup = 1; 7204 to_move = 0; 7205 goto out_of; 7206 } 7207 /* 7208 * Setup for unordered if needed by looking at the user sent info 7209 * flags. 7210 */ 7211 if (sp->sinfo_flags & SCTP_UNORDERED) { 7212 rcv_flags |= SCTP_DATA_UNORDERED; 7213 } 7214 if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) || 7215 ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) { 7216 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7217 } 7218 /* clear out the chunk before setting up */ 7219 memset(chk, 0, sizeof(*chk)); 7220 chk->rec.data.rcv_flags = rcv_flags; 7221 7222 if (to_move >= length) { 7223 /* we think we can steal the whole thing */ 7224 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) { 7225 SCTP_TCB_SEND_LOCK(stcb); 7226 send_lock_up = 1; 7227 } 7228 if (to_move < sp->length) { 7229 /* bail, it changed */ 7230 goto dont_do_it; 7231 } 7232 chk->data = sp->data; 7233 chk->last_mbuf = sp->tail_mbuf; 7234 /* register the stealing */ 7235 sp->data = sp->tail_mbuf = NULL; 7236 } else { 7237 struct mbuf *m; 7238 7239 dont_do_it: 7240 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT); 7241 chk->last_mbuf = NULL; 7242 if (chk->data == NULL) { 7243 sp->some_taken = some_taken; 7244 sctp_free_a_chunk(stcb, chk, so_locked); 7245 *bail = 1; 7246 to_move = 0; 7247 goto out_of; 7248 } 7249 #ifdef SCTP_MBUF_LOGGING 7250 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 7251 struct mbuf *mat; 7252 7253 for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) { 7254 if (SCTP_BUF_IS_EXTENDED(mat)) { 7255 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 7256 } 7257 } 7258 } 7259 #endif 7260 /* Pull off the data */ 7261 m_adj(sp->data, to_move); 7262 /* Now lets work our way down and compact it */ 7263 m = sp->data; 7264 while (m && (SCTP_BUF_LEN(m) == 0)) { 7265 sp->data = SCTP_BUF_NEXT(m); 7266 SCTP_BUF_NEXT(m) = NULL; 7267 if (sp->tail_mbuf == m) { 7268 /*- 7269 * Freeing tail? TSNH since 7270 * we supposedly were taking less 7271 * than the sp->length. 7272 */ 7273 #ifdef INVARIANTS 7274 panic("Huh, freing tail? - TSNH"); 7275 #else 7276 SCTP_PRINTF("Huh, freeing tail? - TSNH\n"); 7277 sp->tail_mbuf = sp->data = NULL; 7278 sp->length = 0; 7279 #endif 7280 7281 } 7282 sctp_m_free(m); 7283 m = sp->data; 7284 } 7285 } 7286 if (SCTP_BUF_IS_EXTENDED(chk->data)) { 7287 chk->copy_by_ref = 1; 7288 } else { 7289 chk->copy_by_ref = 0; 7290 } 7291 /* 7292 * get last_mbuf and counts of mb useage This is ugly but hopefully 7293 * its only one mbuf. 7294 */ 7295 if (chk->last_mbuf == NULL) { 7296 chk->last_mbuf = chk->data; 7297 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) { 7298 chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf); 7299 } 7300 } 7301 if (to_move > length) { 7302 /*- This should not happen either 7303 * since we always lower to_move to the size 7304 * of sp->length if its larger. 7305 */ 7306 #ifdef INVARIANTS 7307 panic("Huh, how can to_move be larger?"); 7308 #else 7309 SCTP_PRINTF("Huh, how can to_move be larger?\n"); 7310 sp->length = 0; 7311 #endif 7312 } else { 7313 atomic_subtract_int(&sp->length, to_move); 7314 } 7315 if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) { 7316 /* Not enough room for a chunk header, get some */ 7317 struct mbuf *m; 7318 7319 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA); 7320 if (m == NULL) { 7321 /* 7322 * we're in trouble here. _PREPEND below will free 7323 * all the data if there is no leading space, so we 7324 * must put the data back and restore. 7325 */ 7326 if (send_lock_up == 0) { 7327 SCTP_TCB_SEND_LOCK(stcb); 7328 send_lock_up = 1; 7329 } 7330 if (chk->data == NULL) { 7331 /* unsteal the data */ 7332 sp->data = chk->data; 7333 sp->tail_mbuf = chk->last_mbuf; 7334 } else { 7335 struct mbuf *m_tmp; 7336 7337 /* reassemble the data */ 7338 m_tmp = sp->data; 7339 sp->data = chk->data; 7340 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp; 7341 } 7342 sp->some_taken = some_taken; 7343 atomic_add_int(&sp->length, to_move); 7344 chk->data = NULL; 7345 *bail = 1; 7346 sctp_free_a_chunk(stcb, chk, so_locked); 7347 to_move = 0; 7348 goto out_of; 7349 } else { 7350 SCTP_BUF_LEN(m) = 0; 7351 SCTP_BUF_NEXT(m) = chk->data; 7352 chk->data = m; 7353 M_ALIGN(chk->data, 4); 7354 } 7355 } 7356 SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT); 7357 if (chk->data == NULL) { 7358 /* HELP, TSNH since we assured it would not above? */ 7359 #ifdef INVARIANTS 7360 panic("prepend failes HELP?"); 7361 #else 7362 SCTP_PRINTF("prepend fails HELP?\n"); 7363 sctp_free_a_chunk(stcb, chk, so_locked); 7364 #endif 7365 *bail = 1; 7366 to_move = 0; 7367 goto out_of; 7368 } 7369 sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk)); 7370 chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk)); 7371 chk->book_size_scale = 0; 7372 chk->sent = SCTP_DATAGRAM_UNSENT; 7373 7374 chk->flags = 0; 7375 chk->asoc = &stcb->asoc; 7376 chk->pad_inplace = 0; 7377 chk->no_fr_allowed = 0; 7378 chk->rec.data.stream_seq = strq->next_sequence_send; 7379 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7380 strq->next_sequence_send++; 7381 } 7382 chk->rec.data.stream_number = sp->stream; 7383 chk->rec.data.payloadtype = sp->ppid; 7384 chk->rec.data.context = sp->context; 7385 chk->rec.data.doing_fast_retransmit = 0; 7386 7387 chk->rec.data.timetodrop = sp->ts; 7388 chk->flags = sp->act_flags; 7389 7390 if (sp->net) { 7391 chk->whoTo = sp->net; 7392 atomic_add_int(&chk->whoTo->ref_count, 1); 7393 } else 7394 chk->whoTo = NULL; 7395 7396 if (sp->holds_key_ref) { 7397 chk->auth_keyid = sp->auth_keyid; 7398 sctp_auth_key_acquire(stcb, chk->auth_keyid); 7399 chk->holds_key_ref = 1; 7400 } 7401 chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1); 7402 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) { 7403 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND, 7404 (uintptr_t) stcb, sp->length, 7405 (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq), 7406 chk->rec.data.TSN_seq); 7407 } 7408 dchkh = mtod(chk->data, struct sctp_data_chunk *); 7409 /* 7410 * Put the rest of the things in place now. Size was done earlier in 7411 * previous loop prior to padding. 7412 */ 7413 7414 #ifdef SCTP_ASOCLOG_OF_TSNS 7415 SCTP_TCB_LOCK_ASSERT(stcb); 7416 if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) { 7417 asoc->tsn_out_at = 0; 7418 asoc->tsn_out_wrapped = 1; 7419 } 7420 asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq; 7421 asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number; 7422 asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq; 7423 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size; 7424 asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags; 7425 asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb; 7426 asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at; 7427 asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2; 7428 asoc->tsn_out_at++; 7429 #endif 7430 7431 dchkh->ch.chunk_type = SCTP_DATA; 7432 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7433 dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq); 7434 dchkh->dp.stream_id = htons(strq->stream_no); 7435 dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq); 7436 dchkh->dp.protocol_id = chk->rec.data.payloadtype; 7437 dchkh->ch.chunk_length = htons(chk->send_size); 7438 /* Now advance the chk->send_size by the actual pad needed. */ 7439 if (chk->send_size < SCTP_SIZE32(chk->book_size)) { 7440 /* need a pad */ 7441 struct mbuf *lm; 7442 int pads; 7443 7444 pads = SCTP_SIZE32(chk->book_size) - chk->send_size; 7445 if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) { 7446 chk->pad_inplace = 1; 7447 } 7448 if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) { 7449 /* pad added an mbuf */ 7450 chk->last_mbuf = lm; 7451 } 7452 chk->send_size += pads; 7453 } 7454 /* We only re-set the policy if it is on */ 7455 if (sp->pr_sctp_on) { 7456 sctp_set_prsctp_policy(sp); 7457 asoc->pr_sctp_cnt++; 7458 chk->pr_sctp_on = 1; 7459 } else { 7460 chk->pr_sctp_on = 0; 7461 } 7462 if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) { 7463 /* All done pull and kill the message */ 7464 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7465 if (sp->put_last_out == 0) { 7466 SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n"); 7467 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7468 sp->sender_all_done, 7469 sp->length, 7470 sp->msg_is_complete, 7471 sp->put_last_out, 7472 send_lock_up); 7473 } 7474 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) { 7475 SCTP_TCB_SEND_LOCK(stcb); 7476 send_lock_up = 1; 7477 } 7478 TAILQ_REMOVE(&strq->outqueue, sp, next); 7479 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7480 if (sp->net) { 7481 sctp_free_remote_addr(sp->net); 7482 sp->net = NULL; 7483 } 7484 if (sp->data) { 7485 sctp_m_freem(sp->data); 7486 sp->data = NULL; 7487 } 7488 sctp_free_a_strmoq(stcb, sp, so_locked); 7489 7490 /* we can't be locked to it */ 7491 *locked = 0; 7492 stcb->asoc.locked_on_sending = NULL; 7493 } else { 7494 /* more to go, we are locked */ 7495 *locked = 1; 7496 } 7497 asoc->chunks_on_out_queue++; 7498 strq->chunks_on_queues++; 7499 TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next); 7500 asoc->send_queue_cnt++; 7501 out_of: 7502 if (send_lock_up) { 7503 SCTP_TCB_SEND_UNLOCK(stcb); 7504 } 7505 return (to_move); 7506 } 7507 7508 7509 static void 7510 sctp_fill_outqueue(struct sctp_tcb *stcb, 7511 struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked 7512 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7513 SCTP_UNUSED 7514 #endif 7515 ) 7516 { 7517 struct sctp_association *asoc; 7518 struct sctp_stream_out *strq; 7519 int goal_mtu, moved_how_much, total_moved = 0, bail = 0; 7520 int locked, giveup; 7521 7522 SCTP_TCB_LOCK_ASSERT(stcb); 7523 asoc = &stcb->asoc; 7524 switch (net->ro._l_addr.sa.sa_family) { 7525 #ifdef INET 7526 case AF_INET: 7527 goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 7528 break; 7529 #endif 7530 #ifdef INET6 7531 case AF_INET6: 7532 goal_mtu = net->mtu - SCTP_MIN_OVERHEAD; 7533 break; 7534 #endif 7535 default: 7536 /* TSNH */ 7537 goal_mtu = net->mtu; 7538 break; 7539 } 7540 /* Need an allowance for the data chunk header too */ 7541 goal_mtu -= sizeof(struct sctp_data_chunk); 7542 7543 /* must make even word boundary */ 7544 goal_mtu &= 0xfffffffc; 7545 if (asoc->locked_on_sending) { 7546 /* We are stuck on one stream until the message completes. */ 7547 strq = asoc->locked_on_sending; 7548 locked = 1; 7549 } else { 7550 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7551 locked = 0; 7552 } 7553 while ((goal_mtu > 0) && strq) { 7554 giveup = 0; 7555 bail = 0; 7556 moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked, 7557 &giveup, eeor_mode, &bail, so_locked); 7558 if (moved_how_much) 7559 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much); 7560 7561 if (locked) { 7562 asoc->locked_on_sending = strq; 7563 if ((moved_how_much == 0) || (giveup) || bail) 7564 /* no more to move for now */ 7565 break; 7566 } else { 7567 asoc->locked_on_sending = NULL; 7568 if ((giveup) || bail) { 7569 break; 7570 } 7571 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7572 if (strq == NULL) { 7573 break; 7574 } 7575 } 7576 total_moved += moved_how_much; 7577 goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk)); 7578 goal_mtu &= 0xfffffffc; 7579 } 7580 if (bail) 7581 *quit_now = 1; 7582 7583 stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc); 7584 7585 if (total_moved == 0) { 7586 if ((stcb->asoc.sctp_cmt_on_off == 0) && 7587 (net == stcb->asoc.primary_destination)) { 7588 /* ran dry for primary network net */ 7589 SCTP_STAT_INCR(sctps_primary_randry); 7590 } else if (stcb->asoc.sctp_cmt_on_off > 0) { 7591 /* ran dry with CMT on */ 7592 SCTP_STAT_INCR(sctps_cmt_randry); 7593 } 7594 } 7595 } 7596 7597 void 7598 sctp_fix_ecn_echo(struct sctp_association *asoc) 7599 { 7600 struct sctp_tmit_chunk *chk; 7601 7602 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7603 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 7604 chk->sent = SCTP_DATAGRAM_UNSENT; 7605 } 7606 } 7607 } 7608 7609 void 7610 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net) 7611 { 7612 struct sctp_association *asoc; 7613 struct sctp_tmit_chunk *chk; 7614 struct sctp_stream_queue_pending *sp; 7615 unsigned int i; 7616 7617 if (net == NULL) { 7618 return; 7619 } 7620 asoc = &stcb->asoc; 7621 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 7622 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 7623 if (sp->net == net) { 7624 sctp_free_remote_addr(sp->net); 7625 sp->net = NULL; 7626 } 7627 } 7628 } 7629 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7630 if (chk->whoTo == net) { 7631 sctp_free_remote_addr(chk->whoTo); 7632 chk->whoTo = NULL; 7633 } 7634 } 7635 } 7636 7637 int 7638 sctp_med_chunk_output(struct sctp_inpcb *inp, 7639 struct sctp_tcb *stcb, 7640 struct sctp_association *asoc, 7641 int *num_out, 7642 int *reason_code, 7643 int control_only, int from_where, 7644 struct timeval *now, int *now_filled, int frag_point, int so_locked 7645 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7646 SCTP_UNUSED 7647 #endif 7648 ) 7649 { 7650 /* 7651 * Ok this is the generic chunk service queue. we must do the 7652 * following: - Service the stream queue that is next, moving any 7653 * message (note I must get a complete message i.e. FIRST/MIDDLE and 7654 * LAST to the out queue in one pass) and assigning TSN's - Check to 7655 * see if the cwnd/rwnd allows any output, if so we go ahead and 7656 * fomulate and send the low level chunks. Making sure to combine 7657 * any control in the control chunk queue also. 7658 */ 7659 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; 7660 struct mbuf *outchain, *endoutchain; 7661 struct sctp_tmit_chunk *chk, *nchk; 7662 7663 /* temp arrays for unlinking */ 7664 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 7665 int no_fragmentflg, error; 7666 unsigned int max_rwnd_per_dest, max_send_per_dest; 7667 int one_chunk, hbflag, skip_data_for_this_net; 7668 int asconf, cookie, no_out_cnt; 7669 int bundle_at, ctl_cnt, no_data_chunks, eeor_mode; 7670 unsigned int mtu, r_mtu, omtu, mx_mtu, to_out; 7671 int tsns_sent = 0; 7672 uint32_t auth_offset = 0; 7673 struct sctp_auth_chunk *auth = NULL; 7674 uint16_t auth_keyid; 7675 int override_ok = 1; 7676 int skip_fill_up = 0; 7677 int data_auth_reqd = 0; 7678 7679 /* 7680 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the 7681 * destination. 7682 */ 7683 int quit_now = 0; 7684 7685 *num_out = 0; 7686 auth_keyid = stcb->asoc.authinfo.active_keyid; 7687 7688 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) || 7689 (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) || 7690 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 7691 eeor_mode = 1; 7692 } else { 7693 eeor_mode = 0; 7694 } 7695 ctl_cnt = no_out_cnt = asconf = cookie = 0; 7696 /* 7697 * First lets prime the pump. For each destination, if there is room 7698 * in the flight size, attempt to pull an MTU's worth out of the 7699 * stream queues into the general send_queue 7700 */ 7701 #ifdef SCTP_AUDITING_ENABLED 7702 sctp_audit_log(0xC2, 2); 7703 #endif 7704 SCTP_TCB_LOCK_ASSERT(stcb); 7705 hbflag = 0; 7706 if ((control_only) || (asoc->stream_reset_outstanding)) 7707 no_data_chunks = 1; 7708 else 7709 no_data_chunks = 0; 7710 7711 /* Nothing to possible to send? */ 7712 if ((TAILQ_EMPTY(&asoc->control_send_queue) || 7713 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) && 7714 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7715 TAILQ_EMPTY(&asoc->send_queue) && 7716 stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 7717 nothing_to_send: 7718 *reason_code = 9; 7719 return (0); 7720 } 7721 if (asoc->peers_rwnd == 0) { 7722 /* No room in peers rwnd */ 7723 *reason_code = 1; 7724 if (asoc->total_flight > 0) { 7725 /* we are allowed one chunk in flight */ 7726 no_data_chunks = 1; 7727 } 7728 } 7729 if (stcb->asoc.ecn_echo_cnt_onq) { 7730 /* Record where a sack goes, if any */ 7731 if (no_data_chunks && 7732 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) { 7733 /* Nothing but ECNe to send - we don't do that */ 7734 goto nothing_to_send; 7735 } 7736 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7737 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7738 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 7739 sack_goes_to = chk->whoTo; 7740 break; 7741 } 7742 } 7743 } 7744 max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets); 7745 if (stcb->sctp_socket) 7746 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets; 7747 else 7748 max_send_per_dest = 0; 7749 if (no_data_chunks == 0) { 7750 /* How many non-directed chunks are there? */ 7751 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7752 if (chk->whoTo == NULL) { 7753 /* 7754 * We already have non-directed chunks on 7755 * the queue, no need to do a fill-up. 7756 */ 7757 skip_fill_up = 1; 7758 break; 7759 } 7760 } 7761 7762 } 7763 if ((no_data_chunks == 0) && 7764 (skip_fill_up == 0) && 7765 (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) { 7766 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 7767 /* 7768 * This for loop we are in takes in each net, if 7769 * its's got space in cwnd and has data sent to it 7770 * (when CMT is off) then it calls 7771 * sctp_fill_outqueue for the net. This gets data on 7772 * the send queue for that network. 7773 * 7774 * In sctp_fill_outqueue TSN's are assigned and data is 7775 * copied out of the stream buffers. Note mostly 7776 * copy by reference (we hope). 7777 */ 7778 net->window_probe = 0; 7779 if ((net != stcb->asoc.alternate) && 7780 ((net->dest_state & SCTP_ADDR_PF) || 7781 (!(net->dest_state & SCTP_ADDR_REACHABLE)) || 7782 (net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 7783 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7784 sctp_log_cwnd(stcb, net, 1, 7785 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7786 } 7787 continue; 7788 } 7789 if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) && 7790 (net->flight_size == 0)) { 7791 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net); 7792 } 7793 if (net->flight_size >= net->cwnd) { 7794 /* skip this network, no room - can't fill */ 7795 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7796 sctp_log_cwnd(stcb, net, 3, 7797 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7798 } 7799 continue; 7800 } 7801 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7802 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7803 } 7804 sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked); 7805 if (quit_now) { 7806 /* memory alloc failure */ 7807 no_data_chunks = 1; 7808 break; 7809 } 7810 } 7811 } 7812 /* now service each destination and send out what we can for it */ 7813 /* Nothing to send? */ 7814 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7815 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7816 TAILQ_EMPTY(&asoc->send_queue)) { 7817 *reason_code = 8; 7818 return (0); 7819 } 7820 if (asoc->sctp_cmt_on_off > 0) { 7821 /* get the last start point */ 7822 start_at = asoc->last_net_cmt_send_started; 7823 if (start_at == NULL) { 7824 /* null so to beginning */ 7825 start_at = TAILQ_FIRST(&asoc->nets); 7826 } else { 7827 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next); 7828 if (start_at == NULL) { 7829 start_at = TAILQ_FIRST(&asoc->nets); 7830 } 7831 } 7832 asoc->last_net_cmt_send_started = start_at; 7833 } else { 7834 start_at = TAILQ_FIRST(&asoc->nets); 7835 } 7836 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7837 if (chk->whoTo == NULL) { 7838 if (asoc->alternate) { 7839 chk->whoTo = asoc->alternate; 7840 } else { 7841 chk->whoTo = asoc->primary_destination; 7842 } 7843 atomic_add_int(&chk->whoTo->ref_count, 1); 7844 } 7845 } 7846 old_start_at = NULL; 7847 again_one_more_time: 7848 for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) { 7849 /* how much can we send? */ 7850 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */ 7851 if (old_start_at && (old_start_at == net)) { 7852 /* through list ocmpletely. */ 7853 break; 7854 } 7855 tsns_sent = 0xa; 7856 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7857 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7858 (net->flight_size >= net->cwnd)) { 7859 /* 7860 * Nothing on control or asconf and flight is full, 7861 * we can skip even in the CMT case. 7862 */ 7863 continue; 7864 } 7865 bundle_at = 0; 7866 endoutchain = outchain = NULL; 7867 no_fragmentflg = 1; 7868 one_chunk = 0; 7869 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 7870 skip_data_for_this_net = 1; 7871 } else { 7872 skip_data_for_this_net = 0; 7873 } 7874 if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) { 7875 /* 7876 * if we have a route and an ifp check to see if we 7877 * have room to send to this guy 7878 */ 7879 struct ifnet *ifp; 7880 7881 ifp = net->ro.ro_rt->rt_ifp; 7882 if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) { 7883 SCTP_STAT_INCR(sctps_ifnomemqueued); 7884 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 7885 sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED); 7886 } 7887 continue; 7888 } 7889 } 7890 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 7891 #ifdef INET 7892 case AF_INET: 7893 mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr)); 7894 break; 7895 #endif 7896 #ifdef INET6 7897 case AF_INET6: 7898 mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)); 7899 break; 7900 #endif 7901 default: 7902 /* TSNH */ 7903 mtu = net->mtu; 7904 break; 7905 } 7906 mx_mtu = mtu; 7907 to_out = 0; 7908 if (mtu > asoc->peers_rwnd) { 7909 if (asoc->total_flight > 0) { 7910 /* We have a packet in flight somewhere */ 7911 r_mtu = asoc->peers_rwnd; 7912 } else { 7913 /* We are always allowed to send one MTU out */ 7914 one_chunk = 1; 7915 r_mtu = mtu; 7916 } 7917 } else { 7918 r_mtu = mtu; 7919 } 7920 /************************/ 7921 /* ASCONF transmission */ 7922 /************************/ 7923 /* Now first lets go through the asconf queue */ 7924 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 7925 if (chk->rec.chunk_id.id != SCTP_ASCONF) { 7926 continue; 7927 } 7928 if (chk->whoTo == NULL) { 7929 if (asoc->alternate == NULL) { 7930 if (asoc->primary_destination != net) { 7931 break; 7932 } 7933 } else { 7934 if (asoc->alternate != net) { 7935 break; 7936 } 7937 } 7938 } else { 7939 if (chk->whoTo != net) { 7940 break; 7941 } 7942 } 7943 if (chk->data == NULL) { 7944 break; 7945 } 7946 if (chk->sent != SCTP_DATAGRAM_UNSENT && 7947 chk->sent != SCTP_DATAGRAM_RESEND) { 7948 break; 7949 } 7950 /* 7951 * if no AUTH is yet included and this chunk 7952 * requires it, make sure to account for it. We 7953 * don't apply the size until the AUTH chunk is 7954 * actually added below in case there is no room for 7955 * this chunk. NOTE: we overload the use of "omtu" 7956 * here 7957 */ 7958 if ((auth == NULL) && 7959 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 7960 stcb->asoc.peer_auth_chunks)) { 7961 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 7962 } else 7963 omtu = 0; 7964 /* Here we do NOT factor the r_mtu */ 7965 if ((chk->send_size < (int)(mtu - omtu)) || 7966 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 7967 /* 7968 * We probably should glom the mbuf chain 7969 * from the chk->data for control but the 7970 * problem is it becomes yet one more level 7971 * of tracking to do if for some reason 7972 * output fails. Then I have got to 7973 * reconstruct the merged control chain.. el 7974 * yucko.. for now we take the easy way and 7975 * do the copy 7976 */ 7977 /* 7978 * Add an AUTH chunk, if chunk requires it 7979 * save the offset into the chain for AUTH 7980 */ 7981 if ((auth == NULL) && 7982 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 7983 stcb->asoc.peer_auth_chunks))) { 7984 outchain = sctp_add_auth_chunk(outchain, 7985 &endoutchain, 7986 &auth, 7987 &auth_offset, 7988 stcb, 7989 chk->rec.chunk_id.id); 7990 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 7991 } 7992 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 7993 (int)chk->rec.chunk_id.can_take_data, 7994 chk->send_size, chk->copy_by_ref); 7995 if (outchain == NULL) { 7996 *reason_code = 8; 7997 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 7998 return (ENOMEM); 7999 } 8000 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8001 /* update our MTU size */ 8002 if (mtu > (chk->send_size + omtu)) 8003 mtu -= (chk->send_size + omtu); 8004 else 8005 mtu = 0; 8006 to_out += (chk->send_size + omtu); 8007 /* Do clear IP_DF ? */ 8008 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8009 no_fragmentflg = 0; 8010 } 8011 if (chk->rec.chunk_id.can_take_data) 8012 chk->data = NULL; 8013 /* 8014 * set hb flag since we can use these for 8015 * RTO 8016 */ 8017 hbflag = 1; 8018 asconf = 1; 8019 /* 8020 * should sysctl this: don't bundle data 8021 * with ASCONF since it requires AUTH 8022 */ 8023 no_data_chunks = 1; 8024 chk->sent = SCTP_DATAGRAM_SENT; 8025 if (chk->whoTo == NULL) { 8026 chk->whoTo = net; 8027 atomic_add_int(&net->ref_count, 1); 8028 } 8029 chk->snd_count++; 8030 if (mtu == 0) { 8031 /* 8032 * Ok we are out of room but we can 8033 * output without effecting the 8034 * flight size since this little guy 8035 * is a control only packet. 8036 */ 8037 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8038 /* 8039 * do NOT clear the asconf flag as 8040 * it is used to do appropriate 8041 * source address selection. 8042 */ 8043 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8044 (struct sockaddr *)&net->ro._l_addr, 8045 outchain, auth_offset, auth, 8046 stcb->asoc.authinfo.active_keyid, 8047 no_fragmentflg, 0, asconf, 8048 inp->sctp_lport, stcb->rport, 8049 htonl(stcb->asoc.peer_vtag), 8050 net->port, NULL, 8051 0, 0, 8052 so_locked))) { 8053 if (error == ENOBUFS) { 8054 asoc->ifp_had_enobuf = 1; 8055 SCTP_STAT_INCR(sctps_lowlevelerr); 8056 } 8057 if (from_where == 0) { 8058 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8059 } 8060 if (*now_filled == 0) { 8061 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8062 *now_filled = 1; 8063 *now = net->last_sent_time; 8064 } else { 8065 net->last_sent_time = *now; 8066 } 8067 hbflag = 0; 8068 /* error, could not output */ 8069 if (error == EHOSTUNREACH) { 8070 /* 8071 * Destination went 8072 * unreachable 8073 * during this send 8074 */ 8075 sctp_move_chunks_from_net(stcb, net); 8076 } 8077 *reason_code = 7; 8078 continue; 8079 } else 8080 asoc->ifp_had_enobuf = 0; 8081 if (*now_filled == 0) { 8082 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8083 *now_filled = 1; 8084 *now = net->last_sent_time; 8085 } else { 8086 net->last_sent_time = *now; 8087 } 8088 hbflag = 0; 8089 /* 8090 * increase the number we sent, if a 8091 * cookie is sent we don't tell them 8092 * any was sent out. 8093 */ 8094 outchain = endoutchain = NULL; 8095 auth = NULL; 8096 auth_offset = 0; 8097 if (!no_out_cnt) 8098 *num_out += ctl_cnt; 8099 /* recalc a clean slate and setup */ 8100 switch (net->ro._l_addr.sa.sa_family) { 8101 #ifdef INET 8102 case AF_INET: 8103 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8104 break; 8105 #endif 8106 #ifdef INET6 8107 case AF_INET6: 8108 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8109 break; 8110 #endif 8111 default: 8112 /* TSNH */ 8113 mtu = net->mtu; 8114 break; 8115 } 8116 to_out = 0; 8117 no_fragmentflg = 1; 8118 } 8119 } 8120 } 8121 /************************/ 8122 /* Control transmission */ 8123 /************************/ 8124 /* Now first lets go through the control queue */ 8125 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 8126 if ((sack_goes_to) && 8127 (chk->rec.chunk_id.id == SCTP_ECN_ECHO) && 8128 (chk->whoTo != sack_goes_to)) { 8129 /* 8130 * if we have a sack in queue, and we are 8131 * looking at an ecn echo that is NOT queued 8132 * to where the sack is going.. 8133 */ 8134 if (chk->whoTo == net) { 8135 /* 8136 * Don't transmit it to where its 8137 * going (current net) 8138 */ 8139 continue; 8140 } else if (sack_goes_to == net) { 8141 /* 8142 * But do transmit it to this 8143 * address 8144 */ 8145 goto skip_net_check; 8146 } 8147 } 8148 if (chk->whoTo == NULL) { 8149 if (asoc->alternate == NULL) { 8150 if (asoc->primary_destination != net) { 8151 continue; 8152 } 8153 } else { 8154 if (asoc->alternate != net) { 8155 continue; 8156 } 8157 } 8158 } else { 8159 if (chk->whoTo != net) { 8160 continue; 8161 } 8162 } 8163 skip_net_check: 8164 if (chk->data == NULL) { 8165 continue; 8166 } 8167 if (chk->sent != SCTP_DATAGRAM_UNSENT) { 8168 /* 8169 * It must be unsent. Cookies and ASCONF's 8170 * hang around but there timers will force 8171 * when marked for resend. 8172 */ 8173 continue; 8174 } 8175 /* 8176 * if no AUTH is yet included and this chunk 8177 * requires it, make sure to account for it. We 8178 * don't apply the size until the AUTH chunk is 8179 * actually added below in case there is no room for 8180 * this chunk. NOTE: we overload the use of "omtu" 8181 * here 8182 */ 8183 if ((auth == NULL) && 8184 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8185 stcb->asoc.peer_auth_chunks)) { 8186 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8187 } else 8188 omtu = 0; 8189 /* Here we do NOT factor the r_mtu */ 8190 if ((chk->send_size <= (int)(mtu - omtu)) || 8191 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8192 /* 8193 * We probably should glom the mbuf chain 8194 * from the chk->data for control but the 8195 * problem is it becomes yet one more level 8196 * of tracking to do if for some reason 8197 * output fails. Then I have got to 8198 * reconstruct the merged control chain.. el 8199 * yucko.. for now we take the easy way and 8200 * do the copy 8201 */ 8202 /* 8203 * Add an AUTH chunk, if chunk requires it 8204 * save the offset into the chain for AUTH 8205 */ 8206 if ((auth == NULL) && 8207 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8208 stcb->asoc.peer_auth_chunks))) { 8209 outchain = sctp_add_auth_chunk(outchain, 8210 &endoutchain, 8211 &auth, 8212 &auth_offset, 8213 stcb, 8214 chk->rec.chunk_id.id); 8215 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8216 } 8217 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8218 (int)chk->rec.chunk_id.can_take_data, 8219 chk->send_size, chk->copy_by_ref); 8220 if (outchain == NULL) { 8221 *reason_code = 8; 8222 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8223 return (ENOMEM); 8224 } 8225 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8226 /* update our MTU size */ 8227 if (mtu > (chk->send_size + omtu)) 8228 mtu -= (chk->send_size + omtu); 8229 else 8230 mtu = 0; 8231 to_out += (chk->send_size + omtu); 8232 /* Do clear IP_DF ? */ 8233 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8234 no_fragmentflg = 0; 8235 } 8236 if (chk->rec.chunk_id.can_take_data) 8237 chk->data = NULL; 8238 /* Mark things to be removed, if needed */ 8239 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8240 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 8241 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 8242 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 8243 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 8244 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 8245 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 8246 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 8247 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 8248 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 8249 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 8250 if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) { 8251 hbflag = 1; 8252 } 8253 /* remove these chunks at the end */ 8254 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8255 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 8256 /* turn off the timer */ 8257 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 8258 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 8259 inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1); 8260 } 8261 } 8262 ctl_cnt++; 8263 } else { 8264 /* 8265 * Other chunks, since they have 8266 * timers running (i.e. COOKIE) we 8267 * just "trust" that it gets sent or 8268 * retransmitted. 8269 */ 8270 ctl_cnt++; 8271 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 8272 cookie = 1; 8273 no_out_cnt = 1; 8274 } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 8275 /* 8276 * Increment ecne send count 8277 * here this means we may be 8278 * over-zealous in our 8279 * counting if the send 8280 * fails, but its the best 8281 * place to do it (we used 8282 * to do it in the queue of 8283 * the chunk, but that did 8284 * not tell how many times 8285 * it was sent. 8286 */ 8287 SCTP_STAT_INCR(sctps_sendecne); 8288 } 8289 chk->sent = SCTP_DATAGRAM_SENT; 8290 if (chk->whoTo == NULL) { 8291 chk->whoTo = net; 8292 atomic_add_int(&net->ref_count, 1); 8293 } 8294 chk->snd_count++; 8295 } 8296 if (mtu == 0) { 8297 /* 8298 * Ok we are out of room but we can 8299 * output without effecting the 8300 * flight size since this little guy 8301 * is a control only packet. 8302 */ 8303 if (asconf) { 8304 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8305 /* 8306 * do NOT clear the asconf 8307 * flag as it is used to do 8308 * appropriate source 8309 * address selection. 8310 */ 8311 } 8312 if (cookie) { 8313 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8314 cookie = 0; 8315 } 8316 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8317 (struct sockaddr *)&net->ro._l_addr, 8318 outchain, 8319 auth_offset, auth, 8320 stcb->asoc.authinfo.active_keyid, 8321 no_fragmentflg, 0, asconf, 8322 inp->sctp_lport, stcb->rport, 8323 htonl(stcb->asoc.peer_vtag), 8324 net->port, NULL, 8325 0, 0, 8326 so_locked))) { 8327 if (error == ENOBUFS) { 8328 asoc->ifp_had_enobuf = 1; 8329 SCTP_STAT_INCR(sctps_lowlevelerr); 8330 } 8331 if (from_where == 0) { 8332 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8333 } 8334 /* error, could not output */ 8335 if (hbflag) { 8336 if (*now_filled == 0) { 8337 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8338 *now_filled = 1; 8339 *now = net->last_sent_time; 8340 } else { 8341 net->last_sent_time = *now; 8342 } 8343 hbflag = 0; 8344 } 8345 if (error == EHOSTUNREACH) { 8346 /* 8347 * Destination went 8348 * unreachable 8349 * during this send 8350 */ 8351 sctp_move_chunks_from_net(stcb, net); 8352 } 8353 *reason_code = 7; 8354 continue; 8355 } else 8356 asoc->ifp_had_enobuf = 0; 8357 /* Only HB or ASCONF advances time */ 8358 if (hbflag) { 8359 if (*now_filled == 0) { 8360 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8361 *now_filled = 1; 8362 *now = net->last_sent_time; 8363 } else { 8364 net->last_sent_time = *now; 8365 } 8366 hbflag = 0; 8367 } 8368 /* 8369 * increase the number we sent, if a 8370 * cookie is sent we don't tell them 8371 * any was sent out. 8372 */ 8373 outchain = endoutchain = NULL; 8374 auth = NULL; 8375 auth_offset = 0; 8376 if (!no_out_cnt) 8377 *num_out += ctl_cnt; 8378 /* recalc a clean slate and setup */ 8379 switch (net->ro._l_addr.sa.sa_family) { 8380 #ifdef INET 8381 case AF_INET: 8382 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8383 break; 8384 #endif 8385 #ifdef INET6 8386 case AF_INET6: 8387 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8388 break; 8389 #endif 8390 default: 8391 /* TSNH */ 8392 mtu = net->mtu; 8393 break; 8394 } 8395 to_out = 0; 8396 no_fragmentflg = 1; 8397 } 8398 } 8399 } 8400 /* JRI: if dest is in PF state, do not send data to it */ 8401 if ((asoc->sctp_cmt_on_off > 0) && 8402 (net != stcb->asoc.alternate) && 8403 (net->dest_state & SCTP_ADDR_PF)) { 8404 goto no_data_fill; 8405 } 8406 if (net->flight_size >= net->cwnd) { 8407 goto no_data_fill; 8408 } 8409 if ((asoc->sctp_cmt_on_off > 0) && 8410 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) && 8411 (net->flight_size > max_rwnd_per_dest)) { 8412 goto no_data_fill; 8413 } 8414 /* 8415 * We need a specific accounting for the usage of the send 8416 * buffer. We also need to check the number of messages per 8417 * net. For now, this is better than nothing and it disabled 8418 * by default... 8419 */ 8420 if ((asoc->sctp_cmt_on_off > 0) && 8421 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) && 8422 (max_send_per_dest > 0) && 8423 (net->flight_size > max_send_per_dest)) { 8424 goto no_data_fill; 8425 } 8426 /*********************/ 8427 /* Data transmission */ 8428 /*********************/ 8429 /* 8430 * if AUTH for DATA is required and no AUTH has been added 8431 * yet, account for this in the mtu now... if no data can be 8432 * bundled, this adjustment won't matter anyways since the 8433 * packet will be going out... 8434 */ 8435 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, 8436 stcb->asoc.peer_auth_chunks); 8437 if (data_auth_reqd && (auth == NULL)) { 8438 mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8439 } 8440 /* now lets add any data within the MTU constraints */ 8441 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8442 #ifdef INET 8443 case AF_INET: 8444 if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr))) 8445 omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr)); 8446 else 8447 omtu = 0; 8448 break; 8449 #endif 8450 #ifdef INET6 8451 case AF_INET6: 8452 if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr))) 8453 omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)); 8454 else 8455 omtu = 0; 8456 break; 8457 #endif 8458 default: 8459 /* TSNH */ 8460 omtu = 0; 8461 break; 8462 } 8463 if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) && 8464 (skip_data_for_this_net == 0)) || 8465 (cookie)) { 8466 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 8467 if (no_data_chunks) { 8468 /* let only control go out */ 8469 *reason_code = 1; 8470 break; 8471 } 8472 if (net->flight_size >= net->cwnd) { 8473 /* skip this net, no room for data */ 8474 *reason_code = 2; 8475 break; 8476 } 8477 if ((chk->whoTo != NULL) && 8478 (chk->whoTo != net)) { 8479 /* Don't send the chunk on this net */ 8480 continue; 8481 } 8482 if (asoc->sctp_cmt_on_off == 0) { 8483 if ((asoc->alternate) && 8484 (asoc->alternate != net) && 8485 (chk->whoTo == NULL)) { 8486 continue; 8487 } else if ((net != asoc->primary_destination) && 8488 (asoc->alternate == NULL) && 8489 (chk->whoTo == NULL)) { 8490 continue; 8491 } 8492 } 8493 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) { 8494 /*- 8495 * strange, we have a chunk that is 8496 * to big for its destination and 8497 * yet no fragment ok flag. 8498 * Something went wrong when the 8499 * PMTU changed...we did not mark 8500 * this chunk for some reason?? I 8501 * will fix it here by letting IP 8502 * fragment it for now and printing 8503 * a warning. This really should not 8504 * happen ... 8505 */ 8506 SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n", 8507 chk->send_size, mtu); 8508 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 8509 } 8510 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 8511 ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) { 8512 struct sctp_data_chunk *dchkh; 8513 8514 dchkh = mtod(chk->data, struct sctp_data_chunk *); 8515 dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY; 8516 } 8517 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || 8518 ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) { 8519 /* ok we will add this one */ 8520 8521 /* 8522 * Add an AUTH chunk, if chunk 8523 * requires it, save the offset into 8524 * the chain for AUTH 8525 */ 8526 if (data_auth_reqd) { 8527 if (auth == NULL) { 8528 outchain = sctp_add_auth_chunk(outchain, 8529 &endoutchain, 8530 &auth, 8531 &auth_offset, 8532 stcb, 8533 SCTP_DATA); 8534 auth_keyid = chk->auth_keyid; 8535 override_ok = 0; 8536 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8537 } else if (override_ok) { 8538 /* 8539 * use this data's 8540 * keyid 8541 */ 8542 auth_keyid = chk->auth_keyid; 8543 override_ok = 0; 8544 } else if (auth_keyid != chk->auth_keyid) { 8545 /* 8546 * different keyid, 8547 * so done bundling 8548 */ 8549 break; 8550 } 8551 } 8552 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0, 8553 chk->send_size, chk->copy_by_ref); 8554 if (outchain == NULL) { 8555 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n"); 8556 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 8557 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8558 } 8559 *reason_code = 3; 8560 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8561 return (ENOMEM); 8562 } 8563 /* upate our MTU size */ 8564 /* Do clear IP_DF ? */ 8565 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8566 no_fragmentflg = 0; 8567 } 8568 /* unsigned subtraction of mtu */ 8569 if (mtu > chk->send_size) 8570 mtu -= chk->send_size; 8571 else 8572 mtu = 0; 8573 /* unsigned subtraction of r_mtu */ 8574 if (r_mtu > chk->send_size) 8575 r_mtu -= chk->send_size; 8576 else 8577 r_mtu = 0; 8578 8579 to_out += chk->send_size; 8580 if ((to_out > mx_mtu) && no_fragmentflg) { 8581 #ifdef INVARIANTS 8582 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out); 8583 #else 8584 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n", 8585 mx_mtu, to_out); 8586 #endif 8587 } 8588 chk->window_probe = 0; 8589 data_list[bundle_at++] = chk; 8590 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 8591 break; 8592 } 8593 if (chk->sent == SCTP_DATAGRAM_UNSENT) { 8594 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) { 8595 SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks); 8596 } else { 8597 SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks); 8598 } 8599 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) && 8600 ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0)) 8601 /* 8602 * Count number of 8603 * user msg's that 8604 * were fragmented 8605 * we do this by 8606 * counting when we 8607 * see a LAST 8608 * fragment only. 8609 */ 8610 SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs); 8611 } 8612 if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) { 8613 if ((one_chunk) && (stcb->asoc.total_flight == 0)) { 8614 data_list[0]->window_probe = 1; 8615 net->window_probe = 1; 8616 } 8617 break; 8618 } 8619 } else { 8620 /* 8621 * Must be sent in order of the 8622 * TSN's (on a network) 8623 */ 8624 break; 8625 } 8626 } /* for (chunk gather loop for this net) */ 8627 } /* if asoc.state OPEN */ 8628 no_data_fill: 8629 /* Is there something to send for this destination? */ 8630 if (outchain) { 8631 /* We may need to start a control timer or two */ 8632 if (asconf) { 8633 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, 8634 stcb, net); 8635 /* 8636 * do NOT clear the asconf flag as it is 8637 * used to do appropriate source address 8638 * selection. 8639 */ 8640 } 8641 if (cookie) { 8642 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8643 cookie = 0; 8644 } 8645 /* must start a send timer if data is being sent */ 8646 if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) { 8647 /* 8648 * no timer running on this destination 8649 * restart it. 8650 */ 8651 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8652 } 8653 /* Now send it, if there is anything to send :> */ 8654 if ((error = sctp_lowlevel_chunk_output(inp, 8655 stcb, 8656 net, 8657 (struct sockaddr *)&net->ro._l_addr, 8658 outchain, 8659 auth_offset, 8660 auth, 8661 auth_keyid, 8662 no_fragmentflg, 8663 bundle_at, 8664 asconf, 8665 inp->sctp_lport, stcb->rport, 8666 htonl(stcb->asoc.peer_vtag), 8667 net->port, NULL, 8668 0, 0, 8669 so_locked))) { 8670 /* error, we could not output */ 8671 if (error == ENOBUFS) { 8672 SCTP_STAT_INCR(sctps_lowlevelerr); 8673 asoc->ifp_had_enobuf = 1; 8674 } 8675 if (from_where == 0) { 8676 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8677 } 8678 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8679 if (hbflag) { 8680 if (*now_filled == 0) { 8681 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8682 *now_filled = 1; 8683 *now = net->last_sent_time; 8684 } else { 8685 net->last_sent_time = *now; 8686 } 8687 hbflag = 0; 8688 } 8689 if (error == EHOSTUNREACH) { 8690 /* 8691 * Destination went unreachable 8692 * during this send 8693 */ 8694 sctp_move_chunks_from_net(stcb, net); 8695 } 8696 *reason_code = 6; 8697 /*- 8698 * I add this line to be paranoid. As far as 8699 * I can tell the continue, takes us back to 8700 * the top of the for, but just to make sure 8701 * I will reset these again here. 8702 */ 8703 ctl_cnt = bundle_at = 0; 8704 continue; /* This takes us back to the 8705 * for() for the nets. */ 8706 } else { 8707 asoc->ifp_had_enobuf = 0; 8708 } 8709 endoutchain = NULL; 8710 auth = NULL; 8711 auth_offset = 0; 8712 if (bundle_at || hbflag) { 8713 /* For data/asconf and hb set time */ 8714 if (*now_filled == 0) { 8715 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8716 *now_filled = 1; 8717 *now = net->last_sent_time; 8718 } else { 8719 net->last_sent_time = *now; 8720 } 8721 } 8722 if (!no_out_cnt) { 8723 *num_out += (ctl_cnt + bundle_at); 8724 } 8725 if (bundle_at) { 8726 /* setup for a RTO measurement */ 8727 tsns_sent = data_list[0]->rec.data.TSN_seq; 8728 /* fill time if not already filled */ 8729 if (*now_filled == 0) { 8730 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 8731 *now_filled = 1; 8732 *now = asoc->time_last_sent; 8733 } else { 8734 asoc->time_last_sent = *now; 8735 } 8736 if (net->rto_needed) { 8737 data_list[0]->do_rtt = 1; 8738 net->rto_needed = 0; 8739 } 8740 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at); 8741 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net); 8742 } 8743 if (one_chunk) { 8744 break; 8745 } 8746 } 8747 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8748 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND); 8749 } 8750 } 8751 if (old_start_at == NULL) { 8752 old_start_at = start_at; 8753 start_at = TAILQ_FIRST(&asoc->nets); 8754 if (old_start_at) 8755 goto again_one_more_time; 8756 } 8757 /* 8758 * At the end there should be no NON timed chunks hanging on this 8759 * queue. 8760 */ 8761 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8762 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND); 8763 } 8764 if ((*num_out == 0) && (*reason_code == 0)) { 8765 *reason_code = 4; 8766 } else { 8767 *reason_code = 5; 8768 } 8769 sctp_clean_up_ctl(stcb, asoc, so_locked); 8770 return (0); 8771 } 8772 8773 void 8774 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err) 8775 { 8776 /*- 8777 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of 8778 * the control chunk queue. 8779 */ 8780 struct sctp_chunkhdr *hdr; 8781 struct sctp_tmit_chunk *chk; 8782 struct mbuf *mat; 8783 8784 SCTP_TCB_LOCK_ASSERT(stcb); 8785 sctp_alloc_a_chunk(stcb, chk); 8786 if (chk == NULL) { 8787 /* no memory */ 8788 sctp_m_freem(op_err); 8789 return; 8790 } 8791 chk->copy_by_ref = 0; 8792 SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT); 8793 if (op_err == NULL) { 8794 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 8795 return; 8796 } 8797 chk->send_size = 0; 8798 mat = op_err; 8799 while (mat != NULL) { 8800 chk->send_size += SCTP_BUF_LEN(mat); 8801 mat = SCTP_BUF_NEXT(mat); 8802 } 8803 chk->rec.chunk_id.id = SCTP_OPERATION_ERROR; 8804 chk->rec.chunk_id.can_take_data = 1; 8805 chk->sent = SCTP_DATAGRAM_UNSENT; 8806 chk->snd_count = 0; 8807 chk->flags = 0; 8808 chk->asoc = &stcb->asoc; 8809 chk->data = op_err; 8810 chk->whoTo = NULL; 8811 hdr = mtod(op_err, struct sctp_chunkhdr *); 8812 hdr->chunk_type = SCTP_OPERATION_ERROR; 8813 hdr->chunk_flags = 0; 8814 hdr->chunk_length = htons(chk->send_size); 8815 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, 8816 chk, 8817 sctp_next); 8818 chk->asoc->ctrl_queue_cnt++; 8819 } 8820 8821 int 8822 sctp_send_cookie_echo(struct mbuf *m, 8823 int offset, 8824 struct sctp_tcb *stcb, 8825 struct sctp_nets *net) 8826 { 8827 /*- 8828 * pull out the cookie and put it at the front of the control chunk 8829 * queue. 8830 */ 8831 int at; 8832 struct mbuf *cookie; 8833 struct sctp_paramhdr parm, *phdr; 8834 struct sctp_chunkhdr *hdr; 8835 struct sctp_tmit_chunk *chk; 8836 uint16_t ptype, plen; 8837 8838 /* First find the cookie in the param area */ 8839 cookie = NULL; 8840 at = offset + sizeof(struct sctp_init_chunk); 8841 8842 SCTP_TCB_LOCK_ASSERT(stcb); 8843 do { 8844 phdr = sctp_get_next_param(m, at, &parm, sizeof(parm)); 8845 if (phdr == NULL) { 8846 return (-3); 8847 } 8848 ptype = ntohs(phdr->param_type); 8849 plen = ntohs(phdr->param_length); 8850 if (ptype == SCTP_STATE_COOKIE) { 8851 int pad; 8852 8853 /* found the cookie */ 8854 if ((pad = (plen % 4))) { 8855 plen += 4 - pad; 8856 } 8857 cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT); 8858 if (cookie == NULL) { 8859 /* No memory */ 8860 return (-2); 8861 } 8862 #ifdef SCTP_MBUF_LOGGING 8863 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 8864 struct mbuf *mat; 8865 8866 for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) { 8867 if (SCTP_BUF_IS_EXTENDED(mat)) { 8868 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 8869 } 8870 } 8871 } 8872 #endif 8873 break; 8874 } 8875 at += SCTP_SIZE32(plen); 8876 } while (phdr); 8877 if (cookie == NULL) { 8878 /* Did not find the cookie */ 8879 return (-3); 8880 } 8881 /* ok, we got the cookie lets change it into a cookie echo chunk */ 8882 8883 /* first the change from param to cookie */ 8884 hdr = mtod(cookie, struct sctp_chunkhdr *); 8885 hdr->chunk_type = SCTP_COOKIE_ECHO; 8886 hdr->chunk_flags = 0; 8887 /* get the chunk stuff now and place it in the FRONT of the queue */ 8888 sctp_alloc_a_chunk(stcb, chk); 8889 if (chk == NULL) { 8890 /* no memory */ 8891 sctp_m_freem(cookie); 8892 return (-5); 8893 } 8894 chk->copy_by_ref = 0; 8895 chk->send_size = plen; 8896 chk->rec.chunk_id.id = SCTP_COOKIE_ECHO; 8897 chk->rec.chunk_id.can_take_data = 0; 8898 chk->sent = SCTP_DATAGRAM_UNSENT; 8899 chk->snd_count = 0; 8900 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 8901 chk->asoc = &stcb->asoc; 8902 chk->data = cookie; 8903 chk->whoTo = net; 8904 atomic_add_int(&chk->whoTo->ref_count, 1); 8905 TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next); 8906 chk->asoc->ctrl_queue_cnt++; 8907 return (0); 8908 } 8909 8910 void 8911 sctp_send_heartbeat_ack(struct sctp_tcb *stcb, 8912 struct mbuf *m, 8913 int offset, 8914 int chk_length, 8915 struct sctp_nets *net) 8916 { 8917 /* 8918 * take a HB request and make it into a HB ack and send it. 8919 */ 8920 struct mbuf *outchain; 8921 struct sctp_chunkhdr *chdr; 8922 struct sctp_tmit_chunk *chk; 8923 8924 8925 if (net == NULL) 8926 /* must have a net pointer */ 8927 return; 8928 8929 outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT); 8930 if (outchain == NULL) { 8931 /* gak out of memory */ 8932 return; 8933 } 8934 #ifdef SCTP_MBUF_LOGGING 8935 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 8936 struct mbuf *mat; 8937 8938 for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) { 8939 if (SCTP_BUF_IS_EXTENDED(mat)) { 8940 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 8941 } 8942 } 8943 } 8944 #endif 8945 chdr = mtod(outchain, struct sctp_chunkhdr *); 8946 chdr->chunk_type = SCTP_HEARTBEAT_ACK; 8947 chdr->chunk_flags = 0; 8948 if (chk_length % 4) { 8949 /* need pad */ 8950 uint32_t cpthis = 0; 8951 int padlen; 8952 8953 padlen = 4 - (chk_length % 4); 8954 m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis); 8955 } 8956 sctp_alloc_a_chunk(stcb, chk); 8957 if (chk == NULL) { 8958 /* no memory */ 8959 sctp_m_freem(outchain); 8960 return; 8961 } 8962 chk->copy_by_ref = 0; 8963 chk->send_size = chk_length; 8964 chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK; 8965 chk->rec.chunk_id.can_take_data = 1; 8966 chk->sent = SCTP_DATAGRAM_UNSENT; 8967 chk->snd_count = 0; 8968 chk->flags = 0; 8969 chk->asoc = &stcb->asoc; 8970 chk->data = outchain; 8971 chk->whoTo = net; 8972 atomic_add_int(&chk->whoTo->ref_count, 1); 8973 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 8974 chk->asoc->ctrl_queue_cnt++; 8975 } 8976 8977 void 8978 sctp_send_cookie_ack(struct sctp_tcb *stcb) 8979 { 8980 /* formulate and queue a cookie-ack back to sender */ 8981 struct mbuf *cookie_ack; 8982 struct sctp_chunkhdr *hdr; 8983 struct sctp_tmit_chunk *chk; 8984 8985 cookie_ack = NULL; 8986 SCTP_TCB_LOCK_ASSERT(stcb); 8987 8988 cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 8989 if (cookie_ack == NULL) { 8990 /* no mbuf's */ 8991 return; 8992 } 8993 SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD); 8994 sctp_alloc_a_chunk(stcb, chk); 8995 if (chk == NULL) { 8996 /* no memory */ 8997 sctp_m_freem(cookie_ack); 8998 return; 8999 } 9000 chk->copy_by_ref = 0; 9001 chk->send_size = sizeof(struct sctp_chunkhdr); 9002 chk->rec.chunk_id.id = SCTP_COOKIE_ACK; 9003 chk->rec.chunk_id.can_take_data = 1; 9004 chk->sent = SCTP_DATAGRAM_UNSENT; 9005 chk->snd_count = 0; 9006 chk->flags = 0; 9007 chk->asoc = &stcb->asoc; 9008 chk->data = cookie_ack; 9009 if (chk->asoc->last_control_chunk_from != NULL) { 9010 chk->whoTo = chk->asoc->last_control_chunk_from; 9011 atomic_add_int(&chk->whoTo->ref_count, 1); 9012 } else { 9013 chk->whoTo = NULL; 9014 } 9015 hdr = mtod(cookie_ack, struct sctp_chunkhdr *); 9016 hdr->chunk_type = SCTP_COOKIE_ACK; 9017 hdr->chunk_flags = 0; 9018 hdr->chunk_length = htons(chk->send_size); 9019 SCTP_BUF_LEN(cookie_ack) = chk->send_size; 9020 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9021 chk->asoc->ctrl_queue_cnt++; 9022 return; 9023 } 9024 9025 9026 void 9027 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net) 9028 { 9029 /* formulate and queue a SHUTDOWN-ACK back to the sender */ 9030 struct mbuf *m_shutdown_ack; 9031 struct sctp_shutdown_ack_chunk *ack_cp; 9032 struct sctp_tmit_chunk *chk; 9033 9034 m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9035 if (m_shutdown_ack == NULL) { 9036 /* no mbuf's */ 9037 return; 9038 } 9039 SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD); 9040 sctp_alloc_a_chunk(stcb, chk); 9041 if (chk == NULL) { 9042 /* no memory */ 9043 sctp_m_freem(m_shutdown_ack); 9044 return; 9045 } 9046 chk->copy_by_ref = 0; 9047 chk->send_size = sizeof(struct sctp_chunkhdr); 9048 chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK; 9049 chk->rec.chunk_id.can_take_data = 1; 9050 chk->sent = SCTP_DATAGRAM_UNSENT; 9051 chk->snd_count = 0; 9052 chk->flags = 0; 9053 chk->asoc = &stcb->asoc; 9054 chk->data = m_shutdown_ack; 9055 chk->whoTo = net; 9056 if (chk->whoTo) { 9057 atomic_add_int(&chk->whoTo->ref_count, 1); 9058 } 9059 ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *); 9060 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK; 9061 ack_cp->ch.chunk_flags = 0; 9062 ack_cp->ch.chunk_length = htons(chk->send_size); 9063 SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size; 9064 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9065 chk->asoc->ctrl_queue_cnt++; 9066 return; 9067 } 9068 9069 void 9070 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net) 9071 { 9072 /* formulate and queue a SHUTDOWN to the sender */ 9073 struct mbuf *m_shutdown; 9074 struct sctp_shutdown_chunk *shutdown_cp; 9075 struct sctp_tmit_chunk *chk; 9076 9077 m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9078 if (m_shutdown == NULL) { 9079 /* no mbuf's */ 9080 return; 9081 } 9082 SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD); 9083 sctp_alloc_a_chunk(stcb, chk); 9084 if (chk == NULL) { 9085 /* no memory */ 9086 sctp_m_freem(m_shutdown); 9087 return; 9088 } 9089 chk->copy_by_ref = 0; 9090 chk->send_size = sizeof(struct sctp_shutdown_chunk); 9091 chk->rec.chunk_id.id = SCTP_SHUTDOWN; 9092 chk->rec.chunk_id.can_take_data = 1; 9093 chk->sent = SCTP_DATAGRAM_UNSENT; 9094 chk->snd_count = 0; 9095 chk->flags = 0; 9096 chk->asoc = &stcb->asoc; 9097 chk->data = m_shutdown; 9098 chk->whoTo = net; 9099 if (chk->whoTo) { 9100 atomic_add_int(&chk->whoTo->ref_count, 1); 9101 } 9102 shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *); 9103 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN; 9104 shutdown_cp->ch.chunk_flags = 0; 9105 shutdown_cp->ch.chunk_length = htons(chk->send_size); 9106 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9107 SCTP_BUF_LEN(m_shutdown) = chk->send_size; 9108 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9109 chk->asoc->ctrl_queue_cnt++; 9110 return; 9111 } 9112 9113 void 9114 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked) 9115 { 9116 /* 9117 * formulate and queue an ASCONF to the peer. ASCONF parameters 9118 * should be queued on the assoc queue. 9119 */ 9120 struct sctp_tmit_chunk *chk; 9121 struct mbuf *m_asconf; 9122 int len; 9123 9124 SCTP_TCB_LOCK_ASSERT(stcb); 9125 9126 if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) && 9127 (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) { 9128 /* can't send a new one if there is one in flight already */ 9129 return; 9130 } 9131 /* compose an ASCONF chunk, maximum length is PMTU */ 9132 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked); 9133 if (m_asconf == NULL) { 9134 return; 9135 } 9136 sctp_alloc_a_chunk(stcb, chk); 9137 if (chk == NULL) { 9138 /* no memory */ 9139 sctp_m_freem(m_asconf); 9140 return; 9141 } 9142 chk->copy_by_ref = 0; 9143 chk->data = m_asconf; 9144 chk->send_size = len; 9145 chk->rec.chunk_id.id = SCTP_ASCONF; 9146 chk->rec.chunk_id.can_take_data = 0; 9147 chk->sent = SCTP_DATAGRAM_UNSENT; 9148 chk->snd_count = 0; 9149 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9150 chk->asoc = &stcb->asoc; 9151 chk->whoTo = net; 9152 if (chk->whoTo) { 9153 atomic_add_int(&chk->whoTo->ref_count, 1); 9154 } 9155 TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next); 9156 chk->asoc->ctrl_queue_cnt++; 9157 return; 9158 } 9159 9160 void 9161 sctp_send_asconf_ack(struct sctp_tcb *stcb) 9162 { 9163 /* 9164 * formulate and queue a asconf-ack back to sender. the asconf-ack 9165 * must be stored in the tcb. 9166 */ 9167 struct sctp_tmit_chunk *chk; 9168 struct sctp_asconf_ack *ack, *latest_ack; 9169 struct mbuf *m_ack; 9170 struct sctp_nets *net = NULL; 9171 9172 SCTP_TCB_LOCK_ASSERT(stcb); 9173 /* Get the latest ASCONF-ACK */ 9174 latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead); 9175 if (latest_ack == NULL) { 9176 return; 9177 } 9178 if (latest_ack->last_sent_to != NULL && 9179 latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) { 9180 /* we're doing a retransmission */ 9181 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0); 9182 if (net == NULL) { 9183 /* no alternate */ 9184 if (stcb->asoc.last_control_chunk_from == NULL) { 9185 if (stcb->asoc.alternate) { 9186 net = stcb->asoc.alternate; 9187 } else { 9188 net = stcb->asoc.primary_destination; 9189 } 9190 } else { 9191 net = stcb->asoc.last_control_chunk_from; 9192 } 9193 } 9194 } else { 9195 /* normal case */ 9196 if (stcb->asoc.last_control_chunk_from == NULL) { 9197 if (stcb->asoc.alternate) { 9198 net = stcb->asoc.alternate; 9199 } else { 9200 net = stcb->asoc.primary_destination; 9201 } 9202 } else { 9203 net = stcb->asoc.last_control_chunk_from; 9204 } 9205 } 9206 latest_ack->last_sent_to = net; 9207 9208 TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) { 9209 if (ack->data == NULL) { 9210 continue; 9211 } 9212 /* copy the asconf_ack */ 9213 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT); 9214 if (m_ack == NULL) { 9215 /* couldn't copy it */ 9216 return; 9217 } 9218 #ifdef SCTP_MBUF_LOGGING 9219 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9220 struct mbuf *mat; 9221 9222 for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) { 9223 if (SCTP_BUF_IS_EXTENDED(mat)) { 9224 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 9225 } 9226 } 9227 } 9228 #endif 9229 9230 sctp_alloc_a_chunk(stcb, chk); 9231 if (chk == NULL) { 9232 /* no memory */ 9233 if (m_ack) 9234 sctp_m_freem(m_ack); 9235 return; 9236 } 9237 chk->copy_by_ref = 0; 9238 9239 chk->whoTo = net; 9240 if (chk->whoTo) { 9241 atomic_add_int(&chk->whoTo->ref_count, 1); 9242 } 9243 chk->data = m_ack; 9244 chk->send_size = 0; 9245 /* Get size */ 9246 chk->send_size = ack->len; 9247 chk->rec.chunk_id.id = SCTP_ASCONF_ACK; 9248 chk->rec.chunk_id.can_take_data = 1; 9249 chk->sent = SCTP_DATAGRAM_UNSENT; 9250 chk->snd_count = 0; 9251 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; /* XXX */ 9252 chk->asoc = &stcb->asoc; 9253 9254 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9255 chk->asoc->ctrl_queue_cnt++; 9256 } 9257 return; 9258 } 9259 9260 9261 static int 9262 sctp_chunk_retransmission(struct sctp_inpcb *inp, 9263 struct sctp_tcb *stcb, 9264 struct sctp_association *asoc, 9265 int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked 9266 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9267 SCTP_UNUSED 9268 #endif 9269 ) 9270 { 9271 /*- 9272 * send out one MTU of retransmission. If fast_retransmit is 9273 * happening we ignore the cwnd. Otherwise we obey the cwnd and 9274 * rwnd. For a Cookie or Asconf in the control chunk queue we 9275 * retransmit them by themselves. 9276 * 9277 * For data chunks we will pick out the lowest TSN's in the sent_queue 9278 * marked for resend and bundle them all together (up to a MTU of 9279 * destination). The address to send to should have been 9280 * selected/changed where the retransmission was marked (i.e. in FR 9281 * or t3-timeout routines). 9282 */ 9283 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 9284 struct sctp_tmit_chunk *chk, *fwd; 9285 struct mbuf *m, *endofchain; 9286 struct sctp_nets *net = NULL; 9287 uint32_t tsns_sent = 0; 9288 int no_fragmentflg, bundle_at, cnt_thru; 9289 unsigned int mtu; 9290 int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started; 9291 struct sctp_auth_chunk *auth = NULL; 9292 uint32_t auth_offset = 0; 9293 uint16_t auth_keyid; 9294 int override_ok = 1; 9295 int data_auth_reqd = 0; 9296 uint32_t dmtu = 0; 9297 9298 SCTP_TCB_LOCK_ASSERT(stcb); 9299 tmr_started = ctl_cnt = bundle_at = error = 0; 9300 no_fragmentflg = 1; 9301 fwd_tsn = 0; 9302 *cnt_out = 0; 9303 fwd = NULL; 9304 endofchain = m = NULL; 9305 auth_keyid = stcb->asoc.authinfo.active_keyid; 9306 #ifdef SCTP_AUDITING_ENABLED 9307 sctp_audit_log(0xC3, 1); 9308 #endif 9309 if ((TAILQ_EMPTY(&asoc->sent_queue)) && 9310 (TAILQ_EMPTY(&asoc->control_send_queue))) { 9311 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n", 9312 asoc->sent_queue_retran_cnt); 9313 asoc->sent_queue_cnt = 0; 9314 asoc->sent_queue_cnt_removeable = 0; 9315 /* send back 0/0 so we enter normal transmission */ 9316 *cnt_out = 0; 9317 return (0); 9318 } 9319 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 9320 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) || 9321 (chk->rec.chunk_id.id == SCTP_STREAM_RESET) || 9322 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) { 9323 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9324 continue; 9325 } 9326 if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 9327 if (chk != asoc->str_reset) { 9328 /* 9329 * not eligible for retran if its 9330 * not ours 9331 */ 9332 continue; 9333 } 9334 } 9335 ctl_cnt++; 9336 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 9337 fwd_tsn = 1; 9338 } 9339 /* 9340 * Add an AUTH chunk, if chunk requires it save the 9341 * offset into the chain for AUTH 9342 */ 9343 if ((auth == NULL) && 9344 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 9345 stcb->asoc.peer_auth_chunks))) { 9346 m = sctp_add_auth_chunk(m, &endofchain, 9347 &auth, &auth_offset, 9348 stcb, 9349 chk->rec.chunk_id.id); 9350 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9351 } 9352 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9353 break; 9354 } 9355 } 9356 one_chunk = 0; 9357 cnt_thru = 0; 9358 /* do we have control chunks to retransmit? */ 9359 if (m != NULL) { 9360 /* Start a timer no matter if we suceed or fail */ 9361 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 9362 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo); 9363 } else if (chk->rec.chunk_id.id == SCTP_ASCONF) 9364 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo); 9365 chk->snd_count++; /* update our count */ 9366 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo, 9367 (struct sockaddr *)&chk->whoTo->ro._l_addr, m, 9368 auth_offset, auth, stcb->asoc.authinfo.active_keyid, 9369 no_fragmentflg, 0, 0, 9370 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9371 chk->whoTo->port, NULL, 9372 0, 0, 9373 so_locked))) { 9374 SCTP_STAT_INCR(sctps_lowlevelerr); 9375 return (error); 9376 } 9377 endofchain = NULL; 9378 auth = NULL; 9379 auth_offset = 0; 9380 /* 9381 * We don't want to mark the net->sent time here since this 9382 * we use this for HB and retrans cannot measure RTT 9383 */ 9384 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */ 9385 *cnt_out += 1; 9386 chk->sent = SCTP_DATAGRAM_SENT; 9387 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt); 9388 if (fwd_tsn == 0) { 9389 return (0); 9390 } else { 9391 /* Clean up the fwd-tsn list */ 9392 sctp_clean_up_ctl(stcb, asoc, so_locked); 9393 return (0); 9394 } 9395 } 9396 /* 9397 * Ok, it is just data retransmission we need to do or that and a 9398 * fwd-tsn with it all. 9399 */ 9400 if (TAILQ_EMPTY(&asoc->sent_queue)) { 9401 return (SCTP_RETRAN_DONE); 9402 } 9403 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) || 9404 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) { 9405 /* not yet open, resend the cookie and that is it */ 9406 return (1); 9407 } 9408 #ifdef SCTP_AUDITING_ENABLED 9409 sctp_auditing(20, inp, stcb, NULL); 9410 #endif 9411 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks); 9412 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 9413 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9414 /* No, not sent to this net or not ready for rtx */ 9415 continue; 9416 } 9417 if (chk->data == NULL) { 9418 SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n", 9419 chk->rec.data.TSN_seq, chk->snd_count, chk->sent); 9420 continue; 9421 } 9422 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) && 9423 (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) { 9424 /* Gak, we have exceeded max unlucky retran, abort! */ 9425 SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n", 9426 chk->snd_count, 9427 SCTP_BASE_SYSCTL(sctp_max_retran_chunk)); 9428 atomic_add_int(&stcb->asoc.refcnt, 1); 9429 sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked); 9430 SCTP_TCB_LOCK(stcb); 9431 atomic_subtract_int(&stcb->asoc.refcnt, 1); 9432 return (SCTP_RETRAN_EXIT); 9433 } 9434 /* pick up the net */ 9435 net = chk->whoTo; 9436 switch (net->ro._l_addr.sa.sa_family) { 9437 #ifdef INET 9438 case AF_INET: 9439 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 9440 break; 9441 #endif 9442 #ifdef INET6 9443 case AF_INET6: 9444 mtu = net->mtu - SCTP_MIN_OVERHEAD; 9445 break; 9446 #endif 9447 default: 9448 /* TSNH */ 9449 mtu = net->mtu; 9450 break; 9451 } 9452 9453 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) { 9454 /* No room in peers rwnd */ 9455 uint32_t tsn; 9456 9457 tsn = asoc->last_acked_seq + 1; 9458 if (tsn == chk->rec.data.TSN_seq) { 9459 /* 9460 * we make a special exception for this 9461 * case. The peer has no rwnd but is missing 9462 * the lowest chunk.. which is probably what 9463 * is holding up the rwnd. 9464 */ 9465 goto one_chunk_around; 9466 } 9467 return (1); 9468 } 9469 one_chunk_around: 9470 if (asoc->peers_rwnd < mtu) { 9471 one_chunk = 1; 9472 if ((asoc->peers_rwnd == 0) && 9473 (asoc->total_flight == 0)) { 9474 chk->window_probe = 1; 9475 chk->whoTo->window_probe = 1; 9476 } 9477 } 9478 #ifdef SCTP_AUDITING_ENABLED 9479 sctp_audit_log(0xC3, 2); 9480 #endif 9481 bundle_at = 0; 9482 m = NULL; 9483 net->fast_retran_ip = 0; 9484 if (chk->rec.data.doing_fast_retransmit == 0) { 9485 /* 9486 * if no FR in progress skip destination that have 9487 * flight_size > cwnd. 9488 */ 9489 if (net->flight_size >= net->cwnd) { 9490 continue; 9491 } 9492 } else { 9493 /* 9494 * Mark the destination net to have FR recovery 9495 * limits put on it. 9496 */ 9497 *fr_done = 1; 9498 net->fast_retran_ip = 1; 9499 } 9500 9501 /* 9502 * if no AUTH is yet included and this chunk requires it, 9503 * make sure to account for it. We don't apply the size 9504 * until the AUTH chunk is actually added below in case 9505 * there is no room for this chunk. 9506 */ 9507 if (data_auth_reqd && (auth == NULL)) { 9508 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9509 } else 9510 dmtu = 0; 9511 9512 if ((chk->send_size <= (mtu - dmtu)) || 9513 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 9514 /* ok we will add this one */ 9515 if (data_auth_reqd) { 9516 if (auth == NULL) { 9517 m = sctp_add_auth_chunk(m, 9518 &endofchain, 9519 &auth, 9520 &auth_offset, 9521 stcb, 9522 SCTP_DATA); 9523 auth_keyid = chk->auth_keyid; 9524 override_ok = 0; 9525 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9526 } else if (override_ok) { 9527 auth_keyid = chk->auth_keyid; 9528 override_ok = 0; 9529 } else if (chk->auth_keyid != auth_keyid) { 9530 /* different keyid, so done bundling */ 9531 break; 9532 } 9533 } 9534 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9535 if (m == NULL) { 9536 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9537 return (ENOMEM); 9538 } 9539 /* Do clear IP_DF ? */ 9540 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9541 no_fragmentflg = 0; 9542 } 9543 /* upate our MTU size */ 9544 if (mtu > (chk->send_size + dmtu)) 9545 mtu -= (chk->send_size + dmtu); 9546 else 9547 mtu = 0; 9548 data_list[bundle_at++] = chk; 9549 if (one_chunk && (asoc->total_flight <= 0)) { 9550 SCTP_STAT_INCR(sctps_windowprobed); 9551 } 9552 } 9553 if (one_chunk == 0) { 9554 /* 9555 * now are there anymore forward from chk to pick 9556 * up? 9557 */ 9558 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) { 9559 if (fwd->sent != SCTP_DATAGRAM_RESEND) { 9560 /* Nope, not for retran */ 9561 continue; 9562 } 9563 if (fwd->whoTo != net) { 9564 /* Nope, not the net in question */ 9565 continue; 9566 } 9567 if (data_auth_reqd && (auth == NULL)) { 9568 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9569 } else 9570 dmtu = 0; 9571 if (fwd->send_size <= (mtu - dmtu)) { 9572 if (data_auth_reqd) { 9573 if (auth == NULL) { 9574 m = sctp_add_auth_chunk(m, 9575 &endofchain, 9576 &auth, 9577 &auth_offset, 9578 stcb, 9579 SCTP_DATA); 9580 auth_keyid = fwd->auth_keyid; 9581 override_ok = 0; 9582 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9583 } else if (override_ok) { 9584 auth_keyid = fwd->auth_keyid; 9585 override_ok = 0; 9586 } else if (fwd->auth_keyid != auth_keyid) { 9587 /* 9588 * different keyid, 9589 * so done bundling 9590 */ 9591 break; 9592 } 9593 } 9594 m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref); 9595 if (m == NULL) { 9596 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9597 return (ENOMEM); 9598 } 9599 /* Do clear IP_DF ? */ 9600 if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9601 no_fragmentflg = 0; 9602 } 9603 /* upate our MTU size */ 9604 if (mtu > (fwd->send_size + dmtu)) 9605 mtu -= (fwd->send_size + dmtu); 9606 else 9607 mtu = 0; 9608 data_list[bundle_at++] = fwd; 9609 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 9610 break; 9611 } 9612 } else { 9613 /* can't fit so we are done */ 9614 break; 9615 } 9616 } 9617 } 9618 /* Is there something to send for this destination? */ 9619 if (m) { 9620 /* 9621 * No matter if we fail/or suceed we should start a 9622 * timer. A failure is like a lost IP packet :-) 9623 */ 9624 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9625 /* 9626 * no timer running on this destination 9627 * restart it. 9628 */ 9629 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9630 tmr_started = 1; 9631 } 9632 /* Now lets send it, if there is anything to send :> */ 9633 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 9634 (struct sockaddr *)&net->ro._l_addr, m, 9635 auth_offset, auth, auth_keyid, 9636 no_fragmentflg, 0, 0, 9637 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9638 net->port, NULL, 9639 0, 0, 9640 so_locked))) { 9641 /* error, we could not output */ 9642 SCTP_STAT_INCR(sctps_lowlevelerr); 9643 return (error); 9644 } 9645 endofchain = NULL; 9646 auth = NULL; 9647 auth_offset = 0; 9648 /* For HB's */ 9649 /* 9650 * We don't want to mark the net->sent time here 9651 * since this we use this for HB and retrans cannot 9652 * measure RTT 9653 */ 9654 /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */ 9655 9656 /* For auto-close */ 9657 cnt_thru++; 9658 if (*now_filled == 0) { 9659 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 9660 *now = asoc->time_last_sent; 9661 *now_filled = 1; 9662 } else { 9663 asoc->time_last_sent = *now; 9664 } 9665 *cnt_out += bundle_at; 9666 #ifdef SCTP_AUDITING_ENABLED 9667 sctp_audit_log(0xC4, bundle_at); 9668 #endif 9669 if (bundle_at) { 9670 tsns_sent = data_list[0]->rec.data.TSN_seq; 9671 } 9672 for (i = 0; i < bundle_at; i++) { 9673 SCTP_STAT_INCR(sctps_sendretransdata); 9674 data_list[i]->sent = SCTP_DATAGRAM_SENT; 9675 /* 9676 * When we have a revoked data, and we 9677 * retransmit it, then we clear the revoked 9678 * flag since this flag dictates if we 9679 * subtracted from the fs 9680 */ 9681 if (data_list[i]->rec.data.chunk_was_revoked) { 9682 /* Deflate the cwnd */ 9683 data_list[i]->whoTo->cwnd -= data_list[i]->book_size; 9684 data_list[i]->rec.data.chunk_was_revoked = 0; 9685 } 9686 data_list[i]->snd_count++; 9687 sctp_ucount_decr(asoc->sent_queue_retran_cnt); 9688 /* record the time */ 9689 data_list[i]->sent_rcv_time = asoc->time_last_sent; 9690 if (data_list[i]->book_size_scale) { 9691 /* 9692 * need to double the book size on 9693 * this one 9694 */ 9695 data_list[i]->book_size_scale = 0; 9696 /* 9697 * Since we double the booksize, we 9698 * must also double the output queue 9699 * size, since this get shrunk when 9700 * we free by this amount. 9701 */ 9702 atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size); 9703 data_list[i]->book_size *= 2; 9704 9705 9706 } else { 9707 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 9708 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 9709 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 9710 } 9711 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 9712 (uint32_t) (data_list[i]->send_size + 9713 SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 9714 } 9715 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 9716 sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND, 9717 data_list[i]->whoTo->flight_size, 9718 data_list[i]->book_size, 9719 (uintptr_t) data_list[i]->whoTo, 9720 data_list[i]->rec.data.TSN_seq); 9721 } 9722 sctp_flight_size_increase(data_list[i]); 9723 sctp_total_flight_increase(stcb, data_list[i]); 9724 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 9725 /* SWS sender side engages */ 9726 asoc->peers_rwnd = 0; 9727 } 9728 if ((i == 0) && 9729 (data_list[i]->rec.data.doing_fast_retransmit)) { 9730 SCTP_STAT_INCR(sctps_sendfastretrans); 9731 if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) && 9732 (tmr_started == 0)) { 9733 /*- 9734 * ok we just fast-retrans'd 9735 * the lowest TSN, i.e the 9736 * first on the list. In 9737 * this case we want to give 9738 * some more time to get a 9739 * SACK back without a 9740 * t3-expiring. 9741 */ 9742 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net, 9743 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4); 9744 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9745 } 9746 } 9747 } 9748 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9749 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND); 9750 } 9751 #ifdef SCTP_AUDITING_ENABLED 9752 sctp_auditing(21, inp, stcb, NULL); 9753 #endif 9754 } else { 9755 /* None will fit */ 9756 return (1); 9757 } 9758 if (asoc->sent_queue_retran_cnt <= 0) { 9759 /* all done we have no more to retran */ 9760 asoc->sent_queue_retran_cnt = 0; 9761 break; 9762 } 9763 if (one_chunk) { 9764 /* No more room in rwnd */ 9765 return (1); 9766 } 9767 /* stop the for loop here. we sent out a packet */ 9768 break; 9769 } 9770 return (0); 9771 } 9772 9773 static void 9774 sctp_timer_validation(struct sctp_inpcb *inp, 9775 struct sctp_tcb *stcb, 9776 struct sctp_association *asoc) 9777 { 9778 struct sctp_nets *net; 9779 9780 /* Validate that a timer is running somewhere */ 9781 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9782 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9783 /* Here is a timer */ 9784 return; 9785 } 9786 } 9787 SCTP_TCB_LOCK_ASSERT(stcb); 9788 /* Gak, we did not have a timer somewhere */ 9789 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n"); 9790 if (asoc->alternate) { 9791 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate); 9792 } else { 9793 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination); 9794 } 9795 return; 9796 } 9797 9798 void 9799 sctp_chunk_output(struct sctp_inpcb *inp, 9800 struct sctp_tcb *stcb, 9801 int from_where, 9802 int so_locked 9803 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9804 SCTP_UNUSED 9805 #endif 9806 ) 9807 { 9808 /*- 9809 * Ok this is the generic chunk service queue. we must do the 9810 * following: 9811 * - See if there are retransmits pending, if so we must 9812 * do these first. 9813 * - Service the stream queue that is next, moving any 9814 * message (note I must get a complete message i.e. 9815 * FIRST/MIDDLE and LAST to the out queue in one pass) and assigning 9816 * TSN's 9817 * - Check to see if the cwnd/rwnd allows any output, if so we 9818 * go ahead and fomulate and send the low level chunks. Making sure 9819 * to combine any control in the control chunk queue also. 9820 */ 9821 struct sctp_association *asoc; 9822 struct sctp_nets *net; 9823 int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0; 9824 unsigned int burst_cnt = 0; 9825 struct timeval now; 9826 int now_filled = 0; 9827 int nagle_on; 9828 int frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 9829 int un_sent = 0; 9830 int fr_done; 9831 unsigned int tot_frs = 0; 9832 9833 asoc = &stcb->asoc; 9834 /* The Nagle algorithm is only applied when handling a send call. */ 9835 if (from_where == SCTP_OUTPUT_FROM_USR_SEND) { 9836 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) { 9837 nagle_on = 0; 9838 } else { 9839 nagle_on = 1; 9840 } 9841 } else { 9842 nagle_on = 0; 9843 } 9844 SCTP_TCB_LOCK_ASSERT(stcb); 9845 9846 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 9847 9848 if ((un_sent <= 0) && 9849 (TAILQ_EMPTY(&asoc->control_send_queue)) && 9850 (TAILQ_EMPTY(&asoc->asconf_send_queue)) && 9851 (asoc->sent_queue_retran_cnt == 0)) { 9852 /* Nothing to do unless there is something to be sent left */ 9853 return; 9854 } 9855 /* 9856 * Do we have something to send, data or control AND a sack timer 9857 * running, if so piggy-back the sack. 9858 */ 9859 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 9860 sctp_send_sack(stcb, so_locked); 9861 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer); 9862 } 9863 while (asoc->sent_queue_retran_cnt) { 9864 /*- 9865 * Ok, it is retransmission time only, we send out only ONE 9866 * packet with a single call off to the retran code. 9867 */ 9868 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) { 9869 /*- 9870 * Special hook for handling cookiess discarded 9871 * by peer that carried data. Send cookie-ack only 9872 * and then the next call with get the retran's. 9873 */ 9874 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 9875 from_where, 9876 &now, &now_filled, frag_point, so_locked); 9877 return; 9878 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) { 9879 /* if its not from a HB then do it */ 9880 fr_done = 0; 9881 ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked); 9882 if (fr_done) { 9883 tot_frs++; 9884 } 9885 } else { 9886 /* 9887 * its from any other place, we don't allow retran 9888 * output (only control) 9889 */ 9890 ret = 1; 9891 } 9892 if (ret > 0) { 9893 /* Can't send anymore */ 9894 /*- 9895 * now lets push out control by calling med-level 9896 * output once. this assures that we WILL send HB's 9897 * if queued too. 9898 */ 9899 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 9900 from_where, 9901 &now, &now_filled, frag_point, so_locked); 9902 #ifdef SCTP_AUDITING_ENABLED 9903 sctp_auditing(8, inp, stcb, NULL); 9904 #endif 9905 sctp_timer_validation(inp, stcb, asoc); 9906 return; 9907 } 9908 if (ret < 0) { 9909 /*- 9910 * The count was off.. retran is not happening so do 9911 * the normal retransmission. 9912 */ 9913 #ifdef SCTP_AUDITING_ENABLED 9914 sctp_auditing(9, inp, stcb, NULL); 9915 #endif 9916 if (ret == SCTP_RETRAN_EXIT) { 9917 return; 9918 } 9919 break; 9920 } 9921 if (from_where == SCTP_OUTPUT_FROM_T3) { 9922 /* Only one transmission allowed out of a timeout */ 9923 #ifdef SCTP_AUDITING_ENABLED 9924 sctp_auditing(10, inp, stcb, NULL); 9925 #endif 9926 /* Push out any control */ 9927 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where, 9928 &now, &now_filled, frag_point, so_locked); 9929 return; 9930 } 9931 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) { 9932 /* Hit FR burst limit */ 9933 return; 9934 } 9935 if ((num_out == 0) && (ret == 0)) { 9936 /* No more retrans to send */ 9937 break; 9938 } 9939 } 9940 #ifdef SCTP_AUDITING_ENABLED 9941 sctp_auditing(12, inp, stcb, NULL); 9942 #endif 9943 /* Check for bad destinations, if they exist move chunks around. */ 9944 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9945 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) { 9946 /*- 9947 * if possible move things off of this address we 9948 * still may send below due to the dormant state but 9949 * we try to find an alternate address to send to 9950 * and if we have one we move all queued data on the 9951 * out wheel to this alternate address. 9952 */ 9953 if (net->ref_count > 1) 9954 sctp_move_chunks_from_net(stcb, net); 9955 } else { 9956 /*- 9957 * if ((asoc->sat_network) || (net->addr_is_local)) 9958 * { burst_limit = asoc->max_burst * 9959 * SCTP_SAT_NETWORK_BURST_INCR; } 9960 */ 9961 if (asoc->max_burst > 0) { 9962 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) { 9963 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { 9964 /* 9965 * JRS - Use the congestion 9966 * control given in the 9967 * congestion control module 9968 */ 9969 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); 9970 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 9971 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); 9972 } 9973 SCTP_STAT_INCR(sctps_maxburstqueued); 9974 } 9975 net->fast_retran_ip = 0; 9976 } else { 9977 if (net->flight_size == 0) { 9978 /* 9979 * Should be decaying the 9980 * cwnd here 9981 */ 9982 ; 9983 } 9984 } 9985 } 9986 } 9987 9988 } 9989 burst_cnt = 0; 9990 do { 9991 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out, 9992 &reason_code, 0, from_where, 9993 &now, &now_filled, frag_point, so_locked); 9994 if (error) { 9995 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error); 9996 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 9997 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP); 9998 } 9999 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10000 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES); 10001 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES); 10002 } 10003 break; 10004 } 10005 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out); 10006 10007 tot_out += num_out; 10008 burst_cnt++; 10009 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10010 sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES); 10011 if (num_out == 0) { 10012 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES); 10013 } 10014 } 10015 if (nagle_on) { 10016 /* 10017 * When the Nagle algorithm is used, look at how 10018 * much is unsent, then if its smaller than an MTU 10019 * and we have data in flight we stop, except if we 10020 * are handling a fragmented user message. 10021 */ 10022 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 10023 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 10024 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && 10025 (stcb->asoc.total_flight > 0) && 10026 ((stcb->asoc.locked_on_sending == NULL) || 10027 sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 10028 break; 10029 } 10030 } 10031 if (TAILQ_EMPTY(&asoc->control_send_queue) && 10032 TAILQ_EMPTY(&asoc->send_queue) && 10033 stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 10034 /* Nothing left to send */ 10035 break; 10036 } 10037 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) { 10038 /* Nothing left to send */ 10039 break; 10040 } 10041 } while (num_out && 10042 ((asoc->max_burst == 0) || 10043 SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) || 10044 (burst_cnt < asoc->max_burst))); 10045 10046 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) { 10047 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { 10048 SCTP_STAT_INCR(sctps_maxburstqueued); 10049 asoc->burst_limit_applied = 1; 10050 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10051 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED); 10052 } 10053 } else { 10054 asoc->burst_limit_applied = 0; 10055 } 10056 } 10057 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10058 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); 10059 } 10060 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n", 10061 tot_out); 10062 10063 /*- 10064 * Now we need to clean up the control chunk chain if a ECNE is on 10065 * it. It must be marked as UNSENT again so next call will continue 10066 * to send it until such time that we get a CWR, to remove it. 10067 */ 10068 if (stcb->asoc.ecn_echo_cnt_onq) 10069 sctp_fix_ecn_echo(asoc); 10070 return; 10071 } 10072 10073 10074 int 10075 sctp_output( 10076 struct sctp_inpcb *inp, 10077 struct mbuf *m, 10078 struct sockaddr *addr, 10079 struct mbuf *control, 10080 struct thread *p, 10081 int flags) 10082 { 10083 if (inp == NULL) { 10084 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10085 return (EINVAL); 10086 } 10087 if (inp->sctp_socket == NULL) { 10088 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10089 return (EINVAL); 10090 } 10091 return (sctp_sosend(inp->sctp_socket, 10092 addr, 10093 (struct uio *)NULL, 10094 m, 10095 control, 10096 flags, p 10097 )); 10098 } 10099 10100 void 10101 send_forward_tsn(struct sctp_tcb *stcb, 10102 struct sctp_association *asoc) 10103 { 10104 struct sctp_tmit_chunk *chk; 10105 struct sctp_forward_tsn_chunk *fwdtsn; 10106 uint32_t advance_peer_ack_point; 10107 10108 SCTP_TCB_LOCK_ASSERT(stcb); 10109 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10110 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 10111 /* mark it to unsent */ 10112 chk->sent = SCTP_DATAGRAM_UNSENT; 10113 chk->snd_count = 0; 10114 /* Do we correct its output location? */ 10115 if (chk->whoTo) { 10116 sctp_free_remote_addr(chk->whoTo); 10117 chk->whoTo = NULL; 10118 } 10119 goto sctp_fill_in_rest; 10120 } 10121 } 10122 /* Ok if we reach here we must build one */ 10123 sctp_alloc_a_chunk(stcb, chk); 10124 if (chk == NULL) { 10125 return; 10126 } 10127 asoc->fwd_tsn_cnt++; 10128 chk->copy_by_ref = 0; 10129 chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN; 10130 chk->rec.chunk_id.can_take_data = 0; 10131 chk->asoc = asoc; 10132 chk->whoTo = NULL; 10133 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 10134 if (chk->data == NULL) { 10135 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 10136 return; 10137 } 10138 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 10139 chk->sent = SCTP_DATAGRAM_UNSENT; 10140 chk->snd_count = 0; 10141 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 10142 asoc->ctrl_queue_cnt++; 10143 sctp_fill_in_rest: 10144 /*- 10145 * Here we go through and fill out the part that deals with 10146 * stream/seq of the ones we skip. 10147 */ 10148 SCTP_BUF_LEN(chk->data) = 0; 10149 { 10150 struct sctp_tmit_chunk *at, *tp1, *last; 10151 struct sctp_strseq *strseq; 10152 unsigned int cnt_of_space, i, ovh; 10153 unsigned int space_needed; 10154 unsigned int cnt_of_skipped = 0; 10155 10156 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10157 if ((at->sent != SCTP_FORWARD_TSN_SKIP) && 10158 (at->sent != SCTP_DATAGRAM_NR_ACKED)) { 10159 /* no more to look at */ 10160 break; 10161 } 10162 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10163 /* We don't report these */ 10164 continue; 10165 } 10166 cnt_of_skipped++; 10167 } 10168 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10169 (cnt_of_skipped * sizeof(struct sctp_strseq))); 10170 10171 cnt_of_space = M_TRAILINGSPACE(chk->data); 10172 10173 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 10174 ovh = SCTP_MIN_OVERHEAD; 10175 } else { 10176 ovh = SCTP_MIN_V4_OVERHEAD; 10177 } 10178 if (cnt_of_space > (asoc->smallest_mtu - ovh)) { 10179 /* trim to a mtu size */ 10180 cnt_of_space = asoc->smallest_mtu - ovh; 10181 } 10182 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10183 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10184 0xff, 0, cnt_of_skipped, 10185 asoc->advanced_peer_ack_point); 10186 10187 } 10188 advance_peer_ack_point = asoc->advanced_peer_ack_point; 10189 if (cnt_of_space < space_needed) { 10190 /*- 10191 * ok we must trim down the chunk by lowering the 10192 * advance peer ack point. 10193 */ 10194 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10195 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10196 0xff, 0xff, cnt_of_space, 10197 space_needed); 10198 } 10199 cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk); 10200 cnt_of_skipped /= sizeof(struct sctp_strseq); 10201 /*- 10202 * Go through and find the TSN that will be the one 10203 * we report. 10204 */ 10205 at = TAILQ_FIRST(&asoc->sent_queue); 10206 if (at != NULL) { 10207 for (i = 0; i < cnt_of_skipped; i++) { 10208 tp1 = TAILQ_NEXT(at, sctp_next); 10209 if (tp1 == NULL) { 10210 break; 10211 } 10212 at = tp1; 10213 } 10214 } 10215 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10216 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10217 0xff, cnt_of_skipped, at->rec.data.TSN_seq, 10218 asoc->advanced_peer_ack_point); 10219 } 10220 last = at; 10221 /*- 10222 * last now points to last one I can report, update 10223 * peer ack point 10224 */ 10225 if (last) 10226 advance_peer_ack_point = last->rec.data.TSN_seq; 10227 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10228 cnt_of_skipped * sizeof(struct sctp_strseq); 10229 } 10230 chk->send_size = space_needed; 10231 /* Setup the chunk */ 10232 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *); 10233 fwdtsn->ch.chunk_length = htons(chk->send_size); 10234 fwdtsn->ch.chunk_flags = 0; 10235 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN; 10236 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point); 10237 SCTP_BUF_LEN(chk->data) = chk->send_size; 10238 fwdtsn++; 10239 /*- 10240 * Move pointer to after the fwdtsn and transfer to the 10241 * strseq pointer. 10242 */ 10243 strseq = (struct sctp_strseq *)fwdtsn; 10244 /*- 10245 * Now populate the strseq list. This is done blindly 10246 * without pulling out duplicate stream info. This is 10247 * inefficent but won't harm the process since the peer will 10248 * look at these in sequence and will thus release anything. 10249 * It could mean we exceed the PMTU and chop off some that 10250 * we could have included.. but this is unlikely (aka 1432/4 10251 * would mean 300+ stream seq's would have to be reported in 10252 * one FWD-TSN. With a bit of work we can later FIX this to 10253 * optimize and pull out duplcates.. but it does add more 10254 * overhead. So for now... not! 10255 */ 10256 at = TAILQ_FIRST(&asoc->sent_queue); 10257 for (i = 0; i < cnt_of_skipped; i++) { 10258 tp1 = TAILQ_NEXT(at, sctp_next); 10259 if (tp1 == NULL) 10260 break; 10261 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10262 /* We don't report these */ 10263 i--; 10264 at = tp1; 10265 continue; 10266 } 10267 if (at->rec.data.TSN_seq == advance_peer_ack_point) { 10268 at->rec.data.fwd_tsn_cnt = 0; 10269 } 10270 strseq->stream = ntohs(at->rec.data.stream_number); 10271 strseq->sequence = ntohs(at->rec.data.stream_seq); 10272 strseq++; 10273 at = tp1; 10274 } 10275 } 10276 return; 10277 } 10278 10279 void 10280 sctp_send_sack(struct sctp_tcb *stcb, int so_locked 10281 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10282 SCTP_UNUSED 10283 #endif 10284 ) 10285 { 10286 /*- 10287 * Queue up a SACK or NR-SACK in the control queue. 10288 * We must first check to see if a SACK or NR-SACK is 10289 * somehow on the control queue. 10290 * If so, we will take and and remove the old one. 10291 */ 10292 struct sctp_association *asoc; 10293 struct sctp_tmit_chunk *chk, *a_chk; 10294 struct sctp_sack_chunk *sack; 10295 struct sctp_nr_sack_chunk *nr_sack; 10296 struct sctp_gap_ack_block *gap_descriptor; 10297 struct sack_track *selector; 10298 int mergeable = 0; 10299 int offset; 10300 caddr_t limit; 10301 uint32_t *dup; 10302 int limit_reached = 0; 10303 unsigned int i, siz, j; 10304 unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space; 10305 int num_dups = 0; 10306 int space_req; 10307 uint32_t highest_tsn; 10308 uint8_t flags; 10309 uint8_t type; 10310 uint8_t tsn_map; 10311 10312 if ((stcb->asoc.sctp_nr_sack_on_off == 1) && 10313 (stcb->asoc.peer_supports_nr_sack == 1)) { 10314 type = SCTP_NR_SELECTIVE_ACK; 10315 } else { 10316 type = SCTP_SELECTIVE_ACK; 10317 } 10318 a_chk = NULL; 10319 asoc = &stcb->asoc; 10320 SCTP_TCB_LOCK_ASSERT(stcb); 10321 if (asoc->last_data_chunk_from == NULL) { 10322 /* Hmm we never received anything */ 10323 return; 10324 } 10325 sctp_slide_mapping_arrays(stcb); 10326 sctp_set_rwnd(stcb, asoc); 10327 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10328 if (chk->rec.chunk_id.id == type) { 10329 /* Hmm, found a sack already on queue, remove it */ 10330 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 10331 asoc->ctrl_queue_cnt--; 10332 a_chk = chk; 10333 if (a_chk->data) { 10334 sctp_m_freem(a_chk->data); 10335 a_chk->data = NULL; 10336 } 10337 if (a_chk->whoTo) { 10338 sctp_free_remote_addr(a_chk->whoTo); 10339 a_chk->whoTo = NULL; 10340 } 10341 break; 10342 } 10343 } 10344 if (a_chk == NULL) { 10345 sctp_alloc_a_chunk(stcb, a_chk); 10346 if (a_chk == NULL) { 10347 /* No memory so we drop the idea, and set a timer */ 10348 if (stcb->asoc.delayed_ack) { 10349 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10350 stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5); 10351 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10352 stcb->sctp_ep, stcb, NULL); 10353 } else { 10354 stcb->asoc.send_sack = 1; 10355 } 10356 return; 10357 } 10358 a_chk->copy_by_ref = 0; 10359 a_chk->rec.chunk_id.id = type; 10360 a_chk->rec.chunk_id.can_take_data = 1; 10361 } 10362 /* Clear our pkt counts */ 10363 asoc->data_pkts_seen = 0; 10364 10365 a_chk->asoc = asoc; 10366 a_chk->snd_count = 0; 10367 a_chk->send_size = 0; /* fill in later */ 10368 a_chk->sent = SCTP_DATAGRAM_UNSENT; 10369 a_chk->whoTo = NULL; 10370 10371 if ((asoc->numduptsns) || 10372 (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) { 10373 /*- 10374 * Ok, we have some duplicates or the destination for the 10375 * sack is unreachable, lets see if we can select an 10376 * alternate than asoc->last_data_chunk_from 10377 */ 10378 if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) && 10379 (asoc->used_alt_onsack > asoc->numnets)) { 10380 /* We used an alt last time, don't this time */ 10381 a_chk->whoTo = NULL; 10382 } else { 10383 asoc->used_alt_onsack++; 10384 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0); 10385 } 10386 if (a_chk->whoTo == NULL) { 10387 /* Nope, no alternate */ 10388 a_chk->whoTo = asoc->last_data_chunk_from; 10389 asoc->used_alt_onsack = 0; 10390 } 10391 } else { 10392 /* 10393 * No duplicates so we use the last place we received data 10394 * from. 10395 */ 10396 asoc->used_alt_onsack = 0; 10397 a_chk->whoTo = asoc->last_data_chunk_from; 10398 } 10399 if (a_chk->whoTo) { 10400 atomic_add_int(&a_chk->whoTo->ref_count, 1); 10401 } 10402 if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) { 10403 highest_tsn = asoc->highest_tsn_inside_map; 10404 } else { 10405 highest_tsn = asoc->highest_tsn_inside_nr_map; 10406 } 10407 if (highest_tsn == asoc->cumulative_tsn) { 10408 /* no gaps */ 10409 if (type == SCTP_SELECTIVE_ACK) { 10410 space_req = sizeof(struct sctp_sack_chunk); 10411 } else { 10412 space_req = sizeof(struct sctp_nr_sack_chunk); 10413 } 10414 } else { 10415 /* gaps get a cluster */ 10416 space_req = MCLBYTES; 10417 } 10418 /* Ok now lets formulate a MBUF with our sack */ 10419 a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA); 10420 if ((a_chk->data == NULL) || 10421 (a_chk->whoTo == NULL)) { 10422 /* rats, no mbuf memory */ 10423 if (a_chk->data) { 10424 /* was a problem with the destination */ 10425 sctp_m_freem(a_chk->data); 10426 a_chk->data = NULL; 10427 } 10428 sctp_free_a_chunk(stcb, a_chk, so_locked); 10429 /* sa_ignore NO_NULL_CHK */ 10430 if (stcb->asoc.delayed_ack) { 10431 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10432 stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6); 10433 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10434 stcb->sctp_ep, stcb, NULL); 10435 } else { 10436 stcb->asoc.send_sack = 1; 10437 } 10438 return; 10439 } 10440 /* ok, lets go through and fill it in */ 10441 SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD); 10442 space = M_TRAILINGSPACE(a_chk->data); 10443 if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) { 10444 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD); 10445 } 10446 limit = mtod(a_chk->data, caddr_t); 10447 limit += space; 10448 10449 flags = 0; 10450 10451 if ((asoc->sctp_cmt_on_off > 0) && 10452 SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) { 10453 /*- 10454 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been 10455 * received, then set high bit to 1, else 0. Reset 10456 * pkts_rcvd. 10457 */ 10458 flags |= (asoc->cmt_dac_pkts_rcvd << 6); 10459 asoc->cmt_dac_pkts_rcvd = 0; 10460 } 10461 #ifdef SCTP_ASOCLOG_OF_TSNS 10462 stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn; 10463 stcb->asoc.cumack_log_atsnt++; 10464 if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) { 10465 stcb->asoc.cumack_log_atsnt = 0; 10466 } 10467 #endif 10468 /* reset the readers interpretation */ 10469 stcb->freed_by_sorcv_sincelast = 0; 10470 10471 if (type == SCTP_SELECTIVE_ACK) { 10472 sack = mtod(a_chk->data, struct sctp_sack_chunk *); 10473 nr_sack = NULL; 10474 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk)); 10475 if (highest_tsn > asoc->mapping_array_base_tsn) { 10476 siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10477 } else { 10478 siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8; 10479 } 10480 } else { 10481 sack = NULL; 10482 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *); 10483 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk)); 10484 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) { 10485 siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10486 } else { 10487 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8; 10488 } 10489 } 10490 10491 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10492 offset = 1; 10493 } else { 10494 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10495 } 10496 if (((type == SCTP_SELECTIVE_ACK) && 10497 SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) || 10498 ((type == SCTP_NR_SELECTIVE_ACK) && 10499 SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) { 10500 /* we have a gap .. maybe */ 10501 for (i = 0; i < siz; i++) { 10502 tsn_map = asoc->mapping_array[i]; 10503 if (type == SCTP_SELECTIVE_ACK) { 10504 tsn_map |= asoc->nr_mapping_array[i]; 10505 } 10506 if (i == 0) { 10507 /* 10508 * Clear all bits corresponding to TSNs 10509 * smaller or equal to the cumulative TSN. 10510 */ 10511 tsn_map &= (~0 << (1 - offset)); 10512 } 10513 selector = &sack_array[tsn_map]; 10514 if (mergeable && selector->right_edge) { 10515 /* 10516 * Backup, left and right edges were ok to 10517 * merge. 10518 */ 10519 num_gap_blocks--; 10520 gap_descriptor--; 10521 } 10522 if (selector->num_entries == 0) 10523 mergeable = 0; 10524 else { 10525 for (j = 0; j < selector->num_entries; j++) { 10526 if (mergeable && selector->right_edge) { 10527 /* 10528 * do a merge by NOT setting 10529 * the left side 10530 */ 10531 mergeable = 0; 10532 } else { 10533 /* 10534 * no merge, set the left 10535 * side 10536 */ 10537 mergeable = 0; 10538 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10539 } 10540 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10541 num_gap_blocks++; 10542 gap_descriptor++; 10543 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10544 /* no more room */ 10545 limit_reached = 1; 10546 break; 10547 } 10548 } 10549 if (selector->left_edge) { 10550 mergeable = 1; 10551 } 10552 } 10553 if (limit_reached) { 10554 /* Reached the limit stop */ 10555 break; 10556 } 10557 offset += 8; 10558 } 10559 } 10560 if ((type == SCTP_NR_SELECTIVE_ACK) && 10561 (limit_reached == 0)) { 10562 10563 mergeable = 0; 10564 10565 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) { 10566 siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10567 } else { 10568 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8; 10569 } 10570 10571 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10572 offset = 1; 10573 } else { 10574 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10575 } 10576 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) { 10577 /* we have a gap .. maybe */ 10578 for (i = 0; i < siz; i++) { 10579 tsn_map = asoc->nr_mapping_array[i]; 10580 if (i == 0) { 10581 /* 10582 * Clear all bits corresponding to 10583 * TSNs smaller or equal to the 10584 * cumulative TSN. 10585 */ 10586 tsn_map &= (~0 << (1 - offset)); 10587 } 10588 selector = &sack_array[tsn_map]; 10589 if (mergeable && selector->right_edge) { 10590 /* 10591 * Backup, left and right edges were 10592 * ok to merge. 10593 */ 10594 num_nr_gap_blocks--; 10595 gap_descriptor--; 10596 } 10597 if (selector->num_entries == 0) 10598 mergeable = 0; 10599 else { 10600 for (j = 0; j < selector->num_entries; j++) { 10601 if (mergeable && selector->right_edge) { 10602 /* 10603 * do a merge by NOT 10604 * setting the left 10605 * side 10606 */ 10607 mergeable = 0; 10608 } else { 10609 /* 10610 * no merge, set the 10611 * left side 10612 */ 10613 mergeable = 0; 10614 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10615 } 10616 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10617 num_nr_gap_blocks++; 10618 gap_descriptor++; 10619 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10620 /* no more room */ 10621 limit_reached = 1; 10622 break; 10623 } 10624 } 10625 if (selector->left_edge) { 10626 mergeable = 1; 10627 } 10628 } 10629 if (limit_reached) { 10630 /* Reached the limit stop */ 10631 break; 10632 } 10633 offset += 8; 10634 } 10635 } 10636 } 10637 /* now we must add any dups we are going to report. */ 10638 if ((limit_reached == 0) && (asoc->numduptsns)) { 10639 dup = (uint32_t *) gap_descriptor; 10640 for (i = 0; i < asoc->numduptsns; i++) { 10641 *dup = htonl(asoc->dup_tsns[i]); 10642 dup++; 10643 num_dups++; 10644 if (((caddr_t)dup + sizeof(uint32_t)) > limit) { 10645 /* no more room */ 10646 break; 10647 } 10648 } 10649 asoc->numduptsns = 0; 10650 } 10651 /* 10652 * now that the chunk is prepared queue it to the control chunk 10653 * queue. 10654 */ 10655 if (type == SCTP_SELECTIVE_ACK) { 10656 a_chk->send_size = sizeof(struct sctp_sack_chunk) + 10657 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10658 num_dups * sizeof(int32_t); 10659 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10660 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10661 sack->sack.a_rwnd = htonl(asoc->my_rwnd); 10662 sack->sack.num_gap_ack_blks = htons(num_gap_blocks); 10663 sack->sack.num_dup_tsns = htons(num_dups); 10664 sack->ch.chunk_type = type; 10665 sack->ch.chunk_flags = flags; 10666 sack->ch.chunk_length = htons(a_chk->send_size); 10667 } else { 10668 a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) + 10669 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10670 num_dups * sizeof(int32_t); 10671 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10672 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10673 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd); 10674 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks); 10675 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks); 10676 nr_sack->nr_sack.num_dup_tsns = htons(num_dups); 10677 nr_sack->nr_sack.reserved = 0; 10678 nr_sack->ch.chunk_type = type; 10679 nr_sack->ch.chunk_flags = flags; 10680 nr_sack->ch.chunk_length = htons(a_chk->send_size); 10681 } 10682 TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next); 10683 asoc->my_last_reported_rwnd = asoc->my_rwnd; 10684 asoc->ctrl_queue_cnt++; 10685 asoc->send_sack = 0; 10686 SCTP_STAT_INCR(sctps_sendsacks); 10687 return; 10688 } 10689 10690 void 10691 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked 10692 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10693 SCTP_UNUSED 10694 #endif 10695 ) 10696 { 10697 struct mbuf *m_abort; 10698 struct mbuf *m_out = NULL, *m_end = NULL; 10699 struct sctp_abort_chunk *abort = NULL; 10700 int sz; 10701 uint32_t auth_offset = 0; 10702 struct sctp_auth_chunk *auth = NULL; 10703 struct sctp_nets *net; 10704 10705 /*- 10706 * Add an AUTH chunk, if chunk requires it and save the offset into 10707 * the chain for AUTH 10708 */ 10709 if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION, 10710 stcb->asoc.peer_auth_chunks)) { 10711 m_out = sctp_add_auth_chunk(m_out, &m_end, &auth, &auth_offset, 10712 stcb, SCTP_ABORT_ASSOCIATION); 10713 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10714 } 10715 SCTP_TCB_LOCK_ASSERT(stcb); 10716 m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER); 10717 if (m_abort == NULL) { 10718 /* no mbuf's */ 10719 if (m_out) 10720 sctp_m_freem(m_out); 10721 return; 10722 } 10723 /* link in any error */ 10724 SCTP_BUF_NEXT(m_abort) = operr; 10725 sz = 0; 10726 if (operr) { 10727 struct mbuf *n; 10728 10729 n = operr; 10730 while (n) { 10731 sz += SCTP_BUF_LEN(n); 10732 n = SCTP_BUF_NEXT(n); 10733 } 10734 } 10735 SCTP_BUF_LEN(m_abort) = sizeof(*abort); 10736 if (m_out == NULL) { 10737 /* NO Auth chunk prepended, so reserve space in front */ 10738 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD); 10739 m_out = m_abort; 10740 } else { 10741 /* Put AUTH chunk at the front of the chain */ 10742 SCTP_BUF_NEXT(m_end) = m_abort; 10743 } 10744 if (stcb->asoc.alternate) { 10745 net = stcb->asoc.alternate; 10746 } else { 10747 net = stcb->asoc.primary_destination; 10748 } 10749 /* fill in the ABORT chunk */ 10750 abort = mtod(m_abort, struct sctp_abort_chunk *); 10751 abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION; 10752 abort->ch.chunk_flags = 0; 10753 abort->ch.chunk_length = htons(sizeof(*abort) + sz); 10754 10755 (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10756 (struct sockaddr *)&net->ro._l_addr, 10757 m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0, 10758 stcb->sctp_ep->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 10759 stcb->asoc.primary_destination->port, NULL, 10760 0, 0, 10761 so_locked); 10762 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10763 } 10764 10765 void 10766 sctp_send_shutdown_complete(struct sctp_tcb *stcb, 10767 struct sctp_nets *net, 10768 int reflect_vtag) 10769 { 10770 /* formulate and SEND a SHUTDOWN-COMPLETE */ 10771 struct mbuf *m_shutdown_comp; 10772 struct sctp_shutdown_complete_chunk *shutdown_complete; 10773 uint32_t vtag; 10774 uint8_t flags; 10775 10776 m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 10777 if (m_shutdown_comp == NULL) { 10778 /* no mbuf's */ 10779 return; 10780 } 10781 if (reflect_vtag) { 10782 flags = SCTP_HAD_NO_TCB; 10783 vtag = stcb->asoc.my_vtag; 10784 } else { 10785 flags = 0; 10786 vtag = stcb->asoc.peer_vtag; 10787 } 10788 shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *); 10789 shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE; 10790 shutdown_complete->ch.chunk_flags = flags; 10791 shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk)); 10792 SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk); 10793 (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10794 (struct sockaddr *)&net->ro._l_addr, 10795 m_shutdown_comp, 0, NULL, 0, 1, 0, 0, 10796 stcb->sctp_ep->sctp_lport, stcb->rport, 10797 htonl(vtag), 10798 net->port, NULL, 10799 0, 0, 10800 SCTP_SO_NOT_LOCKED); 10801 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10802 return; 10803 } 10804 10805 static void 10806 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst, 10807 struct sctphdr *sh, uint32_t vtag, 10808 uint8_t type, struct mbuf *cause, 10809 uint8_t use_mflowid, uint32_t mflowid, 10810 uint32_t vrf_id, uint16_t port) 10811 { 10812 struct mbuf *o_pak; 10813 struct mbuf *mout; 10814 struct sctphdr *shout; 10815 struct sctp_chunkhdr *ch; 10816 struct udphdr *udp; 10817 int len, cause_len, padding_len, ret; 10818 10819 #ifdef INET 10820 struct sockaddr_in *src_sin, *dst_sin; 10821 struct ip *ip; 10822 10823 #endif 10824 #ifdef INET6 10825 struct sockaddr_in6 *src_sin6, *dst_sin6; 10826 struct ip6_hdr *ip6; 10827 10828 #endif 10829 10830 /* Compute the length of the cause and add final padding. */ 10831 cause_len = 0; 10832 if (cause != NULL) { 10833 struct mbuf *m_at, *m_last = NULL; 10834 10835 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 10836 if (SCTP_BUF_NEXT(m_at) == NULL) 10837 m_last = m_at; 10838 cause_len += SCTP_BUF_LEN(m_at); 10839 } 10840 padding_len = cause_len % 4; 10841 if (padding_len != 0) { 10842 padding_len = 4 - padding_len; 10843 } 10844 if (padding_len != 0) { 10845 if (sctp_add_pad_tombuf(m_last, padding_len)) { 10846 sctp_m_freem(cause); 10847 return; 10848 } 10849 } 10850 } else { 10851 padding_len = 0; 10852 } 10853 /* Get an mbuf for the header. */ 10854 len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 10855 switch (dst->sa_family) { 10856 #ifdef INET 10857 case AF_INET: 10858 len += sizeof(struct ip); 10859 break; 10860 #endif 10861 #ifdef INET6 10862 case AF_INET6: 10863 len += sizeof(struct ip6_hdr); 10864 break; 10865 #endif 10866 default: 10867 break; 10868 } 10869 if (port) { 10870 len += sizeof(struct udphdr); 10871 } 10872 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); 10873 if (mout == NULL) { 10874 if (cause) { 10875 sctp_m_freem(cause); 10876 } 10877 return; 10878 } 10879 SCTP_BUF_RESV_UF(mout, max_linkhdr); 10880 SCTP_BUF_LEN(mout) = len; 10881 SCTP_BUF_NEXT(mout) = cause; 10882 if (use_mflowid != 0) { 10883 mout->m_pkthdr.flowid = mflowid; 10884 mout->m_flags |= M_FLOWID; 10885 } 10886 #ifdef INET 10887 ip = NULL; 10888 #endif 10889 #ifdef INET6 10890 ip6 = NULL; 10891 #endif 10892 switch (dst->sa_family) { 10893 #ifdef INET 10894 case AF_INET: 10895 src_sin = (struct sockaddr_in *)src; 10896 dst_sin = (struct sockaddr_in *)dst; 10897 ip = mtod(mout, struct ip *); 10898 ip->ip_v = IPVERSION; 10899 ip->ip_hl = (sizeof(struct ip) >> 2); 10900 ip->ip_tos = 0; 10901 ip->ip_id = ip_newid(); 10902 ip->ip_off = 0; 10903 ip->ip_ttl = MODULE_GLOBAL(ip_defttl); 10904 if (port) { 10905 ip->ip_p = IPPROTO_UDP; 10906 } else { 10907 ip->ip_p = IPPROTO_SCTP; 10908 } 10909 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr; 10910 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr; 10911 ip->ip_sum = 0; 10912 len = sizeof(struct ip); 10913 shout = (struct sctphdr *)((caddr_t)ip + len); 10914 break; 10915 #endif 10916 #ifdef INET6 10917 case AF_INET6: 10918 src_sin6 = (struct sockaddr_in6 *)src; 10919 dst_sin6 = (struct sockaddr_in6 *)dst; 10920 ip6 = mtod(mout, struct ip6_hdr *); 10921 ip6->ip6_flow = htonl(0x60000000); 10922 if (V_ip6_auto_flowlabel) { 10923 ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); 10924 } 10925 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim); 10926 if (port) { 10927 ip6->ip6_nxt = IPPROTO_UDP; 10928 } else { 10929 ip6->ip6_nxt = IPPROTO_SCTP; 10930 } 10931 ip6->ip6_src = dst_sin6->sin6_addr; 10932 ip6->ip6_dst = src_sin6->sin6_addr; 10933 len = sizeof(struct ip6_hdr); 10934 shout = (struct sctphdr *)((caddr_t)ip6 + len); 10935 break; 10936 #endif 10937 default: 10938 len = 0; 10939 shout = mtod(mout, struct sctphdr *); 10940 break; 10941 } 10942 if (port) { 10943 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 10944 sctp_m_freem(mout); 10945 return; 10946 } 10947 udp = (struct udphdr *)shout; 10948 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 10949 udp->uh_dport = port; 10950 udp->uh_sum = 0; 10951 udp->uh_ulen = htons(sizeof(struct udphdr) + 10952 sizeof(struct sctphdr) + 10953 sizeof(struct sctp_chunkhdr) + 10954 cause_len + padding_len); 10955 len += sizeof(struct udphdr); 10956 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr)); 10957 } else { 10958 udp = NULL; 10959 } 10960 shout->src_port = sh->dest_port; 10961 shout->dest_port = sh->src_port; 10962 shout->checksum = 0; 10963 if (vtag) { 10964 shout->v_tag = htonl(vtag); 10965 } else { 10966 shout->v_tag = sh->v_tag; 10967 } 10968 len += sizeof(struct sctphdr); 10969 ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr)); 10970 ch->chunk_type = type; 10971 if (vtag) { 10972 ch->chunk_flags = 0; 10973 } else { 10974 ch->chunk_flags = SCTP_HAD_NO_TCB; 10975 } 10976 ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len); 10977 len += sizeof(struct sctp_chunkhdr); 10978 len += cause_len + padding_len; 10979 10980 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 10981 sctp_m_freem(mout); 10982 return; 10983 } 10984 SCTP_ATTACH_CHAIN(o_pak, mout, len); 10985 switch (dst->sa_family) { 10986 #ifdef INET 10987 case AF_INET: 10988 if (port) { 10989 if (V_udp_cksum) { 10990 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 10991 } else { 10992 udp->uh_sum = 0; 10993 } 10994 } 10995 ip->ip_len = htons(len); 10996 if (port) { 10997 #if defined(SCTP_WITH_NO_CSUM) 10998 SCTP_STAT_INCR(sctps_sendnocrc); 10999 #else 11000 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); 11001 SCTP_STAT_INCR(sctps_sendswcrc); 11002 #endif 11003 if (V_udp_cksum) { 11004 SCTP_ENABLE_UDP_CSUM(o_pak); 11005 } 11006 } else { 11007 #if defined(SCTP_WITH_NO_CSUM) 11008 SCTP_STAT_INCR(sctps_sendnocrc); 11009 #else 11010 mout->m_pkthdr.csum_flags = CSUM_SCTP; 11011 mout->m_pkthdr.csum_data = 0; 11012 SCTP_STAT_INCR(sctps_sendhwcrc); 11013 #endif 11014 } 11015 #ifdef SCTP_PACKET_LOGGING 11016 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11017 sctp_packet_log(o_pak); 11018 } 11019 #endif 11020 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id); 11021 break; 11022 #endif 11023 #ifdef INET6 11024 case AF_INET6: 11025 ip6->ip6_plen = len - sizeof(struct ip6_hdr); 11026 if (port) { 11027 #if defined(SCTP_WITH_NO_CSUM) 11028 SCTP_STAT_INCR(sctps_sendnocrc); 11029 #else 11030 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 11031 SCTP_STAT_INCR(sctps_sendswcrc); 11032 #endif 11033 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) { 11034 udp->uh_sum = 0xffff; 11035 } 11036 } else { 11037 #if defined(SCTP_WITH_NO_CSUM) 11038 SCTP_STAT_INCR(sctps_sendnocrc); 11039 #else 11040 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 11041 mout->m_pkthdr.csum_data = 0; 11042 SCTP_STAT_INCR(sctps_sendhwcrc); 11043 #endif 11044 } 11045 #ifdef SCTP_PACKET_LOGGING 11046 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11047 sctp_packet_log(o_pak); 11048 } 11049 #endif 11050 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id); 11051 break; 11052 #endif 11053 default: 11054 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 11055 dst->sa_family); 11056 sctp_m_freem(mout); 11057 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 11058 return; 11059 } 11060 SCTP_STAT_INCR(sctps_sendpackets); 11061 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 11062 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11063 return; 11064 } 11065 11066 void 11067 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, 11068 struct sctphdr *sh, 11069 uint8_t use_mflowid, uint32_t mflowid, 11070 uint32_t vrf_id, uint16_t port) 11071 { 11072 sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL, 11073 use_mflowid, mflowid, 11074 vrf_id, port); 11075 } 11076 11077 void 11078 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked 11079 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 11080 SCTP_UNUSED 11081 #endif 11082 ) 11083 { 11084 struct sctp_tmit_chunk *chk; 11085 struct sctp_heartbeat_chunk *hb; 11086 struct timeval now; 11087 11088 SCTP_TCB_LOCK_ASSERT(stcb); 11089 if (net == NULL) { 11090 return; 11091 } 11092 (void)SCTP_GETTIME_TIMEVAL(&now); 11093 switch (net->ro._l_addr.sa.sa_family) { 11094 #ifdef INET 11095 case AF_INET: 11096 break; 11097 #endif 11098 #ifdef INET6 11099 case AF_INET6: 11100 break; 11101 #endif 11102 default: 11103 return; 11104 } 11105 sctp_alloc_a_chunk(stcb, chk); 11106 if (chk == NULL) { 11107 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n"); 11108 return; 11109 } 11110 chk->copy_by_ref = 0; 11111 chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST; 11112 chk->rec.chunk_id.can_take_data = 1; 11113 chk->asoc = &stcb->asoc; 11114 chk->send_size = sizeof(struct sctp_heartbeat_chunk); 11115 11116 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11117 if (chk->data == NULL) { 11118 sctp_free_a_chunk(stcb, chk, so_locked); 11119 return; 11120 } 11121 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11122 SCTP_BUF_LEN(chk->data) = chk->send_size; 11123 chk->sent = SCTP_DATAGRAM_UNSENT; 11124 chk->snd_count = 0; 11125 chk->whoTo = net; 11126 atomic_add_int(&chk->whoTo->ref_count, 1); 11127 /* Now we have a mbuf that we can fill in with the details */ 11128 hb = mtod(chk->data, struct sctp_heartbeat_chunk *); 11129 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk)); 11130 /* fill out chunk header */ 11131 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST; 11132 hb->ch.chunk_flags = 0; 11133 hb->ch.chunk_length = htons(chk->send_size); 11134 /* Fill out hb parameter */ 11135 hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO); 11136 hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param)); 11137 hb->heartbeat.hb_info.time_value_1 = now.tv_sec; 11138 hb->heartbeat.hb_info.time_value_2 = now.tv_usec; 11139 /* Did our user request this one, put it in */ 11140 hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family; 11141 hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len; 11142 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 11143 /* 11144 * we only take from the entropy pool if the address is not 11145 * confirmed. 11146 */ 11147 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11148 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11149 } else { 11150 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0; 11151 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0; 11152 } 11153 switch (net->ro._l_addr.sa.sa_family) { 11154 #ifdef INET 11155 case AF_INET: 11156 memcpy(hb->heartbeat.hb_info.address, 11157 &net->ro._l_addr.sin.sin_addr, 11158 sizeof(net->ro._l_addr.sin.sin_addr)); 11159 break; 11160 #endif 11161 #ifdef INET6 11162 case AF_INET6: 11163 memcpy(hb->heartbeat.hb_info.address, 11164 &net->ro._l_addr.sin6.sin6_addr, 11165 sizeof(net->ro._l_addr.sin6.sin6_addr)); 11166 break; 11167 #endif 11168 default: 11169 return; 11170 break; 11171 } 11172 net->hb_responded = 0; 11173 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11174 stcb->asoc.ctrl_queue_cnt++; 11175 SCTP_STAT_INCR(sctps_sendheartbeat); 11176 return; 11177 } 11178 11179 void 11180 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net, 11181 uint32_t high_tsn) 11182 { 11183 struct sctp_association *asoc; 11184 struct sctp_ecne_chunk *ecne; 11185 struct sctp_tmit_chunk *chk; 11186 11187 if (net == NULL) { 11188 return; 11189 } 11190 asoc = &stcb->asoc; 11191 SCTP_TCB_LOCK_ASSERT(stcb); 11192 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11193 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) { 11194 /* found a previous ECN_ECHO update it if needed */ 11195 uint32_t cnt, ctsn; 11196 11197 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11198 ctsn = ntohl(ecne->tsn); 11199 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11200 ecne->tsn = htonl(high_tsn); 11201 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11202 } 11203 cnt = ntohl(ecne->num_pkts_since_cwr); 11204 cnt++; 11205 ecne->num_pkts_since_cwr = htonl(cnt); 11206 return; 11207 } 11208 } 11209 /* nope could not find one to update so we must build one */ 11210 sctp_alloc_a_chunk(stcb, chk); 11211 if (chk == NULL) { 11212 return; 11213 } 11214 chk->copy_by_ref = 0; 11215 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11216 chk->rec.chunk_id.id = SCTP_ECN_ECHO; 11217 chk->rec.chunk_id.can_take_data = 0; 11218 chk->asoc = &stcb->asoc; 11219 chk->send_size = sizeof(struct sctp_ecne_chunk); 11220 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11221 if (chk->data == NULL) { 11222 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11223 return; 11224 } 11225 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11226 SCTP_BUF_LEN(chk->data) = chk->send_size; 11227 chk->sent = SCTP_DATAGRAM_UNSENT; 11228 chk->snd_count = 0; 11229 chk->whoTo = net; 11230 atomic_add_int(&chk->whoTo->ref_count, 1); 11231 11232 stcb->asoc.ecn_echo_cnt_onq++; 11233 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11234 ecne->ch.chunk_type = SCTP_ECN_ECHO; 11235 ecne->ch.chunk_flags = 0; 11236 ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk)); 11237 ecne->tsn = htonl(high_tsn); 11238 ecne->num_pkts_since_cwr = htonl(1); 11239 TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next); 11240 asoc->ctrl_queue_cnt++; 11241 } 11242 11243 void 11244 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, 11245 struct mbuf *m, int len, int iphlen, int bad_crc) 11246 { 11247 struct sctp_association *asoc; 11248 struct sctp_pktdrop_chunk *drp; 11249 struct sctp_tmit_chunk *chk; 11250 uint8_t *datap; 11251 int was_trunc = 0; 11252 int fullsz = 0; 11253 long spc; 11254 int offset; 11255 struct sctp_chunkhdr *ch, chunk_buf; 11256 unsigned int chk_length; 11257 11258 if (!stcb) { 11259 return; 11260 } 11261 asoc = &stcb->asoc; 11262 SCTP_TCB_LOCK_ASSERT(stcb); 11263 if (asoc->peer_supports_pktdrop == 0) { 11264 /*- 11265 * peer must declare support before I send one. 11266 */ 11267 return; 11268 } 11269 if (stcb->sctp_socket == NULL) { 11270 return; 11271 } 11272 sctp_alloc_a_chunk(stcb, chk); 11273 if (chk == NULL) { 11274 return; 11275 } 11276 chk->copy_by_ref = 0; 11277 len -= iphlen; 11278 chk->send_size = len; 11279 /* Validate that we do not have an ABORT in here. */ 11280 offset = iphlen + sizeof(struct sctphdr); 11281 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11282 sizeof(*ch), (uint8_t *) & chunk_buf); 11283 while (ch != NULL) { 11284 chk_length = ntohs(ch->chunk_length); 11285 if (chk_length < sizeof(*ch)) { 11286 /* break to abort land */ 11287 break; 11288 } 11289 switch (ch->chunk_type) { 11290 case SCTP_PACKET_DROPPED: 11291 case SCTP_ABORT_ASSOCIATION: 11292 case SCTP_INITIATION_ACK: 11293 /** 11294 * We don't respond with an PKT-DROP to an ABORT 11295 * or PKT-DROP. We also do not respond to an 11296 * INIT-ACK, because we can't know if the initiation 11297 * tag is correct or not. 11298 */ 11299 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11300 return; 11301 default: 11302 break; 11303 } 11304 offset += SCTP_SIZE32(chk_length); 11305 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11306 sizeof(*ch), (uint8_t *) & chunk_buf); 11307 } 11308 11309 if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) > 11310 min(stcb->asoc.smallest_mtu, MCLBYTES)) { 11311 /* 11312 * only send 1 mtu worth, trim off the excess on the end. 11313 */ 11314 fullsz = len; 11315 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD; 11316 was_trunc = 1; 11317 } 11318 chk->asoc = &stcb->asoc; 11319 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11320 if (chk->data == NULL) { 11321 jump_out: 11322 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11323 return; 11324 } 11325 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11326 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 11327 if (drp == NULL) { 11328 sctp_m_freem(chk->data); 11329 chk->data = NULL; 11330 goto jump_out; 11331 } 11332 chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) + 11333 sizeof(struct sctphdr) + SCTP_MED_OVERHEAD)); 11334 chk->book_size_scale = 0; 11335 if (was_trunc) { 11336 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 11337 drp->trunc_len = htons(fullsz); 11338 /* 11339 * Len is already adjusted to size minus overhead above take 11340 * out the pkt_drop chunk itself from it. 11341 */ 11342 chk->send_size = len - sizeof(struct sctp_pktdrop_chunk); 11343 len = chk->send_size; 11344 } else { 11345 /* no truncation needed */ 11346 drp->ch.chunk_flags = 0; 11347 drp->trunc_len = htons(0); 11348 } 11349 if (bad_crc) { 11350 drp->ch.chunk_flags |= SCTP_BADCRC; 11351 } 11352 chk->send_size += sizeof(struct sctp_pktdrop_chunk); 11353 SCTP_BUF_LEN(chk->data) = chk->send_size; 11354 chk->sent = SCTP_DATAGRAM_UNSENT; 11355 chk->snd_count = 0; 11356 if (net) { 11357 /* we should hit here */ 11358 chk->whoTo = net; 11359 atomic_add_int(&chk->whoTo->ref_count, 1); 11360 } else { 11361 chk->whoTo = NULL; 11362 } 11363 chk->rec.chunk_id.id = SCTP_PACKET_DROPPED; 11364 chk->rec.chunk_id.can_take_data = 1; 11365 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 11366 drp->ch.chunk_length = htons(chk->send_size); 11367 spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket); 11368 if (spc < 0) { 11369 spc = 0; 11370 } 11371 drp->bottle_bw = htonl(spc); 11372 if (asoc->my_rwnd) { 11373 drp->current_onq = htonl(asoc->size_on_reasm_queue + 11374 asoc->size_on_all_streams + 11375 asoc->my_rwnd_control_len + 11376 stcb->sctp_socket->so_rcv.sb_cc); 11377 } else { 11378 /*- 11379 * If my rwnd is 0, possibly from mbuf depletion as well as 11380 * space used, tell the peer there is NO space aka onq == bw 11381 */ 11382 drp->current_onq = htonl(spc); 11383 } 11384 drp->reserved = 0; 11385 datap = drp->data; 11386 m_copydata(m, iphlen, len, (caddr_t)datap); 11387 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11388 asoc->ctrl_queue_cnt++; 11389 } 11390 11391 void 11392 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override) 11393 { 11394 struct sctp_association *asoc; 11395 struct sctp_cwr_chunk *cwr; 11396 struct sctp_tmit_chunk *chk; 11397 11398 SCTP_TCB_LOCK_ASSERT(stcb); 11399 if (net == NULL) { 11400 return; 11401 } 11402 asoc = &stcb->asoc; 11403 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11404 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) { 11405 /* 11406 * found a previous CWR queued to same destination 11407 * update it if needed 11408 */ 11409 uint32_t ctsn; 11410 11411 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11412 ctsn = ntohl(cwr->tsn); 11413 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11414 cwr->tsn = htonl(high_tsn); 11415 } 11416 if (override & SCTP_CWR_REDUCE_OVERRIDE) { 11417 /* Make sure override is carried */ 11418 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE; 11419 } 11420 return; 11421 } 11422 } 11423 sctp_alloc_a_chunk(stcb, chk); 11424 if (chk == NULL) { 11425 return; 11426 } 11427 chk->copy_by_ref = 0; 11428 chk->rec.chunk_id.id = SCTP_ECN_CWR; 11429 chk->rec.chunk_id.can_take_data = 1; 11430 chk->asoc = &stcb->asoc; 11431 chk->send_size = sizeof(struct sctp_cwr_chunk); 11432 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11433 if (chk->data == NULL) { 11434 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11435 return; 11436 } 11437 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11438 SCTP_BUF_LEN(chk->data) = chk->send_size; 11439 chk->sent = SCTP_DATAGRAM_UNSENT; 11440 chk->snd_count = 0; 11441 chk->whoTo = net; 11442 atomic_add_int(&chk->whoTo->ref_count, 1); 11443 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11444 cwr->ch.chunk_type = SCTP_ECN_CWR; 11445 cwr->ch.chunk_flags = override; 11446 cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk)); 11447 cwr->tsn = htonl(high_tsn); 11448 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11449 asoc->ctrl_queue_cnt++; 11450 } 11451 11452 void 11453 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk, 11454 int number_entries, uint16_t * list, 11455 uint32_t seq, uint32_t resp_seq, uint32_t last_sent) 11456 { 11457 uint16_t len, old_len, i; 11458 struct sctp_stream_reset_out_request *req_out; 11459 struct sctp_chunkhdr *ch; 11460 11461 ch = mtod(chk->data, struct sctp_chunkhdr *); 11462 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11463 11464 /* get to new offset for the param. */ 11465 req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len); 11466 /* now how long will this param be? */ 11467 len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries)); 11468 req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST); 11469 req_out->ph.param_length = htons(len); 11470 req_out->request_seq = htonl(seq); 11471 req_out->response_seq = htonl(resp_seq); 11472 req_out->send_reset_at_tsn = htonl(last_sent); 11473 if (number_entries) { 11474 for (i = 0; i < number_entries; i++) { 11475 req_out->list_of_streams[i] = htons(list[i]); 11476 } 11477 } 11478 if (SCTP_SIZE32(len) > len) { 11479 /*- 11480 * Need to worry about the pad we may end up adding to the 11481 * end. This is easy since the struct is either aligned to 4 11482 * bytes or 2 bytes off. 11483 */ 11484 req_out->list_of_streams[number_entries] = 0; 11485 } 11486 /* now fix the chunk length */ 11487 ch->chunk_length = htons(len + old_len); 11488 chk->book_size = len + old_len; 11489 chk->book_size_scale = 0; 11490 chk->send_size = SCTP_SIZE32(chk->book_size); 11491 SCTP_BUF_LEN(chk->data) = chk->send_size; 11492 return; 11493 } 11494 11495 static void 11496 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk, 11497 int number_entries, uint16_t * list, 11498 uint32_t seq) 11499 { 11500 uint16_t len, old_len, i; 11501 struct sctp_stream_reset_in_request *req_in; 11502 struct sctp_chunkhdr *ch; 11503 11504 ch = mtod(chk->data, struct sctp_chunkhdr *); 11505 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11506 11507 /* get to new offset for the param. */ 11508 req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len); 11509 /* now how long will this param be? */ 11510 len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries)); 11511 req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST); 11512 req_in->ph.param_length = htons(len); 11513 req_in->request_seq = htonl(seq); 11514 if (number_entries) { 11515 for (i = 0; i < number_entries; i++) { 11516 req_in->list_of_streams[i] = htons(list[i]); 11517 } 11518 } 11519 if (SCTP_SIZE32(len) > len) { 11520 /*- 11521 * Need to worry about the pad we may end up adding to the 11522 * end. This is easy since the struct is either aligned to 4 11523 * bytes or 2 bytes off. 11524 */ 11525 req_in->list_of_streams[number_entries] = 0; 11526 } 11527 /* now fix the chunk length */ 11528 ch->chunk_length = htons(len + old_len); 11529 chk->book_size = len + old_len; 11530 chk->book_size_scale = 0; 11531 chk->send_size = SCTP_SIZE32(chk->book_size); 11532 SCTP_BUF_LEN(chk->data) = chk->send_size; 11533 return; 11534 } 11535 11536 static void 11537 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk, 11538 uint32_t seq) 11539 { 11540 uint16_t len, old_len; 11541 struct sctp_stream_reset_tsn_request *req_tsn; 11542 struct sctp_chunkhdr *ch; 11543 11544 ch = mtod(chk->data, struct sctp_chunkhdr *); 11545 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11546 11547 /* get to new offset for the param. */ 11548 req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len); 11549 /* now how long will this param be? */ 11550 len = sizeof(struct sctp_stream_reset_tsn_request); 11551 req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST); 11552 req_tsn->ph.param_length = htons(len); 11553 req_tsn->request_seq = htonl(seq); 11554 11555 /* now fix the chunk length */ 11556 ch->chunk_length = htons(len + old_len); 11557 chk->send_size = len + old_len; 11558 chk->book_size = SCTP_SIZE32(chk->send_size); 11559 chk->book_size_scale = 0; 11560 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11561 return; 11562 } 11563 11564 void 11565 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk, 11566 uint32_t resp_seq, uint32_t result) 11567 { 11568 uint16_t len, old_len; 11569 struct sctp_stream_reset_response *resp; 11570 struct sctp_chunkhdr *ch; 11571 11572 ch = mtod(chk->data, struct sctp_chunkhdr *); 11573 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11574 11575 /* get to new offset for the param. */ 11576 resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len); 11577 /* now how long will this param be? */ 11578 len = sizeof(struct sctp_stream_reset_response); 11579 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11580 resp->ph.param_length = htons(len); 11581 resp->response_seq = htonl(resp_seq); 11582 resp->result = ntohl(result); 11583 11584 /* now fix the chunk length */ 11585 ch->chunk_length = htons(len + old_len); 11586 chk->book_size = len + old_len; 11587 chk->book_size_scale = 0; 11588 chk->send_size = SCTP_SIZE32(chk->book_size); 11589 SCTP_BUF_LEN(chk->data) = chk->send_size; 11590 return; 11591 } 11592 11593 void 11594 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk, 11595 uint32_t resp_seq, uint32_t result, 11596 uint32_t send_una, uint32_t recv_next) 11597 { 11598 uint16_t len, old_len; 11599 struct sctp_stream_reset_response_tsn *resp; 11600 struct sctp_chunkhdr *ch; 11601 11602 ch = mtod(chk->data, struct sctp_chunkhdr *); 11603 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11604 11605 /* get to new offset for the param. */ 11606 resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len); 11607 /* now how long will this param be? */ 11608 len = sizeof(struct sctp_stream_reset_response_tsn); 11609 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11610 resp->ph.param_length = htons(len); 11611 resp->response_seq = htonl(resp_seq); 11612 resp->result = htonl(result); 11613 resp->senders_next_tsn = htonl(send_una); 11614 resp->receivers_next_tsn = htonl(recv_next); 11615 11616 /* now fix the chunk length */ 11617 ch->chunk_length = htons(len + old_len); 11618 chk->book_size = len + old_len; 11619 chk->send_size = SCTP_SIZE32(chk->book_size); 11620 chk->book_size_scale = 0; 11621 SCTP_BUF_LEN(chk->data) = chk->send_size; 11622 return; 11623 } 11624 11625 static void 11626 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk, 11627 uint32_t seq, 11628 uint16_t adding) 11629 { 11630 uint16_t len, old_len; 11631 struct sctp_chunkhdr *ch; 11632 struct sctp_stream_reset_add_strm *addstr; 11633 11634 ch = mtod(chk->data, struct sctp_chunkhdr *); 11635 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11636 11637 /* get to new offset for the param. */ 11638 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11639 /* now how long will this param be? */ 11640 len = sizeof(struct sctp_stream_reset_add_strm); 11641 11642 /* Fill it out. */ 11643 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS); 11644 addstr->ph.param_length = htons(len); 11645 addstr->request_seq = htonl(seq); 11646 addstr->number_of_streams = htons(adding); 11647 addstr->reserved = 0; 11648 11649 /* now fix the chunk length */ 11650 ch->chunk_length = htons(len + old_len); 11651 chk->send_size = len + old_len; 11652 chk->book_size = SCTP_SIZE32(chk->send_size); 11653 chk->book_size_scale = 0; 11654 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11655 return; 11656 } 11657 11658 static void 11659 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk, 11660 uint32_t seq, 11661 uint16_t adding) 11662 { 11663 uint16_t len, old_len; 11664 struct sctp_chunkhdr *ch; 11665 struct sctp_stream_reset_add_strm *addstr; 11666 11667 ch = mtod(chk->data, struct sctp_chunkhdr *); 11668 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11669 11670 /* get to new offset for the param. */ 11671 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11672 /* now how long will this param be? */ 11673 len = sizeof(struct sctp_stream_reset_add_strm); 11674 /* Fill it out. */ 11675 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS); 11676 addstr->ph.param_length = htons(len); 11677 addstr->request_seq = htonl(seq); 11678 addstr->number_of_streams = htons(adding); 11679 addstr->reserved = 0; 11680 11681 /* now fix the chunk length */ 11682 ch->chunk_length = htons(len + old_len); 11683 chk->send_size = len + old_len; 11684 chk->book_size = SCTP_SIZE32(chk->send_size); 11685 chk->book_size_scale = 0; 11686 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11687 return; 11688 } 11689 11690 int 11691 sctp_send_str_reset_req(struct sctp_tcb *stcb, 11692 int number_entries, uint16_t * list, 11693 uint8_t send_out_req, 11694 uint8_t send_in_req, 11695 uint8_t send_tsn_req, 11696 uint8_t add_stream, 11697 uint16_t adding_o, 11698 uint16_t adding_i, uint8_t peer_asked) 11699 { 11700 11701 struct sctp_association *asoc; 11702 struct sctp_tmit_chunk *chk; 11703 struct sctp_chunkhdr *ch; 11704 uint32_t seq; 11705 11706 asoc = &stcb->asoc; 11707 if (asoc->stream_reset_outstanding) { 11708 /*- 11709 * Already one pending, must get ACK back to clear the flag. 11710 */ 11711 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY); 11712 return (EBUSY); 11713 } 11714 if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) && 11715 (add_stream == 0)) { 11716 /* nothing to do */ 11717 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 11718 return (EINVAL); 11719 } 11720 if (send_tsn_req && (send_out_req || send_in_req)) { 11721 /* error, can't do that */ 11722 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 11723 return (EINVAL); 11724 } 11725 sctp_alloc_a_chunk(stcb, chk); 11726 if (chk == NULL) { 11727 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11728 return (ENOMEM); 11729 } 11730 chk->copy_by_ref = 0; 11731 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 11732 chk->rec.chunk_id.can_take_data = 0; 11733 chk->asoc = &stcb->asoc; 11734 chk->book_size = sizeof(struct sctp_chunkhdr); 11735 chk->send_size = SCTP_SIZE32(chk->book_size); 11736 chk->book_size_scale = 0; 11737 11738 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11739 if (chk->data == NULL) { 11740 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 11741 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11742 return (ENOMEM); 11743 } 11744 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11745 11746 /* setup chunk parameters */ 11747 chk->sent = SCTP_DATAGRAM_UNSENT; 11748 chk->snd_count = 0; 11749 if (stcb->asoc.alternate) { 11750 chk->whoTo = stcb->asoc.alternate; 11751 } else { 11752 chk->whoTo = stcb->asoc.primary_destination; 11753 } 11754 atomic_add_int(&chk->whoTo->ref_count, 1); 11755 ch = mtod(chk->data, struct sctp_chunkhdr *); 11756 ch->chunk_type = SCTP_STREAM_RESET; 11757 ch->chunk_flags = 0; 11758 ch->chunk_length = htons(chk->book_size); 11759 SCTP_BUF_LEN(chk->data) = chk->send_size; 11760 11761 seq = stcb->asoc.str_reset_seq_out; 11762 if (send_out_req) { 11763 sctp_add_stream_reset_out(chk, number_entries, list, 11764 seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1)); 11765 asoc->stream_reset_out_is_outstanding = 1; 11766 seq++; 11767 asoc->stream_reset_outstanding++; 11768 } 11769 if ((add_stream & 1) && 11770 ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) { 11771 /* Need to allocate more */ 11772 struct sctp_stream_out *oldstream; 11773 struct sctp_stream_queue_pending *sp, *nsp; 11774 int i; 11775 11776 oldstream = stcb->asoc.strmout; 11777 /* get some more */ 11778 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *, 11779 ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)), 11780 SCTP_M_STRMO); 11781 if (stcb->asoc.strmout == NULL) { 11782 uint8_t x; 11783 11784 stcb->asoc.strmout = oldstream; 11785 /* Turn off the bit */ 11786 x = add_stream & 0xfe; 11787 add_stream = x; 11788 goto skip_stuff; 11789 } 11790 /* 11791 * Ok now we proceed with copying the old out stuff and 11792 * initializing the new stuff. 11793 */ 11794 SCTP_TCB_SEND_LOCK(stcb); 11795 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1); 11796 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11797 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 11798 stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues; 11799 stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send; 11800 stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete; 11801 stcb->asoc.strmout[i].stream_no = i; 11802 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]); 11803 /* now anything on those queues? */ 11804 TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) { 11805 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next); 11806 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next); 11807 } 11808 /* Now move assoc pointers too */ 11809 if (stcb->asoc.last_out_stream == &oldstream[i]) { 11810 stcb->asoc.last_out_stream = &stcb->asoc.strmout[i]; 11811 } 11812 if (stcb->asoc.locked_on_sending == &oldstream[i]) { 11813 stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i]; 11814 } 11815 } 11816 /* now the new streams */ 11817 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 11818 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) { 11819 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 11820 stcb->asoc.strmout[i].chunks_on_queues = 0; 11821 stcb->asoc.strmout[i].next_sequence_send = 0x0; 11822 stcb->asoc.strmout[i].stream_no = i; 11823 stcb->asoc.strmout[i].last_msg_incomplete = 0; 11824 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL); 11825 } 11826 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o; 11827 SCTP_FREE(oldstream, SCTP_M_STRMO); 11828 SCTP_TCB_SEND_UNLOCK(stcb); 11829 } 11830 skip_stuff: 11831 if ((add_stream & 1) && (adding_o > 0)) { 11832 asoc->strm_pending_add_size = adding_o; 11833 asoc->peer_req_out = peer_asked; 11834 sctp_add_an_out_stream(chk, seq, adding_o); 11835 seq++; 11836 asoc->stream_reset_outstanding++; 11837 } 11838 if ((add_stream & 2) && (adding_i > 0)) { 11839 sctp_add_an_in_stream(chk, seq, adding_i); 11840 seq++; 11841 asoc->stream_reset_outstanding++; 11842 } 11843 if (send_in_req) { 11844 sctp_add_stream_reset_in(chk, number_entries, list, seq); 11845 seq++; 11846 asoc->stream_reset_outstanding++; 11847 } 11848 if (send_tsn_req) { 11849 sctp_add_stream_reset_tsn(chk, seq); 11850 asoc->stream_reset_outstanding++; 11851 } 11852 asoc->str_reset = chk; 11853 /* insert the chunk for sending */ 11854 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 11855 chk, 11856 sctp_next); 11857 asoc->ctrl_queue_cnt++; 11858 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 11859 return (0); 11860 } 11861 11862 void 11863 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, 11864 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 11865 uint8_t use_mflowid, uint32_t mflowid, 11866 uint32_t vrf_id, uint16_t port) 11867 { 11868 /* Don't respond to an ABORT with an ABORT. */ 11869 if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) { 11870 if (cause) 11871 sctp_m_freem(cause); 11872 return; 11873 } 11874 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause, 11875 use_mflowid, mflowid, 11876 vrf_id, port); 11877 return; 11878 } 11879 11880 void 11881 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst, 11882 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 11883 uint8_t use_mflowid, uint32_t mflowid, 11884 uint32_t vrf_id, uint16_t port) 11885 { 11886 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause, 11887 use_mflowid, mflowid, 11888 vrf_id, port); 11889 return; 11890 } 11891 11892 static struct mbuf * 11893 sctp_copy_resume(struct uio *uio, 11894 int max_send_len, 11895 int user_marks_eor, 11896 int *error, 11897 uint32_t * sndout, 11898 struct mbuf **new_tail) 11899 { 11900 struct mbuf *m; 11901 11902 m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0, 11903 (M_PKTHDR | (user_marks_eor ? M_EOR : 0))); 11904 if (m == NULL) { 11905 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11906 *error = ENOMEM; 11907 } else { 11908 *sndout = m_length(m, NULL); 11909 *new_tail = m_last(m); 11910 } 11911 return (m); 11912 } 11913 11914 static int 11915 sctp_copy_one(struct sctp_stream_queue_pending *sp, 11916 struct uio *uio, 11917 int resv_upfront) 11918 { 11919 int left; 11920 11921 left = sp->length; 11922 sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, 11923 resv_upfront, 0); 11924 if (sp->data == NULL) { 11925 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11926 return (ENOMEM); 11927 } 11928 sp->tail_mbuf = m_last(sp->data); 11929 return (0); 11930 } 11931 11932 11933 11934 static struct sctp_stream_queue_pending * 11935 sctp_copy_it_in(struct sctp_tcb *stcb, 11936 struct sctp_association *asoc, 11937 struct sctp_sndrcvinfo *srcv, 11938 struct uio *uio, 11939 struct sctp_nets *net, 11940 int max_send_len, 11941 int user_marks_eor, 11942 int *error) 11943 { 11944 /*- 11945 * This routine must be very careful in its work. Protocol 11946 * processing is up and running so care must be taken to spl...() 11947 * when you need to do something that may effect the stcb/asoc. The 11948 * sb is locked however. When data is copied the protocol processing 11949 * should be enabled since this is a slower operation... 11950 */ 11951 struct sctp_stream_queue_pending *sp = NULL; 11952 int resv_in_first; 11953 11954 *error = 0; 11955 /* Now can we send this? */ 11956 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 11957 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 11958 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 11959 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 11960 /* got data while shutting down */ 11961 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 11962 *error = ECONNRESET; 11963 goto out_now; 11964 } 11965 sctp_alloc_a_strmoq(stcb, sp); 11966 if (sp == NULL) { 11967 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11968 *error = ENOMEM; 11969 goto out_now; 11970 } 11971 sp->act_flags = 0; 11972 sp->sender_all_done = 0; 11973 sp->sinfo_flags = srcv->sinfo_flags; 11974 sp->timetolive = srcv->sinfo_timetolive; 11975 sp->ppid = srcv->sinfo_ppid; 11976 sp->context = srcv->sinfo_context; 11977 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 11978 11979 sp->stream = srcv->sinfo_stream; 11980 sp->length = min(uio->uio_resid, max_send_len); 11981 if ((sp->length == (uint32_t) uio->uio_resid) && 11982 ((user_marks_eor == 0) || 11983 (srcv->sinfo_flags & SCTP_EOF) || 11984 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 11985 sp->msg_is_complete = 1; 11986 } else { 11987 sp->msg_is_complete = 0; 11988 } 11989 sp->sender_all_done = 0; 11990 sp->some_taken = 0; 11991 sp->put_last_out = 0; 11992 resv_in_first = sizeof(struct sctp_data_chunk); 11993 sp->data = sp->tail_mbuf = NULL; 11994 if (sp->length == 0) { 11995 *error = 0; 11996 goto skip_copy; 11997 } 11998 if (srcv->sinfo_keynumber_valid) { 11999 sp->auth_keyid = srcv->sinfo_keynumber; 12000 } else { 12001 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 12002 } 12003 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 12004 sctp_auth_key_acquire(stcb, sp->auth_keyid); 12005 sp->holds_key_ref = 1; 12006 } 12007 *error = sctp_copy_one(sp, uio, resv_in_first); 12008 skip_copy: 12009 if (*error) { 12010 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 12011 sp = NULL; 12012 } else { 12013 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 12014 sp->net = net; 12015 atomic_add_int(&sp->net->ref_count, 1); 12016 } else { 12017 sp->net = NULL; 12018 } 12019 sctp_set_prsctp_policy(sp); 12020 } 12021 out_now: 12022 return (sp); 12023 } 12024 12025 12026 int 12027 sctp_sosend(struct socket *so, 12028 struct sockaddr *addr, 12029 struct uio *uio, 12030 struct mbuf *top, 12031 struct mbuf *control, 12032 int flags, 12033 struct thread *p 12034 ) 12035 { 12036 int error, use_sndinfo = 0; 12037 struct sctp_sndrcvinfo sndrcvninfo; 12038 struct sockaddr *addr_to_use; 12039 12040 #if defined(INET) && defined(INET6) 12041 struct sockaddr_in sin; 12042 12043 #endif 12044 12045 if (control) { 12046 /* process cmsg snd/rcv info (maybe a assoc-id) */ 12047 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, 12048 sizeof(sndrcvninfo))) { 12049 /* got one */ 12050 use_sndinfo = 1; 12051 } 12052 } 12053 addr_to_use = addr; 12054 #if defined(INET) && defined(INET6) 12055 if ((addr) && (addr->sa_family == AF_INET6)) { 12056 struct sockaddr_in6 *sin6; 12057 12058 sin6 = (struct sockaddr_in6 *)addr; 12059 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 12060 in6_sin6_2_sin(&sin, sin6); 12061 addr_to_use = (struct sockaddr *)&sin; 12062 } 12063 } 12064 #endif 12065 error = sctp_lower_sosend(so, addr_to_use, uio, top, 12066 control, 12067 flags, 12068 use_sndinfo ? &sndrcvninfo : NULL 12069 ,p 12070 ); 12071 return (error); 12072 } 12073 12074 12075 int 12076 sctp_lower_sosend(struct socket *so, 12077 struct sockaddr *addr, 12078 struct uio *uio, 12079 struct mbuf *i_pak, 12080 struct mbuf *control, 12081 int flags, 12082 struct sctp_sndrcvinfo *srcv 12083 , 12084 struct thread *p 12085 ) 12086 { 12087 unsigned int sndlen = 0, max_len; 12088 int error, len; 12089 struct mbuf *top = NULL; 12090 int queue_only = 0, queue_only_for_init = 0; 12091 int free_cnt_applied = 0; 12092 int un_sent; 12093 int now_filled = 0; 12094 unsigned int inqueue_bytes = 0; 12095 struct sctp_block_entry be; 12096 struct sctp_inpcb *inp; 12097 struct sctp_tcb *stcb = NULL; 12098 struct timeval now; 12099 struct sctp_nets *net; 12100 struct sctp_association *asoc; 12101 struct sctp_inpcb *t_inp; 12102 int user_marks_eor; 12103 int create_lock_applied = 0; 12104 int nagle_applies = 0; 12105 int some_on_control = 0; 12106 int got_all_of_the_send = 0; 12107 int hold_tcblock = 0; 12108 int non_blocking = 0; 12109 uint32_t local_add_more, local_soresv = 0; 12110 uint16_t port; 12111 uint16_t sinfo_flags; 12112 sctp_assoc_t sinfo_assoc_id; 12113 12114 error = 0; 12115 net = NULL; 12116 stcb = NULL; 12117 asoc = NULL; 12118 12119 t_inp = inp = (struct sctp_inpcb *)so->so_pcb; 12120 if (inp == NULL) { 12121 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12122 error = EINVAL; 12123 if (i_pak) { 12124 SCTP_RELEASE_PKT(i_pak); 12125 } 12126 return (error); 12127 } 12128 if ((uio == NULL) && (i_pak == NULL)) { 12129 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12130 return (EINVAL); 12131 } 12132 user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 12133 atomic_add_int(&inp->total_sends, 1); 12134 if (uio) { 12135 if (uio->uio_resid < 0) { 12136 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12137 return (EINVAL); 12138 } 12139 sndlen = uio->uio_resid; 12140 } else { 12141 top = SCTP_HEADER_TO_CHAIN(i_pak); 12142 sndlen = SCTP_HEADER_LEN(i_pak); 12143 } 12144 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n", 12145 (void *)addr, 12146 sndlen); 12147 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 12148 (inp->sctp_socket->so_qlimit)) { 12149 /* The listener can NOT send */ 12150 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12151 error = ENOTCONN; 12152 goto out_unlocked; 12153 } 12154 /** 12155 * Pre-screen address, if one is given the sin-len 12156 * must be set correctly! 12157 */ 12158 if (addr) { 12159 union sctp_sockstore *raddr = (union sctp_sockstore *)addr; 12160 12161 switch (raddr->sa.sa_family) { 12162 #ifdef INET 12163 case AF_INET: 12164 if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) { 12165 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12166 error = EINVAL; 12167 goto out_unlocked; 12168 } 12169 port = raddr->sin.sin_port; 12170 break; 12171 #endif 12172 #ifdef INET6 12173 case AF_INET6: 12174 if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) { 12175 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12176 error = EINVAL; 12177 goto out_unlocked; 12178 } 12179 port = raddr->sin6.sin6_port; 12180 break; 12181 #endif 12182 default: 12183 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT); 12184 error = EAFNOSUPPORT; 12185 goto out_unlocked; 12186 } 12187 } else 12188 port = 0; 12189 12190 if (srcv) { 12191 sinfo_flags = srcv->sinfo_flags; 12192 sinfo_assoc_id = srcv->sinfo_assoc_id; 12193 if (INVALID_SINFO_FLAG(sinfo_flags) || 12194 PR_SCTP_INVALID_POLICY(sinfo_flags)) { 12195 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12196 error = EINVAL; 12197 goto out_unlocked; 12198 } 12199 if (srcv->sinfo_flags) 12200 SCTP_STAT_INCR(sctps_sends_with_flags); 12201 } else { 12202 sinfo_flags = inp->def_send.sinfo_flags; 12203 sinfo_assoc_id = inp->def_send.sinfo_assoc_id; 12204 } 12205 if (sinfo_flags & SCTP_SENDALL) { 12206 /* its a sendall */ 12207 error = sctp_sendall(inp, uio, top, srcv); 12208 top = NULL; 12209 goto out_unlocked; 12210 } 12211 if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) { 12212 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12213 error = EINVAL; 12214 goto out_unlocked; 12215 } 12216 /* now we must find the assoc */ 12217 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 12218 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 12219 SCTP_INP_RLOCK(inp); 12220 stcb = LIST_FIRST(&inp->sctp_asoc_list); 12221 if (stcb) { 12222 SCTP_TCB_LOCK(stcb); 12223 hold_tcblock = 1; 12224 } 12225 SCTP_INP_RUNLOCK(inp); 12226 } else if (sinfo_assoc_id) { 12227 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0); 12228 } else if (addr) { 12229 /*- 12230 * Since we did not use findep we must 12231 * increment it, and if we don't find a tcb 12232 * decrement it. 12233 */ 12234 SCTP_INP_WLOCK(inp); 12235 SCTP_INP_INCR_REF(inp); 12236 SCTP_INP_WUNLOCK(inp); 12237 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12238 if (stcb == NULL) { 12239 SCTP_INP_WLOCK(inp); 12240 SCTP_INP_DECR_REF(inp); 12241 SCTP_INP_WUNLOCK(inp); 12242 } else { 12243 hold_tcblock = 1; 12244 } 12245 } 12246 if ((stcb == NULL) && (addr)) { 12247 /* Possible implicit send? */ 12248 SCTP_ASOC_CREATE_LOCK(inp); 12249 create_lock_applied = 1; 12250 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 12251 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 12252 /* Should I really unlock ? */ 12253 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12254 error = EINVAL; 12255 goto out_unlocked; 12256 12257 } 12258 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 12259 (addr->sa_family == AF_INET6)) { 12260 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12261 error = EINVAL; 12262 goto out_unlocked; 12263 } 12264 SCTP_INP_WLOCK(inp); 12265 SCTP_INP_INCR_REF(inp); 12266 SCTP_INP_WUNLOCK(inp); 12267 /* With the lock applied look again */ 12268 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12269 if ((stcb == NULL) && (control != NULL) && (port > 0)) { 12270 stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error); 12271 } 12272 if (stcb == NULL) { 12273 SCTP_INP_WLOCK(inp); 12274 SCTP_INP_DECR_REF(inp); 12275 SCTP_INP_WUNLOCK(inp); 12276 } else { 12277 hold_tcblock = 1; 12278 } 12279 if (error) { 12280 goto out_unlocked; 12281 } 12282 if (t_inp != inp) { 12283 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12284 error = ENOTCONN; 12285 goto out_unlocked; 12286 } 12287 } 12288 if (stcb == NULL) { 12289 if (addr == NULL) { 12290 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12291 error = ENOENT; 12292 goto out_unlocked; 12293 } else { 12294 /* We must go ahead and start the INIT process */ 12295 uint32_t vrf_id; 12296 12297 if ((sinfo_flags & SCTP_ABORT) || 12298 ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) { 12299 /*- 12300 * User asks to abort a non-existant assoc, 12301 * or EOF a non-existant assoc with no data 12302 */ 12303 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12304 error = ENOENT; 12305 goto out_unlocked; 12306 } 12307 /* get an asoc/stcb struct */ 12308 vrf_id = inp->def_vrf_id; 12309 #ifdef INVARIANTS 12310 if (create_lock_applied == 0) { 12311 panic("Error, should hold create lock and I don't?"); 12312 } 12313 #endif 12314 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, 12315 p 12316 ); 12317 if (stcb == NULL) { 12318 /* Error is setup for us in the call */ 12319 goto out_unlocked; 12320 } 12321 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 12322 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 12323 /* 12324 * Set the connected flag so we can queue 12325 * data 12326 */ 12327 soisconnecting(so); 12328 } 12329 hold_tcblock = 1; 12330 if (create_lock_applied) { 12331 SCTP_ASOC_CREATE_UNLOCK(inp); 12332 create_lock_applied = 0; 12333 } else { 12334 SCTP_PRINTF("Huh-3? create lock should have been on??\n"); 12335 } 12336 /* 12337 * Turn on queue only flag to prevent data from 12338 * being sent 12339 */ 12340 queue_only = 1; 12341 asoc = &stcb->asoc; 12342 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 12343 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 12344 12345 /* initialize authentication params for the assoc */ 12346 sctp_initialize_auth_params(inp, stcb); 12347 12348 if (control) { 12349 if (sctp_process_cmsgs_for_init(stcb, control, &error)) { 12350 sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7); 12351 hold_tcblock = 0; 12352 stcb = NULL; 12353 goto out_unlocked; 12354 } 12355 } 12356 /* out with the INIT */ 12357 queue_only_for_init = 1; 12358 /*- 12359 * we may want to dig in after this call and adjust the MTU 12360 * value. It defaulted to 1500 (constant) but the ro 12361 * structure may now have an update and thus we may need to 12362 * change it BEFORE we append the message. 12363 */ 12364 } 12365 } else 12366 asoc = &stcb->asoc; 12367 if (srcv == NULL) 12368 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send; 12369 if (srcv->sinfo_flags & SCTP_ADDR_OVER) { 12370 if (addr) 12371 net = sctp_findnet(stcb, addr); 12372 else 12373 net = NULL; 12374 if ((net == NULL) || 12375 ((port != 0) && (port != stcb->rport))) { 12376 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12377 error = EINVAL; 12378 goto out_unlocked; 12379 } 12380 } else { 12381 if (stcb->asoc.alternate) { 12382 net = stcb->asoc.alternate; 12383 } else { 12384 net = stcb->asoc.primary_destination; 12385 } 12386 } 12387 atomic_add_int(&stcb->total_sends, 1); 12388 /* Keep the stcb from being freed under our feet */ 12389 atomic_add_int(&asoc->refcnt, 1); 12390 free_cnt_applied = 1; 12391 12392 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) { 12393 if (sndlen > asoc->smallest_mtu) { 12394 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12395 error = EMSGSIZE; 12396 goto out_unlocked; 12397 } 12398 } 12399 if (SCTP_SO_IS_NBIO(so) 12400 || (flags & MSG_NBIO) 12401 ) { 12402 non_blocking = 1; 12403 } 12404 /* would we block? */ 12405 if (non_blocking) { 12406 if (hold_tcblock == 0) { 12407 SCTP_TCB_LOCK(stcb); 12408 hold_tcblock = 1; 12409 } 12410 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12411 if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) || 12412 (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12413 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK); 12414 if (sndlen > SCTP_SB_LIMIT_SND(so)) 12415 error = EMSGSIZE; 12416 else 12417 error = EWOULDBLOCK; 12418 goto out_unlocked; 12419 } 12420 stcb->asoc.sb_send_resv += sndlen; 12421 SCTP_TCB_UNLOCK(stcb); 12422 hold_tcblock = 0; 12423 } else { 12424 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen); 12425 } 12426 local_soresv = sndlen; 12427 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12428 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12429 error = ECONNRESET; 12430 goto out_unlocked; 12431 } 12432 if (create_lock_applied) { 12433 SCTP_ASOC_CREATE_UNLOCK(inp); 12434 create_lock_applied = 0; 12435 } 12436 if (asoc->stream_reset_outstanding) { 12437 /* 12438 * Can't queue any data while stream reset is underway. 12439 */ 12440 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN); 12441 error = EAGAIN; 12442 goto out_unlocked; 12443 } 12444 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12445 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12446 queue_only = 1; 12447 } 12448 /* we are now done with all control */ 12449 if (control) { 12450 sctp_m_freem(control); 12451 control = NULL; 12452 } 12453 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 12454 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12455 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12456 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12457 if (srcv->sinfo_flags & SCTP_ABORT) { 12458 ; 12459 } else { 12460 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12461 error = ECONNRESET; 12462 goto out_unlocked; 12463 } 12464 } 12465 /* Ok, we will attempt a msgsnd :> */ 12466 if (p) { 12467 p->td_ru.ru_msgsnd++; 12468 } 12469 /* Are we aborting? */ 12470 if (srcv->sinfo_flags & SCTP_ABORT) { 12471 struct mbuf *mm; 12472 int tot_demand, tot_out = 0, max_out; 12473 12474 SCTP_STAT_INCR(sctps_sends_with_abort); 12475 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12476 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12477 /* It has to be up before we abort */ 12478 /* how big is the user initiated abort? */ 12479 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12480 error = EINVAL; 12481 goto out; 12482 } 12483 if (hold_tcblock) { 12484 SCTP_TCB_UNLOCK(stcb); 12485 hold_tcblock = 0; 12486 } 12487 if (top) { 12488 struct mbuf *cntm = NULL; 12489 12490 mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA); 12491 if (sndlen != 0) { 12492 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) { 12493 tot_out += SCTP_BUF_LEN(cntm); 12494 } 12495 } 12496 } else { 12497 /* Must fit in a MTU */ 12498 tot_out = sndlen; 12499 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); 12500 if (tot_demand > SCTP_DEFAULT_ADD_MORE) { 12501 /* To big */ 12502 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12503 error = EMSGSIZE; 12504 goto out; 12505 } 12506 mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA); 12507 } 12508 if (mm == NULL) { 12509 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12510 error = ENOMEM; 12511 goto out; 12512 } 12513 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr); 12514 max_out -= sizeof(struct sctp_abort_msg); 12515 if (tot_out > max_out) { 12516 tot_out = max_out; 12517 } 12518 if (mm) { 12519 struct sctp_paramhdr *ph; 12520 12521 /* now move forward the data pointer */ 12522 ph = mtod(mm, struct sctp_paramhdr *); 12523 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 12524 ph->param_length = htons((sizeof(struct sctp_paramhdr) + tot_out)); 12525 ph++; 12526 SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr); 12527 if (top == NULL) { 12528 error = uiomove((caddr_t)ph, (int)tot_out, uio); 12529 if (error) { 12530 /*- 12531 * Here if we can't get his data we 12532 * still abort we just don't get to 12533 * send the users note :-0 12534 */ 12535 sctp_m_freem(mm); 12536 mm = NULL; 12537 } 12538 } else { 12539 if (sndlen != 0) { 12540 SCTP_BUF_NEXT(mm) = top; 12541 } 12542 } 12543 } 12544 if (hold_tcblock == 0) { 12545 SCTP_TCB_LOCK(stcb); 12546 } 12547 atomic_add_int(&stcb->asoc.refcnt, -1); 12548 free_cnt_applied = 0; 12549 /* release this lock, otherwise we hang on ourselves */ 12550 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED); 12551 /* now relock the stcb so everything is sane */ 12552 hold_tcblock = 0; 12553 stcb = NULL; 12554 /* 12555 * In this case top is already chained to mm avoid double 12556 * free, since we free it below if top != NULL and driver 12557 * would free it after sending the packet out 12558 */ 12559 if (sndlen != 0) { 12560 top = NULL; 12561 } 12562 goto out_unlocked; 12563 } 12564 /* Calculate the maximum we can send */ 12565 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12566 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 12567 if (non_blocking) { 12568 /* we already checked for non-blocking above. */ 12569 max_len = sndlen; 12570 } else { 12571 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12572 } 12573 } else { 12574 max_len = 0; 12575 } 12576 if (hold_tcblock) { 12577 SCTP_TCB_UNLOCK(stcb); 12578 hold_tcblock = 0; 12579 } 12580 /* Is the stream no. valid? */ 12581 if (srcv->sinfo_stream >= asoc->streamoutcnt) { 12582 /* Invalid stream number */ 12583 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12584 error = EINVAL; 12585 goto out_unlocked; 12586 } 12587 if (asoc->strmout == NULL) { 12588 /* huh? software error */ 12589 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 12590 error = EFAULT; 12591 goto out_unlocked; 12592 } 12593 /* Unless E_EOR mode is on, we must make a send FIT in one call. */ 12594 if ((user_marks_eor == 0) && 12595 (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) { 12596 /* It will NEVER fit */ 12597 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12598 error = EMSGSIZE; 12599 goto out_unlocked; 12600 } 12601 if ((uio == NULL) && user_marks_eor) { 12602 /*- 12603 * We do not support eeor mode for 12604 * sending with mbuf chains (like sendfile). 12605 */ 12606 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12607 error = EINVAL; 12608 goto out_unlocked; 12609 } 12610 if (user_marks_eor) { 12611 local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold)); 12612 } else { 12613 /*- 12614 * For non-eeor the whole message must fit in 12615 * the socket send buffer. 12616 */ 12617 local_add_more = sndlen; 12618 } 12619 len = 0; 12620 if (non_blocking) { 12621 goto skip_preblock; 12622 } 12623 if (((max_len <= local_add_more) && 12624 (SCTP_SB_LIMIT_SND(so) >= local_add_more)) || 12625 (max_len == 0) || 12626 ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12627 /* No room right now ! */ 12628 SOCKBUF_LOCK(&so->so_snd); 12629 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12630 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) || 12631 ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12632 SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n", 12633 (unsigned int)SCTP_SB_LIMIT_SND(so), 12634 inqueue_bytes, 12635 local_add_more, 12636 stcb->asoc.stream_queue_cnt, 12637 stcb->asoc.chunks_on_out_queue, 12638 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)); 12639 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12640 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen); 12641 } 12642 be.error = 0; 12643 stcb->block_entry = &be; 12644 error = sbwait(&so->so_snd); 12645 stcb->block_entry = NULL; 12646 if (error || so->so_error || be.error) { 12647 if (error == 0) { 12648 if (so->so_error) 12649 error = so->so_error; 12650 if (be.error) { 12651 error = be.error; 12652 } 12653 } 12654 SOCKBUF_UNLOCK(&so->so_snd); 12655 goto out_unlocked; 12656 } 12657 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12658 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 12659 asoc, stcb->asoc.total_output_queue_size); 12660 } 12661 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12662 goto out_unlocked; 12663 } 12664 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12665 } 12666 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 12667 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12668 } else { 12669 max_len = 0; 12670 } 12671 SOCKBUF_UNLOCK(&so->so_snd); 12672 } 12673 skip_preblock: 12674 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12675 goto out_unlocked; 12676 } 12677 /* 12678 * sndlen covers for mbuf case uio_resid covers for the non-mbuf 12679 * case NOTE: uio will be null when top/mbuf is passed 12680 */ 12681 if (sndlen == 0) { 12682 if (srcv->sinfo_flags & SCTP_EOF) { 12683 got_all_of_the_send = 1; 12684 goto dataless_eof; 12685 } else { 12686 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12687 error = EINVAL; 12688 goto out; 12689 } 12690 } 12691 if (top == NULL) { 12692 struct sctp_stream_queue_pending *sp; 12693 struct sctp_stream_out *strm; 12694 uint32_t sndout; 12695 12696 SCTP_TCB_SEND_LOCK(stcb); 12697 if ((asoc->stream_locked) && 12698 (asoc->stream_locked_on != srcv->sinfo_stream)) { 12699 SCTP_TCB_SEND_UNLOCK(stcb); 12700 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12701 error = EINVAL; 12702 goto out; 12703 } 12704 SCTP_TCB_SEND_UNLOCK(stcb); 12705 12706 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 12707 if (strm->last_msg_incomplete == 0) { 12708 do_a_copy_in: 12709 sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error); 12710 if ((sp == NULL) || (error)) { 12711 goto out; 12712 } 12713 SCTP_TCB_SEND_LOCK(stcb); 12714 if (sp->msg_is_complete) { 12715 strm->last_msg_incomplete = 0; 12716 asoc->stream_locked = 0; 12717 } else { 12718 /* 12719 * Just got locked to this guy in case of an 12720 * interrupt. 12721 */ 12722 strm->last_msg_incomplete = 1; 12723 asoc->stream_locked = 1; 12724 asoc->stream_locked_on = srcv->sinfo_stream; 12725 sp->sender_all_done = 0; 12726 } 12727 sctp_snd_sb_alloc(stcb, sp->length); 12728 atomic_add_int(&asoc->stream_queue_cnt, 1); 12729 if (srcv->sinfo_flags & SCTP_UNORDERED) { 12730 SCTP_STAT_INCR(sctps_sends_with_unord); 12731 } 12732 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 12733 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1); 12734 SCTP_TCB_SEND_UNLOCK(stcb); 12735 } else { 12736 SCTP_TCB_SEND_LOCK(stcb); 12737 sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead); 12738 SCTP_TCB_SEND_UNLOCK(stcb); 12739 if (sp == NULL) { 12740 /* ???? Huh ??? last msg is gone */ 12741 #ifdef INVARIANTS 12742 panic("Warning: Last msg marked incomplete, yet nothing left?"); 12743 #else 12744 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n"); 12745 strm->last_msg_incomplete = 0; 12746 #endif 12747 goto do_a_copy_in; 12748 12749 } 12750 } 12751 while (uio->uio_resid > 0) { 12752 /* How much room do we have? */ 12753 struct mbuf *new_tail, *mm; 12754 12755 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) 12756 max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size; 12757 else 12758 max_len = 0; 12759 12760 if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) || 12761 (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) || 12762 (uio->uio_resid && (uio->uio_resid <= (int)max_len))) { 12763 sndout = 0; 12764 new_tail = NULL; 12765 if (hold_tcblock) { 12766 SCTP_TCB_UNLOCK(stcb); 12767 hold_tcblock = 0; 12768 } 12769 mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail); 12770 if ((mm == NULL) || error) { 12771 if (mm) { 12772 sctp_m_freem(mm); 12773 } 12774 goto out; 12775 } 12776 /* Update the mbuf and count */ 12777 SCTP_TCB_SEND_LOCK(stcb); 12778 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12779 /* 12780 * we need to get out. Peer probably 12781 * aborted. 12782 */ 12783 sctp_m_freem(mm); 12784 if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) { 12785 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12786 error = ECONNRESET; 12787 } 12788 SCTP_TCB_SEND_UNLOCK(stcb); 12789 goto out; 12790 } 12791 if (sp->tail_mbuf) { 12792 /* tack it to the end */ 12793 SCTP_BUF_NEXT(sp->tail_mbuf) = mm; 12794 sp->tail_mbuf = new_tail; 12795 } else { 12796 /* A stolen mbuf */ 12797 sp->data = mm; 12798 sp->tail_mbuf = new_tail; 12799 } 12800 sctp_snd_sb_alloc(stcb, sndout); 12801 atomic_add_int(&sp->length, sndout); 12802 len += sndout; 12803 12804 /* Did we reach EOR? */ 12805 if ((uio->uio_resid == 0) && 12806 ((user_marks_eor == 0) || 12807 (srcv->sinfo_flags & SCTP_EOF) || 12808 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 12809 sp->msg_is_complete = 1; 12810 } else { 12811 sp->msg_is_complete = 0; 12812 } 12813 SCTP_TCB_SEND_UNLOCK(stcb); 12814 } 12815 if (uio->uio_resid == 0) { 12816 /* got it all? */ 12817 continue; 12818 } 12819 /* PR-SCTP? */ 12820 if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) { 12821 /* 12822 * This is ugly but we must assure locking 12823 * order 12824 */ 12825 if (hold_tcblock == 0) { 12826 SCTP_TCB_LOCK(stcb); 12827 hold_tcblock = 1; 12828 } 12829 sctp_prune_prsctp(stcb, asoc, srcv, sndlen); 12830 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12831 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) 12832 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12833 else 12834 max_len = 0; 12835 if (max_len > 0) { 12836 continue; 12837 } 12838 SCTP_TCB_UNLOCK(stcb); 12839 hold_tcblock = 0; 12840 } 12841 /* wait for space now */ 12842 if (non_blocking) { 12843 /* Non-blocking io in place out */ 12844 goto skip_out_eof; 12845 } 12846 /* What about the INIT, send it maybe */ 12847 if (queue_only_for_init) { 12848 if (hold_tcblock == 0) { 12849 SCTP_TCB_LOCK(stcb); 12850 hold_tcblock = 1; 12851 } 12852 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) { 12853 /* a collision took us forward? */ 12854 queue_only = 0; 12855 } else { 12856 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 12857 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 12858 queue_only = 1; 12859 } 12860 } 12861 if ((net->flight_size > net->cwnd) && 12862 (asoc->sctp_cmt_on_off == 0)) { 12863 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 12864 queue_only = 1; 12865 } else if (asoc->ifp_had_enobuf) { 12866 SCTP_STAT_INCR(sctps_ifnomemqueued); 12867 if (net->flight_size > (2 * net->mtu)) { 12868 queue_only = 1; 12869 } 12870 asoc->ifp_had_enobuf = 0; 12871 } 12872 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 12873 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 12874 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 12875 (stcb->asoc.total_flight > 0) && 12876 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 12877 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 12878 12879 /*- 12880 * Ok, Nagle is set on and we have data outstanding. 12881 * Don't send anything and let SACKs drive out the 12882 * data unless wen have a "full" segment to send. 12883 */ 12884 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 12885 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 12886 } 12887 SCTP_STAT_INCR(sctps_naglequeued); 12888 nagle_applies = 1; 12889 } else { 12890 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 12891 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 12892 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 12893 } 12894 SCTP_STAT_INCR(sctps_naglesent); 12895 nagle_applies = 0; 12896 } 12897 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12898 12899 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 12900 nagle_applies, un_sent); 12901 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 12902 stcb->asoc.total_flight, 12903 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 12904 } 12905 if (queue_only_for_init) 12906 queue_only_for_init = 0; 12907 if ((queue_only == 0) && (nagle_applies == 0)) { 12908 /*- 12909 * need to start chunk output 12910 * before blocking.. note that if 12911 * a lock is already applied, then 12912 * the input via the net is happening 12913 * and I don't need to start output :-D 12914 */ 12915 if (hold_tcblock == 0) { 12916 if (SCTP_TCB_TRYLOCK(stcb)) { 12917 hold_tcblock = 1; 12918 sctp_chunk_output(inp, 12919 stcb, 12920 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 12921 } 12922 } else { 12923 sctp_chunk_output(inp, 12924 stcb, 12925 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 12926 } 12927 if (hold_tcblock == 1) { 12928 SCTP_TCB_UNLOCK(stcb); 12929 hold_tcblock = 0; 12930 } 12931 } 12932 SOCKBUF_LOCK(&so->so_snd); 12933 /*- 12934 * This is a bit strange, but I think it will 12935 * work. The total_output_queue_size is locked and 12936 * protected by the TCB_LOCK, which we just released. 12937 * There is a race that can occur between releasing it 12938 * above, and me getting the socket lock, where sacks 12939 * come in but we have not put the SB_WAIT on the 12940 * so_snd buffer to get the wakeup. After the LOCK 12941 * is applied the sack_processing will also need to 12942 * LOCK the so->so_snd to do the actual sowwakeup(). So 12943 * once we have the socket buffer lock if we recheck the 12944 * size we KNOW we will get to sleep safely with the 12945 * wakeup flag in place. 12946 */ 12947 if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size + 12948 min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) { 12949 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12950 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK, 12951 asoc, uio->uio_resid); 12952 } 12953 be.error = 0; 12954 stcb->block_entry = &be; 12955 error = sbwait(&so->so_snd); 12956 stcb->block_entry = NULL; 12957 12958 if (error || so->so_error || be.error) { 12959 if (error == 0) { 12960 if (so->so_error) 12961 error = so->so_error; 12962 if (be.error) { 12963 error = be.error; 12964 } 12965 } 12966 SOCKBUF_UNLOCK(&so->so_snd); 12967 goto out_unlocked; 12968 } 12969 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12970 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 12971 asoc, stcb->asoc.total_output_queue_size); 12972 } 12973 } 12974 SOCKBUF_UNLOCK(&so->so_snd); 12975 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12976 goto out_unlocked; 12977 } 12978 } 12979 SCTP_TCB_SEND_LOCK(stcb); 12980 if (sp) { 12981 if (sp->msg_is_complete == 0) { 12982 strm->last_msg_incomplete = 1; 12983 asoc->stream_locked = 1; 12984 asoc->stream_locked_on = srcv->sinfo_stream; 12985 } else { 12986 sp->sender_all_done = 1; 12987 strm->last_msg_incomplete = 0; 12988 asoc->stream_locked = 0; 12989 } 12990 } else { 12991 SCTP_PRINTF("Huh no sp TSNH?\n"); 12992 strm->last_msg_incomplete = 0; 12993 asoc->stream_locked = 0; 12994 } 12995 SCTP_TCB_SEND_UNLOCK(stcb); 12996 if (uio->uio_resid == 0) { 12997 got_all_of_the_send = 1; 12998 } 12999 } else { 13000 /* We send in a 0, since we do NOT have any locks */ 13001 error = sctp_msg_append(stcb, net, top, srcv, 0); 13002 top = NULL; 13003 if (srcv->sinfo_flags & SCTP_EOF) { 13004 /* 13005 * This should only happen for Panda for the mbuf 13006 * send case, which does NOT yet support EEOR mode. 13007 * Thus, we can just set this flag to do the proper 13008 * EOF handling. 13009 */ 13010 got_all_of_the_send = 1; 13011 } 13012 } 13013 if (error) { 13014 goto out; 13015 } 13016 dataless_eof: 13017 /* EOF thing ? */ 13018 if ((srcv->sinfo_flags & SCTP_EOF) && 13019 (got_all_of_the_send == 1)) { 13020 int cnt; 13021 13022 SCTP_STAT_INCR(sctps_sends_with_eof); 13023 error = 0; 13024 if (hold_tcblock == 0) { 13025 SCTP_TCB_LOCK(stcb); 13026 hold_tcblock = 1; 13027 } 13028 cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED); 13029 if (TAILQ_EMPTY(&asoc->send_queue) && 13030 TAILQ_EMPTY(&asoc->sent_queue) && 13031 (cnt == 0)) { 13032 if (asoc->locked_on_sending) { 13033 goto abort_anyway; 13034 } 13035 /* there is nothing queued to send, so I'm done... */ 13036 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 13037 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13038 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13039 struct sctp_nets *netp; 13040 13041 if (stcb->asoc.alternate) { 13042 netp = stcb->asoc.alternate; 13043 } else { 13044 netp = stcb->asoc.primary_destination; 13045 } 13046 /* only send SHUTDOWN the first time through */ 13047 sctp_send_shutdown(stcb, netp); 13048 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 13049 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 13050 } 13051 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 13052 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 13053 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 13054 netp); 13055 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13056 asoc->primary_destination); 13057 } 13058 } else { 13059 /*- 13060 * we still got (or just got) data to send, so set 13061 * SHUTDOWN_PENDING 13062 */ 13063 /*- 13064 * XXX sockets draft says that SCTP_EOF should be 13065 * sent with no data. currently, we will allow user 13066 * data to be sent first and move to 13067 * SHUTDOWN-PENDING 13068 */ 13069 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 13070 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13071 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13072 if (hold_tcblock == 0) { 13073 SCTP_TCB_LOCK(stcb); 13074 hold_tcblock = 1; 13075 } 13076 if (asoc->locked_on_sending) { 13077 /* Locked to send out the data */ 13078 struct sctp_stream_queue_pending *sp; 13079 13080 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 13081 if (sp) { 13082 if ((sp->length == 0) && (sp->msg_is_complete == 0)) 13083 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 13084 } 13085 } 13086 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 13087 if (TAILQ_EMPTY(&asoc->send_queue) && 13088 TAILQ_EMPTY(&asoc->sent_queue) && 13089 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 13090 abort_anyway: 13091 if (free_cnt_applied) { 13092 atomic_add_int(&stcb->asoc.refcnt, -1); 13093 free_cnt_applied = 0; 13094 } 13095 sctp_abort_an_association(stcb->sctp_ep, stcb, 13096 NULL, SCTP_SO_LOCKED); 13097 /* 13098 * now relock the stcb so everything 13099 * is sane 13100 */ 13101 hold_tcblock = 0; 13102 stcb = NULL; 13103 goto out; 13104 } 13105 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13106 asoc->primary_destination); 13107 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY); 13108 } 13109 } 13110 } 13111 skip_out_eof: 13112 if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 13113 some_on_control = 1; 13114 } 13115 if (queue_only_for_init) { 13116 if (hold_tcblock == 0) { 13117 SCTP_TCB_LOCK(stcb); 13118 hold_tcblock = 1; 13119 } 13120 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) { 13121 /* a collision took us forward? */ 13122 queue_only = 0; 13123 } else { 13124 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13125 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT); 13126 queue_only = 1; 13127 } 13128 } 13129 if ((net->flight_size > net->cwnd) && 13130 (stcb->asoc.sctp_cmt_on_off == 0)) { 13131 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13132 queue_only = 1; 13133 } else if (asoc->ifp_had_enobuf) { 13134 SCTP_STAT_INCR(sctps_ifnomemqueued); 13135 if (net->flight_size > (2 * net->mtu)) { 13136 queue_only = 1; 13137 } 13138 asoc->ifp_had_enobuf = 0; 13139 } 13140 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 13141 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 13142 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13143 (stcb->asoc.total_flight > 0) && 13144 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13145 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 13146 /*- 13147 * Ok, Nagle is set on and we have data outstanding. 13148 * Don't send anything and let SACKs drive out the 13149 * data unless wen have a "full" segment to send. 13150 */ 13151 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13152 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13153 } 13154 SCTP_STAT_INCR(sctps_naglequeued); 13155 nagle_applies = 1; 13156 } else { 13157 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13158 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13159 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13160 } 13161 SCTP_STAT_INCR(sctps_naglesent); 13162 nagle_applies = 0; 13163 } 13164 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13165 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13166 nagle_applies, un_sent); 13167 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 13168 stcb->asoc.total_flight, 13169 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 13170 } 13171 if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) { 13172 /* we can attempt to send too. */ 13173 if (hold_tcblock == 0) { 13174 /* 13175 * If there is activity recv'ing sacks no need to 13176 * send 13177 */ 13178 if (SCTP_TCB_TRYLOCK(stcb)) { 13179 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13180 hold_tcblock = 1; 13181 } 13182 } else { 13183 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13184 } 13185 } else if ((queue_only == 0) && 13186 (stcb->asoc.peers_rwnd == 0) && 13187 (stcb->asoc.total_flight == 0)) { 13188 /* We get to have a probe outstanding */ 13189 if (hold_tcblock == 0) { 13190 hold_tcblock = 1; 13191 SCTP_TCB_LOCK(stcb); 13192 } 13193 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13194 } else if (some_on_control) { 13195 int num_out, reason, frag_point; 13196 13197 /* Here we do control only */ 13198 if (hold_tcblock == 0) { 13199 hold_tcblock = 1; 13200 SCTP_TCB_LOCK(stcb); 13201 } 13202 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 13203 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 13204 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED); 13205 } 13206 SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n", 13207 queue_only, stcb->asoc.peers_rwnd, un_sent, 13208 stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue, 13209 stcb->asoc.total_output_queue_size, error); 13210 13211 out: 13212 out_unlocked: 13213 13214 if (local_soresv && stcb) { 13215 atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen); 13216 } 13217 if (create_lock_applied) { 13218 SCTP_ASOC_CREATE_UNLOCK(inp); 13219 } 13220 if ((stcb) && hold_tcblock) { 13221 SCTP_TCB_UNLOCK(stcb); 13222 } 13223 if (stcb && free_cnt_applied) { 13224 atomic_add_int(&stcb->asoc.refcnt, -1); 13225 } 13226 #ifdef INVARIANTS 13227 if (stcb) { 13228 if (mtx_owned(&stcb->tcb_mtx)) { 13229 panic("Leaving with tcb mtx owned?"); 13230 } 13231 if (mtx_owned(&stcb->tcb_send_mtx)) { 13232 panic("Leaving with tcb send mtx owned?"); 13233 } 13234 } 13235 #endif 13236 #ifdef INVARIANTS 13237 if (inp) { 13238 sctp_validate_no_locks(inp); 13239 } else { 13240 SCTP_PRINTF("Warning - inp is NULL so cant validate locks\n"); 13241 } 13242 #endif 13243 if (top) { 13244 sctp_m_freem(top); 13245 } 13246 if (control) { 13247 sctp_m_freem(control); 13248 } 13249 return (error); 13250 } 13251 13252 13253 /* 13254 * generate an AUTHentication chunk, if required 13255 */ 13256 struct mbuf * 13257 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, 13258 struct sctp_auth_chunk **auth_ret, uint32_t * offset, 13259 struct sctp_tcb *stcb, uint8_t chunk) 13260 { 13261 struct mbuf *m_auth; 13262 struct sctp_auth_chunk *auth; 13263 int chunk_len; 13264 struct mbuf *cn; 13265 13266 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) || 13267 (stcb == NULL)) 13268 return (m); 13269 13270 /* sysctl disabled auth? */ 13271 if (SCTP_BASE_SYSCTL(sctp_auth_disable)) 13272 return (m); 13273 13274 /* peer doesn't do auth... */ 13275 if (!stcb->asoc.peer_supports_auth) { 13276 return (m); 13277 } 13278 /* does the requested chunk require auth? */ 13279 if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) { 13280 return (m); 13281 } 13282 m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER); 13283 if (m_auth == NULL) { 13284 /* no mbuf's */ 13285 return (m); 13286 } 13287 /* reserve some space if this will be the first mbuf */ 13288 if (m == NULL) 13289 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD); 13290 /* fill in the AUTH chunk details */ 13291 auth = mtod(m_auth, struct sctp_auth_chunk *); 13292 bzero(auth, sizeof(*auth)); 13293 auth->ch.chunk_type = SCTP_AUTHENTICATION; 13294 auth->ch.chunk_flags = 0; 13295 chunk_len = sizeof(*auth) + 13296 sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id); 13297 auth->ch.chunk_length = htons(chunk_len); 13298 auth->hmac_id = htons(stcb->asoc.peer_hmac_id); 13299 /* key id and hmac digest will be computed and filled in upon send */ 13300 13301 /* save the offset where the auth was inserted into the chain */ 13302 *offset = 0; 13303 for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) { 13304 *offset += SCTP_BUF_LEN(cn); 13305 } 13306 13307 /* update length and return pointer to the auth chunk */ 13308 SCTP_BUF_LEN(m_auth) = chunk_len; 13309 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0); 13310 if (auth_ret != NULL) 13311 *auth_ret = auth; 13312 13313 return (m); 13314 } 13315 13316 #ifdef INET6 13317 int 13318 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t * ro) 13319 { 13320 struct nd_prefix *pfx = NULL; 13321 struct nd_pfxrouter *pfxrtr = NULL; 13322 struct sockaddr_in6 gw6; 13323 13324 if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6) 13325 return (0); 13326 13327 /* get prefix entry of address */ 13328 LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) { 13329 if (pfx->ndpr_stateflags & NDPRF_DETACHED) 13330 continue; 13331 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr, 13332 &src6->sin6_addr, &pfx->ndpr_mask)) 13333 break; 13334 } 13335 /* no prefix entry in the prefix list */ 13336 if (pfx == NULL) { 13337 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for "); 13338 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13339 return (0); 13340 } 13341 SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is "); 13342 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13343 13344 /* search installed gateway from prefix entry */ 13345 LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) { 13346 memset(&gw6, 0, sizeof(struct sockaddr_in6)); 13347 gw6.sin6_family = AF_INET6; 13348 gw6.sin6_len = sizeof(struct sockaddr_in6); 13349 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr, 13350 sizeof(struct in6_addr)); 13351 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is "); 13352 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6); 13353 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is "); 13354 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway); 13355 if (sctp_cmpaddr((struct sockaddr *)&gw6, 13356 ro->ro_rt->rt_gateway)) { 13357 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n"); 13358 return (1); 13359 } 13360 } 13361 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n"); 13362 return (0); 13363 } 13364 13365 #endif 13366 13367 int 13368 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t * ro) 13369 { 13370 #ifdef INET 13371 struct sockaddr_in *sin, *mask; 13372 struct ifaddr *ifa; 13373 struct in_addr srcnetaddr, gwnetaddr; 13374 13375 if (ro == NULL || ro->ro_rt == NULL || 13376 sifa->address.sa.sa_family != AF_INET) { 13377 return (0); 13378 } 13379 ifa = (struct ifaddr *)sifa->ifa; 13380 mask = (struct sockaddr_in *)(ifa->ifa_netmask); 13381 sin = (struct sockaddr_in *)&sifa->address.sin; 13382 srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13383 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is "); 13384 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 13385 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr); 13386 13387 sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway; 13388 gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13389 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is "); 13390 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway); 13391 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr); 13392 if (srcnetaddr.s_addr == gwnetaddr.s_addr) { 13393 return (1); 13394 } 13395 #endif 13396 return (0); 13397 } 13398